@progress/kendo-angular-grid 19.3.0-develop.23 → 19.3.0-develop.25

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.
Files changed (63) hide show
  1. package/columns/columns-container.d.ts +2 -0
  2. package/common/data-layout-mode.d.ts +19 -0
  3. package/common/stacked-layout-settings.d.ts +24 -0
  4. package/directives.d.ts +4 -3
  5. package/editing-directives/editing-directive-base.d.ts +3 -0
  6. package/esm2022/columns/column-base.mjs +4 -4
  7. package/esm2022/columns/column.component.mjs +1 -1
  8. package/esm2022/columns/columns-container.mjs +3 -0
  9. package/esm2022/common/column-info.service.mjs +1 -1
  10. package/esm2022/common/data-layout-mode.mjs +5 -0
  11. package/esm2022/common/stacked-layout-settings.mjs +5 -0
  12. package/esm2022/directives.mjs +3 -1
  13. package/esm2022/editing-directives/editing-directive-base.mjs +17 -2
  14. package/esm2022/editing-directives/in-cell-editing.directive.mjs +2 -1
  15. package/esm2022/filtering/filter-row.component.mjs +5 -2
  16. package/esm2022/grid.component.mjs +111 -33
  17. package/esm2022/grid.module.mjs +101 -100
  18. package/esm2022/grouping/group-header.component.mjs +39 -4
  19. package/esm2022/index.mjs +1 -0
  20. package/esm2022/localization/messages.mjs +2 -2
  21. package/esm2022/navigation/default-focusable-element.mjs +14 -2
  22. package/esm2022/navigation/focusable.directive.mjs +1 -1
  23. package/esm2022/navigation/navigation-cursor.mjs +7 -1
  24. package/esm2022/navigation/navigation-metadata.mjs +3 -1
  25. package/esm2022/navigation/navigation.service.mjs +136 -5
  26. package/esm2022/package-metadata.mjs +2 -2
  27. package/esm2022/pdf/export-element.mjs +14 -5
  28. package/esm2022/pdf/pdf.component.mjs +3 -1
  29. package/esm2022/rendering/cell.component.mjs +466 -188
  30. package/esm2022/rendering/common/col-group.component.mjs +20 -7
  31. package/esm2022/rendering/footer/footer.component.mjs +117 -54
  32. package/esm2022/rendering/header/header.component.mjs +5 -2
  33. package/esm2022/rendering/list.component.mjs +13 -8
  34. package/esm2022/rendering/table-body.component.mjs +384 -171
  35. package/esm2022/rendering/toolbar/tools/ai-assistant/ai-assistant.component.mjs +7 -3
  36. package/esm2022/rendering/toolbar/tools/select-all-command-tool.directive.mjs +93 -0
  37. package/esm2022/row-reordering/row-reorder.service.mjs +2 -2
  38. package/esm2022/row-reordering/utils.mjs +6 -4
  39. package/esm2022/selection/cell-selection.service.mjs +6 -3
  40. package/fesm2022/progress-kendo-angular-grid.mjs +1514 -566
  41. package/filtering/filter-row.component.d.ts +1 -0
  42. package/grid.component.d.ts +22 -1
  43. package/grid.module.d.ts +100 -99
  44. package/grouping/group-header.component.d.ts +1 -0
  45. package/index.d.ts +3 -0
  46. package/localization/messages.d.ts +2 -2
  47. package/navigation/default-focusable-element.d.ts +3 -1
  48. package/navigation/focus-group.d.ts +1 -1
  49. package/navigation/navigation-metadata.d.ts +2 -1
  50. package/navigation/navigation.service.d.ts +6 -0
  51. package/package.json +21 -21
  52. package/rendering/cell.component.d.ts +32 -17
  53. package/rendering/common/col-group.component.d.ts +5 -0
  54. package/rendering/footer/footer.component.d.ts +4 -1
  55. package/rendering/header/header.component.d.ts +1 -0
  56. package/rendering/list.component.d.ts +4 -1
  57. package/rendering/table-body.component.d.ts +2 -1
  58. package/rendering/toolbar/tools/ai-assistant/ai-assistant.component.d.ts +1 -0
  59. package/rendering/toolbar/tools/select-all-command-tool.directive.d.ts +36 -0
  60. package/row-reordering/row-reorder.service.d.ts +1 -1
  61. package/row-reordering/utils.d.ts +1 -1
  62. package/schematics/ngAdd/index.js +4 -4
  63. package/selection/cell-selection.service.d.ts +1 -0
