@progress/kendo-angular-grid 21.2.0 → 21.3.0-develop.2

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.
@@ -9,6 +9,7 @@ import { merge } from 'rxjs';
9
9
  import { map, tap, take, filter, switchMap, takeUntil, flatMap } from 'rxjs/operators';
10
10
  import { validatePackage } from '@progress/kendo-licensing';
11
11
  import { packageMetadata } from './package-metadata';
12
+ import { GridAIRequestResponseService } from './rendering/toolbar/tools/ai-assistant/ai-request-response.service';
12
13
  import { ColumnComponent, isColumnComponent } from './columns/column.component';
13
14
  import { isSpanColumnComponent } from './columns/span-column.component';
14
15
  import { isColumnGroupComponent, ColumnGroupComponent } from './columns/column-group.component';
@@ -128,7 +129,9 @@ import * as i23 from "./layout/sizing-options.service";
128
129
  import * as i24 from "./common/adaptiveness.service";
129
130
  import * as i25 from "./row-reordering/row-reorder.service";
130
131
  import * as i26 from "./data/data-mapping.service";
131
- import * as i27 from "@progress/kendo-angular-pager";
132
+ import * as i27 from "./rendering/toolbar/tools/ai-assistant/ai-request-response.service";
133
+ import * as i28 from "./common/id.service";
134
+ import * as i29 from "@progress/kendo-angular-pager";
132
135
  const createControl = (source) => (acc, key) => {
133
136
  acc[key] = new FormControl(source[key]);
134
137
  return acc;
@@ -210,6 +213,8 @@ export class GridComponent {
210
213
  adaptiveGridService;
211
214
  rowReorderService;
212
215
  dataMappingService;
216
+ aiRequestResponseService;
217
+ idService;
213
218
  /**
214
219
  * Sets the data of the Grid. If you provide an array, the Grid gets the total count automatically.
215
220
  * ([more information and example]({% slug binding_grid %})).
@@ -1167,7 +1172,7 @@ export class GridComponent {
1167
1172
  rowReorderSubscription;
1168
1173
  rtl = false;
1169
1174
  _rowSticky;
1170
- constructor(supportService, selectionService, cellSelectionService, wrapper, groupInfoService, groupsService, changeNotification, detailsService, editService, filterService, pdfService, responsiveService, renderer, excelService, ngZone, scrollSyncService, domEvents, columnResizingService, changeDetectorRef, columnReorderService, columnInfoService, navigationService, sortService, scrollRequestService, localization, ctx, sizingService, adaptiveGridService, rowReorderService, dataMappingService) {
1175
+ constructor(supportService, selectionService, cellSelectionService, wrapper, groupInfoService, groupsService, changeNotification, detailsService, editService, filterService, pdfService, responsiveService, renderer, excelService, ngZone, scrollSyncService, domEvents, columnResizingService, changeDetectorRef, columnReorderService, columnInfoService, navigationService, sortService, scrollRequestService, localization, ctx, sizingService, adaptiveGridService, rowReorderService, dataMappingService, aiRequestResponseService, idService) {
1171
1176
  this.supportService = supportService;
1172
1177
  this.selectionService = selectionService;
1173
1178
  this.cellSelectionService = cellSelectionService;
@@ -1198,6 +1203,8 @@ export class GridComponent {
1198
1203
  this.adaptiveGridService = adaptiveGridService;
1199
1204
  this.rowReorderService = rowReorderService;
1200
1205
  this.dataMappingService = dataMappingService;
1206
+ this.aiRequestResponseService = aiRequestResponseService;
1207
+ this.idService = idService;
1201
1208
  const isValid = validatePackage(packageMetadata);
1202
1209
  this.licenseMessage = getLicenseMessage(packageMetadata);
1203
1210
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
@@ -1294,6 +1301,48 @@ export class GridComponent {
1294
1301
  resetGroupsState() {
1295
1302
  this.groupsService.reset();
1296
1303
  }
1304
+ /**
1305
+ * Builds the request body for the AI service based on the provided prompt message.
1306
+ * Allows developers to construct their own AI service requests.
1307
+ *
1308
+ * @param promptMessage - The prompt message to send to the AI service.
1309
+ * @returns The request body object ready to be sent to the AI service.
1310
+ *
1311
+ * @example
1312
+ * ```ts
1313
+ * const requestBody = this.grid.getAIRequest('Sort by Product Name ascending');
1314
+ *
1315
+ * // Send to your AI service
1316
+ * this.http.post('https://your-ai-service.com/api', requestBody).subscribe(response => {
1317
+ * this.grid.handleAIResponse(response);
1318
+ * });
1319
+ * ```
1320
+ */
1321
+ getAIRequest(promptMessage) {
1322
+ return this.aiRequestResponseService.buildRequestBody(promptMessage);
1323
+ }
1324
+ /**
1325
+ * Processes an AI service response and applies the commands to the Grid.
1326
+ * Allows developers to handle their own AI service responses manually.
1327
+ *
1328
+ * @param response - The AI service response containing optional message and commands array.
1329
+ *
1330
+ * @example
1331
+ * ```ts
1332
+ * const response = {
1333
+ * message: 'Applying sorting',
1334
+ * commands: [
1335
+ * { type: 'GridSort', sort: { field: 'ProductName', dir: 'asc' }, message: 'Sorted by Product Name' }
1336
+ * ]
1337
+ * };
1338
+ * this.grid.handleAIResponse(response);
1339
+ * ```
1340
+ */
1341
+ handleAIResponse(response) {
1342
+ const columns = this.columnInfoService.leafNamedColumns?.map((col) => ({ field: col.field })) || [];
1343
+ const leafColumns = this.columnInfoService.leafNamedColumns || [];
1344
+ this.aiRequestResponseService.processCommands(response.commands || [], columns, leafColumns);
1345
+ }
1297
1346
  /**
1298
1347
  * @hidden
1299
1348
  */
@@ -2067,7 +2116,7 @@ export class GridComponent {
2067
2116
  autoGenerateColumns() {
2068
2117
  if (this.shouldGenerateColumns && !this.columns.length && this.view.length) {
2069
2118
  this.columns.reset(Object.keys(this.view.at(0)).map(field => {
2070
- const column = new ColumnComponent();
2119
+ const column = new ColumnComponent(undefined, this.idService);
2071
2120
  column.field = field;
2072
2121
  return column;
2073
2122
  }));
@@ -2458,7 +2507,7 @@ export class GridComponent {
2458
2507
  this.dragTargetContainer?.notify();
2459
2508
  this.dropTargetContainer?.notify();
2460
2509
  }
2461
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridComponent, deps: [{ token: i1.BrowserSupportService }, { token: i2.SelectionService }, { token: i3.CellSelectionService }, { token: i0.ElementRef }, { token: i4.GroupInfoService }, { token: i5.GroupsService }, { token: i6.ChangeNotificationService }, { token: i7.DetailsService }, { token: i8.EditService }, { token: i9.FilterService }, { token: i10.PDFService }, { token: i11.ResponsiveService }, { token: i0.Renderer2 }, { token: i12.ExcelService }, { token: i0.NgZone }, { token: i13.ScrollSyncService }, { token: i14.DomEventsService }, { token: i15.ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: i16.ColumnReorderService }, { token: i17.ColumnInfoService }, { token: i18.NavigationService }, { token: i19.SortService }, { token: i20.ScrollRequestService }, { token: i21.LocalizationService }, { token: i22.ContextService }, { token: i23.SizingOptionsService }, { token: i24.AdaptiveGridService }, { token: i25.RowReorderService }, { token: i26.DataMappingService }], target: i0.ɵɵFactoryTarget.Component });
2510
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridComponent, deps: [{ token: i1.BrowserSupportService }, { token: i2.SelectionService }, { token: i3.CellSelectionService }, { token: i0.ElementRef }, { token: i4.GroupInfoService }, { token: i5.GroupsService }, { token: i6.ChangeNotificationService }, { token: i7.DetailsService }, { token: i8.EditService }, { token: i9.FilterService }, { token: i10.PDFService }, { token: i11.ResponsiveService }, { token: i0.Renderer2 }, { token: i12.ExcelService }, { token: i0.NgZone }, { token: i13.ScrollSyncService }, { token: i14.DomEventsService }, { token: i15.ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: i16.ColumnReorderService }, { token: i17.ColumnInfoService }, { token: i18.NavigationService }, { token: i19.SortService }, { token: i20.ScrollRequestService }, { token: i21.LocalizationService }, { token: i22.ContextService }, { token: i23.SizingOptionsService }, { token: i24.AdaptiveGridService }, { token: i25.RowReorderService }, { token: i26.DataMappingService }, { token: i27.GridAIRequestResponseService }, { token: i28.IdService }], target: i0.ɵɵFactoryTarget.Component });
2462
2511
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: GridComponent, isStandalone: true, selector: "kendo-grid", inputs: { data: "data", pageSize: "pageSize", height: "height", rowHeight: "rowHeight", adaptiveMode: "adaptiveMode", detailRowHeight: "detailRowHeight", skip: "skip", scrollable: "scrollable", selectable: "selectable", sort: "sort", size: "size", trackBy: "trackBy", filter: "filter", group: "group", virtualColumns: "virtualColumns", filterable: "filterable", sortable: "sortable", pageable: "pageable", groupable: "groupable", gridResizable: "gridResizable", rowReorderable: "rowReorderable", navigable: "navigable", autoSize: "autoSize", rowClass: "rowClass", rowSticky: "rowSticky", rowSelected: "rowSelected", isRowSelectable: "isRowSelectable", cellSelected: "cellSelected", resizable: "resizable", reorderable: "reorderable", loading: "loading", columnMenu: "columnMenu", hideHeader: "hideHeader", showInactiveTools: "showInactiveTools", isDetailExpanded: "isDetailExpanded", isGroupExpanded: "isGroupExpanded", dataLayoutMode: "dataLayoutMode" }, outputs: { 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" }, host: { properties: { "attr.dir": "this.dir", "class.k-grid": "this.hostClass", "class.k-grid-sm": "this.sizeSmallClass", "class.k-grid-md": "this.sizeMediumClass", "class.k-grid-stack": "this.stackedClass", "class.k-grid-lockedcolumns": "this.lockedClasses", "class.k-grid-virtual": "this.virtualClasses", "class.k-grid-no-scrollbar": "this.noScrollbarClass", "class.k-grid-resizable": "this.isResizable", "style.minWidth": "this.minWidth", "style.maxWidth": "this.maxWidth", "style.minHeight": "this.minHeight", "style.maxHeight": "this.maxHeight" } }, providers: [
2463
2512
  BrowserSupportService,
2464
2513
  LocalizationService,
@@ -2505,6 +2554,7 @@ export class GridComponent {
2505
2554
  SizingOptionsService,
2506
2555
  RowReorderService,
2507
2556
  ClipboardService,
2557
+ GridAIRequestResponseService,
2508
2558
  RowspanService,
2509
2559
  AdaptiveGridService,
2510
2560
  ColumnMenuService,
@@ -2514,394 +2564,394 @@ export class GridComponent {
2514
2564
  <ng-container kendoGridLocalizedMessages
2515
2565
  i18n-groupPanelEmpty="kendo.grid.groupPanelEmpty|The label visible in the Grid group panel when it is empty"
2516
2566
  groupPanelEmpty="Drag a column header and drop it here to group by that column"
2517
-
2567
+
2518
2568
  i18n-noRecords="kendo.grid.noRecords|The label visible in the Grid when there are no records"
2519
2569
  noRecords="No records available."
2520
-
2570
+
2521
2571
  i18n-pagerLabel="kendo.grid.pagerLabel|The label for the Grid pager"
2522
2572
  pagerLabel="{{ 'Page navigation, page {currentPage} of {totalPages}' }}"
2523
-
2573
+
2524
2574
  i18n-pagerFirstPage="kendo.grid.pagerFirstPage|The label for the first page button in Grid pager"
2525
2575
  pagerFirstPage="Go to the first page"
2526
-
2576
+
2527
2577
  i18n-pagerPreviousPage="kendo.grid.pagerPreviousPage|The label for the previous page button in Grid pager"
2528
2578
  pagerPreviousPage="Go to the previous page"
2529
-
2579
+
2530
2580
  i18n-pagerNextPage="kendo.grid.pagerNextPage|The label for the next page button in Grid pager"
2531
2581
  pagerNextPage="Go to the next page"
2532
-
2582
+
2533
2583
  i18n-pagerLastPage="kendo.grid.pagerLastPage|The label for the last page button in Grid pager"
2534
2584
  pagerLastPage="Go to the last page"
2535
-
2585
+
2536
2586
  i18n-pagerPage="kendo.grid.pagerPage|The label before the current page number in the Grid pager"
2537
2587
  pagerPage="Page"
2538
-
2588
+
2539
2589
  i18n-pagerOf="kendo.grid.pagerOf|The label before the total pages number in the Grid pager"
2540
2590
  pagerOf="of"
2541
-
2591
+
2542
2592
  i18n-pagerItems="kendo.grid.pagerItems|The label after the total pages number in the Grid pager"
2543
2593
  pagerItems="items"
2544
-
2594
+
2545
2595
  i18n-pagerPageNumberInputTitle="kendo.grid.pagerPageNumberInputTitle|The label for the pager input in the Grid pager"
2546
2596
  pagerPageNumberInputTitle="Page Number"
2547
-
2597
+
2548
2598
  i18n-pagerItemsPerPage="kendo.grid.pagerItemsPerPage|The label for the page size chooser in the Grid pager"
2549
2599
  pagerItemsPerPage="items per page"
2550
-
2600
+
2551
2601
  i18n-pagerInputLabel="kendo.grid.pagerInputLabel|The text of the aria-label attribute applied to the input element for entering the page number"
2552
2602
  pagerInputLabel="Type a page number"
2553
-
2603
+
2554
2604
  i18n-filter="kendo.grid.filter|The label of the filter cell or icon"
2555
2605
  filter="Filter"
2556
-
2606
+
2557
2607
  i18n-filterInputLabel="kendo.grid.filterInputLabel|The label of the filter row and menu inputs"
2558
2608
  filterInputLabel="{{ '{columnName} Filter' }}"
2559
-
2609
+
2560
2610
  i18n-filterMenuTitle="kendo.grid.filterMenuTitle|The title of the filter menu icon"
2561
2611
  filterMenuTitle="{{ '{columnName} Filter Menu' }}"
2562
-
2612
+
2563
2613
  i18n-filterMenuOperatorsDropDownLabel="kendo.grid.filterMenuOperatorsDropDownLabel|The label of the filter menu operators dropdown"
2564
2614
  filterMenuOperatorsDropDownLabel="{{ '{columnName} Filter Operators' }}"
2565
-
2615
+
2566
2616
  i18n-filterCellOperatorLabel="kendo.grid.filterCellOperatorLabel|The label of the filter cell operators dropdown"
2567
2617
  filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
2568
-
2618
+
2569
2619
  i18n-booleanFilterCellLabel="kendo.grid.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
2570
2620
  booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
2571
-
2621
+
2572
2622
  i18n-filterMenuLogicDropDownLabel="kendo.grid.filterMenuLogicDropDownLabel|The label of the filter menu logic dropdown"
2573
2623
  filterMenuLogicDropDownLabel="{{ '{columnName} Filter Logic' }}"
2574
-
2624
+
2575
2625
  i18n-filterEqOperator="kendo.grid.filterEqOperator|The text of the equal filter operator"
2576
2626
  filterEqOperator="Is equal to"
2577
-
2627
+
2578
2628
  i18n-filterNotEqOperator="kendo.grid.filterNotEqOperator|The text of the not equal filter operator"
2579
2629
  filterNotEqOperator="Is not equal to"
2580
-
2630
+
2581
2631
  i18n-filterIsNullOperator="kendo.grid.filterIsNullOperator|The text of the is null filter operator"
2582
2632
  filterIsNullOperator="Is null"
2583
-
2633
+
2584
2634
  i18n-filterIsNotNullOperator="kendo.grid.filterIsNotNullOperator|The text of the is not null filter operator"
2585
2635
  filterIsNotNullOperator="Is not null"
2586
-
2636
+
2587
2637
  i18n-filterIsEmptyOperator="kendo.grid.filterIsEmptyOperator|The text of the is empty filter operator"
2588
2638
  filterIsEmptyOperator="Is empty"
2589
-
2639
+
2590
2640
  i18n-filterIsNotEmptyOperator="kendo.grid.filterIsNotEmptyOperator|The text of the is not empty filter operator"
2591
2641
  filterIsNotEmptyOperator="Is not empty"
2592
-
2642
+
2593
2643
  i18n-filterStartsWithOperator="kendo.grid.filterStartsWithOperator|The text of the starts with filter operator"
2594
2644
  filterStartsWithOperator="Starts with"
2595
-
2645
+
2596
2646
  i18n-filterContainsOperator="kendo.grid.filterContainsOperator|The text of the contains filter operator"
2597
2647
  filterContainsOperator="Contains"
2598
-
2648
+
2599
2649
  i18n-filterNotContainsOperator="kendo.grid.filterNotContainsOperator|The text of the does not contain filter operator"
2600
2650
  filterNotContainsOperator="Does not contain"
2601
-
2651
+
2602
2652
  i18n-filterEndsWithOperator="kendo.grid.filterEndsWithOperator|The text of the ends with filter operator"
2603
2653
  filterEndsWithOperator="Ends with"
2604
-
2654
+
2605
2655
  i18n-filterGteOperator="kendo.grid.filterGteOperator|The text of the greater than or equal filter operator"
2606
2656
  filterGteOperator="Is greater than or equal to"
2607
-
2657
+
2608
2658
  i18n-filterGtOperator="kendo.grid.filterGtOperator|The text of the greater than filter operator"
2609
2659
  filterGtOperator="Is greater than"
2610
-
2660
+
2611
2661
  i18n-filterLteOperator="kendo.grid.filterLteOperator|The text of the less than or equal filter operator"
2612
2662
  filterLteOperator="Is less than or equal to"
2613
-
2663
+
2614
2664
  i18n-filterLtOperator="kendo.grid.filterLtOperator|The text of the less than filter operator"
2615
2665
  filterLtOperator="Is less than"
2616
-
2666
+
2617
2667
  i18n-filterIsTrue="kendo.grid.filterIsTrue|The text of the IsTrue boolean filter option"
2618
2668
  filterIsTrue="Is True"
2619
-
2669
+
2620
2670
  i18n-filterIsFalse="kendo.grid.filterIsFalse|The text of the IsFalse boolean filter option"
2621
2671
  filterIsFalse="Is False"
2622
-
2672
+
2623
2673
  i18n-filterBooleanAll="kendo.grid.filterBooleanAll|The text of the (All) boolean filter option"
2624
2674
  filterBooleanAll="(All)"
2625
-
2675
+
2626
2676
  i18n-filterAfterOrEqualOperator="kendo.grid.filterAfterOrEqualOperator|The text of the after or equal date filter operator"
2627
2677
  filterAfterOrEqualOperator="Is after or equal to"
2628
-
2678
+
2629
2679
  i18n-filterAfterOperator="kendo.grid.filterAfterOperator|The text of the after date filter operator"
2630
2680
  filterAfterOperator="Is after"
2631
-
2681
+
2632
2682
  i18n-filterBeforeOperator="kendo.grid.filterBeforeOperator|The text of the before date filter operator"
2633
2683
  filterBeforeOperator="Is before"
2634
-
2684
+
2635
2685
  i18n-filterBeforeOrEqualOperator="kendo.grid.filterBeforeOrEqualOperator|The text of the before or equal date filter operator"
2636
2686
  filterBeforeOrEqualOperator="Is before or equal to"
2637
-
2687
+
2638
2688
  i18n-filterFilterButton="kendo.grid.filterFilterButton|The text of the filter button"
2639
2689
  filterFilterButton="Filter"
2640
-
2690
+
2641
2691
  i18n-filterClearButton="kendo.grid.filterClearButton|The text of the clear filter button"
2642
2692
  filterClearButton="Clear"
2643
-
2693
+
2644
2694
  i18n-sortClearButton="kendo.grid.sortClearButton|The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool"
2645
2695
  sortClearButton="Clear sorting"
2646
-
2696
+
2647
2697
  i18n-adaptiveCloseButtonTitle="kendo.grid.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
2648
2698
  adaptiveCloseButtonTitle="Close"
2649
-
2699
+
2650
2700
  i18n-adaptiveBackButtonTitle="kendo.grid.adaptiveBackButtonTitle|The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
2651
2701
  adaptiveBackButtonTitle="Back"
2652
-
2702
+
2653
2703
  i18n-filterClearAllButton="kendo.grid.filterClearAllButton|The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool"
2654
2704
  filterClearAllButton="Clear all filters"
2655
-
2705
+
2656
2706
  i18n-groupClearButton="kendo.grid.groupClearButton|The text of the clear grouping button in the Group Toolbar Tool and adaptive Group Toolbar Tool"
2657
2707
  groupClearButton="Clear grouping"
2658
-
2708
+
2659
2709
  i18n-sortDoneButton="kendo.grid.sortDoneButton|The text of the done sort button"
2660
2710
  sortDoneButton="Done"
2661
-
2711
+
2662
2712
  i18n-groupDoneButton="kendo.grid.groupDoneButton|The text of the done group button in the adaptive Group Toolbar Tool"
2663
2713
  groupDoneButton="Done"
2664
-
2714
+
2665
2715
  i18n-filterAndLogic="kendo.grid.filterAndLogic|The text of the And filter logic"
2666
2716
  filterAndLogic="And"
2667
-
2717
+
2668
2718
  i18n-filterOrLogic="kendo.grid.filterOrLogic|The text of the Or filter logic"
2669
2719
  filterOrLogic="Or"
2670
-
2720
+
2671
2721
  i18n-filterToolbarToolText="kendo.grid.filterToolbarToolText|The button text of the Filter toolbar tool"
2672
2722
  filterToolbarToolText="Filter"
2673
-
2723
+
2674
2724
  i18n-loading="kendo.grid.loading|The loading text"
2675
2725
  loading="Loading"
2676
-
2726
+
2677
2727
  i18n-gridLabel="kendo.grid.gridLabel|The Grid aria-label"
2678
2728
  gridLabel="Data table"
2679
-
2729
+
2680
2730
  i18n-columnMenu="kendo.grid.columnMenu|The title of the column menu icon"
2681
2731
  columnMenu="{{ '{columnName} Column Menu' }}"
2682
-
2732
+
2683
2733
  i18n-columns="kendo.grid.columns|The text for the Grid Column Chooser and Column Chooser toolbar tool"
2684
2734
  columns="Columns"
2685
-
2735
+
2686
2736
  i18n-columnsSubtitle="kendo.grid.columnsSubtitle|The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool"
2687
2737
  columnsSubtitle="Selected fields are visible"
2688
-
2738
+
2689
2739
  i18n-adaptiveFilterTitle="kendo.grid.adaptiveFilterTitle|The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu"
2690
2740
  adaptiveFilterTitle="Filter by"
2691
-
2741
+
2692
2742
  i18n-adaptiveFilterOperatorsTitle="kendo.grid.adaptiveFilterOperatorsTitle|The title that is displayed in the Operators Action Sheet"
2693
2743
  adaptiveFilterOperatorsTitle="Operators"
2694
-
2744
+
2695
2745
  i18n-adaptiveSortTitle="kendo.grid.adaptiveSortTitle|The title that is displayed in the adaptive Sort Toolbar Tool"
2696
2746
  adaptiveSortTitle="Sort by"
2697
-
2747
+
2698
2748
  i18n-adaptiveGroupTitle="kendo.grid.adaptiveGroupTitle|The title that is displayed in the adaptive Group Toolbar Tool."
2699
2749
  adaptiveGroupTitle="Group by"
2700
-
2750
+
2701
2751
  i18n-lock="kendo.grid.lock|The text shown in the column menu for the lock item"
2702
2752
  lock="Lock"
2703
-
2753
+
2704
2754
  i18n-unlock="kendo.grid.unlock|The text shown in the column menu for the unlock item"
2705
2755
  unlock="Unlock"
2706
-
2756
+
2707
2757
  i18n-setColumnPosition="kendo.grid.setColumnPosition|The text shown in the column menu for the set column position item"
2708
2758
  setColumnPosition="Set Column Position"
2709
-
2759
+
2710
2760
  i18n-stick="kendo.grid.stick|The text shown in the column menu for the stick item"
2711
2761
  stick="Stick"
2712
-
2762
+
2713
2763
  i18n-unstick="kendo.grid.unstick|The text shown in the column menu for the unstick item"
2714
2764
  unstick="Unstick"
2715
-
2765
+
2716
2766
  i18n-sortable="kendo.grid.sortable|The label of the sort icon"
2717
2767
  sortable="Sortable"
2718
-
2768
+
2719
2769
  i18n-sortAscending="kendo.grid.sortAscending|The text shown in the column menu for the sort ascending item"
2720
2770
  sortAscending="Sort Ascending"
2721
-
2771
+
2722
2772
  i18n-sortDescending="kendo.grid.sortDescending|The text shown in the column menu for the sort descending item"
2723
2773
  sortDescending="Sort Descending"
2724
-
2774
+
2725
2775
  i18n-autosizeAllColumns="kendo.grid.autosizeAllColumns|The text shown in the column menu for the autosize all columns item"
2726
2776
  autosizeAllColumns="Autosize All Columns"
2727
-
2777
+
2728
2778
  i18n-autosizeThisColumn="kendo.grid.autosizeThisColumn|The text shown in the column menu for the autosize this column item"
2729
2779
  autosizeThisColumn="Autosize This Column"
2730
-
2780
+
2731
2781
  i18n-sortedDefault="kendo.grid.sortedDefault|The status announcement when a column is no longer sorted"
2732
2782
  sortedDefault="Not Sorted"
2733
-
2783
+
2734
2784
  i18n-sortedAscending="kendo.grid.sortedAscending|The title of the Group Chip indicating the ascending sorting order of the groups"
2735
2785
  sortedAscending="Sorted Ascending"
2736
-
2786
+
2737
2787
  i18n-sortedDescending="kendo.grid.sortedDescending|The title of the Group Chip indicating the descending sorting order of the groups"
2738
2788
  sortedDescending="Sorted Descending"
2739
-
2789
+
2740
2790
  i18n-columnsApply="kendo.grid.columnsApply|The text shown in the column menu or column chooser for the columns apply button"
2741
2791
  columnsApply="Apply"
2742
-
2792
+
2743
2793
  i18n-columnsReset="kendo.grid.columnsReset|The text shown in the column menu or column chooser for the columns reset button"
2744
2794
  columnsReset="Reset"
2745
-
2795
+
2746
2796
  i18n-detailExpand="kendo.grid.detailExpand|The title of the expand icon of detail rows. Applies also to the expand button text in stacked mode."
2747
2797
  detailExpand="Expand Details"
2748
-
2798
+
2749
2799
  i18n-detailCollapse="kendo.grid.detailCollapse|The title of the collapse icon of detail rows. Applies also to the collapse button text in stacked mode."
2750
2800
  detailCollapse="Collapse Details"
2751
-
2801
+
2752
2802
  i18n-filterDateToday="kendo.grid.filterDateToday|The text of the Today button of the Date filter."
2753
2803
  filterDateToday="TODAY"
2754
-
2804
+
2755
2805
  i18n-filterDateToggle="kendo.grid.filterDateToggle|The title of the Toggle button of the Date filter."
2756
2806
  filterDateToggle="Toggle Calendar"
2757
-
2807
+
2758
2808
  i18n-filterNumericDecrement="kendo.grid.filterNumericDecrement|The title of the Decrement button of the Numeric filter."
2759
2809
  filterNumericDecrement="Decrement"
2760
-
2810
+
2761
2811
  i18n-filterNumericIncrement="kendo.grid.filterNumericIncrement|The title of the Increment button of the Numeric filter."
2762
2812
  filterNumericIncrement="Increment"
2763
-
2813
+
2764
2814
  i18n-selectionCheckboxLabel="kendo.grid.selectionCheckboxLabel|The labels of the checkbox column checkboxes."
2765
2815
  selectionCheckboxLabel="Select Row"
2766
-
2816
+
2767
2817
  i18n-selectAllCheckboxLabel="kendo.grid.selectAllCheckboxLabel|The label of the checkbox column select all checkbox."
2768
2818
  selectAllCheckboxLabel="Select All Rows"
2769
-
2819
+
2770
2820
  i18n-sortToolbarToolText="kendo.grid.sortToolbarToolText|The button text of the Sort toolbar tool."
2771
2821
  sortToolbarToolText="Sort"
2772
-
2822
+
2773
2823
  i18n-groupCollapse="kendo.grid.groupCollapse|The text of the title and aria-label attributes applied to the collapse icon of group rows."
2774
2824
  groupCollapse="Collapse Group"
2775
-
2825
+
2776
2826
  i18n-groupExpand="kendo.grid.groupExpand|The text of the title and aria-label attributes applied to the expand icon of group rows."
2777
2827
  groupExpand="Expand Group"
2778
-
2828
+
2779
2829
  i18n-pagerSelectPage="kendo.grid.pagerSelectPage|The text of the title and aria-label attributes applied to the page chooser in the Grid Pager"
2780
2830
  pagerSelectPage="Select page"
2781
-
2831
+
2782
2832
  i18n-topToolbarLabel="kendo.grid.topToolbarLabel|The label for the Grid top toolbar"
2783
2833
  topToolbarLabel="Top toolbar"
2784
-
2834
+
2785
2835
  i18n-bottomToolbarLabel="kendo.grid.bottomToolbarLabel|The label for the Grid bottom toolbar"
2786
2836
  bottomToolbarLabel="Bottom toolbar"
2787
-
2837
+
2788
2838
  i18n-editToolbarToolText="kendo.grid.editToolbarToolText|The text for the Grid Edit toolbar tool"
2789
2839
  editToolbarToolText="Edit"
2790
-
2840
+
2791
2841
  i18n-saveToolbarToolText="kendo.grid.saveToolbarToolText|The text for the Grid Save toolbar tool"
2792
2842
  saveToolbarToolText="Save"
2793
-
2843
+
2794
2844
  i18n-addToolbarToolText="kendo.grid.addToolbarToolText|The text for the Grid Add toolbar tool"
2795
2845
  addToolbarToolText="Add"
2796
-
2846
+
2797
2847
  i18n-cancelToolbarToolText="kendo.grid.cancelToolbarToolText|The text for the Grid Cancel toolbar tool"
2798
2848
  cancelToolbarToolText="Cancel"
2799
-
2849
+
2800
2850
  i18n-removeToolbarToolText="kendo.grid.removeToolbarToolText|The text for the Grid Remove toolbar tool"
2801
2851
  removeToolbarToolText="Delete"
2802
-
2852
+
2803
2853
  i18n-excelExportToolbarToolText="kendo.grid.excelExportToolbarToolText|The text for the Grid Excel export toolbar tool"
2804
2854
  excelExportToolbarToolText="Excel Export"
2805
-
2855
+
2806
2856
  i18n-pdfExportToolbarToolText="kendo.grid.pdfExportToolbarToolText|The text for the Grid PDF export toolbar tool"
2807
2857
  pdfExportToolbarToolText="PDF Export"
2808
-
2858
+
2809
2859
  i18n-groupPanelLabel="kendo.grid.groupPanelLabel|The label for the Grid group panel toolbar"
2810
2860
  groupPanelLabel="Group panel"
2811
-
2861
+
2812
2862
  i18n-dragRowHandleLabel="kendo.grid.dragRowHandleLabel|The label for the Grid drag row handle"
2813
2863
  dragRowHandleLabel="Drag row"
2814
-
2864
+
2815
2865
  i18n-columnMenuFilterTabTitle="kendo.grid.columnMenuFilterTabTitle|The title for the column menu Filter tab"
2816
2866
  columnMenuFilterTabTitle="Filter"
2817
-
2867
+
2818
2868
  i18n-columnMenuGeneralTabTitle="kendo.grid.columnMenuGeneralTabTitle|The title for the column menu General tab"
2819
2869
  columnMenuGeneralTabTitle="General"
2820
-
2870
+
2821
2871
  i18n-columnMenuColumnsTabTitle="kendo.grid.columnMenuColumnsTabTitle|The title for the column menu Columns tab"
2822
2872
  columnMenuColumnsTabTitle="Columns"
2823
-
2873
+
2824
2874
  i18n-groupChipMenuPrevious="kendo.grid.groupChipMenuPrevious|The text for the Group pane Chip Menu Move as previous item"
2825
2875
  groupChipMenuPrevious="Move as previous"
2826
-
2876
+
2827
2877
  i18n-groupChipMenuNext="kendo.grid.groupChipMenuNext|The text for the Group pane Chip Menu Move as next item"
2828
2878
  groupChipMenuNext="Move as next"
2829
-
2879
+
2830
2880
  i18n-groupToolbarToolText="kendo.grid.groupToolbarToolText|The button text of the Group toolbar tool"
2831
2881
  groupToolbarToolText="Group"
2832
-
2882
+
2833
2883
  i18n-formValidationErrorText="kendo.grid.formValidationErrorText|The default text of a form validation error when using external editing."
2834
2884
  formValidationErrorText="{{ 'The {fieldName} field has {errorName} validation error' }}"
2835
-
2885
+
2836
2886
  i18n-removeConfirmationDialogTitle="kendo.grid.removeConfirmationDialogTitle|The title of the built-in remove item confirmation Dialog"
2837
2887
  removeConfirmationDialogTitle="Please confirm"
2838
-
2888
+
2839
2889
  i18n-removeConfirmationDialogContent="kendo.grid.removeConfirmationDialogContent|The content of the built-in remove item confirmation Dialog"
2840
2890
  removeConfirmationDialogContent="Are you sure you want to delete this item?"
2841
-
2891
+
2842
2892
  i18n-removeConfirmationDialogConfirmText="kendo.grid.removeConfirmationDialogConfirmText|The text of the built-in remove item confirmation Dialog confirm action button"
2843
2893
  removeConfirmationDialogConfirmText="Yes"
2844
-
2894
+
2845
2895
  i18n-removeConfirmationDialogRejectText="kendo.grid.removeConfirmationDialogRejectText|The text of the built-in remove item confirmation Dialog reject action button"
2846
2896
  removeConfirmationDialogRejectText="No"
2847
-
2897
+
2848
2898
  i18n-externalEditingTitle="kendo.grid.externalEditingTitle|The title of the built-in external editing form container when editing an item"
2849
2899
  externalEditingTitle="Edit"
2850
-
2900
+
2851
2901
  i18n-externalEditingAddTitle="kendo.grid.externalEditingAddTitle|The title of the built-in external editing form container when adding a new item"
2852
2902
  externalEditingAddTitle="Add"
2853
-
2903
+
2854
2904
  i18n-externalEditingSaveText="kendo.grid.externalEditingSaveText|The text of the external editing form Save button"
2855
2905
  externalEditingSaveText="Save"
2856
-
2906
+
2857
2907
  i18n-externalEditingCancelText="kendo.grid.externalEditingCancelText|The text of the external editing form Cancel button"
2858
2908
  externalEditingCancelText="Cancel"
2859
-
2909
+
2860
2910
  i18n-aiAssistantToolbarToolText="kendo.grid.aiAssistantToolbarToolText|The text of the AI Assistant toolbar tool"
2861
2911
  aiAssistantToolbarToolText="AI Assistant"
2862
-
2912
+
2863
2913
  i18n-aiAssistantWindowTitle="kendo.grid.aiAssistantWindowTitle|The text of the AI Assistant Window title"
2864
2914
  aiAssistantWindowTitle="AI Assistant"
2865
-
2915
+
2866
2916
  i18n-aiAssistantApplyButtonText="kendo.grid.aiAssistantApplyButtonText|The text of the AI Assistant Apply button"
2867
2917
  aiAssistantApplyButtonText="Apply"
2868
-
2918
+
2869
2919
  i18n-aiAssistantWindowCloseTitle="kendo.grid.aiAssistantWindowCloseTitle|The title of the AI Assistant Window close button"
2870
2920
  aiAssistantWindowCloseTitle="Close"
2871
-
2921
+
2872
2922
  i18n-aiAssistantWindowMaximizeTitle="kendo.grid.aiAssistantWindowMaximizeTitle|The title of the AI Assistant Window maximize button"
2873
2923
  aiAssistantWindowMaximizeTitle="Maximize"
2874
-
2924
+
2875
2925
  i18n-aiAssistantWindowMinimizeTitle="kendo.grid.aiAssistantWindowMinimizeTitle|The title of the AI Assistant Window minimize button"
2876
2926
  aiAssistantWindowMinimizeTitle="Minimize"
2877
-
2927
+
2878
2928
  i18n-aiAssistantWindowRestoreTitle="kendo.grid.aiAssistantWindowRestoreTitle|The title of the AI Assistant Window restore button"
2879
2929
  aiAssistantWindowRestoreTitle="Restore"
2880
-
2930
+
2881
2931
  i18n-aiAssistantOutputCardTitle="kendo.grid.aiAssistantOutputCardTitle|The title of the AI Assistant Prompt Output Card"
2882
2932
  aiAssistantOutputCardTitle="Generated with AI"
2883
-
2933
+
2884
2934
  i18n-aiAssistantOutputCardBodyContent="kendo.grid.aiAssistantOutputCardBodyContent|The success message dispayed in the AI Assistant Prompt Output Card's body"
2885
2935
  aiAssistantOutputCardBodyContent="Operation is successful. Data is:"
2886
-
2936
+
2887
2937
  i18n-aiAssistantSelectionNotEnabled="kendo.grid.aiAssistantSelectionNotEnabled|The message shown when AI selection requires the Grid selectable option"
2888
2938
  aiAssistantSelectionNotEnabled="Selection can be applied only when the Grid selectable option is enabled."
2889
-
2939
+
2890
2940
  i18n-aiAssistantSelectionRowModeRequired="kendo.grid.aiAssistantSelectionRowModeRequired|The message shown when AI selection requires row selection mode"
2891
2941
  aiAssistantSelectionRowModeRequired="Selection can be applied only when row selection mode is enabled."
2892
-
2942
+
2893
2943
  i18n-aiAssistantSelectionCellModeRequired="kendo.grid.aiAssistantSelectionCellModeRequired|The message shown when AI selection requires cell selection mode"
2894
2944
  aiAssistantSelectionCellModeRequired="Selection can be applied only when cell selection mode is enabled."
2895
-
2945
+
2896
2946
  i18n-columnChooserSelectedColumnsCount="kendo.grid.columnChooserSelectedColumnsCount|The text displayed in the Column Chooser for the number of selected columns"
2897
2947
  columnChooserSelectedColumnsCount="{{ '{selectedColumnsCount} Selected items' }}"
2898
-
2948
+
2899
2949
  i18n-multiCheckboxFilterSearchPlaceholder="kendo.grid.multiCheckboxFilterSearchPlaceholder|The placeholder text for the multi-checkbox filter search input"
2900
2950
  multiCheckboxFilterSearchPlaceholder="Search..."
2901
-
2951
+
2902
2952
  i18n-multiCheckboxFilterSelectAllLabel="kendo.grid.multiCheckboxFilterSelectAllLabel|The label for the multi-checkbox filter select all option"
2903
2953
  multiCheckboxFilterSelectAllLabel="Select all"
2904
-
2954
+
2905
2955
  i18n-multiCheckboxFilterSelectedItemsCount="kendo.grid.multiCheckboxFilterSelectedItemsCount|The text for the multi-checkbox filter selected items count"
2906
2956
  multiCheckboxFilterSelectedItemsCount="{{ '{selectedItemsCount} selected items' }}"
2907
2957
  >
@@ -3314,7 +3364,7 @@ export class GridComponent {
3314
3364
  position="bottom">
3315
3365
  </kendo-grid-toolbar>
3316
3366
  }
3317
-
3367
+
3318
3368
  <ng-template #defaultHint>
3319
3369
  <kendo-icon-wrapper
3320
3370
  [name]="getHintSettings('hintIcon')"
@@ -3323,7 +3373,7 @@ export class GridComponent {
3323
3373
  </kendo-icon-wrapper>
3324
3374
  {{hintText}}
3325
3375
  </ng-template>
3326
-
3376
+
3327
3377
  <ng-template #defaultPager>
3328
3378
  <div class="k-pager-numbers-wrap">
3329
3379
  @if (normalizedPageableSettings.previousNext) {
@@ -3356,18 +3406,18 @@ export class GridComponent {
3356
3406
  </ng-template>
3357
3407
  <div #dialogContainer></div>
3358
3408
  <div #windowContainer></div>
3359
-
3409
+
3360
3410
  @if (isAdaptiveModeEnabled) {
3361
3411
  <kendo-grid-adaptive-renderer></kendo-grid-adaptive-renderer>
3362
3412
  }
3363
3413
  @if (isVirtual) {
3364
3414
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
3365
3415
  }
3366
-
3416
+
3367
3417
  @if (showLicenseWatermark) {
3368
3418
  <div kendoWatermarkOverlay [licenseMessage]="licenseMessage"></div>
3369
3419
  }
3370
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoGridLocalizedMessages]" }, { kind: "component", type: GridToolbarComponent, selector: "kendo-grid-toolbar", inputs: ["position", "size", "navigable"] }, { kind: "component", type: GroupPanelComponent, selector: "kendo-grid-group-panel", inputs: ["text", "navigable", "groups"], outputs: ["change"] }, { kind: "directive", type: TableDirective, selector: "[kendoGridResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "directive", type: GridTableDirective, selector: "[kendoGridTable]", inputs: ["size"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoGridColGroup]", inputs: ["columns", "groups", "detailTemplate", "sort"] }, { kind: "component", type: HeaderComponent, selector: "[kendoGridHeader]", inputs: ["totalColumnLevels", "columns", "groups", "detailTemplate", "scrollable", "filterable", "sort", "filter", "sortable", "groupable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns", "tabIndex", "size"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoGridResizableContainer]", inputs: ["lockedWidth", "kendoGridResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-grid-list", inputs: ["data", "groups", "total", "rowHeight", "detailRowHeight", "take", "skip", "columns", "detailTemplate", "noRecordsTemplate", "selectable", "groupable", "filterable", "rowClass", "rowSticky", "loading", "trackBy", "virtualColumns", "isVirtual", "cellLoadingTemplate", "loadingTemplate", "sort", "size"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode", "cursorStyle", "hintContext"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: GridMarqueeDirective, selector: "[kendoGridSelectionMarquee]" }, { kind: "component", type: FooterComponent, selector: "[kendoGridFooter]", inputs: ["columns", "groups", "detailTemplate", "scrollable", "lockedColumnsCount", "logicalRowIndex", "totalColumns", "totalColumnsCount"] }, { kind: "component", type: TableBodyComponent, selector: "[kendoGridTableBody]", inputs: ["columns", "allColumns", "groups", "detailTemplate", "noRecordsTemplate", "rowsToRender", "skip", "selectable", "filterable", "noRecordsText", "isLocked", "isLoading", "isVirtual", "cellLoadingTemplate", "skipGroupDecoration", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "trackBy", "rowSticky", "totalColumns", "rowClass", "rowHeight", "detailRowHeight"] }, { kind: "component", type: LoadingComponent, selector: "[kendoGridLoading]", inputs: ["loadingTemplate"] }, { kind: "component", type: StatusBarComponent, selector: "kendo-grid-status-bar", inputs: ["statusBarTemplate"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }, { kind: "component", type: i27.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i27.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i27.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["showPageText", "size"] }, { kind: "component", type: i27.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i27.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i27.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["showItemsText", "pageSizes", "size", "adaptiveMode"] }, { kind: "component", type: i27.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i27.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i27.PagerComponent, selector: "kendo-datapager, kendo-pager", inputs: ["externalTemplate", "total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size", "responsive", "adaptiveMode"], outputs: ["pageChange", "pageSizeChange", "pagerInputVisibilityChange", "pageTextVisibilityChange", "itemsTextVisibilityChange"], exportAs: ["kendoDataPager", "kendoPager"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: AdaptiveRendererComponent, selector: "kendo-grid-adaptive-renderer" }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], encapsulation: i0.ViewEncapsulation.None });
3420
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoGridLocalizedMessages]" }, { kind: "component", type: GridToolbarComponent, selector: "kendo-grid-toolbar", inputs: ["position", "size", "navigable"] }, { kind: "component", type: GroupPanelComponent, selector: "kendo-grid-group-panel", inputs: ["text", "navigable", "groups"], outputs: ["change"] }, { kind: "directive", type: TableDirective, selector: "[kendoGridResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "directive", type: GridTableDirective, selector: "[kendoGridTable]", inputs: ["size"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoGridColGroup]", inputs: ["columns", "groups", "detailTemplate", "sort"] }, { kind: "component", type: HeaderComponent, selector: "[kendoGridHeader]", inputs: ["totalColumnLevels", "columns", "groups", "detailTemplate", "scrollable", "filterable", "sort", "filter", "sortable", "groupable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns", "tabIndex", "size"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoGridResizableContainer]", inputs: ["lockedWidth", "kendoGridResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-grid-list", inputs: ["data", "groups", "total", "rowHeight", "detailRowHeight", "take", "skip", "columns", "detailTemplate", "noRecordsTemplate", "selectable", "groupable", "filterable", "rowClass", "rowSticky", "loading", "trackBy", "virtualColumns", "isVirtual", "cellLoadingTemplate", "loadingTemplate", "sort", "size"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode", "cursorStyle", "hintContext"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: GridMarqueeDirective, selector: "[kendoGridSelectionMarquee]" }, { kind: "component", type: FooterComponent, selector: "[kendoGridFooter]", inputs: ["columns", "groups", "detailTemplate", "scrollable", "lockedColumnsCount", "logicalRowIndex", "totalColumns", "totalColumnsCount"] }, { kind: "component", type: TableBodyComponent, selector: "[kendoGridTableBody]", inputs: ["columns", "allColumns", "groups", "detailTemplate", "noRecordsTemplate", "rowsToRender", "skip", "selectable", "filterable", "noRecordsText", "isLocked", "isLoading", "isVirtual", "cellLoadingTemplate", "skipGroupDecoration", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "trackBy", "rowSticky", "totalColumns", "rowClass", "rowHeight", "detailRowHeight"] }, { kind: "component", type: LoadingComponent, selector: "[kendoGridLoading]", inputs: ["loadingTemplate"] }, { kind: "component", type: StatusBarComponent, selector: "kendo-grid-status-bar", inputs: ["statusBarTemplate"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }, { kind: "component", type: i29.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i29.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i29.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["showPageText", "size"] }, { kind: "component", type: i29.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i29.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i29.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["showItemsText", "pageSizes", "size", "adaptiveMode"] }, { kind: "component", type: i29.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i29.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i29.PagerComponent, selector: "kendo-datapager, kendo-pager", inputs: ["externalTemplate", "total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size", "responsive", "adaptiveMode"], outputs: ["pageChange", "pageSizeChange", "pagerInputVisibilityChange", "pageTextVisibilityChange", "itemsTextVisibilityChange"], exportAs: ["kendoDataPager", "kendoPager"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: AdaptiveRendererComponent, selector: "kendo-grid-adaptive-renderer" }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], encapsulation: i0.ViewEncapsulation.None });
3371
3421
  }
3372
3422
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridComponent, decorators: [{
3373
3423
  type: Component,
@@ -3420,6 +3470,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
3420
3470
  SizingOptionsService,
3421
3471
  RowReorderService,
3422
3472
  ClipboardService,
3473
+ GridAIRequestResponseService,
3423
3474
  RowspanService,
3424
3475
  AdaptiveGridService,
3425
3476
  ColumnMenuService,
@@ -3431,394 +3482,394 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
3431
3482
  <ng-container kendoGridLocalizedMessages
3432
3483
  i18n-groupPanelEmpty="kendo.grid.groupPanelEmpty|The label visible in the Grid group panel when it is empty"
3433
3484
  groupPanelEmpty="Drag a column header and drop it here to group by that column"
3434
-
3485
+
3435
3486
  i18n-noRecords="kendo.grid.noRecords|The label visible in the Grid when there are no records"
3436
3487
  noRecords="No records available."
3437
-
3488
+
3438
3489
  i18n-pagerLabel="kendo.grid.pagerLabel|The label for the Grid pager"
3439
3490
  pagerLabel="{{ 'Page navigation, page {currentPage} of {totalPages}' }}"
3440
-
3491
+
3441
3492
  i18n-pagerFirstPage="kendo.grid.pagerFirstPage|The label for the first page button in Grid pager"
3442
3493
  pagerFirstPage="Go to the first page"
3443
-
3494
+
3444
3495
  i18n-pagerPreviousPage="kendo.grid.pagerPreviousPage|The label for the previous page button in Grid pager"
3445
3496
  pagerPreviousPage="Go to the previous page"
3446
-
3497
+
3447
3498
  i18n-pagerNextPage="kendo.grid.pagerNextPage|The label for the next page button in Grid pager"
3448
3499
  pagerNextPage="Go to the next page"
3449
-
3500
+
3450
3501
  i18n-pagerLastPage="kendo.grid.pagerLastPage|The label for the last page button in Grid pager"
3451
3502
  pagerLastPage="Go to the last page"
3452
-
3503
+
3453
3504
  i18n-pagerPage="kendo.grid.pagerPage|The label before the current page number in the Grid pager"
3454
3505
  pagerPage="Page"
3455
-
3506
+
3456
3507
  i18n-pagerOf="kendo.grid.pagerOf|The label before the total pages number in the Grid pager"
3457
3508
  pagerOf="of"
3458
-
3509
+
3459
3510
  i18n-pagerItems="kendo.grid.pagerItems|The label after the total pages number in the Grid pager"
3460
3511
  pagerItems="items"
3461
-
3512
+
3462
3513
  i18n-pagerPageNumberInputTitle="kendo.grid.pagerPageNumberInputTitle|The label for the pager input in the Grid pager"
3463
3514
  pagerPageNumberInputTitle="Page Number"
3464
-
3515
+
3465
3516
  i18n-pagerItemsPerPage="kendo.grid.pagerItemsPerPage|The label for the page size chooser in the Grid pager"
3466
3517
  pagerItemsPerPage="items per page"
3467
-
3518
+
3468
3519
  i18n-pagerInputLabel="kendo.grid.pagerInputLabel|The text of the aria-label attribute applied to the input element for entering the page number"
3469
3520
  pagerInputLabel="Type a page number"
3470
-
3521
+
3471
3522
  i18n-filter="kendo.grid.filter|The label of the filter cell or icon"
3472
3523
  filter="Filter"
3473
-
3524
+
3474
3525
  i18n-filterInputLabel="kendo.grid.filterInputLabel|The label of the filter row and menu inputs"
3475
3526
  filterInputLabel="{{ '{columnName} Filter' }}"
3476
-
3527
+
3477
3528
  i18n-filterMenuTitle="kendo.grid.filterMenuTitle|The title of the filter menu icon"
3478
3529
  filterMenuTitle="{{ '{columnName} Filter Menu' }}"
3479
-
3530
+
3480
3531
  i18n-filterMenuOperatorsDropDownLabel="kendo.grid.filterMenuOperatorsDropDownLabel|The label of the filter menu operators dropdown"
3481
3532
  filterMenuOperatorsDropDownLabel="{{ '{columnName} Filter Operators' }}"
3482
-
3533
+
3483
3534
  i18n-filterCellOperatorLabel="kendo.grid.filterCellOperatorLabel|The label of the filter cell operators dropdown"
3484
3535
  filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
3485
-
3536
+
3486
3537
  i18n-booleanFilterCellLabel="kendo.grid.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
3487
3538
  booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
3488
-
3539
+
3489
3540
  i18n-filterMenuLogicDropDownLabel="kendo.grid.filterMenuLogicDropDownLabel|The label of the filter menu logic dropdown"
3490
3541
  filterMenuLogicDropDownLabel="{{ '{columnName} Filter Logic' }}"
3491
-
3542
+
3492
3543
  i18n-filterEqOperator="kendo.grid.filterEqOperator|The text of the equal filter operator"
3493
3544
  filterEqOperator="Is equal to"
3494
-
3545
+
3495
3546
  i18n-filterNotEqOperator="kendo.grid.filterNotEqOperator|The text of the not equal filter operator"
3496
3547
  filterNotEqOperator="Is not equal to"
3497
-
3548
+
3498
3549
  i18n-filterIsNullOperator="kendo.grid.filterIsNullOperator|The text of the is null filter operator"
3499
3550
  filterIsNullOperator="Is null"
3500
-
3551
+
3501
3552
  i18n-filterIsNotNullOperator="kendo.grid.filterIsNotNullOperator|The text of the is not null filter operator"
3502
3553
  filterIsNotNullOperator="Is not null"
3503
-
3554
+
3504
3555
  i18n-filterIsEmptyOperator="kendo.grid.filterIsEmptyOperator|The text of the is empty filter operator"
3505
3556
  filterIsEmptyOperator="Is empty"
3506
-
3557
+
3507
3558
  i18n-filterIsNotEmptyOperator="kendo.grid.filterIsNotEmptyOperator|The text of the is not empty filter operator"
3508
3559
  filterIsNotEmptyOperator="Is not empty"
3509
-
3560
+
3510
3561
  i18n-filterStartsWithOperator="kendo.grid.filterStartsWithOperator|The text of the starts with filter operator"
3511
3562
  filterStartsWithOperator="Starts with"
3512
-
3563
+
3513
3564
  i18n-filterContainsOperator="kendo.grid.filterContainsOperator|The text of the contains filter operator"
3514
3565
  filterContainsOperator="Contains"
3515
-
3566
+
3516
3567
  i18n-filterNotContainsOperator="kendo.grid.filterNotContainsOperator|The text of the does not contain filter operator"
3517
3568
  filterNotContainsOperator="Does not contain"
3518
-
3569
+
3519
3570
  i18n-filterEndsWithOperator="kendo.grid.filterEndsWithOperator|The text of the ends with filter operator"
3520
3571
  filterEndsWithOperator="Ends with"
3521
-
3572
+
3522
3573
  i18n-filterGteOperator="kendo.grid.filterGteOperator|The text of the greater than or equal filter operator"
3523
3574
  filterGteOperator="Is greater than or equal to"
3524
-
3575
+
3525
3576
  i18n-filterGtOperator="kendo.grid.filterGtOperator|The text of the greater than filter operator"
3526
3577
  filterGtOperator="Is greater than"
3527
-
3578
+
3528
3579
  i18n-filterLteOperator="kendo.grid.filterLteOperator|The text of the less than or equal filter operator"
3529
3580
  filterLteOperator="Is less than or equal to"
3530
-
3581
+
3531
3582
  i18n-filterLtOperator="kendo.grid.filterLtOperator|The text of the less than filter operator"
3532
3583
  filterLtOperator="Is less than"
3533
-
3584
+
3534
3585
  i18n-filterIsTrue="kendo.grid.filterIsTrue|The text of the IsTrue boolean filter option"
3535
3586
  filterIsTrue="Is True"
3536
-
3587
+
3537
3588
  i18n-filterIsFalse="kendo.grid.filterIsFalse|The text of the IsFalse boolean filter option"
3538
3589
  filterIsFalse="Is False"
3539
-
3590
+
3540
3591
  i18n-filterBooleanAll="kendo.grid.filterBooleanAll|The text of the (All) boolean filter option"
3541
3592
  filterBooleanAll="(All)"
3542
-
3593
+
3543
3594
  i18n-filterAfterOrEqualOperator="kendo.grid.filterAfterOrEqualOperator|The text of the after or equal date filter operator"
3544
3595
  filterAfterOrEqualOperator="Is after or equal to"
3545
-
3596
+
3546
3597
  i18n-filterAfterOperator="kendo.grid.filterAfterOperator|The text of the after date filter operator"
3547
3598
  filterAfterOperator="Is after"
3548
-
3599
+
3549
3600
  i18n-filterBeforeOperator="kendo.grid.filterBeforeOperator|The text of the before date filter operator"
3550
3601
  filterBeforeOperator="Is before"
3551
-
3602
+
3552
3603
  i18n-filterBeforeOrEqualOperator="kendo.grid.filterBeforeOrEqualOperator|The text of the before or equal date filter operator"
3553
3604
  filterBeforeOrEqualOperator="Is before or equal to"
3554
-
3605
+
3555
3606
  i18n-filterFilterButton="kendo.grid.filterFilterButton|The text of the filter button"
3556
3607
  filterFilterButton="Filter"
3557
-
3608
+
3558
3609
  i18n-filterClearButton="kendo.grid.filterClearButton|The text of the clear filter button"
3559
3610
  filterClearButton="Clear"
3560
-
3611
+
3561
3612
  i18n-sortClearButton="kendo.grid.sortClearButton|The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool"
3562
3613
  sortClearButton="Clear sorting"
3563
-
3614
+
3564
3615
  i18n-adaptiveCloseButtonTitle="kendo.grid.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
3565
3616
  adaptiveCloseButtonTitle="Close"
3566
-
3617
+
3567
3618
  i18n-adaptiveBackButtonTitle="kendo.grid.adaptiveBackButtonTitle|The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
3568
3619
  adaptiveBackButtonTitle="Back"
3569
-
3620
+
3570
3621
  i18n-filterClearAllButton="kendo.grid.filterClearAllButton|The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool"
3571
3622
  filterClearAllButton="Clear all filters"
3572
-
3623
+
3573
3624
  i18n-groupClearButton="kendo.grid.groupClearButton|The text of the clear grouping button in the Group Toolbar Tool and adaptive Group Toolbar Tool"
3574
3625
  groupClearButton="Clear grouping"
3575
-
3626
+
3576
3627
  i18n-sortDoneButton="kendo.grid.sortDoneButton|The text of the done sort button"
3577
3628
  sortDoneButton="Done"
3578
-
3629
+
3579
3630
  i18n-groupDoneButton="kendo.grid.groupDoneButton|The text of the done group button in the adaptive Group Toolbar Tool"
3580
3631
  groupDoneButton="Done"
3581
-
3632
+
3582
3633
  i18n-filterAndLogic="kendo.grid.filterAndLogic|The text of the And filter logic"
3583
3634
  filterAndLogic="And"
3584
-
3635
+
3585
3636
  i18n-filterOrLogic="kendo.grid.filterOrLogic|The text of the Or filter logic"
3586
3637
  filterOrLogic="Or"
3587
-
3638
+
3588
3639
  i18n-filterToolbarToolText="kendo.grid.filterToolbarToolText|The button text of the Filter toolbar tool"
3589
3640
  filterToolbarToolText="Filter"
3590
-
3641
+
3591
3642
  i18n-loading="kendo.grid.loading|The loading text"
3592
3643
  loading="Loading"
3593
-
3644
+
3594
3645
  i18n-gridLabel="kendo.grid.gridLabel|The Grid aria-label"
3595
3646
  gridLabel="Data table"
3596
-
3647
+
3597
3648
  i18n-columnMenu="kendo.grid.columnMenu|The title of the column menu icon"
3598
3649
  columnMenu="{{ '{columnName} Column Menu' }}"
3599
-
3650
+
3600
3651
  i18n-columns="kendo.grid.columns|The text for the Grid Column Chooser and Column Chooser toolbar tool"
3601
3652
  columns="Columns"
3602
-
3653
+
3603
3654
  i18n-columnsSubtitle="kendo.grid.columnsSubtitle|The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool"
3604
3655
  columnsSubtitle="Selected fields are visible"
3605
-
3656
+
3606
3657
  i18n-adaptiveFilterTitle="kendo.grid.adaptiveFilterTitle|The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu"
3607
3658
  adaptiveFilterTitle="Filter by"
3608
-
3659
+
3609
3660
  i18n-adaptiveFilterOperatorsTitle="kendo.grid.adaptiveFilterOperatorsTitle|The title that is displayed in the Operators Action Sheet"
3610
3661
  adaptiveFilterOperatorsTitle="Operators"
3611
-
3662
+
3612
3663
  i18n-adaptiveSortTitle="kendo.grid.adaptiveSortTitle|The title that is displayed in the adaptive Sort Toolbar Tool"
3613
3664
  adaptiveSortTitle="Sort by"
3614
-
3665
+
3615
3666
  i18n-adaptiveGroupTitle="kendo.grid.adaptiveGroupTitle|The title that is displayed in the adaptive Group Toolbar Tool."
3616
3667
  adaptiveGroupTitle="Group by"
3617
-
3668
+
3618
3669
  i18n-lock="kendo.grid.lock|The text shown in the column menu for the lock item"
3619
3670
  lock="Lock"
3620
-
3671
+
3621
3672
  i18n-unlock="kendo.grid.unlock|The text shown in the column menu for the unlock item"
3622
3673
  unlock="Unlock"
3623
-
3674
+
3624
3675
  i18n-setColumnPosition="kendo.grid.setColumnPosition|The text shown in the column menu for the set column position item"
3625
3676
  setColumnPosition="Set Column Position"
3626
-
3677
+
3627
3678
  i18n-stick="kendo.grid.stick|The text shown in the column menu for the stick item"
3628
3679
  stick="Stick"
3629
-
3680
+
3630
3681
  i18n-unstick="kendo.grid.unstick|The text shown in the column menu for the unstick item"
3631
3682
  unstick="Unstick"
3632
-
3683
+
3633
3684
  i18n-sortable="kendo.grid.sortable|The label of the sort icon"
3634
3685
  sortable="Sortable"
3635
-
3686
+
3636
3687
  i18n-sortAscending="kendo.grid.sortAscending|The text shown in the column menu for the sort ascending item"
3637
3688
  sortAscending="Sort Ascending"
3638
-
3689
+
3639
3690
  i18n-sortDescending="kendo.grid.sortDescending|The text shown in the column menu for the sort descending item"
3640
3691
  sortDescending="Sort Descending"
3641
-
3692
+
3642
3693
  i18n-autosizeAllColumns="kendo.grid.autosizeAllColumns|The text shown in the column menu for the autosize all columns item"
3643
3694
  autosizeAllColumns="Autosize All Columns"
3644
-
3695
+
3645
3696
  i18n-autosizeThisColumn="kendo.grid.autosizeThisColumn|The text shown in the column menu for the autosize this column item"
3646
3697
  autosizeThisColumn="Autosize This Column"
3647
-
3698
+
3648
3699
  i18n-sortedDefault="kendo.grid.sortedDefault|The status announcement when a column is no longer sorted"
3649
3700
  sortedDefault="Not Sorted"
3650
-
3701
+
3651
3702
  i18n-sortedAscending="kendo.grid.sortedAscending|The title of the Group Chip indicating the ascending sorting order of the groups"
3652
3703
  sortedAscending="Sorted Ascending"
3653
-
3704
+
3654
3705
  i18n-sortedDescending="kendo.grid.sortedDescending|The title of the Group Chip indicating the descending sorting order of the groups"
3655
3706
  sortedDescending="Sorted Descending"
3656
-
3707
+
3657
3708
  i18n-columnsApply="kendo.grid.columnsApply|The text shown in the column menu or column chooser for the columns apply button"
3658
3709
  columnsApply="Apply"
3659
-
3710
+
3660
3711
  i18n-columnsReset="kendo.grid.columnsReset|The text shown in the column menu or column chooser for the columns reset button"
3661
3712
  columnsReset="Reset"
3662
-
3713
+
3663
3714
  i18n-detailExpand="kendo.grid.detailExpand|The title of the expand icon of detail rows. Applies also to the expand button text in stacked mode."
3664
3715
  detailExpand="Expand Details"
3665
-
3716
+
3666
3717
  i18n-detailCollapse="kendo.grid.detailCollapse|The title of the collapse icon of detail rows. Applies also to the collapse button text in stacked mode."
3667
3718
  detailCollapse="Collapse Details"
3668
-
3719
+
3669
3720
  i18n-filterDateToday="kendo.grid.filterDateToday|The text of the Today button of the Date filter."
3670
3721
  filterDateToday="TODAY"
3671
-
3722
+
3672
3723
  i18n-filterDateToggle="kendo.grid.filterDateToggle|The title of the Toggle button of the Date filter."
3673
3724
  filterDateToggle="Toggle Calendar"
3674
-
3725
+
3675
3726
  i18n-filterNumericDecrement="kendo.grid.filterNumericDecrement|The title of the Decrement button of the Numeric filter."
3676
3727
  filterNumericDecrement="Decrement"
3677
-
3728
+
3678
3729
  i18n-filterNumericIncrement="kendo.grid.filterNumericIncrement|The title of the Increment button of the Numeric filter."
3679
3730
  filterNumericIncrement="Increment"
3680
-
3731
+
3681
3732
  i18n-selectionCheckboxLabel="kendo.grid.selectionCheckboxLabel|The labels of the checkbox column checkboxes."
3682
3733
  selectionCheckboxLabel="Select Row"
3683
-
3734
+
3684
3735
  i18n-selectAllCheckboxLabel="kendo.grid.selectAllCheckboxLabel|The label of the checkbox column select all checkbox."
3685
3736
  selectAllCheckboxLabel="Select All Rows"
3686
-
3737
+
3687
3738
  i18n-sortToolbarToolText="kendo.grid.sortToolbarToolText|The button text of the Sort toolbar tool."
3688
3739
  sortToolbarToolText="Sort"
3689
-
3740
+
3690
3741
  i18n-groupCollapse="kendo.grid.groupCollapse|The text of the title and aria-label attributes applied to the collapse icon of group rows."
3691
3742
  groupCollapse="Collapse Group"
3692
-
3743
+
3693
3744
  i18n-groupExpand="kendo.grid.groupExpand|The text of the title and aria-label attributes applied to the expand icon of group rows."
3694
3745
  groupExpand="Expand Group"
3695
-
3746
+
3696
3747
  i18n-pagerSelectPage="kendo.grid.pagerSelectPage|The text of the title and aria-label attributes applied to the page chooser in the Grid Pager"
3697
3748
  pagerSelectPage="Select page"
3698
-
3749
+
3699
3750
  i18n-topToolbarLabel="kendo.grid.topToolbarLabel|The label for the Grid top toolbar"
3700
3751
  topToolbarLabel="Top toolbar"
3701
-
3752
+
3702
3753
  i18n-bottomToolbarLabel="kendo.grid.bottomToolbarLabel|The label for the Grid bottom toolbar"
3703
3754
  bottomToolbarLabel="Bottom toolbar"
3704
-
3755
+
3705
3756
  i18n-editToolbarToolText="kendo.grid.editToolbarToolText|The text for the Grid Edit toolbar tool"
3706
3757
  editToolbarToolText="Edit"
3707
-
3758
+
3708
3759
  i18n-saveToolbarToolText="kendo.grid.saveToolbarToolText|The text for the Grid Save toolbar tool"
3709
3760
  saveToolbarToolText="Save"
3710
-
3761
+
3711
3762
  i18n-addToolbarToolText="kendo.grid.addToolbarToolText|The text for the Grid Add toolbar tool"
3712
3763
  addToolbarToolText="Add"
3713
-
3764
+
3714
3765
  i18n-cancelToolbarToolText="kendo.grid.cancelToolbarToolText|The text for the Grid Cancel toolbar tool"
3715
3766
  cancelToolbarToolText="Cancel"
3716
-
3767
+
3717
3768
  i18n-removeToolbarToolText="kendo.grid.removeToolbarToolText|The text for the Grid Remove toolbar tool"
3718
3769
  removeToolbarToolText="Delete"
3719
-
3770
+
3720
3771
  i18n-excelExportToolbarToolText="kendo.grid.excelExportToolbarToolText|The text for the Grid Excel export toolbar tool"
3721
3772
  excelExportToolbarToolText="Excel Export"
3722
-
3773
+
3723
3774
  i18n-pdfExportToolbarToolText="kendo.grid.pdfExportToolbarToolText|The text for the Grid PDF export toolbar tool"
3724
3775
  pdfExportToolbarToolText="PDF Export"
3725
-
3776
+
3726
3777
  i18n-groupPanelLabel="kendo.grid.groupPanelLabel|The label for the Grid group panel toolbar"
3727
3778
  groupPanelLabel="Group panel"
3728
-
3779
+
3729
3780
  i18n-dragRowHandleLabel="kendo.grid.dragRowHandleLabel|The label for the Grid drag row handle"
3730
3781
  dragRowHandleLabel="Drag row"
3731
-
3782
+
3732
3783
  i18n-columnMenuFilterTabTitle="kendo.grid.columnMenuFilterTabTitle|The title for the column menu Filter tab"
3733
3784
  columnMenuFilterTabTitle="Filter"
3734
-
3785
+
3735
3786
  i18n-columnMenuGeneralTabTitle="kendo.grid.columnMenuGeneralTabTitle|The title for the column menu General tab"
3736
3787
  columnMenuGeneralTabTitle="General"
3737
-
3788
+
3738
3789
  i18n-columnMenuColumnsTabTitle="kendo.grid.columnMenuColumnsTabTitle|The title for the column menu Columns tab"
3739
3790
  columnMenuColumnsTabTitle="Columns"
3740
-
3791
+
3741
3792
  i18n-groupChipMenuPrevious="kendo.grid.groupChipMenuPrevious|The text for the Group pane Chip Menu Move as previous item"
3742
3793
  groupChipMenuPrevious="Move as previous"
3743
-
3794
+
3744
3795
  i18n-groupChipMenuNext="kendo.grid.groupChipMenuNext|The text for the Group pane Chip Menu Move as next item"
3745
3796
  groupChipMenuNext="Move as next"
3746
-
3797
+
3747
3798
  i18n-groupToolbarToolText="kendo.grid.groupToolbarToolText|The button text of the Group toolbar tool"
3748
3799
  groupToolbarToolText="Group"
3749
-
3800
+
3750
3801
  i18n-formValidationErrorText="kendo.grid.formValidationErrorText|The default text of a form validation error when using external editing."
3751
3802
  formValidationErrorText="{{ 'The {fieldName} field has {errorName} validation error' }}"
3752
-
3803
+
3753
3804
  i18n-removeConfirmationDialogTitle="kendo.grid.removeConfirmationDialogTitle|The title of the built-in remove item confirmation Dialog"
3754
3805
  removeConfirmationDialogTitle="Please confirm"
3755
-
3806
+
3756
3807
  i18n-removeConfirmationDialogContent="kendo.grid.removeConfirmationDialogContent|The content of the built-in remove item confirmation Dialog"
3757
3808
  removeConfirmationDialogContent="Are you sure you want to delete this item?"
3758
-
3809
+
3759
3810
  i18n-removeConfirmationDialogConfirmText="kendo.grid.removeConfirmationDialogConfirmText|The text of the built-in remove item confirmation Dialog confirm action button"
3760
3811
  removeConfirmationDialogConfirmText="Yes"
3761
-
3812
+
3762
3813
  i18n-removeConfirmationDialogRejectText="kendo.grid.removeConfirmationDialogRejectText|The text of the built-in remove item confirmation Dialog reject action button"
3763
3814
  removeConfirmationDialogRejectText="No"
3764
-
3815
+
3765
3816
  i18n-externalEditingTitle="kendo.grid.externalEditingTitle|The title of the built-in external editing form container when editing an item"
3766
3817
  externalEditingTitle="Edit"
3767
-
3818
+
3768
3819
  i18n-externalEditingAddTitle="kendo.grid.externalEditingAddTitle|The title of the built-in external editing form container when adding a new item"
3769
3820
  externalEditingAddTitle="Add"
3770
-
3821
+
3771
3822
  i18n-externalEditingSaveText="kendo.grid.externalEditingSaveText|The text of the external editing form Save button"
3772
3823
  externalEditingSaveText="Save"
3773
-
3824
+
3774
3825
  i18n-externalEditingCancelText="kendo.grid.externalEditingCancelText|The text of the external editing form Cancel button"
3775
3826
  externalEditingCancelText="Cancel"
3776
-
3827
+
3777
3828
  i18n-aiAssistantToolbarToolText="kendo.grid.aiAssistantToolbarToolText|The text of the AI Assistant toolbar tool"
3778
3829
  aiAssistantToolbarToolText="AI Assistant"
3779
-
3830
+
3780
3831
  i18n-aiAssistantWindowTitle="kendo.grid.aiAssistantWindowTitle|The text of the AI Assistant Window title"
3781
3832
  aiAssistantWindowTitle="AI Assistant"
3782
-
3833
+
3783
3834
  i18n-aiAssistantApplyButtonText="kendo.grid.aiAssistantApplyButtonText|The text of the AI Assistant Apply button"
3784
3835
  aiAssistantApplyButtonText="Apply"
3785
-
3836
+
3786
3837
  i18n-aiAssistantWindowCloseTitle="kendo.grid.aiAssistantWindowCloseTitle|The title of the AI Assistant Window close button"
3787
3838
  aiAssistantWindowCloseTitle="Close"
3788
-
3839
+
3789
3840
  i18n-aiAssistantWindowMaximizeTitle="kendo.grid.aiAssistantWindowMaximizeTitle|The title of the AI Assistant Window maximize button"
3790
3841
  aiAssistantWindowMaximizeTitle="Maximize"
3791
-
3842
+
3792
3843
  i18n-aiAssistantWindowMinimizeTitle="kendo.grid.aiAssistantWindowMinimizeTitle|The title of the AI Assistant Window minimize button"
3793
3844
  aiAssistantWindowMinimizeTitle="Minimize"
3794
-
3845
+
3795
3846
  i18n-aiAssistantWindowRestoreTitle="kendo.grid.aiAssistantWindowRestoreTitle|The title of the AI Assistant Window restore button"
3796
3847
  aiAssistantWindowRestoreTitle="Restore"
3797
-
3848
+
3798
3849
  i18n-aiAssistantOutputCardTitle="kendo.grid.aiAssistantOutputCardTitle|The title of the AI Assistant Prompt Output Card"
3799
3850
  aiAssistantOutputCardTitle="Generated with AI"
3800
-
3851
+
3801
3852
  i18n-aiAssistantOutputCardBodyContent="kendo.grid.aiAssistantOutputCardBodyContent|The success message dispayed in the AI Assistant Prompt Output Card's body"
3802
3853
  aiAssistantOutputCardBodyContent="Operation is successful. Data is:"
3803
-
3854
+
3804
3855
  i18n-aiAssistantSelectionNotEnabled="kendo.grid.aiAssistantSelectionNotEnabled|The message shown when AI selection requires the Grid selectable option"
3805
3856
  aiAssistantSelectionNotEnabled="Selection can be applied only when the Grid selectable option is enabled."
3806
-
3857
+
3807
3858
  i18n-aiAssistantSelectionRowModeRequired="kendo.grid.aiAssistantSelectionRowModeRequired|The message shown when AI selection requires row selection mode"
3808
3859
  aiAssistantSelectionRowModeRequired="Selection can be applied only when row selection mode is enabled."
3809
-
3860
+
3810
3861
  i18n-aiAssistantSelectionCellModeRequired="kendo.grid.aiAssistantSelectionCellModeRequired|The message shown when AI selection requires cell selection mode"
3811
3862
  aiAssistantSelectionCellModeRequired="Selection can be applied only when cell selection mode is enabled."
3812
-
3863
+
3813
3864
  i18n-columnChooserSelectedColumnsCount="kendo.grid.columnChooserSelectedColumnsCount|The text displayed in the Column Chooser for the number of selected columns"
3814
3865
  columnChooserSelectedColumnsCount="{{ '{selectedColumnsCount} Selected items' }}"
3815
-
3866
+
3816
3867
  i18n-multiCheckboxFilterSearchPlaceholder="kendo.grid.multiCheckboxFilterSearchPlaceholder|The placeholder text for the multi-checkbox filter search input"
3817
3868
  multiCheckboxFilterSearchPlaceholder="Search..."
3818
-
3869
+
3819
3870
  i18n-multiCheckboxFilterSelectAllLabel="kendo.grid.multiCheckboxFilterSelectAllLabel|The label for the multi-checkbox filter select all option"
3820
3871
  multiCheckboxFilterSelectAllLabel="Select all"
3821
-
3872
+
3822
3873
  i18n-multiCheckboxFilterSelectedItemsCount="kendo.grid.multiCheckboxFilterSelectedItemsCount|The text for the multi-checkbox filter selected items count"
3823
3874
  multiCheckboxFilterSelectedItemsCount="{{ '{selectedItemsCount} selected items' }}"
3824
3875
  >
@@ -4231,7 +4282,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
4231
4282
  position="bottom">
4232
4283
  </kendo-grid-toolbar>
4233
4284
  }
4234
-
4285
+
4235
4286
  <ng-template #defaultHint>
4236
4287
  <kendo-icon-wrapper
4237
4288
  [name]="getHintSettings('hintIcon')"
@@ -4240,7 +4291,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
4240
4291
  </kendo-icon-wrapper>
4241
4292
  {{hintText}}
4242
4293
  </ng-template>
4243
-
4294
+
4244
4295
  <ng-template #defaultPager>
4245
4296
  <div class="k-pager-numbers-wrap">
4246
4297
  @if (normalizedPageableSettings.previousNext) {
@@ -4273,14 +4324,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
4273
4324
  </ng-template>
4274
4325
  <div #dialogContainer></div>
4275
4326
  <div #windowContainer></div>
4276
-
4327
+
4277
4328
  @if (isAdaptiveModeEnabled) {
4278
4329
  <kendo-grid-adaptive-renderer></kendo-grid-adaptive-renderer>
4279
4330
  }
4280
4331
  @if (isVirtual) {
4281
4332
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
4282
4333
  }
4283
-
4334
+
4284
4335
  @if (showLicenseWatermark) {
4285
4336
  <div kendoWatermarkOverlay [licenseMessage]="licenseMessage"></div>
4286
4337
  }
@@ -4312,7 +4363,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
4312
4363
  ResizeSensorComponent
4313
4364
  ]
4314
4365
  }]
4315
- }], ctorParameters: () => [{ type: i1.BrowserSupportService }, { type: i2.SelectionService }, { type: i3.CellSelectionService }, { type: i0.ElementRef }, { type: i4.GroupInfoService }, { type: i5.GroupsService }, { type: i6.ChangeNotificationService }, { type: i7.DetailsService }, { type: i8.EditService }, { type: i9.FilterService }, { type: i10.PDFService }, { type: i11.ResponsiveService }, { type: i0.Renderer2 }, { type: i12.ExcelService }, { type: i0.NgZone }, { type: i13.ScrollSyncService }, { type: i14.DomEventsService }, { type: i15.ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: i16.ColumnReorderService }, { type: i17.ColumnInfoService }, { type: i18.NavigationService }, { type: i19.SortService }, { type: i20.ScrollRequestService }, { type: i21.LocalizationService }, { type: i22.ContextService }, { type: i23.SizingOptionsService }, { type: i24.AdaptiveGridService }, { type: i25.RowReorderService }, { type: i26.DataMappingService }], propDecorators: { data: [{
4366
+ }], ctorParameters: () => [{ type: i1.BrowserSupportService }, { type: i2.SelectionService }, { type: i3.CellSelectionService }, { type: i0.ElementRef }, { type: i4.GroupInfoService }, { type: i5.GroupsService }, { type: i6.ChangeNotificationService }, { type: i7.DetailsService }, { type: i8.EditService }, { type: i9.FilterService }, { type: i10.PDFService }, { type: i11.ResponsiveService }, { type: i0.Renderer2 }, { type: i12.ExcelService }, { type: i0.NgZone }, { type: i13.ScrollSyncService }, { type: i14.DomEventsService }, { type: i15.ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: i16.ColumnReorderService }, { type: i17.ColumnInfoService }, { type: i18.NavigationService }, { type: i19.SortService }, { type: i20.ScrollRequestService }, { type: i21.LocalizationService }, { type: i22.ContextService }, { type: i23.SizingOptionsService }, { type: i24.AdaptiveGridService }, { type: i25.RowReorderService }, { type: i26.DataMappingService }, { type: i27.GridAIRequestResponseService }, { type: i28.IdService }], propDecorators: { data: [{
4316
4367
  type: Input
4317
4368
  }], pageSize: [{
4318
4369
  type: Input