-
Notifications
You must be signed in to change notification settings - Fork 667
GridCore: add public types for AIAssistant #33263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
anna-shakhova
merged 6 commits into
DevExpress:26_1
from
anna-shakhova:26_1__ai_assistant_dts
Apr 23, 2026
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
deb9eab
GridCore: add public types for AIAssistant
anna-shakhova 1bf724d
regenerate
anna-shakhova c21dda8
regenerate after rebase
anna-shakhova dde64a9
asp.net + trim AIAssistant members @public
mpreyskurantov af2f461
imd: suppress 'common/grids:AIAssistant.chat'
mpreyskurantov e82d40d
asp.net / sort
mpreyskurantov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
108 changes: 108 additions & 0 deletions
108
packages/devextreme-angular/src/ui/data-grid/nested/ai-assistant.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,108 @@ | ||
| /* tslint:disable:max-line-length */ | ||
|
|
||
|
|
||
| import { | ||
| Component, | ||
| OnInit, | ||
| OnDestroy, | ||
| NgModule, | ||
| Host, | ||
| SkipSelf, | ||
| Input | ||
| } from '@angular/core'; | ||
|
|
||
|
|
||
|
|
||
|
|
||
| import type { AIIntegration } from 'devextreme/common/ai-integration'; | ||
| import type { dxPopupOptions } from 'devextreme/ui/popup'; | ||
|
|
||
| import { | ||
| DxIntegrationModule, | ||
| NestedOptionHost, | ||
| } from 'devextreme-angular/core'; | ||
| import { NestedOption } from 'devextreme-angular/core'; | ||
|
|
||
|
|
||
| @Component({ | ||
| selector: 'dxo-data-grid-ai-assistant', | ||
| template: '', | ||
| styles: [''], | ||
| imports: [ DxIntegrationModule ], | ||
| providers: [NestedOptionHost] | ||
| }) | ||
| export class DxoDataGridAIAssistantComponent extends NestedOption implements OnDestroy, OnInit { | ||
| @Input() | ||
| get aiIntegration(): AIIntegration { | ||
| return this._getOption('aiIntegration'); | ||
| } | ||
| set aiIntegration(value: AIIntegration) { | ||
| this._setOption('aiIntegration', value); | ||
| } | ||
|
|
||
| @Input() | ||
| get chat(): Record<string, any> { | ||
| return this._getOption('chat'); | ||
| } | ||
| set chat(value: Record<string, any>) { | ||
| this._setOption('chat', value); | ||
| } | ||
|
|
||
| @Input() | ||
| get enabled(): boolean { | ||
| return this._getOption('enabled'); | ||
| } | ||
| set enabled(value: boolean) { | ||
| this._setOption('enabled', value); | ||
| } | ||
|
|
||
| @Input() | ||
| get popup(): dxPopupOptions<any> { | ||
| return this._getOption('popup'); | ||
| } | ||
| set popup(value: dxPopupOptions<any>) { | ||
| this._setOption('popup', value); | ||
| } | ||
|
|
||
| @Input() | ||
| get title(): string { | ||
| return this._getOption('title'); | ||
| } | ||
| set title(value: string) { | ||
| this._setOption('title', value); | ||
| } | ||
|
|
||
|
|
||
| protected get _optionPath() { | ||
| return 'aiAssistant'; | ||
| } | ||
|
|
||
|
|
||
| constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost, | ||
| @Host() optionHost: NestedOptionHost) { | ||
| super(); | ||
| parentOptionHost.setNestedOption(this); | ||
| optionHost.setHost(this, this._fullOptionPath.bind(this)); | ||
| } | ||
|
|
||
|
|
||
| ngOnInit() { | ||
| this._addRecreatedComponent(); | ||
| } | ||
|
|
||
| ngOnDestroy() { | ||
| this._addRemovedOption(this._getOptionPath()); | ||
| } | ||
|
|
||
|
|
||
| } | ||
|
|
||
| @NgModule({ | ||
| imports: [ | ||
| DxoDataGridAIAssistantComponent | ||
| ], | ||
| exports: [ | ||
| DxoDataGridAIAssistantComponent | ||
| ], | ||
| }) | ||
| export class DxoDataGridAIAssistantModule { } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.