@progress/kendo-angular-grid 24.0.0-develop.7 → 24.0.0-develop.9

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.
@@ -13,7 +13,6 @@ import { DetailTemplateDirective } from './rendering/details/detail-template.dir
13
13
  import { ScrollMode } from './scrolling/scrollmode';
14
14
  import { SortSettings } from './columns/sort-settings';
15
15
  import { PagerSettings } from './common/pager-settings';
16
- import { ScrollbarService } from '@progress/kendo-angular-common';
17
16
  import { GridDataResult, DataCollection } from './data/data.collection';
18
17
  import { SelectionService } from './selection/selection.service';
19
18
  import { EditService } from './editing/edit.service';
@@ -80,6 +79,7 @@ import { LoadingTemplateDirective } from './rendering/loading-template.directive
80
79
  import { GridNavigableSettings } from './navigation/navigable-settings';
81
80
  import { GridSize } from './common/size-options';
82
81
  import { SizingOptionsService } from './layout/sizing-options.service';
82
+ import { ScrollbarService } from '@progress/kendo-angular-common';
83
83
  import { RowReorderEvent } from './row-reordering/types';
84
84
  import { DragTargetContainerDirective, DragTargetDataFn, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
85
85
  import { RowReorderService } from './row-reordering/row-reorder.service';
@@ -96,6 +96,9 @@ import { DataMappingService } from './data/data-mapping.service';
96
96
  import { DataLayoutMode, DataLayoutModeSettings } from './common/data-layout-mode';
97
97
  import { GridColSize } from './common/grid-col-size';
98
98
  import { SearchService } from './rendering/toolbar/tools/smartbox/search.service';
99
+ import { RowPinContainerComponent } from './row-pinning/row-pin-container.component';
100
+ import { RowPinService } from './row-pinning/row-pin.service';
101
+ import { GridRowPinLocation, RowPinEvent, RowPinnableFn } from './row-pinning/types';
99
102
  import * as i0 from "@angular/core";
100
103
  /**
101
104
  * Represents the Kendo UI for Angular Data Grid component.
@@ -129,6 +132,7 @@ import * as i0 from "@angular/core";
129
132
  * {@link GridSpacerComponent},
130
133
  * {@link PDFComponent},
131
134
  * {@link RowReorderColumnComponent},
135
+ * {@link RowPinColumnComponent},
132
136
  * {@link SpanColumnComponent},
133
137
  * {@link ToolBarComponent}.
134
138
  */
@@ -167,6 +171,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
167
171
  private aiRequestResponseService;
168
172
  private idService;
169
173
  private searchService;
174
+ private rowPinService;
170
175
  /**
171
176
  * Sets the data of the Grid. If you provide an array, the Grid gets the total count automatically.
172
177
  * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/grid/data-binding/basics)).
@@ -471,6 +476,41 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
471
476
  * @default 'columns'
472
477
  */
473
478
  dataLayoutMode: DataLayoutMode | DataLayoutModeSettings;
479
+ /**
480
+ * Enables the end user to pin rows through the UI. You can set it to `true` to allow pinning to both top and bottom, or specify the desired pinning location by providing a `GridRowPinLocation`.
481
+ * By default, the row pinning feature is disabled.
482
+ *
483
+ * @default false
484
+ */
485
+ set pinnable(value: boolean | GridRowPinLocation);
486
+ get pinnable(): boolean | GridRowPinLocation;
487
+ /**
488
+ * The array of data items pinned to the top of the Grid.
489
+ * Pinned rows remain visible while the body scrolls and are immune to filtering and pagination.
490
+ *
491
+ * Requires setting pinnable to `true` or a valid `GridRowPinLocation`.
492
+ */
493
+ pinnedTopRows: Array<any>;
494
+ /**
495
+ * @hidden
496
+ */
497
+ get pinnedTopRowsToRender(): Array<any>;
498
+ /**
499
+ * The array of data items pinned to the bottom of the Grid.
500
+ * Pinned rows remain visible while the body scrolls and are immune to filtering and pagination.
501
+ *
502
+ * Requires setting pinnable to `true` or a valid `GridRowPinLocation`.
503
+ */
504
+ pinnedBottomRows: Array<any>;
505
+ /**
506
+ * @hidden
507
+ */
508
+ get pinnedBottomRowsToRender(): Array<any>;
509
+ /**
510
+ * Sets a function to determine if a data row is pinnable.
511
+ */
512
+ set isRowPinnable(fn: RowPinnableFn);
513
+ get isRowPinnable(): RowPinnableFn;
474
514
  /**
475
515
  * Fires when the Grid data is filtered through the UI and the filter descriptor changes.
476
516
  */
@@ -495,6 +535,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
495
535
  * Fires when a row is reordered through the UI.
496
536
  */
497
537
  rowReorder: EventEmitter<RowReorderEvent>;
538
+ /**
539
+ * Fires when a row’s pinned state is updated through the UI.
540
+ */
541
+ rowPinChange: EventEmitter<RowPinEvent>;
498
542
  /**
499
543
  * Fires when the data state of the Grid is changed.
500
544
  */
@@ -630,6 +674,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
630
674
  columnMenuTemplates: QueryList<ColumnMenuTemplateDirective>;
631
675
  lockedHeader: any;
632
676
  header: any;
677
+ pinnedContainers: QueryList<RowPinContainerComponent>;
633
678
  footer: QueryList<any>;
634
679
  ariaRoot: ElementRef;
635
680
  dragTargetContainer: DragTargetContainerDirective;
@@ -667,6 +712,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
667
712
  * @hidden
668
713
  */
669
714
  get flatData(): Array<any>;
715
+ private adjustPinnedItemIndexes;
670
716
  private shouldGenerateColumns;
671
717
  private direction;
672
718
  private notifyTimeout;
@@ -678,6 +724,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
678
724
  private defaultSelection;
679
725
  private _rowSelected;
680
726
  private _isRowSelectable;
727
+ private _isRowPinnable;
681
728
  private _cellSelected;
682
729
  private _customDetailTemplate;
683
730
  private _cellLoadingTemplate;
@@ -688,6 +735,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
688
735
  private _customToolbarTemplate;
689
736
  private _detailTemplateChildren;
690
737
  private _rowReorderable;
738
+ private _pinnable;
691
739
  private leafViewportColumns;
692
740
  private viewportColumns;
693
741
  private _navigable;
@@ -702,6 +750,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
702
750
  * @hidden
703
751
  */
704
752
  get isStacked(): boolean;
753
+ /**
754
+ * @hidden
755
+ */
756
+ get isPinnable(): boolean;
705
757
  get visibleColumns(): QueryList<ColumnBase>;
706
758
  get lockedColumns(): QueryList<ColumnBase>;
707
759
  get nonLockedColumns(): QueryList<ColumnBase>;
@@ -759,9 +811,11 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
759
811
  private focusElementSubscription;
760
812
  private columnRangeChangeSubscription;
761
813
  private rowReorderSubscription;
814
+ private rowPinSubscription;
815
+ private pinnedContainersChangeSubscription;
762
816
  private rtl;
763
817
  private _rowSticky;
764
- constructor(supportService: ScrollbarService, selectionService: SelectionService, cellSelectionService: CellSelectionService, wrapper: ElementRef, groupInfoService: GroupInfoService, groupsService: GroupsService, changeNotification: ChangeNotificationService, detailsService: DetailsService, editService: EditService, filterService: FilterService, pdfService: PDFService, responsiveService: ResponsiveService, renderer: Renderer2, excelService: ExcelService, csvService: CSVService, ngZone: NgZone, scrollSyncService: ScrollSyncService, domEvents: DomEventsService, columnResizingService: ColumnResizingService, changeDetectorRef: ChangeDetectorRef, columnReorderService: ColumnReorderService, columnInfoService: ColumnInfoService, navigationService: NavigationService, sortService: SortService, scrollRequestService: ScrollRequestService, localization: LocalizationService, ctx: ContextService, sizingService: SizingOptionsService, adaptiveGridService: AdaptiveGridService, rowReorderService: RowReorderService, dataMappingService: DataMappingService, aiRequestResponseService: GridAIRequestResponseService, idService: IdService, searchService: SearchService);
818
+ constructor(supportService: ScrollbarService, selectionService: SelectionService, cellSelectionService: CellSelectionService, wrapper: ElementRef, groupInfoService: GroupInfoService, groupsService: GroupsService, changeNotification: ChangeNotificationService, detailsService: DetailsService, editService: EditService, filterService: FilterService, pdfService: PDFService, responsiveService: ResponsiveService, renderer: Renderer2, excelService: ExcelService, csvService: CSVService, ngZone: NgZone, scrollSyncService: ScrollSyncService, domEvents: DomEventsService, columnResizingService: ColumnResizingService, changeDetectorRef: ChangeDetectorRef, columnReorderService: ColumnReorderService, columnInfoService: ColumnInfoService, navigationService: NavigationService, sortService: SortService, scrollRequestService: ScrollRequestService, localization: LocalizationService, ctx: ContextService, sizingService: SizingOptionsService, adaptiveGridService: AdaptiveGridService, rowReorderService: RowReorderService, dataMappingService: DataMappingService, aiRequestResponseService: GridAIRequestResponseService, idService: IdService, searchService: SearchService, rowPinService: RowPinService);
765
819
  /**
766
820
  * Expands the master row at the specified data row index ([see example](https://www.telerik.com/kendo-angular-ui/components/grid/master-detail)).
767
821
  *
@@ -1091,5 +1145,5 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
1091
1145
  private shouldResetSelection;
1092
1146
  private notifyReorderContainers;
1093
1147
  static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
1094
- 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"; "csvExport": "csvExport"; "columnResize": "columnResize"; "columnReorder": "columnReorder"; "columnVisibilityChange": "columnVisibilityChange"; "columnLockedChange": "columnLockedChange"; "columnStickyChange": "columnStickyChange"; "scrollBottom": "scrollBottom"; "contentScroll": "contentScroll"; }, ["columns", "detailTemplateChildren", "cellLoadingTemplateChildren", "loadingTemplateChildren", "statusBarTemplateChildren", "noRecordsTemplateChildren", "pagerTemplateChildren", "toolbarTemplateChildren", "columnMenuTemplates"], ["kendo-toolbar"], true, never>;
1148
+ 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; }; "pinnable": { "alias": "pinnable"; "required": false; }; "pinnedTopRows": { "alias": "pinnedTopRows"; "required": false; }; "pinnedBottomRows": { "alias": "pinnedBottomRows"; "required": false; }; "isRowPinnable": { "alias": "isRowPinnable"; "required": false; }; }, { "filterChange": "filterChange"; "pageChange": "pageChange"; "groupChange": "groupChange"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowReorder": "rowReorder"; "rowPinChange": "rowPinChange"; "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"; "csvExport": "csvExport"; "columnResize": "columnResize"; "columnReorder": "columnReorder"; "columnVisibilityChange": "columnVisibilityChange"; "columnLockedChange": "columnLockedChange"; "columnStickyChange": "columnStickyChange"; "scrollBottom": "scrollBottom"; "contentScroll": "contentScroll"; }, ["columns", "detailTemplateChildren", "cellLoadingTemplateChildren", "loadingTemplateChildren", "statusBarTemplateChildren", "noRecordsTemplateChildren", "pagerTemplateChildren", "toolbarTemplateChildren", "columnMenuTemplates"], ["kendo-toolbar"], true, never>;
1095
1149
  }
package/grid.module.d.ts CHANGED
@@ -45,110 +45,111 @@ import * as i39 from "./editing/cancel-command-tool.directive";
45
45
  import * as i40 from "./rendering/cell-loading.template.directive";
46
46
  import * as i41 from "./rendering/loading-template.directive";
47
47
  import * as i42 from "./columns/reorder-column.component";
48
- import * as i43 from "./rendering/toolbar/tools/sort-command-tool.directive";
49
- import * as i44 from "./rendering/toolbar/tools/filter-command-tool.directive";
50
- import * as i45 from "./rendering/toolbar/tools/ai-assistant/ai-tool.directive";
51
- import * as i46 from "./rendering/toolbar/tools/group-command-tool.directive";
52
- import * as i47 from "./rendering/toolbar/tools/select-all-command-tool.directive";
53
- import * as i48 from "./rendering/toolbar/tools/smartbox/smartbox-tool.component";
54
- import * as i49 from "./rendering/toolbar/tools/smartbox/smartbox-history-item.template";
55
- import * as i50 from "./rendering/toolbar/tools/smartbox/smartbox-suggestion.template";
56
- import * as i51 from "./rendering/header/header.component";
57
- import * as i52 from "./rendering/header/header-template.directive";
58
- import * as i53 from "./column-resizing/column-handle.directive";
59
- import * as i54 from "./selection/selectall-checkbox.directive";
60
- import * as i55 from "./rendering/footer/footer.component";
61
- import * as i56 from "@progress/kendo-angular-pager";
62
- import * as i57 from "@progress/kendo-angular-toolbar";
63
- import * as i58 from "./filtering/filter-row.component";
64
- import * as i59 from "./filtering/cell/filter-cell.component";
65
- import * as i60 from "./filtering/cell/filter-cell-template.directive";
66
- import * as i61 from "./filtering/cell/string-filter-cell.component";
67
- import * as i62 from "./filtering/cell/numeric-filter-cell.component";
68
- import * as i63 from "./filtering/cell/autocomplete-filter-cell.component";
69
- import * as i64 from "./filtering/cell/boolean-filter-cell.component";
70
- import * as i65 from "./filtering/cell/filter-cell-host.directive";
71
- import * as i66 from "./filtering/cell/filter-cell-wrapper.component";
72
- import * as i67 from "./filtering/cell/date-filter-cell.component";
73
- import * as i68 from "./filtering/cell/filter-cell-operators.component";
74
- import * as i69 from "./filtering/operators/contains-filter-operator.component";
75
- import * as i70 from "./filtering/operators/not-contains-filter-operator.component";
76
- import * as i71 from "./filtering/operators/ends-with-filter-operator.component";
77
- import * as i72 from "./filtering/operators/eq-filter-operator.component";
78
- import * as i73 from "./filtering/operators/is-empty-filter-operator.component";
79
- import * as i74 from "./filtering/operators/is-not-empty-filter-operator.component";
80
- import * as i75 from "./filtering/operators/is-not-null-filter-operator.component";
81
- import * as i76 from "./filtering/operators/isnull-filter-operator.component";
82
- import * as i77 from "./filtering/operators/neq-filter-operator.component";
83
- import * as i78 from "./filtering/operators/starts-with-filter-operator.component";
84
- import * as i79 from "./filtering/operators/gt-filter-operator.component";
85
- import * as i80 from "./filtering/operators/gte-filter-operator.component";
86
- import * as i81 from "./filtering/operators/lt-filter-operator.component";
87
- import * as i82 from "./filtering/operators/lte-filter-operator.component";
88
- import * as i83 from "./filtering/operators/after-filter-operator.component";
89
- import * as i84 from "./filtering/operators/after-eq-filter-operator.component";
90
- import * as i85 from "./filtering/operators/before-eq-filter-operator.component";
91
- import * as i86 from "./filtering/operators/before-filter-operator.component";
92
- import * as i87 from "./filtering/filter-input.directive";
93
- import * as i88 from "./filtering/menu/filter-menu.component";
94
- import * as i89 from "./filtering/menu/filter-menu-container.component";
95
- import * as i90 from "./filtering/menu/filter-menu-input-wrapper.component";
96
- import * as i91 from "./filtering/menu/string-filter-menu-input.component";
97
- import * as i92 from "./filtering/menu/string-filter-menu.component";
98
- import * as i93 from "./filtering/menu/filter-menu-template.directive";
99
- import * as i94 from "./filtering/menu/numeric-filter-menu.component";
100
- import * as i95 from "./filtering/menu/numeric-filter-menu-input.component";
101
- import * as i96 from "./filtering/menu/date-filter-menu-input.component";
102
- import * as i97 from "./filtering/menu/date-filter-menu.component";
103
- import * as i98 from "./filtering/menu/filter-menu-host.directive";
104
- import * as i99 from "./filtering/menu/boolean-filter-menu.component";
105
- import * as i100 from "./filtering/menu/filter-menu-dropdownlist.directive";
106
- import * as i101 from "./filtering/menu/filter-radio-button.directive";
107
- import * as i102 from "./column-menu/column-list.component";
108
- import * as i103 from "./column-menu/column-chooser.component";
109
- import * as i104 from "./rendering/toolbar/tools/column-chooser-tool.directive";
110
- import * as i105 from "./column-menu/column-menu-chooser.component";
111
- import * as i106 from "./column-menu/column-menu-filter.component";
112
- import * as i107 from "./column-menu/column-menu-item.component";
113
- import * as i108 from "./column-menu/column-menu-item-content-template.directive";
114
- import * as i109 from "./column-menu/column-menu-sort.component";
115
- import * as i110 from "./column-menu/column-menu.component";
116
- import * as i111 from "./column-menu/column-menu-lock.component";
117
- import * as i112 from "./column-menu/column-menu-template.directive";
118
- import * as i113 from "./column-menu/column-menu-container.component";
119
- import * as i114 from "./column-menu/column-menu-item.directive";
120
- import * as i115 from "./column-menu/column-menu-stick.component";
121
- import * as i116 from "./column-menu/column-menu-position.component";
122
- import * as i117 from "./column-menu/column-menu-autosize.component";
123
- import * as i118 from "./column-menu/column-menu-autosize-all.component";
124
- import * as i119 from "./grid.component";
125
- import * as i120 from "./rendering/list.component";
126
- import * as i121 from "./rendering/toolbar/toolbar.component";
127
- import * as i122 from "./localization/localized-messages.directive";
128
- import * as i123 from "./localization/custom-messages.component";
129
- import * as i124 from "./databinding.directive";
130
- import * as i125 from "./rendering/toolbar/toolbar-template.directive";
131
- import * as i126 from "./selection/selection.directive";
132
- import * as i127 from "./highlight/highlight.directive";
133
- import * as i128 from "./editing-directives/template-editing.directive";
134
- import * as i129 from "./editing-directives/reactive-editing.directive";
135
- import * as i130 from "./editing-directives/in-cell-editing.directive";
136
- import * as i131 from "./editing-directives/external-editing.directive";
137
- import * as i132 from "./rendering/details-expand.directive";
138
- import * as i133 from "./rendering/groups-expand.directive";
139
- import * as i134 from "./selection/marquee.directive";
140
- import * as i135 from "./rendering/common/spacer.component";
141
- import * as i136 from "./rendering/toolbar/toolbar-focusable.directive";
142
- import * as i137 from "./aggregates/status-bar.component";
143
- import * as i138 from "./aggregates/status-bar-template.directive";
144
- import * as i139 from "./common/clipboard.directive";
145
- import * as i140 from "./editing/form/form.component";
146
- import * as i141 from "./editing/form/dialog-form.component";
147
- import * as i142 from "./editing/form/form-formfield.component";
148
- import * as i143 from "./state-management/undo-redo.directive";
149
- import * as i144 from "./column-resizing/table.directive";
150
- import * as i145 from "./state-management/undo-command-tool";
151
- import * as i146 from "./state-management/redo-command-tool";
48
+ import * as i43 from "./columns/pin-column.component";
49
+ import * as i44 from "./rendering/toolbar/tools/sort-command-tool.directive";
50
+ import * as i45 from "./rendering/toolbar/tools/filter-command-tool.directive";
51
+ import * as i46 from "./rendering/toolbar/tools/ai-assistant/ai-tool.directive";
52
+ import * as i47 from "./rendering/toolbar/tools/group-command-tool.directive";
53
+ import * as i48 from "./rendering/toolbar/tools/select-all-command-tool.directive";
54
+ import * as i49 from "./rendering/toolbar/tools/smartbox/smartbox-tool.component";
55
+ import * as i50 from "./rendering/toolbar/tools/smartbox/smartbox-history-item.template";
56
+ import * as i51 from "./rendering/toolbar/tools/smartbox/smartbox-suggestion.template";
57
+ import * as i52 from "./rendering/header/header.component";
58
+ import * as i53 from "./rendering/header/header-template.directive";
59
+ import * as i54 from "./column-resizing/column-handle.directive";
60
+ import * as i55 from "./selection/selectall-checkbox.directive";
61
+ import * as i56 from "./rendering/footer/footer.component";
62
+ import * as i57 from "@progress/kendo-angular-pager";
63
+ import * as i58 from "@progress/kendo-angular-toolbar";
64
+ import * as i59 from "./filtering/filter-row.component";
65
+ import * as i60 from "./filtering/cell/filter-cell.component";
66
+ import * as i61 from "./filtering/cell/filter-cell-template.directive";
67
+ import * as i62 from "./filtering/cell/string-filter-cell.component";
68
+ import * as i63 from "./filtering/cell/numeric-filter-cell.component";
69
+ import * as i64 from "./filtering/cell/autocomplete-filter-cell.component";
70
+ import * as i65 from "./filtering/cell/boolean-filter-cell.component";
71
+ import * as i66 from "./filtering/cell/filter-cell-host.directive";
72
+ import * as i67 from "./filtering/cell/filter-cell-wrapper.component";
73
+ import * as i68 from "./filtering/cell/date-filter-cell.component";
74
+ import * as i69 from "./filtering/cell/filter-cell-operators.component";
75
+ import * as i70 from "./filtering/operators/contains-filter-operator.component";
76
+ import * as i71 from "./filtering/operators/not-contains-filter-operator.component";
77
+ import * as i72 from "./filtering/operators/ends-with-filter-operator.component";
78
+ import * as i73 from "./filtering/operators/eq-filter-operator.component";
79
+ import * as i74 from "./filtering/operators/is-empty-filter-operator.component";
80
+ import * as i75 from "./filtering/operators/is-not-empty-filter-operator.component";
81
+ import * as i76 from "./filtering/operators/is-not-null-filter-operator.component";
82
+ import * as i77 from "./filtering/operators/isnull-filter-operator.component";
83
+ import * as i78 from "./filtering/operators/neq-filter-operator.component";
84
+ import * as i79 from "./filtering/operators/starts-with-filter-operator.component";
85
+ import * as i80 from "./filtering/operators/gt-filter-operator.component";
86
+ import * as i81 from "./filtering/operators/gte-filter-operator.component";
87
+ import * as i82 from "./filtering/operators/lt-filter-operator.component";
88
+ import * as i83 from "./filtering/operators/lte-filter-operator.component";
89
+ import * as i84 from "./filtering/operators/after-filter-operator.component";
90
+ import * as i85 from "./filtering/operators/after-eq-filter-operator.component";
91
+ import * as i86 from "./filtering/operators/before-eq-filter-operator.component";
92
+ import * as i87 from "./filtering/operators/before-filter-operator.component";
93
+ import * as i88 from "./filtering/filter-input.directive";
94
+ import * as i89 from "./filtering/menu/filter-menu.component";
95
+ import * as i90 from "./filtering/menu/filter-menu-container.component";
96
+ import * as i91 from "./filtering/menu/filter-menu-input-wrapper.component";
97
+ import * as i92 from "./filtering/menu/string-filter-menu-input.component";
98
+ import * as i93 from "./filtering/menu/string-filter-menu.component";
99
+ import * as i94 from "./filtering/menu/filter-menu-template.directive";
100
+ import * as i95 from "./filtering/menu/numeric-filter-menu.component";
101
+ import * as i96 from "./filtering/menu/numeric-filter-menu-input.component";
102
+ import * as i97 from "./filtering/menu/date-filter-menu-input.component";
103
+ import * as i98 from "./filtering/menu/date-filter-menu.component";
104
+ import * as i99 from "./filtering/menu/filter-menu-host.directive";
105
+ import * as i100 from "./filtering/menu/boolean-filter-menu.component";
106
+ import * as i101 from "./filtering/menu/filter-menu-dropdownlist.directive";
107
+ import * as i102 from "./filtering/menu/filter-radio-button.directive";
108
+ import * as i103 from "./column-menu/column-list.component";
109
+ import * as i104 from "./column-menu/column-chooser.component";
110
+ import * as i105 from "./rendering/toolbar/tools/column-chooser-tool.directive";
111
+ import * as i106 from "./column-menu/column-menu-chooser.component";
112
+ import * as i107 from "./column-menu/column-menu-filter.component";
113
+ import * as i108 from "./column-menu/column-menu-item.component";
114
+ import * as i109 from "./column-menu/column-menu-item-content-template.directive";
115
+ import * as i110 from "./column-menu/column-menu-sort.component";
116
+ import * as i111 from "./column-menu/column-menu.component";
117
+ import * as i112 from "./column-menu/column-menu-lock.component";
118
+ import * as i113 from "./column-menu/column-menu-template.directive";
119
+ import * as i114 from "./column-menu/column-menu-container.component";
120
+ import * as i115 from "./column-menu/column-menu-item.directive";
121
+ import * as i116 from "./column-menu/column-menu-stick.component";
122
+ import * as i117 from "./column-menu/column-menu-position.component";
123
+ import * as i118 from "./column-menu/column-menu-autosize.component";
124
+ import * as i119 from "./column-menu/column-menu-autosize-all.component";
125
+ import * as i120 from "./grid.component";
126
+ import * as i121 from "./rendering/list.component";
127
+ import * as i122 from "./rendering/toolbar/toolbar.component";
128
+ import * as i123 from "./localization/localized-messages.directive";
129
+ import * as i124 from "./localization/custom-messages.component";
130
+ import * as i125 from "./databinding.directive";
131
+ import * as i126 from "./rendering/toolbar/toolbar-template.directive";
132
+ import * as i127 from "./selection/selection.directive";
133
+ import * as i128 from "./highlight/highlight.directive";
134
+ import * as i129 from "./editing-directives/template-editing.directive";
135
+ import * as i130 from "./editing-directives/reactive-editing.directive";
136
+ import * as i131 from "./editing-directives/in-cell-editing.directive";
137
+ import * as i132 from "./editing-directives/external-editing.directive";
138
+ import * as i133 from "./rendering/details-expand.directive";
139
+ import * as i134 from "./rendering/groups-expand.directive";
140
+ import * as i135 from "./selection/marquee.directive";
141
+ import * as i136 from "./rendering/common/spacer.component";
142
+ import * as i137 from "./rendering/toolbar/toolbar-focusable.directive";
143
+ import * as i138 from "./aggregates/status-bar.component";
144
+ import * as i139 from "./aggregates/status-bar-template.directive";
145
+ import * as i140 from "./common/clipboard.directive";
146
+ import * as i141 from "./editing/form/form.component";
147
+ import * as i142 from "./editing/form/dialog-form.component";
148
+ import * as i143 from "./editing/form/form-formfield.component";
149
+ import * as i144 from "./state-management/undo-redo.directive";
150
+ import * as i145 from "./column-resizing/table.directive";
151
+ import * as i146 from "./state-management/undo-command-tool";
152
+ import * as i147 from "./state-management/redo-command-tool";
152
153
  /**
153
154
  * Defines the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) for the Grid component.
154
155
  *
@@ -173,6 +174,6 @@ import * as i146 from "./state-management/redo-command-tool";
173
174
  */
174
175
  export declare class GridModule {
175
176
  static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
176
- 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.SmartBoxToolbarToolComponent, typeof i49.GridSmartBoxHistoryItemTemplateDirective, typeof i50.GridSmartBoxPromptSuggestionTemplateDirective, typeof i51.HeaderComponent, typeof i52.HeaderTemplateDirective, typeof i53.ColumnHandleDirective, typeof i54.SelectAllCheckboxDirective, typeof i55.FooterComponent, typeof i56.CustomMessagesComponent, typeof i56.PagerFocusableDirective, typeof i56.PagerInfoComponent, typeof i56.PagerInputComponent, typeof i56.PagerNextButtonsComponent, typeof i56.PagerNumericButtonsComponent, typeof i56.PagerPageSizesComponent, typeof i56.PagerPrevButtonsComponent, typeof i56.PagerTemplateDirective, typeof i56.PagerComponent, typeof i56.PagerSpacerComponent, typeof i57.ToolBarComponent, typeof i57.ToolbarCustomMessagesComponent, typeof i57.ToolBarButtonComponent, typeof i57.ToolBarButtonGroupComponent, typeof i57.ToolBarDropDownButtonComponent, typeof i57.ToolBarSeparatorComponent, typeof i57.ToolBarSpacerComponent, typeof i57.ToolBarSplitButtonComponent, typeof i57.ToolBarToolComponent, typeof i58.FilterRowComponent, typeof i59.FilterCellComponent, typeof i60.FilterCellTemplateDirective, typeof i61.StringFilterCellComponent, typeof i62.NumericFilterCellComponent, typeof i63.AutoCompleteFilterCellComponent, typeof i64.BooleanFilterCellComponent, typeof i65.FilterCellHostDirective, typeof i66.FilterCellWrapperComponent, typeof i67.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 i68.FilterCellOperatorsComponent, typeof i69.ContainsFilterOperatorComponent, typeof i70.DoesNotContainFilterOperatorComponent, typeof i71.EndsWithFilterOperatorComponent, typeof i72.EqualFilterOperatorComponent, typeof i73.IsEmptyFilterOperatorComponent, typeof i74.IsNotEmptyFilterOperatorComponent, typeof i75.IsNotNullFilterOperatorComponent, typeof i76.IsNullFilterOperatorComponent, typeof i77.NotEqualFilterOperatorComponent, typeof i78.StartsWithFilterOperatorComponent, typeof i79.GreaterFilterOperatorComponent, typeof i80.GreaterOrEqualToFilterOperatorComponent, typeof i81.LessFilterOperatorComponent, typeof i82.LessOrEqualToFilterOperatorComponent, typeof i83.AfterFilterOperatorComponent, typeof i84.AfterEqFilterOperatorComponent, typeof i85.BeforeEqFilterOperatorComponent, typeof i86.BeforeFilterOperatorComponent, typeof i87.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 i68.FilterCellOperatorsComponent, typeof i69.ContainsFilterOperatorComponent, typeof i70.DoesNotContainFilterOperatorComponent, typeof i71.EndsWithFilterOperatorComponent, typeof i72.EqualFilterOperatorComponent, typeof i73.IsEmptyFilterOperatorComponent, typeof i74.IsNotEmptyFilterOperatorComponent, typeof i75.IsNotNullFilterOperatorComponent, typeof i76.IsNullFilterOperatorComponent, typeof i77.NotEqualFilterOperatorComponent, typeof i78.StartsWithFilterOperatorComponent, typeof i79.GreaterFilterOperatorComponent, typeof i80.GreaterOrEqualToFilterOperatorComponent, typeof i81.LessFilterOperatorComponent, typeof i82.LessOrEqualToFilterOperatorComponent, typeof i83.AfterFilterOperatorComponent, typeof i84.AfterEqFilterOperatorComponent, typeof i85.BeforeEqFilterOperatorComponent, typeof i86.BeforeFilterOperatorComponent, typeof i87.FilterInputDirective, typeof i88.FilterMenuComponent, typeof i89.FilterMenuContainerComponent, typeof i90.FilterMenuInputWrapperComponent, typeof i91.StringFilterMenuInputComponent, typeof i92.StringFilterMenuComponent, typeof i93.FilterMenuTemplateDirective, typeof i94.NumericFilterMenuComponent, typeof i95.NumericFilterMenuInputComponent, typeof i96.DateFilterMenuInputComponent, typeof i97.DateFilterMenuComponent, typeof i98.FilterMenuHostDirective, typeof i99.BooleanFilterMenuComponent, typeof i100.FilterMenuDropDownListDirective, typeof i101.BooleanFilterRadioButtonDirective, typeof i102.ColumnListComponent, typeof i103.ColumnChooserComponent, typeof i104.ColumnChooserToolbarDirective, typeof i105.ColumnMenuChooserComponent, typeof i106.ColumnMenuFilterComponent, typeof i107.ColumnMenuItemComponent, typeof i108.ColumnMenuItemContentTemplateDirective, typeof i109.ColumnMenuSortComponent, typeof i110.ColumnMenuComponent, typeof i111.ColumnMenuLockComponent, typeof i112.ColumnMenuTemplateDirective, typeof i113.ColumnMenuContainerComponent, typeof i114.ColumnMenuItemDirective, typeof i115.ColumnMenuStickComponent, typeof i116.ColumnMenuPositionComponent, typeof i117.ColumnMenuAutoSizeColumnComponent, typeof i118.ColumnMenuAutoSizeAllColumnsComponent, typeof i119.GridComponent, typeof i120.ListComponent, typeof i121.ToolbarComponent, typeof i122.LocalizedMessagesDirective, typeof i123.CustomMessagesComponent, typeof i124.DataBindingDirective, typeof i125.ToolbarTemplateDirective, typeof i126.SelectionDirective, typeof i127.HighlightDirective, typeof i128.TemplateEditingDirective, typeof i129.ReactiveEditingDirective, typeof i130.InCellEditingDirective, typeof i131.ExternalEditingDirective, typeof i132.ExpandDetailsDirective, typeof i133.ExpandGroupDirective, typeof i134.GridMarqueeDirective, typeof i135.GridSpacerComponent, typeof i136.GridToolbarFocusableDirective, typeof i137.StatusBarComponent, typeof i138.StatusBarTemplateDirective, typeof i139.GridClipboardDirective, typeof i140.FormComponent, typeof i141.DialogFormComponent, typeof i142.FormFormFieldComponent, typeof i143.UndoRedoDirective, typeof i57.ToolBarComponent, typeof i57.ToolbarCustomMessagesComponent, typeof i57.ToolBarButtonComponent, typeof i57.ToolBarButtonGroupComponent, typeof i57.ToolBarDropDownButtonComponent, typeof i57.ToolBarSeparatorComponent, typeof i57.ToolBarSpacerComponent, typeof i57.ToolBarSplitButtonComponent, typeof i57.ToolBarToolComponent, typeof i144.TableDirective, typeof i145.UndoCommandToolbarDirective, typeof i146.RedoCommandToolbarDirective], [typeof i119.GridComponent, typeof i125.ToolbarTemplateDirective, typeof i121.ToolbarComponent, typeof i135.GridSpacerComponent, typeof i138.StatusBarTemplateDirective, typeof i124.DataBindingDirective, typeof i126.SelectionDirective, typeof i127.HighlightDirective, typeof i123.CustomMessagesComponent, typeof i128.TemplateEditingDirective, typeof i129.ReactiveEditingDirective, typeof i130.InCellEditingDirective, typeof i131.ExternalEditingDirective, typeof i132.ExpandDetailsDirective, typeof i133.ExpandGroupDirective, typeof i136.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.SmartBoxToolbarToolComponent, typeof i49.GridSmartBoxHistoryItemTemplateDirective, typeof i50.GridSmartBoxPromptSuggestionTemplateDirective, typeof i51.HeaderComponent, typeof i52.HeaderTemplateDirective, typeof i53.ColumnHandleDirective, typeof i54.SelectAllCheckboxDirective, typeof i58.FilterRowComponent, typeof i59.FilterCellComponent, typeof i60.FilterCellTemplateDirective, typeof i61.StringFilterCellComponent, typeof i62.NumericFilterCellComponent, typeof i63.AutoCompleteFilterCellComponent, typeof i64.BooleanFilterCellComponent, typeof i65.FilterCellHostDirective, typeof i66.FilterCellWrapperComponent, typeof i67.DateFilterCellComponent, typeof i68.FilterCellOperatorsComponent, typeof i69.ContainsFilterOperatorComponent, typeof i70.DoesNotContainFilterOperatorComponent, typeof i71.EndsWithFilterOperatorComponent, typeof i72.EqualFilterOperatorComponent, typeof i73.IsEmptyFilterOperatorComponent, typeof i74.IsNotEmptyFilterOperatorComponent, typeof i75.IsNotNullFilterOperatorComponent, typeof i76.IsNullFilterOperatorComponent, typeof i77.NotEqualFilterOperatorComponent, typeof i78.StartsWithFilterOperatorComponent, typeof i79.GreaterFilterOperatorComponent, typeof i80.GreaterOrEqualToFilterOperatorComponent, typeof i81.LessFilterOperatorComponent, typeof i82.LessOrEqualToFilterOperatorComponent, typeof i83.AfterFilterOperatorComponent, typeof i84.AfterEqFilterOperatorComponent, typeof i85.BeforeEqFilterOperatorComponent, typeof i86.BeforeFilterOperatorComponent, typeof i88.FilterMenuComponent, typeof i89.FilterMenuContainerComponent, typeof i90.FilterMenuInputWrapperComponent, typeof i91.StringFilterMenuInputComponent, typeof i92.StringFilterMenuComponent, typeof i93.FilterMenuTemplateDirective, typeof i94.NumericFilterMenuComponent, typeof i95.NumericFilterMenuInputComponent, typeof i96.DateFilterMenuInputComponent, typeof i97.DateFilterMenuComponent, typeof i98.FilterMenuHostDirective, typeof i99.BooleanFilterMenuComponent, typeof i100.FilterMenuDropDownListDirective, typeof i101.BooleanFilterRadioButtonDirective, typeof i103.ColumnChooserComponent, typeof i104.ColumnChooserToolbarDirective, typeof i106.ColumnMenuFilterComponent, typeof i107.ColumnMenuItemComponent, typeof i108.ColumnMenuItemContentTemplateDirective, typeof i109.ColumnMenuSortComponent, typeof i111.ColumnMenuLockComponent, typeof i115.ColumnMenuStickComponent, typeof i116.ColumnMenuPositionComponent, typeof i105.ColumnMenuChooserComponent, typeof i112.ColumnMenuTemplateDirective, typeof i113.ColumnMenuContainerComponent, typeof i114.ColumnMenuItemDirective, typeof i110.ColumnMenuComponent, typeof i117.ColumnMenuAutoSizeColumnComponent, typeof i118.ColumnMenuAutoSizeAllColumnsComponent, typeof i139.GridClipboardDirective, typeof i143.UndoRedoDirective, typeof i145.UndoCommandToolbarDirective, typeof i146.RedoCommandToolbarDirective, typeof i57.ToolBarComponent, typeof i57.ToolbarCustomMessagesComponent, typeof i57.ToolBarButtonComponent, typeof i57.ToolBarButtonGroupComponent, typeof i57.ToolBarDropDownButtonComponent, typeof i57.ToolBarSeparatorComponent, typeof i57.ToolBarSpacerComponent, typeof i57.ToolBarSplitButtonComponent, typeof i57.ToolBarToolComponent, typeof i56.CustomMessagesComponent, typeof i56.PagerFocusableDirective, typeof i56.PagerInfoComponent, typeof i56.PagerInputComponent, typeof i56.PagerNextButtonsComponent, typeof i56.PagerNumericButtonsComponent, typeof i56.PagerPageSizesComponent, typeof i56.PagerPrevButtonsComponent, typeof i56.PagerTemplateDirective, typeof i56.PagerComponent, typeof i56.PagerSpacerComponent]>;
177
+ 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.RowPinColumnComponent, typeof i44.SortCommandToolbarDirective, typeof i45.FilterCommandToolbarDirective, typeof i46.AIAssistantToolbarDirective, typeof i47.GroupCommandToolbarDirective, typeof i48.SelectAllToolbarToolComponent, typeof i49.SmartBoxToolbarToolComponent, typeof i50.GridSmartBoxHistoryItemTemplateDirective, typeof i51.GridSmartBoxPromptSuggestionTemplateDirective, typeof i52.HeaderComponent, typeof i53.HeaderTemplateDirective, typeof i54.ColumnHandleDirective, typeof i55.SelectAllCheckboxDirective, typeof i56.FooterComponent, typeof i57.CustomMessagesComponent, typeof i57.PagerFocusableDirective, typeof i57.PagerInfoComponent, typeof i57.PagerInputComponent, typeof i57.PagerNextButtonsComponent, typeof i57.PagerNumericButtonsComponent, typeof i57.PagerPageSizesComponent, typeof i57.PagerPrevButtonsComponent, typeof i57.PagerTemplateDirective, typeof i57.PagerComponent, typeof i57.PagerSpacerComponent, typeof i58.ToolBarComponent, typeof i58.ToolbarCustomMessagesComponent, typeof i58.ToolBarButtonComponent, typeof i58.ToolBarButtonGroupComponent, typeof i58.ToolBarDropDownButtonComponent, typeof i58.ToolBarSeparatorComponent, typeof i58.ToolBarSpacerComponent, typeof i58.ToolBarSplitButtonComponent, typeof i58.ToolBarToolComponent, typeof i59.FilterRowComponent, typeof i60.FilterCellComponent, typeof i61.FilterCellTemplateDirective, typeof i62.StringFilterCellComponent, typeof i63.NumericFilterCellComponent, typeof i64.AutoCompleteFilterCellComponent, typeof i65.BooleanFilterCellComponent, typeof i66.FilterCellHostDirective, typeof i67.FilterCellWrapperComponent, typeof i68.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 i69.FilterCellOperatorsComponent, typeof i70.ContainsFilterOperatorComponent, typeof i71.DoesNotContainFilterOperatorComponent, typeof i72.EndsWithFilterOperatorComponent, typeof i73.EqualFilterOperatorComponent, typeof i74.IsEmptyFilterOperatorComponent, typeof i75.IsNotEmptyFilterOperatorComponent, typeof i76.IsNotNullFilterOperatorComponent, typeof i77.IsNullFilterOperatorComponent, typeof i78.NotEqualFilterOperatorComponent, typeof i79.StartsWithFilterOperatorComponent, typeof i80.GreaterFilterOperatorComponent, typeof i81.GreaterOrEqualToFilterOperatorComponent, typeof i82.LessFilterOperatorComponent, typeof i83.LessOrEqualToFilterOperatorComponent, typeof i84.AfterFilterOperatorComponent, typeof i85.AfterEqFilterOperatorComponent, typeof i86.BeforeEqFilterOperatorComponent, typeof i87.BeforeFilterOperatorComponent, typeof i88.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 i69.FilterCellOperatorsComponent, typeof i70.ContainsFilterOperatorComponent, typeof i71.DoesNotContainFilterOperatorComponent, typeof i72.EndsWithFilterOperatorComponent, typeof i73.EqualFilterOperatorComponent, typeof i74.IsEmptyFilterOperatorComponent, typeof i75.IsNotEmptyFilterOperatorComponent, typeof i76.IsNotNullFilterOperatorComponent, typeof i77.IsNullFilterOperatorComponent, typeof i78.NotEqualFilterOperatorComponent, typeof i79.StartsWithFilterOperatorComponent, typeof i80.GreaterFilterOperatorComponent, typeof i81.GreaterOrEqualToFilterOperatorComponent, typeof i82.LessFilterOperatorComponent, typeof i83.LessOrEqualToFilterOperatorComponent, typeof i84.AfterFilterOperatorComponent, typeof i85.AfterEqFilterOperatorComponent, typeof i86.BeforeEqFilterOperatorComponent, typeof i87.BeforeFilterOperatorComponent, typeof i88.FilterInputDirective, typeof i89.FilterMenuComponent, typeof i90.FilterMenuContainerComponent, typeof i91.FilterMenuInputWrapperComponent, typeof i92.StringFilterMenuInputComponent, typeof i93.StringFilterMenuComponent, typeof i94.FilterMenuTemplateDirective, typeof i95.NumericFilterMenuComponent, typeof i96.NumericFilterMenuInputComponent, typeof i97.DateFilterMenuInputComponent, typeof i98.DateFilterMenuComponent, typeof i99.FilterMenuHostDirective, typeof i100.BooleanFilterMenuComponent, typeof i101.FilterMenuDropDownListDirective, typeof i102.BooleanFilterRadioButtonDirective, typeof i103.ColumnListComponent, typeof i104.ColumnChooserComponent, typeof i105.ColumnChooserToolbarDirective, typeof i106.ColumnMenuChooserComponent, typeof i107.ColumnMenuFilterComponent, typeof i108.ColumnMenuItemComponent, typeof i109.ColumnMenuItemContentTemplateDirective, typeof i110.ColumnMenuSortComponent, typeof i111.ColumnMenuComponent, typeof i112.ColumnMenuLockComponent, typeof i113.ColumnMenuTemplateDirective, typeof i114.ColumnMenuContainerComponent, typeof i115.ColumnMenuItemDirective, typeof i116.ColumnMenuStickComponent, typeof i117.ColumnMenuPositionComponent, typeof i118.ColumnMenuAutoSizeColumnComponent, typeof i119.ColumnMenuAutoSizeAllColumnsComponent, typeof i120.GridComponent, typeof i121.ListComponent, typeof i122.ToolbarComponent, typeof i123.LocalizedMessagesDirective, typeof i124.CustomMessagesComponent, typeof i125.DataBindingDirective, typeof i126.ToolbarTemplateDirective, typeof i127.SelectionDirective, typeof i128.HighlightDirective, typeof i129.TemplateEditingDirective, typeof i130.ReactiveEditingDirective, typeof i131.InCellEditingDirective, typeof i132.ExternalEditingDirective, typeof i133.ExpandDetailsDirective, typeof i134.ExpandGroupDirective, typeof i135.GridMarqueeDirective, typeof i136.GridSpacerComponent, typeof i137.GridToolbarFocusableDirective, typeof i138.StatusBarComponent, typeof i139.StatusBarTemplateDirective, typeof i140.GridClipboardDirective, typeof i141.FormComponent, typeof i142.DialogFormComponent, typeof i143.FormFormFieldComponent, typeof i144.UndoRedoDirective, typeof i58.ToolBarComponent, typeof i58.ToolbarCustomMessagesComponent, typeof i58.ToolBarButtonComponent, typeof i58.ToolBarButtonGroupComponent, typeof i58.ToolBarDropDownButtonComponent, typeof i58.ToolBarSeparatorComponent, typeof i58.ToolBarSpacerComponent, typeof i58.ToolBarSplitButtonComponent, typeof i58.ToolBarToolComponent, typeof i145.TableDirective, typeof i146.UndoCommandToolbarDirective, typeof i147.RedoCommandToolbarDirective], [typeof i120.GridComponent, typeof i126.ToolbarTemplateDirective, typeof i122.ToolbarComponent, typeof i136.GridSpacerComponent, typeof i139.StatusBarTemplateDirective, typeof i125.DataBindingDirective, typeof i127.SelectionDirective, typeof i128.HighlightDirective, typeof i124.CustomMessagesComponent, typeof i129.TemplateEditingDirective, typeof i130.ReactiveEditingDirective, typeof i131.InCellEditingDirective, typeof i132.ExternalEditingDirective, typeof i133.ExpandDetailsDirective, typeof i134.ExpandGroupDirective, typeof i137.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.RowPinColumnComponent, typeof i44.SortCommandToolbarDirective, typeof i45.FilterCommandToolbarDirective, typeof i46.AIAssistantToolbarDirective, typeof i47.GroupCommandToolbarDirective, typeof i48.SelectAllToolbarToolComponent, typeof i49.SmartBoxToolbarToolComponent, typeof i50.GridSmartBoxHistoryItemTemplateDirective, typeof i51.GridSmartBoxPromptSuggestionTemplateDirective, typeof i52.HeaderComponent, typeof i53.HeaderTemplateDirective, typeof i54.ColumnHandleDirective, typeof i55.SelectAllCheckboxDirective, typeof i59.FilterRowComponent, typeof i60.FilterCellComponent, typeof i61.FilterCellTemplateDirective, typeof i62.StringFilterCellComponent, typeof i63.NumericFilterCellComponent, typeof i64.AutoCompleteFilterCellComponent, typeof i65.BooleanFilterCellComponent, typeof i66.FilterCellHostDirective, typeof i67.FilterCellWrapperComponent, typeof i68.DateFilterCellComponent, typeof i69.FilterCellOperatorsComponent, typeof i70.ContainsFilterOperatorComponent, typeof i71.DoesNotContainFilterOperatorComponent, typeof i72.EndsWithFilterOperatorComponent, typeof i73.EqualFilterOperatorComponent, typeof i74.IsEmptyFilterOperatorComponent, typeof i75.IsNotEmptyFilterOperatorComponent, typeof i76.IsNotNullFilterOperatorComponent, typeof i77.IsNullFilterOperatorComponent, typeof i78.NotEqualFilterOperatorComponent, typeof i79.StartsWithFilterOperatorComponent, typeof i80.GreaterFilterOperatorComponent, typeof i81.GreaterOrEqualToFilterOperatorComponent, typeof i82.LessFilterOperatorComponent, typeof i83.LessOrEqualToFilterOperatorComponent, typeof i84.AfterFilterOperatorComponent, typeof i85.AfterEqFilterOperatorComponent, typeof i86.BeforeEqFilterOperatorComponent, typeof i87.BeforeFilterOperatorComponent, typeof i89.FilterMenuComponent, typeof i90.FilterMenuContainerComponent, typeof i91.FilterMenuInputWrapperComponent, typeof i92.StringFilterMenuInputComponent, typeof i93.StringFilterMenuComponent, typeof i94.FilterMenuTemplateDirective, typeof i95.NumericFilterMenuComponent, typeof i96.NumericFilterMenuInputComponent, typeof i97.DateFilterMenuInputComponent, typeof i98.DateFilterMenuComponent, typeof i99.FilterMenuHostDirective, typeof i100.BooleanFilterMenuComponent, typeof i101.FilterMenuDropDownListDirective, typeof i102.BooleanFilterRadioButtonDirective, typeof i104.ColumnChooserComponent, typeof i105.ColumnChooserToolbarDirective, typeof i107.ColumnMenuFilterComponent, typeof i108.ColumnMenuItemComponent, typeof i109.ColumnMenuItemContentTemplateDirective, typeof i110.ColumnMenuSortComponent, typeof i112.ColumnMenuLockComponent, typeof i116.ColumnMenuStickComponent, typeof i117.ColumnMenuPositionComponent, typeof i106.ColumnMenuChooserComponent, typeof i113.ColumnMenuTemplateDirective, typeof i114.ColumnMenuContainerComponent, typeof i115.ColumnMenuItemDirective, typeof i111.ColumnMenuComponent, typeof i118.ColumnMenuAutoSizeColumnComponent, typeof i119.ColumnMenuAutoSizeAllColumnsComponent, typeof i140.GridClipboardDirective, typeof i144.UndoRedoDirective, typeof i146.UndoCommandToolbarDirective, typeof i147.RedoCommandToolbarDirective, typeof i58.ToolBarComponent, typeof i58.ToolbarCustomMessagesComponent, typeof i58.ToolBarButtonComponent, typeof i58.ToolBarButtonGroupComponent, typeof i58.ToolBarDropDownButtonComponent, typeof i58.ToolBarSeparatorComponent, typeof i58.ToolBarSpacerComponent, typeof i58.ToolBarSplitButtonComponent, typeof i58.ToolBarToolComponent, typeof i57.CustomMessagesComponent, typeof i57.PagerFocusableDirective, typeof i57.PagerInfoComponent, typeof i57.PagerInputComponent, typeof i57.PagerNextButtonsComponent, typeof i57.PagerNumericButtonsComponent, typeof i57.PagerPageSizesComponent, typeof i57.PagerPrevButtonsComponent, typeof i57.PagerTemplateDirective, typeof i57.PagerComponent, typeof i57.PagerSpacerComponent]>;
177
178
  static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
