@progress/kendo-angular-grid 19.3.0-develop.20 → 19.3.0-develop.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/directives.d.ts +4 -3
- package/esm2022/common/toolbar-tool-base.directive.mjs +3 -2
- package/esm2022/directives.mjs +2 -0
- package/esm2022/grid.component.mjs +74 -5
- package/esm2022/grid.module.mjs +102 -101
- package/esm2022/index.mjs +2 -0
- package/esm2022/localization/messages.mjs +55 -1
- package/esm2022/navigation/toolbar-tool-name.mjs +2 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/toolbar/tools/ai-assistant/ai-assistant.component.mjs +286 -0
- package/esm2022/rendering/toolbar/tools/ai-assistant/ai-tool.directive.mjs +269 -0
- package/esm2022/rendering/toolbar/tools/ai-assistant/utils.mjs +47 -0
- package/fesm2022/progress-kendo-angular-grid.mjs +742 -50
- package/grid.component.d.ts +4 -1
- package/grid.module.d.ts +101 -100
- package/index.d.ts +2 -0
- package/localization/messages.d.ts +37 -1
- package/navigation/toolbar-tool-name.d.ts +1 -0
- package/package.json +21 -20
- package/rendering/toolbar/tools/ai-assistant/ai-assistant.component.d.ts +49 -0
- package/rendering/toolbar/tools/ai-assistant/ai-tool.directive.d.ts +119 -0
- package/rendering/toolbar/tools/ai-assistant/utils.d.ts +110 -0
- package/schematics/ngAdd/index.js +4 -4
package/grid.component.d.ts
CHANGED
|
@@ -88,6 +88,7 @@ import { AdaptiveGridService } from './common/adaptiveness.service';
|
|
|
88
88
|
import { AdaptiveMode } from './adaptiveness/adaptive-mode';
|
|
89
89
|
import { AdaptiveRendererComponent } from './adaptiveness/adaptive-renderer.component';
|
|
90
90
|
import { DataMappingService } from './data/data-mapping.service';
|
|
91
|
+
import { AIAssistantToolbarDirective } from './rendering/toolbar/tools/ai-assistant/ai-tool.directive';
|
|
91
92
|
import * as i0 from "@angular/core";
|
|
92
93
|
/**
|
|
93
94
|
* Represents the Kendo UI for Angular Data Grid component.
|
|
@@ -603,6 +604,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
603
604
|
get toolbarTemplate(): ToolbarTemplateDirective;
|
|
604
605
|
set toolbarTemplate(customToolbarTemplate: ToolbarTemplateDirective);
|
|
605
606
|
columnMenuTemplates: QueryList<ColumnMenuTemplateDirective>;
|
|
607
|
+
aiAssistantToolbarTool: AIAssistantToolbarDirective;
|
|
606
608
|
lockedHeader: any;
|
|
607
609
|
header: any;
|
|
608
610
|
footer: QueryList<any>;
|
|
@@ -610,6 +612,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
610
612
|
dragTargetContainer: DragTargetContainerDirective;
|
|
611
613
|
dropTargetContainer: DropTargetContainerDirective;
|
|
612
614
|
dialogContainer: ViewContainerRef;
|
|
615
|
+
windowContainer: ViewContainerRef;
|
|
613
616
|
adaptiveRenderer: AdaptiveRendererComponent;
|
|
614
617
|
listComponent: ListComponent;
|
|
615
618
|
get scrollbarWidth(): number;
|
|
@@ -989,5 +992,5 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
989
992
|
private shouldResetSelection;
|
|
990
993
|
private notifyReorderContainers;
|
|
991
994
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
992
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "kendo-grid", ["kendoGrid"], { "data": { "alias": "data"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "group": { "alias": "group"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "gridResizable": { "alias": "gridResizable"; "required": false; }; "rowReorderable": { "alias": "rowReorderable"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "autoSize": { "alias": "autoSize"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "isRowSelectable": { "alias": "isRowSelectable"; "required": false; }; "cellSelected": { "alias": "cellSelected"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "showInactiveTools": { "alias": "showInactiveTools"; "required": false; }; "isDetailExpanded": { "alias": "isDetailExpanded"; "required": false; }; "isGroupExpanded": { "alias": "isGroupExpanded"; "required": false; }; }, { "filterChange": "filterChange"; "pageChange": "pageChange"; "groupChange": "groupChange"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowReorder": "rowReorder"; "dataStateChange": "dataStateChange"; "gridStateChange": "gridStateChange"; "groupExpand": "groupExpand"; "groupCollapse": "groupCollapse"; "detailExpand": "detailExpand"; "detailCollapse": "detailCollapse"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; "cellClose": "cellClose"; "cellClick": "cellClick"; "pdfExport": "pdfExport"; "excelExport": "excelExport"; "columnResize": "columnResize"; "columnReorder": "columnReorder"; "columnVisibilityChange": "columnVisibilityChange"; "columnLockedChange": "columnLockedChange"; "columnStickyChange": "columnStickyChange"; "scrollBottom": "scrollBottom"; "contentScroll": "contentScroll"; }, ["columns", "detailTemplateChildren", "cellLoadingTemplateChildren", "loadingTemplateChildren", "statusBarTemplateChildren", "noRecordsTemplateChildren", "pagerTemplateChildren", "toolbarTemplateChildren", "columnMenuTemplates"], ["kendo-toolbar"], true, never>;
|
|
995
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "kendo-grid", ["kendoGrid"], { "data": { "alias": "data"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "group": { "alias": "group"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "gridResizable": { "alias": "gridResizable"; "required": false; }; "rowReorderable": { "alias": "rowReorderable"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "autoSize": { "alias": "autoSize"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "isRowSelectable": { "alias": "isRowSelectable"; "required": false; }; "cellSelected": { "alias": "cellSelected"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "showInactiveTools": { "alias": "showInactiveTools"; "required": false; }; "isDetailExpanded": { "alias": "isDetailExpanded"; "required": false; }; "isGroupExpanded": { "alias": "isGroupExpanded"; "required": false; }; }, { "filterChange": "filterChange"; "pageChange": "pageChange"; "groupChange": "groupChange"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowReorder": "rowReorder"; "dataStateChange": "dataStateChange"; "gridStateChange": "gridStateChange"; "groupExpand": "groupExpand"; "groupCollapse": "groupCollapse"; "detailExpand": "detailExpand"; "detailCollapse": "detailCollapse"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; "cellClose": "cellClose"; "cellClick": "cellClick"; "pdfExport": "pdfExport"; "excelExport": "excelExport"; "columnResize": "columnResize"; "columnReorder": "columnReorder"; "columnVisibilityChange": "columnVisibilityChange"; "columnLockedChange": "columnLockedChange"; "columnStickyChange": "columnStickyChange"; "scrollBottom": "scrollBottom"; "contentScroll": "contentScroll"; }, ["aiAssistantToolbarTool", "columns", "detailTemplateChildren", "cellLoadingTemplateChildren", "loadingTemplateChildren", "statusBarTemplateChildren", "noRecordsTemplateChildren", "pagerTemplateChildren", "toolbarTemplateChildren", "columnMenuTemplates"], ["kendo-toolbar"], true, never>;
|
|
993
996
|
}
|
package/grid.module.d.ts
CHANGED
|
@@ -47,105 +47,106 @@ import * as i41 from "./rendering/loading-template.directive";
|
|
|
47
47
|
import * as i42 from "./columns/reorder-column.component";
|
|
48
48
|
import * as i43 from "./rendering/toolbar/tools/sort-command-tool.directive";
|
|
49
49
|
import * as i44 from "./rendering/toolbar/tools/filter-command-tool.directive";
|
|
50
|
-
import * as i45 from "./rendering/toolbar/tools/
|
|
51
|
-
import * as i46 from "./rendering/
|
|
52
|
-
import * as i47 from "./rendering/header/header
|
|
53
|
-
import * as i48 from "./
|
|
54
|
-
import * as i49 from "./
|
|
55
|
-
import * as i50 from "./
|
|
56
|
-
import * as i51 from "
|
|
57
|
-
import * as i52 from "@progress/kendo-angular-
|
|
58
|
-
import * as i53 from "
|
|
59
|
-
import * as i54 from "./filtering/
|
|
60
|
-
import * as i55 from "./filtering/cell/filter-cell
|
|
61
|
-
import * as i56 from "./filtering/cell/
|
|
62
|
-
import * as i57 from "./filtering/cell/
|
|
63
|
-
import * as i58 from "./filtering/cell/
|
|
64
|
-
import * as i59 from "./filtering/cell/
|
|
65
|
-
import * as i60 from "./filtering/cell/filter-cell
|
|
66
|
-
import * as i61 from "./filtering/cell/filter-cell-
|
|
67
|
-
import * as i62 from "./filtering/cell/
|
|
68
|
-
import * as i63 from "./filtering/cell/filter-cell
|
|
69
|
-
import * as i64 from "./filtering/
|
|
70
|
-
import * as i65 from "./filtering/operators/
|
|
71
|
-
import * as i66 from "./filtering/operators/
|
|
72
|
-
import * as i67 from "./filtering/operators/
|
|
73
|
-
import * as i68 from "./filtering/operators/
|
|
74
|
-
import * as i69 from "./filtering/operators/is-
|
|
75
|
-
import * as i70 from "./filtering/operators/is-not-
|
|
76
|
-
import * as i71 from "./filtering/operators/
|
|
77
|
-
import * as i72 from "./filtering/operators/
|
|
78
|
-
import * as i73 from "./filtering/operators/
|
|
79
|
-
import * as i74 from "./filtering/operators/
|
|
80
|
-
import * as i75 from "./filtering/operators/
|
|
81
|
-
import * as i76 from "./filtering/operators/
|
|
82
|
-
import * as i77 from "./filtering/operators/
|
|
83
|
-
import * as i78 from "./filtering/operators/
|
|
84
|
-
import * as i79 from "./filtering/operators/after-
|
|
85
|
-
import * as i80 from "./filtering/operators/
|
|
86
|
-
import * as i81 from "./filtering/operators/before-filter-operator.component";
|
|
87
|
-
import * as i82 from "./filtering/filter-
|
|
88
|
-
import * as i83 from "./filtering/
|
|
89
|
-
import * as i84 from "./filtering/menu/filter-menu
|
|
90
|
-
import * as i85 from "./filtering/menu/filter-menu-
|
|
91
|
-
import * as i86 from "./filtering/menu/
|
|
92
|
-
import * as i87 from "./filtering/menu/string-filter-menu.component";
|
|
93
|
-
import * as i88 from "./filtering/menu/filter-menu
|
|
94
|
-
import * as i89 from "./filtering/menu/
|
|
95
|
-
import * as i90 from "./filtering/menu/numeric-filter-menu
|
|
96
|
-
import * as i91 from "./filtering/menu/
|
|
97
|
-
import * as i92 from "./filtering/menu/date-filter-menu.component";
|
|
98
|
-
import * as i93 from "./filtering/menu/filter-menu
|
|
99
|
-
import * as i94 from "./filtering/menu/
|
|
100
|
-
import * as i95 from "./filtering/menu/filter-menu
|
|
101
|
-
import * as i96 from "./filtering/menu/filter-
|
|
102
|
-
import * as i97 from "./
|
|
103
|
-
import * as i98 from "./column-menu/column-
|
|
104
|
-
import * as i99 from "./column-menu/column-
|
|
105
|
-
import * as i100 from "./
|
|
106
|
-
import * as i101 from "./
|
|
107
|
-
import * as i102 from "./column-menu/column-menu-
|
|
108
|
-
import * as i103 from "./column-menu/column-menu-
|
|
109
|
-
import * as i104 from "./column-menu/column-menu-item
|
|
110
|
-
import * as i105 from "./column-menu/column-menu-
|
|
111
|
-
import * as i106 from "./column-menu/column-menu.component";
|
|
112
|
-
import * as i107 from "./column-menu/column-menu
|
|
113
|
-
import * as i108 from "./column-menu/column-menu-
|
|
114
|
-
import * as i109 from "./column-menu/column-menu-
|
|
115
|
-
import * as i110 from "./column-menu/column-menu-
|
|
116
|
-
import * as i111 from "./column-menu/column-menu-
|
|
117
|
-
import * as i112 from "./column-menu/column-menu-
|
|
118
|
-
import * as i113 from "./column-menu/column-menu-
|
|
119
|
-
import * as i114 from "./column-menu/column-menu-autosize
|
|
120
|
-
import * as i115 from "./
|
|
121
|
-
import * as i116 from "./
|
|
122
|
-
import * as i117 from "./rendering/
|
|
123
|
-
import * as i118 from "./
|
|
124
|
-
import * as i119 from "./localization/
|
|
125
|
-
import * as i120 from "./
|
|
126
|
-
import * as i121 from "./
|
|
127
|
-
import * as i122 from "./
|
|
128
|
-
import * as i123 from "./
|
|
129
|
-
import * as i124 from "./
|
|
130
|
-
import * as i125 from "./editing-directives/
|
|
131
|
-
import * as i126 from "./editing-directives/
|
|
132
|
-
import * as i127 from "./editing-directives/
|
|
133
|
-
import * as i128 from "./
|
|
134
|
-
import * as i129 from "./rendering/
|
|
135
|
-
import * as i130 from "./
|
|
136
|
-
import * as i131 from "./
|
|
137
|
-
import * as i132 from "./
|
|
138
|
-
import * as i133 from "./rendering/
|
|
139
|
-
import * as i134 from "./
|
|
140
|
-
import * as i135 from "./aggregates/status-bar
|
|
141
|
-
import * as i136 from "./
|
|
142
|
-
import * as i137 from "./
|
|
143
|
-
import * as i138 from "./editing/form/
|
|
144
|
-
import * as i139 from "./editing/form/form
|
|
145
|
-
import * as i140 from "./
|
|
146
|
-
import * as i141 from "./
|
|
147
|
-
import * as i142 from "./
|
|
148
|
-
import * as i143 from "./state-management/
|
|
50
|
+
import * as i45 from "./rendering/toolbar/tools/ai-assistant/ai-tool.directive";
|
|
51
|
+
import * as i46 from "./rendering/toolbar/tools/group-command-tool.directive";
|
|
52
|
+
import * as i47 from "./rendering/header/header.component";
|
|
53
|
+
import * as i48 from "./rendering/header/header-template.directive";
|
|
54
|
+
import * as i49 from "./column-resizing/column-handle.directive";
|
|
55
|
+
import * as i50 from "./selection/selectall-checkbox.directive";
|
|
56
|
+
import * as i51 from "./rendering/footer/footer.component";
|
|
57
|
+
import * as i52 from "@progress/kendo-angular-pager";
|
|
58
|
+
import * as i53 from "@progress/kendo-angular-toolbar";
|
|
59
|
+
import * as i54 from "./filtering/filter-row.component";
|
|
60
|
+
import * as i55 from "./filtering/cell/filter-cell.component";
|
|
61
|
+
import * as i56 from "./filtering/cell/filter-cell-template.directive";
|
|
62
|
+
import * as i57 from "./filtering/cell/string-filter-cell.component";
|
|
63
|
+
import * as i58 from "./filtering/cell/numeric-filter-cell.component";
|
|
64
|
+
import * as i59 from "./filtering/cell/autocomplete-filter-cell.component";
|
|
65
|
+
import * as i60 from "./filtering/cell/boolean-filter-cell.component";
|
|
66
|
+
import * as i61 from "./filtering/cell/filter-cell-host.directive";
|
|
67
|
+
import * as i62 from "./filtering/cell/filter-cell-wrapper.component";
|
|
68
|
+
import * as i63 from "./filtering/cell/date-filter-cell.component";
|
|
69
|
+
import * as i64 from "./filtering/cell/filter-cell-operators.component";
|
|
70
|
+
import * as i65 from "./filtering/operators/contains-filter-operator.component";
|
|
71
|
+
import * as i66 from "./filtering/operators/not-contains-filter-operator.component";
|
|
72
|
+
import * as i67 from "./filtering/operators/ends-with-filter-operator.component";
|
|
73
|
+
import * as i68 from "./filtering/operators/eq-filter-operator.component";
|
|
74
|
+
import * as i69 from "./filtering/operators/is-empty-filter-operator.component";
|
|
75
|
+
import * as i70 from "./filtering/operators/is-not-empty-filter-operator.component";
|
|
76
|
+
import * as i71 from "./filtering/operators/is-not-null-filter-operator.component";
|
|
77
|
+
import * as i72 from "./filtering/operators/isnull-filter-operator.component";
|
|
78
|
+
import * as i73 from "./filtering/operators/neq-filter-operator.component";
|
|
79
|
+
import * as i74 from "./filtering/operators/starts-with-filter-operator.component";
|
|
80
|
+
import * as i75 from "./filtering/operators/gt-filter-operator.component";
|
|
81
|
+
import * as i76 from "./filtering/operators/gte-filter-operator.component";
|
|
82
|
+
import * as i77 from "./filtering/operators/lt-filter-operator.component";
|
|
83
|
+
import * as i78 from "./filtering/operators/lte-filter-operator.component";
|
|
84
|
+
import * as i79 from "./filtering/operators/after-filter-operator.component";
|
|
85
|
+
import * as i80 from "./filtering/operators/after-eq-filter-operator.component";
|
|
86
|
+
import * as i81 from "./filtering/operators/before-eq-filter-operator.component";
|
|
87
|
+
import * as i82 from "./filtering/operators/before-filter-operator.component";
|
|
88
|
+
import * as i83 from "./filtering/filter-input.directive";
|
|
89
|
+
import * as i84 from "./filtering/menu/filter-menu.component";
|
|
90
|
+
import * as i85 from "./filtering/menu/filter-menu-container.component";
|
|
91
|
+
import * as i86 from "./filtering/menu/filter-menu-input-wrapper.component";
|
|
92
|
+
import * as i87 from "./filtering/menu/string-filter-menu-input.component";
|
|
93
|
+
import * as i88 from "./filtering/menu/string-filter-menu.component";
|
|
94
|
+
import * as i89 from "./filtering/menu/filter-menu-template.directive";
|
|
95
|
+
import * as i90 from "./filtering/menu/numeric-filter-menu.component";
|
|
96
|
+
import * as i91 from "./filtering/menu/numeric-filter-menu-input.component";
|
|
97
|
+
import * as i92 from "./filtering/menu/date-filter-menu-input.component";
|
|
98
|
+
import * as i93 from "./filtering/menu/date-filter-menu.component";
|
|
99
|
+
import * as i94 from "./filtering/menu/filter-menu-host.directive";
|
|
100
|
+
import * as i95 from "./filtering/menu/boolean-filter-menu.component";
|
|
101
|
+
import * as i96 from "./filtering/menu/filter-menu-dropdownlist.directive";
|
|
102
|
+
import * as i97 from "./filtering/menu/filter-radio-button.directive";
|
|
103
|
+
import * as i98 from "./column-menu/column-chooser-item-checked.directive";
|
|
104
|
+
import * as i99 from "./column-menu/column-list.component";
|
|
105
|
+
import * as i100 from "./column-menu/column-chooser.component";
|
|
106
|
+
import * as i101 from "./rendering/toolbar/tools/column-chooser-tool.directive";
|
|
107
|
+
import * as i102 from "./column-menu/column-menu-chooser.component";
|
|
108
|
+
import * as i103 from "./column-menu/column-menu-filter.component";
|
|
109
|
+
import * as i104 from "./column-menu/column-menu-item.component";
|
|
110
|
+
import * as i105 from "./column-menu/column-menu-item-content-template.directive";
|
|
111
|
+
import * as i106 from "./column-menu/column-menu-sort.component";
|
|
112
|
+
import * as i107 from "./column-menu/column-menu.component";
|
|
113
|
+
import * as i108 from "./column-menu/column-menu-lock.component";
|
|
114
|
+
import * as i109 from "./column-menu/column-menu-template.directive";
|
|
115
|
+
import * as i110 from "./column-menu/column-menu-container.component";
|
|
116
|
+
import * as i111 from "./column-menu/column-menu-item.directive";
|
|
117
|
+
import * as i112 from "./column-menu/column-menu-stick.component";
|
|
118
|
+
import * as i113 from "./column-menu/column-menu-position.component";
|
|
119
|
+
import * as i114 from "./column-menu/column-menu-autosize.component";
|
|
120
|
+
import * as i115 from "./column-menu/column-menu-autosize-all.component";
|
|
121
|
+
import * as i116 from "./grid.component";
|
|
122
|
+
import * as i117 from "./rendering/list.component";
|
|
123
|
+
import * as i118 from "./rendering/toolbar/toolbar.component";
|
|
124
|
+
import * as i119 from "./localization/localized-messages.directive";
|
|
125
|
+
import * as i120 from "./localization/custom-messages.component";
|
|
126
|
+
import * as i121 from "./databinding.directive";
|
|
127
|
+
import * as i122 from "./rendering/toolbar/toolbar-template.directive";
|
|
128
|
+
import * as i123 from "./selection/selection.directive";
|
|
129
|
+
import * as i124 from "./highlight/highlight.directive";
|
|
130
|
+
import * as i125 from "./editing-directives/template-editing.directive";
|
|
131
|
+
import * as i126 from "./editing-directives/reactive-editing.directive";
|
|
132
|
+
import * as i127 from "./editing-directives/in-cell-editing.directive";
|
|
133
|
+
import * as i128 from "./editing-directives/external-editing.directive";
|
|
134
|
+
import * as i129 from "./rendering/details-expand.directive";
|
|
135
|
+
import * as i130 from "./rendering/groups-expand.directive";
|
|
136
|
+
import * as i131 from "./grouping/group-scroll-binding.directive";
|
|
137
|
+
import * as i132 from "./selection/marquee.directive";
|
|
138
|
+
import * as i133 from "./rendering/common/spacer.component";
|
|
139
|
+
import * as i134 from "./rendering/toolbar/toolbar-focusable.directive";
|
|
140
|
+
import * as i135 from "./aggregates/status-bar.component";
|
|
141
|
+
import * as i136 from "./aggregates/status-bar-template.directive";
|
|
142
|
+
import * as i137 from "./common/clipboard.directive";
|
|
143
|
+
import * as i138 from "./editing/form/form.component";
|
|
144
|
+
import * as i139 from "./editing/form/dialog-form.component";
|
|
145
|
+
import * as i140 from "./editing/form/form-formfield.component";
|
|
146
|
+
import * as i141 from "./state-management/undo-redo.directive";
|
|
147
|
+
import * as i142 from "./column-resizing/table.directive";
|
|
148
|
+
import * as i143 from "./state-management/undo-command-tool";
|
|
149
|
+
import * as i144 from "./state-management/redo-command-tool";
|
|
149
150
|
/**
|
|
150
151
|
* Defines the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) for the Grid component.
|
|
151
152
|
*
|
|
@@ -170,6 +171,6 @@ import * as i143 from "./state-management/redo-command-tool";
|
|
|
170
171
|
*/
|
|
171
172
|
export declare class GridModule {
|
|
172
173
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
|
|
173
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.GroupCommandToolbarDirective, typeof i46.HeaderComponent, typeof i47.HeaderTemplateDirective, typeof i48.ColumnHandleDirective, typeof i49.SelectAllCheckboxDirective, typeof i50.FooterComponent, typeof i51.CustomMessagesComponent, typeof i51.PagerFocusableDirective, typeof i51.PagerInfoComponent, typeof i51.PagerInputComponent, typeof i51.PagerNextButtonsComponent, typeof i51.PagerNumericButtonsComponent, typeof i51.PagerPageSizesComponent, typeof i51.PagerPrevButtonsComponent, typeof i51.PagerTemplateDirective, typeof i51.PagerComponent, typeof i51.PagerSpacerComponent, typeof i52.ToolBarComponent, typeof i52.ToolbarCustomMessagesComponent, typeof i52.ToolBarButtonComponent, typeof i52.ToolBarButtonGroupComponent, typeof i52.ToolBarDropDownButtonComponent, typeof i52.ToolBarSeparatorComponent, typeof i52.ToolBarSpacerComponent, typeof i52.ToolBarSplitButtonComponent, typeof i52.ToolBarToolComponent, typeof i53.FilterRowComponent, typeof i54.FilterCellComponent, typeof i55.FilterCellTemplateDirective, typeof i56.StringFilterCellComponent, typeof i57.NumericFilterCellComponent, typeof i58.AutoCompleteFilterCellComponent, typeof i59.BooleanFilterCellComponent, typeof i60.FilterCellHostDirective, typeof i61.FilterCellWrapperComponent, typeof i62.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i63.FilterCellOperatorsComponent, typeof i64.ContainsFilterOperatorComponent, typeof i65.DoesNotContainFilterOperatorComponent, typeof i66.EndsWithFilterOperatorComponent, typeof i67.EqualFilterOperatorComponent, typeof i68.IsEmptyFilterOperatorComponent, typeof i69.IsNotEmptyFilterOperatorComponent, typeof i70.IsNotNullFilterOperatorComponent, typeof i71.IsNullFilterOperatorComponent, typeof i72.NotEqualFilterOperatorComponent, typeof i73.StartsWithFilterOperatorComponent, typeof i74.GreaterFilterOperatorComponent, typeof i75.GreaterOrEqualToFilterOperatorComponent, typeof i76.LessFilterOperatorComponent, typeof i77.LessOrEqualToFilterOperatorComponent, typeof i78.AfterFilterOperatorComponent, typeof i79.AfterEqFilterOperatorComponent, typeof i80.BeforeEqFilterOperatorComponent, typeof i81.BeforeFilterOperatorComponent, typeof i82.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i63.FilterCellOperatorsComponent, typeof i64.ContainsFilterOperatorComponent, typeof i65.DoesNotContainFilterOperatorComponent, typeof i66.EndsWithFilterOperatorComponent, typeof i67.EqualFilterOperatorComponent, typeof i68.IsEmptyFilterOperatorComponent, typeof i69.IsNotEmptyFilterOperatorComponent, typeof i70.IsNotNullFilterOperatorComponent, typeof i71.IsNullFilterOperatorComponent, typeof i72.NotEqualFilterOperatorComponent, typeof i73.StartsWithFilterOperatorComponent, typeof i74.GreaterFilterOperatorComponent, typeof i75.GreaterOrEqualToFilterOperatorComponent, typeof i76.LessFilterOperatorComponent, typeof i77.LessOrEqualToFilterOperatorComponent, typeof i78.AfterFilterOperatorComponent, typeof i79.AfterEqFilterOperatorComponent, typeof i80.BeforeEqFilterOperatorComponent, typeof i81.BeforeFilterOperatorComponent, typeof i82.FilterInputDirective, typeof i83.FilterMenuComponent, typeof i84.FilterMenuContainerComponent, typeof i85.FilterMenuInputWrapperComponent, typeof i86.StringFilterMenuInputComponent, typeof i87.StringFilterMenuComponent, typeof i88.FilterMenuTemplateDirective, typeof i89.NumericFilterMenuComponent, typeof i90.NumericFilterMenuInputComponent, typeof i91.DateFilterMenuInputComponent, typeof i92.DateFilterMenuComponent, typeof i93.FilterMenuHostDirective, typeof i94.BooleanFilterMenuComponent, typeof i95.FilterMenuDropDownListDirective, typeof i96.BooleanFilterRadioButtonDirective, typeof i97.ColumnMenuChooserItemCheckedDirective, typeof i98.ColumnListComponent, typeof i99.ColumnChooserComponent, typeof i100.ColumnChooserToolbarDirective, typeof i101.ColumnMenuChooserComponent, typeof i102.ColumnMenuFilterComponent, typeof i103.ColumnMenuItemComponent, typeof i104.ColumnMenuItemContentTemplateDirective, typeof i105.ColumnMenuSortComponent, typeof i106.ColumnMenuComponent, typeof i107.ColumnMenuLockComponent, typeof i108.ColumnMenuTemplateDirective, typeof i109.ColumnMenuContainerComponent, typeof i110.ColumnMenuItemDirective, typeof i111.ColumnMenuStickComponent, typeof i112.ColumnMenuPositionComponent, typeof i113.ColumnMenuAutoSizeColumnComponent, typeof i114.ColumnMenuAutoSizeAllColumnsComponent, typeof i115.GridComponent, typeof i116.ListComponent, typeof i117.ToolbarComponent, typeof i118.LocalizedMessagesDirective, typeof i119.CustomMessagesComponent, typeof i120.DataBindingDirective, typeof i121.ToolbarTemplateDirective, typeof i122.SelectionDirective, typeof i123.HighlightDirective, typeof i124.TemplateEditingDirective, typeof i125.ReactiveEditingDirective, typeof i126.InCellEditingDirective, typeof i127.ExternalEditingDirective, typeof i128.ExpandDetailsDirective, typeof i129.ExpandGroupDirective, typeof i130.GroupBindingDirective, typeof i131.GridMarqueeDirective, typeof i132.GridSpacerComponent, typeof i133.GridToolbarFocusableDirective, typeof i134.StatusBarComponent, typeof i135.StatusBarTemplateDirective, typeof i136.GridClipboardDirective, typeof i137.FormComponent, typeof i138.DialogFormComponent, typeof i139.FormFormFieldComponent, typeof i140.UndoRedoDirective, typeof i52.ToolBarComponent, typeof i52.ToolbarCustomMessagesComponent, typeof i52.ToolBarButtonComponent, typeof i52.ToolBarButtonGroupComponent, typeof i52.ToolBarDropDownButtonComponent, typeof i52.ToolBarSeparatorComponent, typeof i52.ToolBarSpacerComponent, typeof i52.ToolBarSplitButtonComponent, typeof i52.ToolBarToolComponent, typeof i141.TableDirective, typeof i142.UndoCommandToolbarDirective, typeof i143.RedoCommandToolbarDirective], [typeof i115.GridComponent, typeof i121.ToolbarTemplateDirective, typeof i117.ToolbarComponent, typeof i132.GridSpacerComponent, typeof i135.StatusBarTemplateDirective, typeof i120.DataBindingDirective, typeof i122.SelectionDirective, typeof i123.HighlightDirective, typeof i119.CustomMessagesComponent, typeof i130.GroupBindingDirective, typeof i124.TemplateEditingDirective, typeof i125.ReactiveEditingDirective, typeof i126.InCellEditingDirective, typeof i127.ExternalEditingDirective, typeof i128.ExpandDetailsDirective, typeof i129.ExpandGroupDirective, typeof i133.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.GroupCommandToolbarDirective, typeof i46.HeaderComponent, typeof i47.HeaderTemplateDirective, typeof i48.ColumnHandleDirective, typeof i49.SelectAllCheckboxDirective, typeof i53.FilterRowComponent, typeof i54.FilterCellComponent, typeof i55.FilterCellTemplateDirective, typeof i56.StringFilterCellComponent, typeof i57.NumericFilterCellComponent, typeof i58.AutoCompleteFilterCellComponent, typeof i59.BooleanFilterCellComponent, typeof i60.FilterCellHostDirective, typeof i61.FilterCellWrapperComponent, typeof i62.DateFilterCellComponent, typeof i63.FilterCellOperatorsComponent, typeof i64.ContainsFilterOperatorComponent, typeof i65.DoesNotContainFilterOperatorComponent, typeof i66.EndsWithFilterOperatorComponent, typeof i67.EqualFilterOperatorComponent, typeof i68.IsEmptyFilterOperatorComponent, typeof i69.IsNotEmptyFilterOperatorComponent, typeof i70.IsNotNullFilterOperatorComponent, typeof i71.IsNullFilterOperatorComponent, typeof i72.NotEqualFilterOperatorComponent, typeof i73.StartsWithFilterOperatorComponent, typeof i74.GreaterFilterOperatorComponent, typeof i75.GreaterOrEqualToFilterOperatorComponent, typeof i76.LessFilterOperatorComponent, typeof i77.LessOrEqualToFilterOperatorComponent, typeof i78.AfterFilterOperatorComponent, typeof i79.AfterEqFilterOperatorComponent, typeof i80.BeforeEqFilterOperatorComponent, typeof i81.BeforeFilterOperatorComponent, typeof i83.FilterMenuComponent, typeof i84.FilterMenuContainerComponent, typeof i85.FilterMenuInputWrapperComponent, typeof i86.StringFilterMenuInputComponent, typeof i87.StringFilterMenuComponent, typeof i88.FilterMenuTemplateDirective, typeof i89.NumericFilterMenuComponent, typeof i90.NumericFilterMenuInputComponent, typeof i91.DateFilterMenuInputComponent, typeof i92.DateFilterMenuComponent, typeof i93.FilterMenuHostDirective, typeof i94.BooleanFilterMenuComponent, typeof i95.FilterMenuDropDownListDirective, typeof i96.BooleanFilterRadioButtonDirective, typeof i99.ColumnChooserComponent, typeof i100.ColumnChooserToolbarDirective, typeof i102.ColumnMenuFilterComponent, typeof i103.ColumnMenuItemComponent, typeof i104.ColumnMenuItemContentTemplateDirective, typeof i105.ColumnMenuSortComponent, typeof i107.ColumnMenuLockComponent, typeof i111.ColumnMenuStickComponent, typeof i112.ColumnMenuPositionComponent, typeof i101.ColumnMenuChooserComponent, typeof i108.ColumnMenuTemplateDirective, typeof i109.ColumnMenuContainerComponent, typeof i110.ColumnMenuItemDirective, typeof i106.ColumnMenuComponent, typeof i113.ColumnMenuAutoSizeColumnComponent, typeof i114.ColumnMenuAutoSizeAllColumnsComponent, typeof i136.GridClipboardDirective, typeof i140.UndoRedoDirective, typeof i142.UndoCommandToolbarDirective, typeof i143.RedoCommandToolbarDirective, typeof i52.ToolBarComponent, typeof i52.ToolbarCustomMessagesComponent, typeof i52.ToolBarButtonComponent, typeof i52.ToolBarButtonGroupComponent, typeof i52.ToolBarDropDownButtonComponent, typeof i52.ToolBarSeparatorComponent, typeof i52.ToolBarSpacerComponent, typeof i52.ToolBarSplitButtonComponent, typeof i52.ToolBarToolComponent, typeof i51.CustomMessagesComponent, typeof i51.PagerFocusableDirective, typeof i51.PagerInfoComponent, typeof i51.PagerInputComponent, typeof i51.PagerNextButtonsComponent, typeof i51.PagerNumericButtonsComponent, typeof i51.PagerPageSizesComponent, typeof i51.PagerPrevButtonsComponent, typeof i51.PagerTemplateDirective, typeof i51.PagerComponent, typeof i51.PagerSpacerComponent]>;
|
|
174
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.AIAssistantToolbarDirective, typeof i46.GroupCommandToolbarDirective, typeof i47.HeaderComponent, typeof i48.HeaderTemplateDirective, typeof i49.ColumnHandleDirective, typeof i50.SelectAllCheckboxDirective, typeof i51.FooterComponent, typeof i52.CustomMessagesComponent, typeof i52.PagerFocusableDirective, typeof i52.PagerInfoComponent, typeof i52.PagerInputComponent, typeof i52.PagerNextButtonsComponent, typeof i52.PagerNumericButtonsComponent, typeof i52.PagerPageSizesComponent, typeof i52.PagerPrevButtonsComponent, typeof i52.PagerTemplateDirective, typeof i52.PagerComponent, typeof i52.PagerSpacerComponent, typeof i53.ToolBarComponent, typeof i53.ToolbarCustomMessagesComponent, typeof i53.ToolBarButtonComponent, typeof i53.ToolBarButtonGroupComponent, typeof i53.ToolBarDropDownButtonComponent, typeof i53.ToolBarSeparatorComponent, typeof i53.ToolBarSpacerComponent, typeof i53.ToolBarSplitButtonComponent, typeof i53.ToolBarToolComponent, typeof i54.FilterRowComponent, typeof i55.FilterCellComponent, typeof i56.FilterCellTemplateDirective, typeof i57.StringFilterCellComponent, typeof i58.NumericFilterCellComponent, typeof i59.AutoCompleteFilterCellComponent, typeof i60.BooleanFilterCellComponent, typeof i61.FilterCellHostDirective, typeof i62.FilterCellWrapperComponent, typeof i63.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i64.FilterCellOperatorsComponent, typeof i65.ContainsFilterOperatorComponent, typeof i66.DoesNotContainFilterOperatorComponent, typeof i67.EndsWithFilterOperatorComponent, typeof i68.EqualFilterOperatorComponent, typeof i69.IsEmptyFilterOperatorComponent, typeof i70.IsNotEmptyFilterOperatorComponent, typeof i71.IsNotNullFilterOperatorComponent, typeof i72.IsNullFilterOperatorComponent, typeof i73.NotEqualFilterOperatorComponent, typeof i74.StartsWithFilterOperatorComponent, typeof i75.GreaterFilterOperatorComponent, typeof i76.GreaterOrEqualToFilterOperatorComponent, typeof i77.LessFilterOperatorComponent, typeof i78.LessOrEqualToFilterOperatorComponent, typeof i79.AfterFilterOperatorComponent, typeof i80.AfterEqFilterOperatorComponent, typeof i81.BeforeEqFilterOperatorComponent, typeof i82.BeforeFilterOperatorComponent, typeof i83.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i64.FilterCellOperatorsComponent, typeof i65.ContainsFilterOperatorComponent, typeof i66.DoesNotContainFilterOperatorComponent, typeof i67.EndsWithFilterOperatorComponent, typeof i68.EqualFilterOperatorComponent, typeof i69.IsEmptyFilterOperatorComponent, typeof i70.IsNotEmptyFilterOperatorComponent, typeof i71.IsNotNullFilterOperatorComponent, typeof i72.IsNullFilterOperatorComponent, typeof i73.NotEqualFilterOperatorComponent, typeof i74.StartsWithFilterOperatorComponent, typeof i75.GreaterFilterOperatorComponent, typeof i76.GreaterOrEqualToFilterOperatorComponent, typeof i77.LessFilterOperatorComponent, typeof i78.LessOrEqualToFilterOperatorComponent, typeof i79.AfterFilterOperatorComponent, typeof i80.AfterEqFilterOperatorComponent, typeof i81.BeforeEqFilterOperatorComponent, typeof i82.BeforeFilterOperatorComponent, typeof i83.FilterInputDirective, typeof i84.FilterMenuComponent, typeof i85.FilterMenuContainerComponent, typeof i86.FilterMenuInputWrapperComponent, typeof i87.StringFilterMenuInputComponent, typeof i88.StringFilterMenuComponent, typeof i89.FilterMenuTemplateDirective, typeof i90.NumericFilterMenuComponent, typeof i91.NumericFilterMenuInputComponent, typeof i92.DateFilterMenuInputComponent, typeof i93.DateFilterMenuComponent, typeof i94.FilterMenuHostDirective, typeof i95.BooleanFilterMenuComponent, typeof i96.FilterMenuDropDownListDirective, typeof i97.BooleanFilterRadioButtonDirective, typeof i98.ColumnMenuChooserItemCheckedDirective, typeof i99.ColumnListComponent, typeof i100.ColumnChooserComponent, typeof i101.ColumnChooserToolbarDirective, typeof i102.ColumnMenuChooserComponent, typeof i103.ColumnMenuFilterComponent, typeof i104.ColumnMenuItemComponent, typeof i105.ColumnMenuItemContentTemplateDirective, typeof i106.ColumnMenuSortComponent, typeof i107.ColumnMenuComponent, typeof i108.ColumnMenuLockComponent, typeof i109.ColumnMenuTemplateDirective, typeof i110.ColumnMenuContainerComponent, typeof i111.ColumnMenuItemDirective, typeof i112.ColumnMenuStickComponent, typeof i113.ColumnMenuPositionComponent, typeof i114.ColumnMenuAutoSizeColumnComponent, typeof i115.ColumnMenuAutoSizeAllColumnsComponent, typeof i116.GridComponent, typeof i117.ListComponent, typeof i118.ToolbarComponent, typeof i119.LocalizedMessagesDirective, typeof i120.CustomMessagesComponent, typeof i121.DataBindingDirective, typeof i122.ToolbarTemplateDirective, typeof i123.SelectionDirective, typeof i124.HighlightDirective, typeof i125.TemplateEditingDirective, typeof i126.ReactiveEditingDirective, typeof i127.InCellEditingDirective, typeof i128.ExternalEditingDirective, typeof i129.ExpandDetailsDirective, typeof i130.ExpandGroupDirective, typeof i131.GroupBindingDirective, typeof i132.GridMarqueeDirective, typeof i133.GridSpacerComponent, typeof i134.GridToolbarFocusableDirective, typeof i135.StatusBarComponent, typeof i136.StatusBarTemplateDirective, typeof i137.GridClipboardDirective, typeof i138.FormComponent, typeof i139.DialogFormComponent, typeof i140.FormFormFieldComponent, typeof i141.UndoRedoDirective, typeof i53.ToolBarComponent, typeof i53.ToolbarCustomMessagesComponent, typeof i53.ToolBarButtonComponent, typeof i53.ToolBarButtonGroupComponent, typeof i53.ToolBarDropDownButtonComponent, typeof i53.ToolBarSeparatorComponent, typeof i53.ToolBarSpacerComponent, typeof i53.ToolBarSplitButtonComponent, typeof i53.ToolBarToolComponent, typeof i142.TableDirective, typeof i143.UndoCommandToolbarDirective, typeof i144.RedoCommandToolbarDirective], [typeof i116.GridComponent, typeof i122.ToolbarTemplateDirective, typeof i118.ToolbarComponent, typeof i133.GridSpacerComponent, typeof i136.StatusBarTemplateDirective, typeof i121.DataBindingDirective, typeof i123.SelectionDirective, typeof i124.HighlightDirective, typeof i120.CustomMessagesComponent, typeof i131.GroupBindingDirective, typeof i125.TemplateEditingDirective, typeof i126.ReactiveEditingDirective, typeof i127.InCellEditingDirective, typeof i128.ExternalEditingDirective, typeof i129.ExpandDetailsDirective, typeof i130.ExpandGroupDirective, typeof i134.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.AIAssistantToolbarDirective, typeof i46.GroupCommandToolbarDirective, typeof i47.HeaderComponent, typeof i48.HeaderTemplateDirective, typeof i49.ColumnHandleDirective, typeof i50.SelectAllCheckboxDirective, typeof i54.FilterRowComponent, typeof i55.FilterCellComponent, typeof i56.FilterCellTemplateDirective, typeof i57.StringFilterCellComponent, typeof i58.NumericFilterCellComponent, typeof i59.AutoCompleteFilterCellComponent, typeof i60.BooleanFilterCellComponent, typeof i61.FilterCellHostDirective, typeof i62.FilterCellWrapperComponent, typeof i63.DateFilterCellComponent, typeof i64.FilterCellOperatorsComponent, typeof i65.ContainsFilterOperatorComponent, typeof i66.DoesNotContainFilterOperatorComponent, typeof i67.EndsWithFilterOperatorComponent, typeof i68.EqualFilterOperatorComponent, typeof i69.IsEmptyFilterOperatorComponent, typeof i70.IsNotEmptyFilterOperatorComponent, typeof i71.IsNotNullFilterOperatorComponent, typeof i72.IsNullFilterOperatorComponent, typeof i73.NotEqualFilterOperatorComponent, typeof i74.StartsWithFilterOperatorComponent, typeof i75.GreaterFilterOperatorComponent, typeof i76.GreaterOrEqualToFilterOperatorComponent, typeof i77.LessFilterOperatorComponent, typeof i78.LessOrEqualToFilterOperatorComponent, typeof i79.AfterFilterOperatorComponent, typeof i80.AfterEqFilterOperatorComponent, typeof i81.BeforeEqFilterOperatorComponent, typeof i82.BeforeFilterOperatorComponent, typeof i84.FilterMenuComponent, typeof i85.FilterMenuContainerComponent, typeof i86.FilterMenuInputWrapperComponent, typeof i87.StringFilterMenuInputComponent, typeof i88.StringFilterMenuComponent, typeof i89.FilterMenuTemplateDirective, typeof i90.NumericFilterMenuComponent, typeof i91.NumericFilterMenuInputComponent, typeof i92.DateFilterMenuInputComponent, typeof i93.DateFilterMenuComponent, typeof i94.FilterMenuHostDirective, typeof i95.BooleanFilterMenuComponent, typeof i96.FilterMenuDropDownListDirective, typeof i97.BooleanFilterRadioButtonDirective, typeof i100.ColumnChooserComponent, typeof i101.ColumnChooserToolbarDirective, typeof i103.ColumnMenuFilterComponent, typeof i104.ColumnMenuItemComponent, typeof i105.ColumnMenuItemContentTemplateDirective, typeof i106.ColumnMenuSortComponent, typeof i108.ColumnMenuLockComponent, typeof i112.ColumnMenuStickComponent, typeof i113.ColumnMenuPositionComponent, typeof i102.ColumnMenuChooserComponent, typeof i109.ColumnMenuTemplateDirective, typeof i110.ColumnMenuContainerComponent, typeof i111.ColumnMenuItemDirective, typeof i107.ColumnMenuComponent, typeof i114.ColumnMenuAutoSizeColumnComponent, typeof i115.ColumnMenuAutoSizeAllColumnsComponent, typeof i137.GridClipboardDirective, typeof i141.UndoRedoDirective, typeof i143.UndoCommandToolbarDirective, typeof i144.RedoCommandToolbarDirective, typeof i53.ToolBarComponent, typeof i53.ToolbarCustomMessagesComponent, typeof i53.ToolBarButtonComponent, typeof i53.ToolBarButtonGroupComponent, typeof i53.ToolBarDropDownButtonComponent, typeof i53.ToolBarSeparatorComponent, typeof i53.ToolBarSpacerComponent, typeof i53.ToolBarSplitButtonComponent, typeof i53.ToolBarToolComponent, typeof i52.CustomMessagesComponent, typeof i52.PagerFocusableDirective, typeof i52.PagerInfoComponent, typeof i52.PagerInputComponent, typeof i52.PagerNextButtonsComponent, typeof i52.PagerNumericButtonsComponent, typeof i52.PagerPageSizesComponent, typeof i52.PagerPrevButtonsComponent, typeof i52.PagerTemplateDirective, typeof i52.PagerComponent, typeof i52.PagerSpacerComponent]>;
|
|
174
175
|
static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
|
|
175
176
|
}
|
package/index.d.ts
CHANGED
|
@@ -205,6 +205,7 @@ export { RemoveCommandDirective } from './editing/remove-command.directive';
|
|
|
205
205
|
export { AddCommandDirective } from './editing/add-command.directive';
|
|
206
206
|
export { AddCommandToolbarDirective } from './editing/add-command-tool.directive';
|
|
207
207
|
export { ColumnChooserToolbarDirective } from './rendering/toolbar/tools/column-chooser-tool.directive';
|
|
208
|
+
export { AIAssistantToolbarDirective } from './rendering/toolbar/tools/ai-assistant/ai-tool.directive';
|
|
208
209
|
export { SaveCommandToolbarDirective } from './editing/save-command-tool.directive';
|
|
209
210
|
export { EditCommandToolbarDirective } from './editing/edit-command-tool.directive';
|
|
210
211
|
export { RemoveCommandToolbarDirective } from './editing/remove-command-tool.directive';
|
|
@@ -255,3 +256,4 @@ export { GroupPanelComponent } from './grouping/group-panel.component';
|
|
|
255
256
|
export { SizingOptionsService } from './layout/sizing-options.service';
|
|
256
257
|
export { GridTableDirective } from './rendering/grid-table.directive';
|
|
257
258
|
export { MenuTabbingService } from './filtering/menu/menu-tabbing.service';
|
|
259
|
+
export * from './rendering/toolbar/tools/ai-assistant/utils';
|
|
@@ -141,6 +141,42 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
141
141
|
* [See example](slug:globalization_grid#toc-custom-messages).
|
|
142
142
|
*/
|
|
143
143
|
booleanFilterCellLabel: string;
|
|
144
|
+
/**
|
|
145
|
+
* The text of the AI Assistant Apply button.
|
|
146
|
+
*/
|
|
147
|
+
aiAssistantApplyButtonText: string;
|
|
148
|
+
/**
|
|
149
|
+
* The text of the AI Assistant toolbar tool.
|
|
150
|
+
*/
|
|
151
|
+
aiAssistantToolbarToolText: string;
|
|
152
|
+
/**
|
|
153
|
+
* The text of the AI Assistant Window title.
|
|
154
|
+
*/
|
|
155
|
+
aiAssistantWindowTitle: string;
|
|
156
|
+
/**
|
|
157
|
+
* The title of the AI Assistant Window close button.
|
|
158
|
+
*/
|
|
159
|
+
aiAssistantWindowCloseTitle: string;
|
|
160
|
+
/**
|
|
161
|
+
* The title of the AI Assistant Prompt Output Card.
|
|
162
|
+
*/
|
|
163
|
+
aiAssistantOutputCardTitle: string;
|
|
164
|
+
/**
|
|
165
|
+
* The success message dispayed in the AI Assistant Prompt Output Card's body.
|
|
166
|
+
*/
|
|
167
|
+
aiAssistantOutputCardBodyContent: string;
|
|
168
|
+
/**
|
|
169
|
+
* The title of the AI Assistant Window maximize button.
|
|
170
|
+
*/
|
|
171
|
+
aiAssistantWindowMaximizeTitle: string;
|
|
172
|
+
/**
|
|
173
|
+
* The title of the AI Assistant Window minimize button.
|
|
174
|
+
*/
|
|
175
|
+
aiAssistantWindowMinimizeTitle: string;
|
|
176
|
+
/**
|
|
177
|
+
* The title of the AI Assistant Window restore button.
|
|
178
|
+
*/
|
|
179
|
+
aiAssistantWindowRestoreTitle: string;
|
|
144
180
|
/**
|
|
145
181
|
* Sets the text for the `Equal` (**Is equal to**) filter operator.
|
|
146
182
|
*/
|
|
@@ -537,5 +573,5 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
537
573
|
*/
|
|
538
574
|
externalEditingCancelText: string;
|
|
539
575
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
540
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "adaptiveGroupTitle": { "alias": "adaptiveGroupTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "groupClearButton": { "alias": "groupClearButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "groupDoneButton": { "alias": "groupDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "groupToolbarToolText": { "alias": "groupToolbarToolText"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; }, {}, never, never, false, never>;
|
|
576
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "aiAssistantApplyButtonText": { "alias": "aiAssistantApplyButtonText"; "required": false; }; "aiAssistantToolbarToolText": { "alias": "aiAssistantToolbarToolText"; "required": false; }; "aiAssistantWindowTitle": { "alias": "aiAssistantWindowTitle"; "required": false; }; "aiAssistantWindowCloseTitle": { "alias": "aiAssistantWindowCloseTitle"; "required": false; }; "aiAssistantOutputCardTitle": { "alias": "aiAssistantOutputCardTitle"; "required": false; }; "aiAssistantOutputCardBodyContent": { "alias": "aiAssistantOutputCardBodyContent"; "required": false; }; "aiAssistantWindowMaximizeTitle": { "alias": "aiAssistantWindowMaximizeTitle"; "required": false; }; "aiAssistantWindowMinimizeTitle": { "alias": "aiAssistantWindowMinimizeTitle"; "required": false; }; "aiAssistantWindowRestoreTitle": { "alias": "aiAssistantWindowRestoreTitle"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "adaptiveGroupTitle": { "alias": "adaptiveGroupTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "groupClearButton": { "alias": "groupClearButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "groupDoneButton": { "alias": "groupDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "groupToolbarToolText": { "alias": "groupToolbarToolText"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; }, {}, never, never, false, never>;
|
|
541
577
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.22",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"package": {
|
|
27
27
|
"productName": "Kendo UI for Angular",
|
|
28
28
|
"productCode": "KENDOUIANGULAR",
|
|
29
|
-
"publishDate":
|
|
29
|
+
"publishDate": 1754479136,
|
|
30
30
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
@@ -39,28 +39,29 @@
|
|
|
39
39
|
"@progress/kendo-data-query": "^1.0.0",
|
|
40
40
|
"@progress/kendo-drawing": "^1.21.0",
|
|
41
41
|
"@progress/kendo-licensing": "^1.7.0",
|
|
42
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
|
43
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "19.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "19.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dropdowns": "19.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-excel-export": "19.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
50
|
-
"@progress/kendo-angular-inputs": "19.3.0-develop.
|
|
51
|
-
"@progress/kendo-angular-
|
|
52
|
-
"@progress/kendo-angular-
|
|
53
|
-
"@progress/kendo-angular-
|
|
54
|
-
"@progress/kendo-angular-
|
|
55
|
-
"@progress/kendo-angular-
|
|
56
|
-
"@progress/kendo-angular-
|
|
57
|
-
"@progress/kendo-angular-
|
|
58
|
-
"@progress/kendo-angular-
|
|
42
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.22",
|
|
43
|
+
"@progress/kendo-angular-common": "19.3.0-develop.22",
|
|
44
|
+
"@progress/kendo-angular-dateinputs": "19.3.0-develop.22",
|
|
45
|
+
"@progress/kendo-angular-layout": "19.3.0-develop.22",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.3.0-develop.22",
|
|
47
|
+
"@progress/kendo-angular-dropdowns": "19.3.0-develop.22",
|
|
48
|
+
"@progress/kendo-angular-excel-export": "19.3.0-develop.22",
|
|
49
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.22",
|
|
50
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.22",
|
|
51
|
+
"@progress/kendo-angular-conversational-ui": "19.3.0-develop.22",
|
|
52
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.22",
|
|
53
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.22",
|
|
54
|
+
"@progress/kendo-angular-label": "19.3.0-develop.22",
|
|
55
|
+
"@progress/kendo-angular-pager": "19.3.0-develop.22",
|
|
56
|
+
"@progress/kendo-angular-pdf-export": "19.3.0-develop.22",
|
|
57
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.22",
|
|
58
|
+
"@progress/kendo-angular-toolbar": "19.3.0-develop.22",
|
|
59
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.22",
|
|
59
60
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
60
61
|
},
|
|
61
62
|
"dependencies": {
|
|
62
63
|
"tslib": "^2.3.1",
|
|
63
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
|
64
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.22",
|
|
64
65
|
"@progress/kendo-common": "^1.0.1",
|
|
65
66
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
66
67
|
},
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { OnDestroy, AfterViewInit } from '@angular/core';
|
|
6
|
+
import { AIPromptComponent, PromptOutput, PromptRequestEvent } from '@progress/kendo-angular-conversational-ui';
|
|
7
|
+
import { HttpClient } from '@angular/common/http';
|
|
8
|
+
import { ContextService } from './../../../../common/provider.service';
|
|
9
|
+
import { ColumnInfoService } from './../../../../common/column-info.service';
|
|
10
|
+
import { AIAssistantToolbarDirective } from './ai-tool.directive';
|
|
11
|
+
import { GridToolbarAIPromptSettings, GridToolbarAIRequestOptions } from './utils';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export declare class AiAssistantComponent implements OnDestroy, AfterViewInit {
|
|
17
|
+
private http;
|
|
18
|
+
private ctx;
|
|
19
|
+
private columnInfoService;
|
|
20
|
+
aiPrompt: AIPromptComponent;
|
|
21
|
+
activeView: number;
|
|
22
|
+
promptOutputs: Array<PromptOutput>;
|
|
23
|
+
requestUrl: string;
|
|
24
|
+
requestOptions: GridToolbarAIRequestOptions;
|
|
25
|
+
aiPromptSettings: GridToolbarAIPromptSettings;
|
|
26
|
+
aiToolDirective: AIAssistantToolbarDirective;
|
|
27
|
+
streaming: boolean;
|
|
28
|
+
disabledGenerateButton: boolean;
|
|
29
|
+
private lastMessage;
|
|
30
|
+
private requestData;
|
|
31
|
+
private currentRequestSubscription;
|
|
32
|
+
private loadingOutput;
|
|
33
|
+
private columns;
|
|
34
|
+
private idCounter;
|
|
35
|
+
constructor(http: HttpClient, ctx: ContextService, columnInfoService: ColumnInfoService);
|
|
36
|
+
ngAfterViewInit(): void;
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
message(message: string): string;
|
|
39
|
+
cancelRequest(): void;
|
|
40
|
+
onPromptRequest(ev: PromptRequestEvent): void;
|
|
41
|
+
private sendPromptRequest;
|
|
42
|
+
private processResponse;
|
|
43
|
+
private handleError;
|
|
44
|
+
private unsubscribeCurrentRequest;
|
|
45
|
+
private processArrayResponse;
|
|
46
|
+
private processFilterResponse;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AiAssistantComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AiAssistantComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
49
|
+
}
|