@progress/kendo-angular-grid 24.0.0-develop.3 → 24.0.0-develop.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE.txt +2599 -172
- package/columns/column-base.d.ts +4 -0
- package/columns/pin-column.component.d.ts +45 -0
- package/databinding.directive.d.ts +11 -1
- package/directives.d.ts +4 -3
- package/editing/edit.service.d.ts +1 -0
- package/editing/form/models.d.ts +1 -5
- package/editing-directives/local-edit.service.d.ts +1 -0
- package/fesm2022/progress-kendo-angular-grid.mjs +4083 -379
- package/grid.component.d.ts +64 -3
- package/grid.module.d.ts +106 -105
- package/grouping/group-header.component.d.ts +3 -3
- package/grouping/group-settings.d.ts +14 -0
- package/grouping/sticky-groups/models.d.ts +24 -0
- package/grouping/sticky-groups/sticky-group-container.component.d.ts +114 -0
- package/grouping/sticky-groups/sticky-groups-utils.d.ts +71 -0
- package/grouping/sticky-groups/sticky-groups.service.d.ts +132 -0
- package/index.d.ts +3 -0
- package/localization/messages.d.ts +33 -1
- package/navigation/logical-cell.directive.d.ts +4 -2
- package/navigation/navigation-metadata.d.ts +3 -1
- package/navigation/navigation.service.d.ts +19 -0
- package/navigation/skip-cell-navigation.d.ts +12 -0
- package/package-metadata.mjs +2 -2
- package/package.json +25 -25
- package/rendering/cell.component.d.ts +33 -6
- package/rendering/common/cell-context.d.ts +5 -0
- package/rendering/grid-table.directive.d.ts +0 -3
- package/rendering/list.component.d.ts +67 -1
- package/rendering/table-body.component.d.ts +5 -1
- package/rendering/toolbar/tools/smartbox/smartbox-component/smartbox.component.d.ts +4 -4
- package/row-pinning/pinned-row-tracking.service.d.ts +64 -0
- package/row-pinning/row-pin-container.component.d.ts +56 -0
- package/row-pinning/row-pin.service.d.ts +28 -0
- package/row-pinning/types.d.ts +42 -0
- package/schematics/ngAdd/index.js +7 -7
- package/scrolling/scroll-sync.service.d.ts +2 -3
package/grid.component.d.ts
CHANGED
|
@@ -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,10 @@ 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 { PinnedRowTrackingService } from './row-pinning/pinned-row-tracking.service';
|
|
102
|
+
import { GridRowPinLocation, RowPinEvent, RowPinnableFn } from './row-pinning/types';
|
|
99
103
|
import * as i0 from "@angular/core";
|
|
100
104
|
/**
|
|
101
105
|
* Represents the Kendo UI for Angular Data Grid component.
|
|
@@ -129,6 +133,7 @@ import * as i0 from "@angular/core";
|
|
|
129
133
|
* {@link GridSpacerComponent},
|
|
130
134
|
* {@link PDFComponent},
|
|
131
135
|
* {@link RowReorderColumnComponent},
|
|
136
|
+
* {@link RowPinColumnComponent},
|
|
132
137
|
* {@link SpanColumnComponent},
|
|
133
138
|
* {@link ToolBarComponent}.
|
|
134
139
|
*/
|
|
@@ -167,6 +172,8 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
167
172
|
private aiRequestResponseService;
|
|
168
173
|
private idService;
|
|
169
174
|
private searchService;
|
|
175
|
+
private rowPinService;
|
|
176
|
+
pinnedRowTrackingService: PinnedRowTrackingService;
|
|
170
177
|
/**
|
|
171
178
|
* Sets the data of the Grid. If you provide an array, the Grid gets the total count automatically.
|
|
172
179
|
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/grid/data-binding/basics)).
|
|
@@ -471,6 +478,41 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
471
478
|
* @default 'columns'
|
|
472
479
|
*/
|
|
473
480
|
dataLayoutMode: DataLayoutMode | DataLayoutModeSettings;
|
|
481
|
+
/**
|
|
482
|
+
* 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`.
|
|
483
|
+
* By default, the row pinning feature is disabled.
|
|
484
|
+
*
|
|
485
|
+
* @default false
|
|
486
|
+
*/
|
|
487
|
+
set pinnable(value: boolean | GridRowPinLocation);
|
|
488
|
+
get pinnable(): boolean | GridRowPinLocation;
|
|
489
|
+
/**
|
|
490
|
+
* The array of data items pinned to the top of the Grid.
|
|
491
|
+
* Pinned rows remain visible while the body scrolls and are immune to filtering and pagination.
|
|
492
|
+
*
|
|
493
|
+
* Requires setting pinnable to `true` or a valid `GridRowPinLocation`.
|
|
494
|
+
*/
|
|
495
|
+
pinnedTopRows: Array<any>;
|
|
496
|
+
/**
|
|
497
|
+
* @hidden
|
|
498
|
+
*/
|
|
499
|
+
get pinnedTopRowsToRender(): Array<any>;
|
|
500
|
+
/**
|
|
501
|
+
* The array of data items pinned to the bottom of the Grid.
|
|
502
|
+
* Pinned rows remain visible while the body scrolls and are immune to filtering and pagination.
|
|
503
|
+
*
|
|
504
|
+
* Requires setting pinnable to `true` or a valid `GridRowPinLocation`.
|
|
505
|
+
*/
|
|
506
|
+
pinnedBottomRows: Array<any>;
|
|
507
|
+
/**
|
|
508
|
+
* @hidden
|
|
509
|
+
*/
|
|
510
|
+
get pinnedBottomRowsToRender(): Array<any>;
|
|
511
|
+
/**
|
|
512
|
+
* Sets a function to determine if a data row is pinnable.
|
|
513
|
+
*/
|
|
514
|
+
set isRowPinnable(fn: RowPinnableFn);
|
|
515
|
+
get isRowPinnable(): RowPinnableFn;
|
|
474
516
|
/**
|
|
475
517
|
* Fires when the Grid data is filtered through the UI and the filter descriptor changes.
|
|
476
518
|
*/
|
|
@@ -495,6 +537,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
495
537
|
* Fires when a row is reordered through the UI.
|
|
496
538
|
*/
|
|
497
539
|
rowReorder: EventEmitter<RowReorderEvent>;
|
|
540
|
+
/**
|
|
541
|
+
* Fires when a row’s pinned state is updated through the UI.
|
|
542
|
+
*/
|
|
543
|
+
rowPinChange: EventEmitter<RowPinEvent>;
|
|
498
544
|
/**
|
|
499
545
|
* Fires when the data state of the Grid is changed.
|
|
500
546
|
*/
|
|
@@ -630,6 +676,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
630
676
|
columnMenuTemplates: QueryList<ColumnMenuTemplateDirective>;
|
|
631
677
|
lockedHeader: any;
|
|
632
678
|
header: any;
|
|
679
|
+
pinnedContainers: QueryList<RowPinContainerComponent>;
|
|
633
680
|
footer: QueryList<any>;
|
|
634
681
|
ariaRoot: ElementRef;
|
|
635
682
|
dragTargetContainer: DragTargetContainerDirective;
|
|
@@ -667,6 +714,12 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
667
714
|
* @hidden
|
|
668
715
|
*/
|
|
669
716
|
get flatData(): Array<any>;
|
|
717
|
+
/**
|
|
718
|
+
* @hidden
|
|
719
|
+
*/
|
|
720
|
+
updatePinnedRowTracking(): void;
|
|
721
|
+
private buildViewIndexMap;
|
|
722
|
+
private adjustPinnedItemIndexes;
|
|
670
723
|
private shouldGenerateColumns;
|
|
671
724
|
private direction;
|
|
672
725
|
private notifyTimeout;
|
|
@@ -678,6 +731,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
678
731
|
private defaultSelection;
|
|
679
732
|
private _rowSelected;
|
|
680
733
|
private _isRowSelectable;
|
|
734
|
+
private _isRowPinnable;
|
|
681
735
|
private _cellSelected;
|
|
682
736
|
private _customDetailTemplate;
|
|
683
737
|
private _cellLoadingTemplate;
|
|
@@ -688,6 +742,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
688
742
|
private _customToolbarTemplate;
|
|
689
743
|
private _detailTemplateChildren;
|
|
690
744
|
private _rowReorderable;
|
|
745
|
+
private _pinnable;
|
|
691
746
|
private leafViewportColumns;
|
|
692
747
|
private viewportColumns;
|
|
693
748
|
private _navigable;
|
|
@@ -702,6 +757,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
702
757
|
* @hidden
|
|
703
758
|
*/
|
|
704
759
|
get isStacked(): boolean;
|
|
760
|
+
/**
|
|
761
|
+
* @hidden
|
|
762
|
+
*/
|
|
763
|
+
get isPinnable(): boolean;
|
|
705
764
|
get visibleColumns(): QueryList<ColumnBase>;
|
|
706
765
|
get lockedColumns(): QueryList<ColumnBase>;
|
|
707
766
|
get nonLockedColumns(): QueryList<ColumnBase>;
|
|
@@ -759,9 +818,11 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
759
818
|
private focusElementSubscription;
|
|
760
819
|
private columnRangeChangeSubscription;
|
|
761
820
|
private rowReorderSubscription;
|
|
821
|
+
private rowPinSubscription;
|
|
822
|
+
private pinnedContainersChangeSubscription;
|
|
762
823
|
private rtl;
|
|
763
824
|
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);
|
|
825
|
+
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, pinnedRowTrackingService: PinnedRowTrackingService);
|
|
765
826
|
/**
|
|
766
827
|
* Expands the master row at the specified data row index ([see example](https://www.telerik.com/kendo-angular-ui/components/grid/master-detail)).
|
|
767
828
|
*
|
|
@@ -1091,5 +1152,5 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
1091
1152
|
private shouldResetSelection;
|
|
1092
1153
|
private notifyReorderContainers;
|
|
1093
1154
|
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>;
|
|
1155
|
+
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
1156
|
}
|
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 "./
|
|
49
|
-
import * as i44 from "./rendering/toolbar/tools/
|
|
50
|
-
import * as i45 from "./rendering/toolbar/tools/
|
|
51
|
-
import * as i46 from "./rendering/toolbar/tools/
|
|
52
|
-
import * as i47 from "./rendering/toolbar/tools/
|
|
53
|
-
import * as i48 from "./rendering/toolbar/tools/
|
|
54
|
-
import * as i49 from "./rendering/toolbar/tools/smartbox/smartbox-
|
|
55
|
-
import * as i50 from "./rendering/toolbar/tools/smartbox/smartbox-
|
|
56
|
-
import * as i51 from "./rendering/
|
|
57
|
-
import * as i52 from "./rendering/header/header
|
|
58
|
-
import * as i53 from "./
|
|
59
|
-
import * as i54 from "./
|
|
60
|
-
import * as i55 from "./
|
|
61
|
-
import * as i56 from "
|
|
62
|
-
import * as i57 from "@progress/kendo-angular-
|
|
63
|
-
import * as i58 from "
|
|
64
|
-
import * as i59 from "./filtering/
|
|
65
|
-
import * as i60 from "./filtering/cell/filter-cell
|
|
66
|
-
import * as i61 from "./filtering/cell/
|
|
67
|
-
import * as i62 from "./filtering/cell/
|
|
68
|
-
import * as i63 from "./filtering/cell/
|
|
69
|
-
import * as i64 from "./filtering/cell/
|
|
70
|
-
import * as i65 from "./filtering/cell/filter-cell
|
|
71
|
-
import * as i66 from "./filtering/cell/filter-cell-
|
|
72
|
-
import * as i67 from "./filtering/cell/
|
|
73
|
-
import * as i68 from "./filtering/cell/filter-cell
|
|
74
|
-
import * as i69 from "./filtering/
|
|
75
|
-
import * as i70 from "./filtering/operators/
|
|
76
|
-
import * as i71 from "./filtering/operators/
|
|
77
|
-
import * as i72 from "./filtering/operators/
|
|
78
|
-
import * as i73 from "./filtering/operators/
|
|
79
|
-
import * as i74 from "./filtering/operators/is-
|
|
80
|
-
import * as i75 from "./filtering/operators/is-not-
|
|
81
|
-
import * as i76 from "./filtering/operators/
|
|
82
|
-
import * as i77 from "./filtering/operators/
|
|
83
|
-
import * as i78 from "./filtering/operators/
|
|
84
|
-
import * as i79 from "./filtering/operators/
|
|
85
|
-
import * as i80 from "./filtering/operators/
|
|
86
|
-
import * as i81 from "./filtering/operators/
|
|
87
|
-
import * as i82 from "./filtering/operators/
|
|
88
|
-
import * as i83 from "./filtering/operators/
|
|
89
|
-
import * as i84 from "./filtering/operators/after-
|
|
90
|
-
import * as i85 from "./filtering/operators/
|
|
91
|
-
import * as i86 from "./filtering/operators/before-filter-operator.component";
|
|
92
|
-
import * as i87 from "./filtering/filter-
|
|
93
|
-
import * as i88 from "./filtering/
|
|
94
|
-
import * as i89 from "./filtering/menu/filter-menu
|
|
95
|
-
import * as i90 from "./filtering/menu/filter-menu-
|
|
96
|
-
import * as i91 from "./filtering/menu/
|
|
97
|
-
import * as i92 from "./filtering/menu/string-filter-menu.component";
|
|
98
|
-
import * as i93 from "./filtering/menu/filter-menu
|
|
99
|
-
import * as i94 from "./filtering/menu/
|
|
100
|
-
import * as i95 from "./filtering/menu/numeric-filter-menu
|
|
101
|
-
import * as i96 from "./filtering/menu/
|
|
102
|
-
import * as i97 from "./filtering/menu/date-filter-menu.component";
|
|
103
|
-
import * as i98 from "./filtering/menu/filter-menu
|
|
104
|
-
import * as i99 from "./filtering/menu/
|
|
105
|
-
import * as i100 from "./filtering/menu/filter-menu
|
|
106
|
-
import * as i101 from "./filtering/menu/filter-
|
|
107
|
-
import * as i102 from "./
|
|
108
|
-
import * as i103 from "./column-menu/column-
|
|
109
|
-
import * as i104 from "./
|
|
110
|
-
import * as i105 from "./
|
|
111
|
-
import * as i106 from "./column-menu/column-menu-
|
|
112
|
-
import * as i107 from "./column-menu/column-menu-
|
|
113
|
-
import * as i108 from "./column-menu/column-menu-item
|
|
114
|
-
import * as i109 from "./column-menu/column-menu-
|
|
115
|
-
import * as i110 from "./column-menu/column-menu.component";
|
|
116
|
-
import * as i111 from "./column-menu/column-menu
|
|
117
|
-
import * as i112 from "./column-menu/column-menu-
|
|
118
|
-
import * as i113 from "./column-menu/column-menu-
|
|
119
|
-
import * as i114 from "./column-menu/column-menu-
|
|
120
|
-
import * as i115 from "./column-menu/column-menu-
|
|
121
|
-
import * as i116 from "./column-menu/column-menu-
|
|
122
|
-
import * as i117 from "./column-menu/column-menu-
|
|
123
|
-
import * as i118 from "./column-menu/column-menu-autosize
|
|
124
|
-
import * as i119 from "./
|
|
125
|
-
import * as i120 from "./
|
|
126
|
-
import * as i121 from "./rendering/
|
|
127
|
-
import * as i122 from "./
|
|
128
|
-
import * as i123 from "./localization/
|
|
129
|
-
import * as i124 from "./
|
|
130
|
-
import * as i125 from "./
|
|
131
|
-
import * as i126 from "./
|
|
132
|
-
import * as i127 from "./
|
|
133
|
-
import * as i128 from "./
|
|
134
|
-
import * as i129 from "./editing-directives/
|
|
135
|
-
import * as i130 from "./editing-directives/
|
|
136
|
-
import * as i131 from "./editing-directives/
|
|
137
|
-
import * as i132 from "./
|
|
138
|
-
import * as i133 from "./rendering/
|
|
139
|
-
import * as i134 from "./
|
|
140
|
-
import * as i135 from "./
|
|
141
|
-
import * as i136 from "./rendering/
|
|
142
|
-
import * as i137 from "./
|
|
143
|
-
import * as i138 from "./aggregates/status-bar
|
|
144
|
-
import * as i139 from "./
|
|
145
|
-
import * as i140 from "./
|
|
146
|
-
import * as i141 from "./editing/form/
|
|
147
|
-
import * as i142 from "./editing/form/form
|
|
148
|
-
import * as i143 from "./
|
|
149
|
-
import * as i144 from "./
|
|
150
|
-
import * as i145 from "./
|
|
151
|
-
import * as i146 from "./state-management/
|
|
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
|
}
|
|
@@ -30,9 +30,9 @@ export declare class GroupHeaderComponent implements DoCheck {
|
|
|
30
30
|
groupItemClass: boolean;
|
|
31
31
|
tableGroupRowClass: boolean;
|
|
32
32
|
isExpanded: boolean;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
chevronDownIcon: SVGIcon;
|
|
34
|
+
chevronRightIcon: SVGIcon;
|
|
35
|
+
chevronLeftIcon: SVGIcon;
|
|
36
36
|
constructor(groupsService: GroupsService, groupInfoService: GroupInfoService, ctx: ContextService);
|
|
37
37
|
ngDoCheck(): void;
|
|
38
38
|
prefixGroupCell(item: GroupItem): any[];
|
|
@@ -21,4 +21,18 @@ export interface GroupableSettings {
|
|
|
21
21
|
* When `true`, shows the group footer template when the group is collapsed.
|
|
22
22
|
*/
|
|
23
23
|
showFooter: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* When `true`, keeps the group header row pinned at the top of the scroll
|
|
26
|
+
* container while its group's data rows are visible.
|
|
27
|
+
*
|
|
28
|
+
* @default false
|
|
29
|
+
*/
|
|
30
|
+
stickyHeaders?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* When `true`, keeps the group footer row pinned at the bottom of the scroll
|
|
33
|
+
* container while its group's data rows are visible.
|
|
34
|
+
*
|
|
35
|
+
* @default false
|
|
36
|
+
*/
|
|
37
|
+
stickyFooters?: boolean;
|
|
24
38
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { GridItem } from '../../data/grid-item.interface';
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
* Represents the range of a group within the flat data array.
|
|
9
|
+
*/
|
|
10
|
+
export interface GroupRange {
|
|
11
|
+
headerIndex: number;
|
|
12
|
+
footerIndex: number | null;
|
|
13
|
+
firstChildIndex: number;
|
|
14
|
+
lastChildIndex: number;
|
|
15
|
+
level: number;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
* Pairs a GridItem with its flat-data index.
|
|
20
|
+
*/
|
|
21
|
+
export interface StickyGroupItem {
|
|
22
|
+
item: GridItem;
|
|
23
|
+
flatIndex: number;
|
|
24
|
+
}
|