178
179
  }
package/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export { SpanColumnComponent } from './columns/span-column.component';
13
13
  export { ColumnGroupComponent } from './columns/column-group.component';
14
14
  export { CheckboxColumnComponent } from './columns/checkbox-column.component';
15
15
  export { RowReorderColumnComponent } from './columns/reorder-column.component';
16
+ export { RowPinColumnComponent } from './columns/pin-column.component';
16
17
  export { RowDragHandleTemplateDirective } from './row-reordering/drag-handle-template.directive';
17
18
  export { RowDragHintTemplateDirective } from './row-reordering/drag-hint-template.directive';
18
19
  export { ToolbarComponent } from './rendering/toolbar/toolbar.component';
@@ -41,6 +42,7 @@ export { SortService } from './common/sort.service';
41
42
  export { ChangeNotificationService } from './data/change-notification.service';
42
43
  export { ColumnReorderService } from './dragdrop/column-reorder.service';
43
44
  export { RowReorderService } from './row-reordering/row-reorder.service';
45
+ export { RowPinService } from './row-pinning/row-pin.service';
44
46
  export { DragAndDropService } from './dragdrop/drag-and-drop.service';
45
47
  export { DragHintService } from './dragdrop/drag-hint.service';
46
48
  export { DropCueService } from './dragdrop/drop-cue.service';
@@ -85,6 +87,7 @@ export { ResizableContainerDirective } from './layout/resizable.directive';
85
87
  export { GroupableSettings } from './grouping/group-settings';
86
88
  export { SelectionEvent, SelectableSettings, SelectableMode, SelectAllCheckboxState, CellSelectionItem, CellSelectedFn, GridSelectionItem } from './selection/types';
87
89
  export { RowReorderEvent, DragRow, DropPosition } from './row-reordering/types';
90
+ export { RowPinEvent, GridRowPinLocation, RowPinnableFn } from './row-pinning/types';
88
91
  export { NoRecordsTemplateDirective } from './rendering/no-records-template.directive';
89
92
  export { DataBindingDirective } from './databinding.directive';
90
93
  export { SelectionDirective } from './selection/selection.directive';