@@ -28,6 +28,7 @@ export declare class FilterRowComponent {
28
28
  };
29
29
  filterLabel(column: ColumnComponent): string;
30
30
  getLogicalColIndex(columnIndex: number): number;
31
+ get isStacked(): boolean;
31
32
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterRowComponent, never>;
32
33
  static ɵcmp: i0.ɵɵComponentDeclaration<FilterRowComponent, "[kendoGridFilterRow]", never, { "columns": { "alias": "columns"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; }, {}, never, never, true, never>;
33
34
  }
@@ -89,6 +89,8 @@ 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
91
  import { AIAssistantToolbarDirective } from './rendering/toolbar/tools/ai-assistant/ai-tool.directive';
92
+ import { DataLayoutMode, DataLayoutModeSettings } from './common/data-layout-mode';
93
+ import { GridColSize } from './common/stacked-layout-settings';
92
94
  import * as i0 from "@angular/core";
93
95
  /**
94
96
  * Represents the Kendo UI for Angular Data Grid component.
@@ -453,6 +455,12 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
453
455
  */
454
456
  set isGroupExpanded(callback: (args: GroupRowArgs) => boolean);
455
457
  get isGroupExpanded(): (args: GroupRowArgs) => boolean;
458
+ /**
459
+ * Sets the Grid data layout display mode.
460
+ *
461
+ * @default 'columns'
462
+ */
463
+ dataLayoutMode: DataLayoutMode | DataLayoutModeSettings;
456
464
  /**
457
465
  * Fires when the Grid data is filtered through the UI and the filter descriptor changes.
458
466
  */
@@ -574,6 +582,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
574
582
  hostClass: boolean;
575
583
  get sizeSmallClass(): boolean;
576
584
  get sizeMediumClass(): boolean;
585
+ get stackedClass(): boolean;
577
586
  get lockedClasses(): boolean;
578
587
  get virtualClasses(): boolean;
579
588
  get noScrollbarClass(): boolean;
@@ -674,6 +683,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
674
683
  private _showPagerItemsText;
675
684
  get isVirtual(): boolean;
676
685
  get isScrollable(): boolean;
686
+ /**
687
+ * @hidden
688
+ */
689
+ get isStacked(): boolean;
677
690
  get visibleColumns(): QueryList<ColumnBase>;
678
691
  get lockedColumns(): QueryList<ColumnBase>;
679
692
  get nonLockedColumns(): QueryList<ColumnBase>;
@@ -970,6 +983,14 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
970
983
  private columnInstance;
971
984
  private verifySettings;
972
985
  private autoGenerateColumns;
986
+ /**
987
+ * @hidden
988
+ */
989
+ stackedColumns: {
990
+ columns: GridColSize[];
991
+ areDefault: boolean;
992
+ };
993
+ private generateStackedColumns;
973
994
  private attachStateChangesEmitter;
974
995
  private attachEditHandlers;
975
996
  private emitCRUDEvent;
@@ -992,5 +1013,5 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
992
1013
  private shouldResetSelection;
993
1014
  private notifyReorderContainers;
994
1015
  static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, 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>;
1016
+ 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; }; "dataLayoutMode": { "alias": "dataLayoutMode"; "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>;
996
1017
  }
package/grid.module.d.ts CHANGED
@@ -49,104 +49,105 @@ 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
50
  import * as i45 from "./rendering/toolbar/tools/ai-assistant/ai-tool.directive";
51
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";
52
+ import * as i47 from "./rendering/toolbar/tools/select-all-command-tool.directive";
53
+ import * as i48 from "./rendering/header/header.component";
54
+ import * as i49 from "./rendering/header/header-template.directive";
55
+ import * as i50 from "./column-resizing/column-handle.directive";
56
+ import * as i51 from "./selection/selectall-checkbox.directive";
57
+ import * as i52 from "./rendering/footer/footer.component";
58
+ import * as i53 from "@progress/kendo-angular-pager";
59
+ import * as i54 from "@progress/kendo-angular-toolbar";
60
+ import * as i55 from "./filtering/filter-row.component";
61
+ import * as i56 from "./filtering/cell/filter-cell.component";
62
+ import * as i57 from "./filtering/cell/filter-cell-template.directive";
63
+ import * as i58 from "./filtering/cell/string-filter-cell.component";
64
+ import * as i59 from "./filtering/cell/numeric-filter-cell.component";
65
+ import * as i60 from "./filtering/cell/autocomplete-filter-cell.component";
66
+ import * as i61 from "./filtering/cell/boolean-filter-cell.component";
67
+ import * as i62 from "./filtering/cell/filter-cell-host.directive";
68
+ import * as i63 from "./filtering/cell/filter-cell-wrapper.component";
69
+ import * as i64 from "./filtering/cell/date-filter-cell.component";
70
+ import * as i65 from "./filtering/cell/filter-cell-operators.component";
71
+ import * as i66 from "./filtering/operators/contains-filter-operator.component";
72
+ import * as i67 from "./filtering/operators/not-contains-filter-operator.component";
73
+ import * as i68 from "./filtering/operators/ends-with-filter-operator.component";
74
+ import * as i69 from "./filtering/operators/eq-filter-operator.component";
75
+ import * as i70 from "./filtering/operators/is-empty-filter-operator.component";
76
+ import * as i71 from "./filtering/operators/is-not-empty-filter-operator.component";
77
+ import * as i72 from "./filtering/operators/is-not-null-filter-operator.component";
78
+ import * as i73 from "./filtering/operators/isnull-filter-operator.component";
79
+ import * as i74 from "./filtering/operators/neq-filter-operator.component";
80
+ import * as i75 from "./filtering/operators/starts-with-filter-operator.component";
81
+ import * as i76 from "./filtering/operators/gt-filter-operator.component";
82
+ import * as i77 from "./filtering/operators/gte-filter-operator.component";
83
+ import * as i78 from "./filtering/operators/lt-filter-operator.component";
84
+ import * as i79 from "./filtering/operators/lte-filter-operator.component";
85
+ import * as i80 from "./filtering/operators/after-filter-operator.component";
86
+ import * as i81 from "./filtering/operators/after-eq-filter-operator.component";
87
+ import * as i82 from "./filtering/operators/before-eq-filter-operator.component";
88
+ import * as i83 from "./filtering/operators/before-filter-operator.component";
89
+ import * as i84 from "./filtering/filter-input.directive";
90
+ import * as i85 from "./filtering/menu/filter-menu.component";
91
+ import * as i86 from "./filtering/menu/filter-menu-container.component";
92
+ import * as i87 from "./filtering/menu/filter-menu-input-wrapper.component";
93
+ import * as i88 from "./filtering/menu/string-filter-menu-input.component";
94
+ import * as i89 from "./filtering/menu/string-filter-menu.component";
95
+ import * as i90 from "./filtering/menu/filter-menu-template.directive";
96
+ import * as i91 from "./filtering/menu/numeric-filter-menu.component";
97
+ import * as i92 from "./filtering/menu/numeric-filter-menu-input.component";
98
+ import * as i93 from "./filtering/menu/date-filter-menu-input.component";
99
+ import * as i94 from "./filtering/menu/date-filter-menu.component";
100
+ import * as i95 from "./filtering/menu/filter-menu-host.directive";
101
+ import * as i96 from "./filtering/menu/boolean-filter-menu.component";
102
+ import * as i97 from "./filtering/menu/filter-menu-dropdownlist.directive";
103
+ import * as i98 from "./filtering/menu/filter-radio-button.directive";
104
+ import * as i99 from "./column-menu/column-chooser-item-checked.directive";
105
+ import * as i100 from "./column-menu/column-list.component";
106
+ import * as i101 from "./column-menu/column-chooser.component";
107
+ import * as i102 from "./rendering/toolbar/tools/column-chooser-tool.directive";
108
+ import * as i103 from "./column-menu/column-menu-chooser.component";
109
+ import * as i104 from "./column-menu/column-menu-filter.component";
110
+ import * as i105 from "./column-menu/column-menu-item.component";
111
+ import * as i106 from "./column-menu/column-menu-item-content-template.directive";
112
+ import * as i107 from "./column-menu/column-menu-sort.component";
113
+ import * as i108 from "./column-menu/column-menu.component";
114
+ import * as i109 from "./column-menu/column-menu-lock.component";
115
+ import * as i110 from "./column-menu/column-menu-template.directive";
116
+ import * as i111 from "./column-menu/column-menu-container.component";
117
+ import * as i112 from "./column-menu/column-menu-item.directive";
118
+ import * as i113 from "./column-menu/column-menu-stick.component";
119
+ import * as i114 from "./column-menu/column-menu-position.component";
120
+ import * as i115 from "./column-menu/column-menu-autosize.component";
121
+ import * as i116 from "./column-menu/column-menu-autosize-all.component";
122
+ import * as i117 from "./grid.component";
123
+ import * as i118 from "./rendering/list.component";
124
+ import * as i119 from "./rendering/toolbar/toolbar.component";
125
+ import * as i120 from "./localization/localized-messages.directive";
126
+ import * as i121 from "./localization/custom-messages.component";
127
+ import * as i122 from "./databinding.directive";
128
+ import * as i123 from "./rendering/toolbar/toolbar-template.directive";
129
+ import * as i124 from "./selection/selection.directive";
130
+ import * as i125 from "./highlight/highlight.directive";
131
+ import * as i126 from "./editing-directives/template-editing.directive";
132
+ import * as i127 from "./editing-directives/reactive-editing.directive";
133
+ import * as i128 from "./editing-directives/in-cell-editing.directive";
134
+ import * as i129 from "./editing-directives/external-editing.directive";
135
+ import * as i130 from "./rendering/details-expand.directive";
136
+ import * as i131 from "./rendering/groups-expand.directive";
137
+ import * as i132 from "./grouping/group-scroll-binding.directive";
138
+ import * as i133 from "./selection/marquee.directive";
139
+ import * as i134 from "./rendering/common/spacer.component";
140
+ import * as i135 from "./rendering/toolbar/toolbar-focusable.directive";
141
+ import * as i136 from "./aggregates/status-bar.component";
142
+ import * as i137 from "./aggregates/status-bar-template.directive";
143
+ import * as i138 from "./common/clipboard.directive";
144
+ import * as i139 from "./editing/form/form.component";
145
+ import * as i140 from "./editing/form/dialog-form.component";
146
+ import * as i141 from "./editing/form/form-formfield.component";
147
+ import * as i142 from "./state-management/undo-redo.directive";
148
+ import * as i143 from "./column-resizing/table.directive";
149
+ import * as i144 from "./state-management/undo-command-tool";
150
+ import * as i145 from "./state-management/redo-command-tool";
150
151
  /**
151
152
  * Defines the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) for the Grid component.
152
153
  *
@@ -171,6 +172,6 @@ import * as i144 from "./state-management/redo-command-tool";
171
172
  */
172
173
  export declare class GridModule {
173
174
  static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
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]>;
175
+ 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.SelectAllToolbarToolComponent, typeof i48.HeaderComponent, typeof i49.HeaderTemplateDirective, typeof i50.ColumnHandleDirective, typeof i51.SelectAllCheckboxDirective, typeof i52.FooterComponent, typeof i53.CustomMessagesComponent, typeof i53.PagerFocusableDirective, typeof i53.PagerInfoComponent, typeof i53.PagerInputComponent, typeof i53.PagerNextButtonsComponent, typeof i53.PagerNumericButtonsComponent, typeof i53.PagerPageSizesComponent, typeof i53.PagerPrevButtonsComponent, typeof i53.PagerTemplateDirective, typeof i53.PagerComponent, typeof i53.PagerSpacerComponent, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i55.FilterRowComponent, typeof i56.FilterCellComponent, typeof i57.FilterCellTemplateDirective, typeof i58.StringFilterCellComponent, typeof i59.NumericFilterCellComponent, typeof i60.AutoCompleteFilterCellComponent, typeof i61.BooleanFilterCellComponent, typeof i62.FilterCellHostDirective, typeof i63.FilterCellWrapperComponent, typeof i64.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 i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i84.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 i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i84.FilterInputDirective, typeof i85.FilterMenuComponent, typeof i86.FilterMenuContainerComponent, typeof i87.FilterMenuInputWrapperComponent, typeof i88.StringFilterMenuInputComponent, typeof i89.StringFilterMenuComponent, typeof i90.FilterMenuTemplateDirective, typeof i91.NumericFilterMenuComponent, typeof i92.NumericFilterMenuInputComponent, typeof i93.DateFilterMenuInputComponent, typeof i94.DateFilterMenuComponent, typeof i95.FilterMenuHostDirective, typeof i96.BooleanFilterMenuComponent, typeof i97.FilterMenuDropDownListDirective, typeof i98.BooleanFilterRadioButtonDirective, typeof i99.ColumnMenuChooserItemCheckedDirective, typeof i100.ColumnListComponent, typeof i101.ColumnChooserComponent, typeof i102.ColumnChooserToolbarDirective, typeof i103.ColumnMenuChooserComponent, typeof i104.ColumnMenuFilterComponent, typeof i105.ColumnMenuItemComponent, typeof i106.ColumnMenuItemContentTemplateDirective, typeof i107.ColumnMenuSortComponent, typeof i108.ColumnMenuComponent, typeof i109.ColumnMenuLockComponent, typeof i110.ColumnMenuTemplateDirective, typeof i111.ColumnMenuContainerComponent, typeof i112.ColumnMenuItemDirective, typeof i113.ColumnMenuStickComponent, typeof i114.ColumnMenuPositionComponent, typeof i115.ColumnMenuAutoSizeColumnComponent, typeof i116.ColumnMenuAutoSizeAllColumnsComponent, typeof i117.GridComponent, typeof i118.ListComponent, typeof i119.ToolbarComponent, typeof i120.LocalizedMessagesDirective, typeof i121.CustomMessagesComponent, typeof i122.DataBindingDirective, typeof i123.ToolbarTemplateDirective, typeof i124.SelectionDirective, typeof i125.HighlightDirective, typeof i126.TemplateEditingDirective, typeof i127.ReactiveEditingDirective, typeof i128.InCellEditingDirective, typeof i129.ExternalEditingDirective, typeof i130.ExpandDetailsDirective, typeof i131.ExpandGroupDirective, typeof i132.GroupBindingDirective, typeof i133.GridMarqueeDirective, typeof i134.GridSpacerComponent, typeof i135.GridToolbarFocusableDirective, typeof i136.StatusBarComponent, typeof i137.StatusBarTemplateDirective, typeof i138.GridClipboardDirective, typeof i139.FormComponent, typeof i140.DialogFormComponent, typeof i141.FormFormFieldComponent, typeof i142.UndoRedoDirective, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i143.TableDirective, typeof i144.UndoCommandToolbarDirective, typeof i145.RedoCommandToolbarDirective], [typeof i117.GridComponent, typeof i123.ToolbarTemplateDirective, typeof i119.ToolbarComponent, typeof i134.GridSpacerComponent, typeof i137.StatusBarTemplateDirective, typeof i122.DataBindingDirective, typeof i124.SelectionDirective, typeof i125.HighlightDirective, typeof i121.CustomMessagesComponent, typeof i132.GroupBindingDirective, typeof i126.TemplateEditingDirective, typeof i127.ReactiveEditingDirective, typeof i128.InCellEditingDirective, typeof i129.ExternalEditingDirective, typeof i130.ExpandDetailsDirective, typeof i131.ExpandGroupDirective, typeof i135.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.SelectAllToolbarToolComponent, typeof i48.HeaderComponent, typeof i49.HeaderTemplateDirective, typeof i50.ColumnHandleDirective, typeof i51.SelectAllCheckboxDirective, typeof i55.FilterRowComponent, typeof i56.FilterCellComponent, typeof i57.FilterCellTemplateDirective, typeof i58.StringFilterCellComponent, typeof i59.NumericFilterCellComponent, typeof i60.AutoCompleteFilterCellComponent, typeof i61.BooleanFilterCellComponent, typeof i62.FilterCellHostDirective, typeof i63.FilterCellWrapperComponent, typeof i64.DateFilterCellComponent, typeof i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i85.FilterMenuComponent, typeof i86.FilterMenuContainerComponent, typeof i87.FilterMenuInputWrapperComponent, typeof i88.StringFilterMenuInputComponent, typeof i89.StringFilterMenuComponent, typeof i90.FilterMenuTemplateDirective, typeof i91.NumericFilterMenuComponent, typeof i92.NumericFilterMenuInputComponent, typeof i93.DateFilterMenuInputComponent, typeof i94.DateFilterMenuComponent, typeof i95.FilterMenuHostDirective, typeof i96.BooleanFilterMenuComponent, typeof i97.FilterMenuDropDownListDirective, typeof i98.BooleanFilterRadioButtonDirective, typeof i101.ColumnChooserComponent, typeof i102.ColumnChooserToolbarDirective, typeof i104.ColumnMenuFilterComponent, typeof i105.ColumnMenuItemComponent, typeof i106.ColumnMenuItemContentTemplateDirective, typeof i107.ColumnMenuSortComponent, typeof i109.ColumnMenuLockComponent, typeof i113.ColumnMenuStickComponent, typeof i114.ColumnMenuPositionComponent, typeof i103.ColumnMenuChooserComponent, typeof i110.ColumnMenuTemplateDirective, typeof i111.ColumnMenuContainerComponent, typeof i112.ColumnMenuItemDirective, typeof i108.ColumnMenuComponent, typeof i115.ColumnMenuAutoSizeColumnComponent, typeof i116.ColumnMenuAutoSizeAllColumnsComponent, typeof i138.GridClipboardDirective, typeof i142.UndoRedoDirective, typeof i144.UndoCommandToolbarDirective, typeof i145.RedoCommandToolbarDirective, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i53.CustomMessagesComponent, typeof i53.PagerFocusableDirective, typeof i53.PagerInfoComponent, typeof i53.PagerInputComponent, typeof i53.PagerNextButtonsComponent, typeof i53.PagerNumericButtonsComponent, typeof i53.PagerPageSizesComponent, typeof i53.PagerPrevButtonsComponent, typeof i53.PagerTemplateDirective, typeof i53.PagerComponent, typeof i53.PagerSpacerComponent]>;
175
176
  static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
176
177
  }
@@ -46,6 +46,7 @@ export declare class GroupHeaderComponent implements DoCheck {
46
46
  get groupButtonTitle(): any;
47
47
  get arrowIcon(): string;
48
48
  get arrowSVGIcon(): SVGIcon;
49
+ get isStacked(): boolean;
49
50
  static ɵfac: i0.ɵɵFactoryDeclaration<GroupHeaderComponent, never>;
50
51
  static ɵcmp: i0.ɵɵComponentDeclaration<GroupHeaderComponent, "[kendoGridGroupHeader]", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "item": { "alias": "item"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "hasDetails": { "alias": "hasDetails"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "hasGroupHeaderColumn": { "alias": "hasGroupHeaderColumn"; "required": false; }; "groupHeaderColumns": { "alias": "groupHeaderColumns"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; }, {}, never, never, true, never>;
51
52
  }
package/index.d.ts CHANGED
@@ -197,6 +197,8 @@ export { RedoCommandToolbarDirective } from './state-management/redo-command-too
197
197
  export { CellRowspanFn } from './columns/cell-rowspan';
198
198
  export { HighlightItem } from './highlight/highlight-item';
199
199
  export { HighlightDirective } from './highlight/highlight.directive';
200
+ export { DataLayoutMode, DataLayoutModeSettings } from './common/data-layout-mode';
201
+ export { StackedLayoutSettings, GridColSize } from './common/stacked-layout-settings';
200
202
  export { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
201
203
  export { EditCommandDirective } from './editing/edit-command.directive';
202
204
  export { CancelCommandDirective } from './editing/cancel-command.directive';
@@ -206,6 +208,7 @@ export { AddCommandDirective } from './editing/add-command.directive';
206
208
  export { AddCommandToolbarDirective } from './editing/add-command-tool.directive';
207
209
  export { ColumnChooserToolbarDirective } from './rendering/toolbar/tools/column-chooser-tool.directive';
208
210
  export { AIAssistantToolbarDirective } from './rendering/toolbar/tools/ai-assistant/ai-tool.directive';
211
+ export { SelectAllToolbarToolComponent } from './rendering/toolbar/tools/select-all-command-tool.directive';
209
212
  export { SaveCommandToolbarDirective } from './editing/save-command-tool.directive';
210
213
  export { EditCommandToolbarDirective } from './editing/edit-command-tool.directive';
211
214
  export { RemoveCommandToolbarDirective } from './editing/remove-command-tool.directive';
@@ -418,11 +418,11 @@ export declare class GridMessages extends ComponentMessages {
418
418
  */
419
419
  columnsReset: string;
420
420
  /**
421
- * Sets the title for the expand icon of detail rows.
421
+ * Sets the title for the expand icon of detail rows. Applies also to the expand button text in stacked mode.
422
422
  */
423
423
  detailExpand: string;
424
424
  /**
425
- * Sets the title for the collapse icon of detail rows.
425
+ * Sets the title for the collapse icon of detail rows. Applies also to the collapse button text in stacked mode.
426
426
  */
427
427
  detailCollapse: string;
428
428
  /**
@@ -4,16 +4,18 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ElementRef, Renderer2 } from '@angular/core';
6
6
  import { FocusableElement } from './focusable-element.interface';
7
+ import { ContextService } from '../common/provider.service';
7
8
  /**
8
9
  * @hidden
9
10
  */
10
11
  export declare class DefaultFocusableElement implements FocusableElement {
11
12
  private renderer;
13
+ private ctx;
12
14
  private get enabled();
13
15
  private get visible();
14
16
  private element;
15
17
  private focusable;
16
- constructor(host: ElementRef, renderer: Renderer2);
18
+ constructor(host: ElementRef, renderer: Renderer2, ctx: ContextService);
17
19
  isNavigable(): boolean;
18
20
  toggle(active: boolean): void;
19
21
  focus(): void;
@@ -13,7 +13,7 @@ export declare class FocusGroup implements OnDestroy {
13
13
  private root;
14
14
  private active;
15
15
  private children;
16
- private get focusableChildren();
16
+ get focusableChildren(): FocusableElement[];
17
17
  get isActive(): boolean;
18
18
  constructor(root: FocusRoot);
19
19
  ngOnDestroy(): void;
@@ -15,6 +15,7 @@ export declare class NavigationMetadata {
15
15
  gridElement: ElementRef;
16
16
  virtualColumns: boolean;
17
17
  columns: any;
18
+ isStacked: boolean;
18
19
  get maxLogicalRowIndex(): number;
19
- constructor(dataRows: number, headerRows: number, isVirtual: boolean, hasPager: boolean, hasDetailTemplate: boolean, gridElement: ElementRef, virtualColumns: boolean, columns: any);
20
+ constructor(dataRows: number, headerRows: number, isVirtual: boolean, hasPager: boolean, hasDetailTemplate: boolean, gridElement: ElementRef, virtualColumns: boolean, columns: any, isStacked: boolean);
20
21
  }
@@ -124,6 +124,12 @@ export declare class NavigationService implements OnDestroy {
124
124
  private handleMultipleArrowCellSelection;
125
125
  private handleMultipleArrowRowSelection;
126
126
  private calculateRowspanOffset;
127
+ private get isStackedMode();
128
+ private handleStackedKeydown;
129
+ private stackedFocusedCellIndex;
130
+ tableCellEntered: boolean;
131
+ stackedCellEntered: boolean;
132
+ private handleStackedTabNavigation;
127
133
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationService, [null, null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
128
134
  static ɵprov: i0.ɵɵInjectableDeclaration<NavigationService>;
129
135
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "19.3.0-develop.23",
3
+ "version": "19.3.0-develop.25",
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": 1754484419,
29
+ "publishDate": 1754497664,
30
30
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
31
31
  }
32
32
  },
@@ -39,29 +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.23",
43
- "@progress/kendo-angular-common": "19.3.0-develop.23",
44
- "@progress/kendo-angular-dateinputs": "19.3.0-develop.23",
45
- "@progress/kendo-angular-layout": "19.3.0-develop.23",
46
- "@progress/kendo-angular-navigation": "19.3.0-develop.23",
47
- "@progress/kendo-angular-dropdowns": "19.3.0-develop.23",
48
- "@progress/kendo-angular-excel-export": "19.3.0-develop.23",
49
- "@progress/kendo-angular-icons": "19.3.0-develop.23",
50
- "@progress/kendo-angular-inputs": "19.3.0-develop.23",
51
- "@progress/kendo-angular-conversational-ui": "19.3.0-develop.23",
52
- "@progress/kendo-angular-intl": "19.3.0-develop.23",
53
- "@progress/kendo-angular-l10n": "19.3.0-develop.23",
54
- "@progress/kendo-angular-label": "19.3.0-develop.23",
55
- "@progress/kendo-angular-pager": "19.3.0-develop.23",
56
- "@progress/kendo-angular-pdf-export": "19.3.0-develop.23",
57
- "@progress/kendo-angular-popup": "19.3.0-develop.23",
58
- "@progress/kendo-angular-toolbar": "19.3.0-develop.23",
59
- "@progress/kendo-angular-utils": "19.3.0-develop.23",
42
+ "@progress/kendo-angular-buttons": "19.3.0-develop.25",
43
+ "@progress/kendo-angular-common": "19.3.0-develop.25",
44
+ "@progress/kendo-angular-dateinputs": "19.3.0-develop.25",
45
+ "@progress/kendo-angular-layout": "19.3.0-develop.25",
46
+ "@progress/kendo-angular-navigation": "19.3.0-develop.25",
47
+ "@progress/kendo-angular-dropdowns": "19.3.0-develop.25",
48
+ "@progress/kendo-angular-excel-export": "19.3.0-develop.25",
49
+ "@progress/kendo-angular-icons": "19.3.0-develop.25",
50
+ "@progress/kendo-angular-inputs": "19.3.0-develop.25",
51
+ "@progress/kendo-angular-conversational-ui": "19.3.0-develop.25",
52
+ "@progress/kendo-angular-intl": "19.3.0-develop.25",
53
+ "@progress/kendo-angular-l10n": "19.3.0-develop.25",
54
+ "@progress/kendo-angular-label": "19.3.0-develop.25",
55
+ "@progress/kendo-angular-pager": "19.3.0-develop.25",
56
+ "@progress/kendo-angular-pdf-export": "19.3.0-develop.25",
57
+ "@progress/kendo-angular-popup": "19.3.0-develop.25",
58
+ "@progress/kendo-angular-toolbar": "19.3.0-develop.25",
59
+ "@progress/kendo-angular-utils": "19.3.0-develop.25",
60
60
  "rxjs": "^6.5.3 || ^7.0.0"
61
61
  },
62
62
  "dependencies": {
63
63
  "tslib": "^2.3.1",
64
- "@progress/kendo-angular-schematics": "19.3.0-develop.23",
64
+ "@progress/kendo-angular-schematics": "19.3.0-develop.25",
65
65
  "@progress/kendo-common": "^1.0.1",
66
66
  "@progress/kendo-file-saver": "^1.0.0"
67
67
  },