@progress/kendo-angular-grid 25.0.0-develop.3 → 25.0.0-develop.30
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/codemods/libs/common/src/codemods/utils.js +15 -0
- package/codemods/libs/grid/codemods/v25/grid-rendering-changes.js +23 -0
- package/fesm2022/progress-kendo-angular-grid.mjs +1770 -1116
- package/index.d.ts +295 -58
- package/package-metadata.mjs +2 -2
- package/package.json +31 -24
- package/schematics/ngAdd/index.js +7 -7
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { TemplateRef, OnDestroy, AfterViewInit, QueryList, OnInit, ElementRef, EventEmitter, InjectionToken, ChangeDetectorRef, SimpleChanges, NgZone, Renderer2, AfterViewChecked, OnChanges, TrackByFunction, SimpleChange, ComponentRef, ViewContainerRef, AfterContentInit, DoCheck, PipeTransform, Type, AfterContentChecked } from '@angular/core';
|
|
7
|
-
import * as
|
|
7
|
+
import * as i15 from '@progress/kendo-angular-common';
|
|
8
8
|
import { PreventableEvent as PreventableEvent$1, ResizeSensorComponent, ScrollbarService, DraggableDirective, TemplateContextDirective } from '@progress/kendo-angular-common';
|
|
9
9
|
export { BrowserSupportService, ScrollbarService } from '@progress/kendo-angular-common';
|
|
10
10
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
@@ -20,7 +20,7 @@ import { AIPromptSettings, AIPromptComponent, PromptOutput } from '@progress/ken
|
|
|
20
20
|
import { WindowSettings, WindowComponent, DialogRef, DialogService, DialogAnimation, ActionsLayout, DialogContentBase, WindowService } from '@progress/kendo-angular-dialog';
|
|
21
21
|
import { DragTargetPressEvent, DragTargetDragEvent, DropTargetEvent, AdaptiveService, AdaptiveSize, DragTargetDataFn, DragTargetContainerDirective, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
|
22
22
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
23
|
-
import * as
|
|
23
|
+
import * as i58 from '@progress/kendo-angular-pager';
|
|
24
24
|
import { PagerTemplateDirective, PagerContextService } from '@progress/kendo-angular-pager';
|
|
25
25
|
import { PopupRef, PopupService } from '@progress/kendo-angular-popup';
|
|
26
26
|
import { ActionSheetComponent } from '@progress/kendo-angular-navigation';
|
|
@@ -34,7 +34,7 @@ import { IntlService } from '@progress/kendo-angular-intl';
|
|
|
34
34
|
import { ChipComponent, Button, ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor, SpeechToTextButtonSettings } from '@progress/kendo-angular-buttons';
|
|
35
35
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
|
36
36
|
import { DateInputFormatPlaceholder, CalendarView, DatePickerComponent } from '@progress/kendo-angular-dateinputs';
|
|
37
|
-
import * as
|
|
37
|
+
import * as i59 from '@progress/kendo-angular-toolbar';
|
|
38
38
|
import { ToolBarButtonComponent, RefreshService, ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
|
|
39
39
|
import { TabStripComponent } from '@progress/kendo-angular-layout';
|
|
40
40
|
import { ContextMenuSelectEvent } from '@progress/kendo-angular-menu';
|
|
@@ -1802,6 +1802,195 @@ declare class GridAIRequestResponseService {
|
|
|
1802
1802
|
static ɵprov: i0.ɵɵInjectableDeclaration<GridAIRequestResponseService>;
|
|
1803
1803
|
}
|
|
1804
1804
|
|
|
1805
|
+
/**
|
|
1806
|
+
* Sets options for the Grid's grouping feature.
|
|
1807
|
+
*/
|
|
1808
|
+
interface GroupableSettings {
|
|
1809
|
+
/**
|
|
1810
|
+
* If `true`, lets users group by dragging and dropping column headers.
|
|
1811
|
+
* If set to `true`, users can group the Grid by dragging column headers.
|
|
1812
|
+
* Grouping is off by default.
|
|
1813
|
+
*/
|
|
1814
|
+
enabled?: boolean;
|
|
1815
|
+
/**
|
|
1816
|
+
* Represents the text shown when the grouping area is empty.
|
|
1817
|
+
* The default is **Drag a column header and drop it here to group by that column**.
|
|
1818
|
+
*/
|
|
1819
|
+
emptyText?: string;
|
|
1820
|
+
/**
|
|
1821
|
+
* When `true`, shows the group footer template when the group is collapsed.
|
|
1822
|
+
*/
|
|
1823
|
+
showFooter?: boolean;
|
|
1824
|
+
/**
|
|
1825
|
+
* When `true`, keeps the group header row pinned at the top of the scroll
|
|
1826
|
+
* container while its group's data rows are visible.
|
|
1827
|
+
*
|
|
1828
|
+
* @default false
|
|
1829
|
+
*/
|
|
1830
|
+
stickyHeaders?: boolean;
|
|
1831
|
+
/**
|
|
1832
|
+
* When `true`, keeps the group footer row pinned at the bottom of the scroll
|
|
1833
|
+
* container while its group's data rows are visible.
|
|
1834
|
+
*
|
|
1835
|
+
* @default false
|
|
1836
|
+
*/
|
|
1837
|
+
stickyFooters?: boolean;
|
|
1838
|
+
/**
|
|
1839
|
+
* Sets the visualization mode for grouped data.
|
|
1840
|
+
* When not set, the Grid uses the `'default'` mode.
|
|
1841
|
+
*
|
|
1842
|
+
* @default 'default'
|
|
1843
|
+
*/
|
|
1844
|
+
displayMode?: GroupDisplayMode;
|
|
1845
|
+
/**
|
|
1846
|
+
* Initially hides the data column for each field the Grid is grouped by.
|
|
1847
|
+
*
|
|
1848
|
+
* @default false
|
|
1849
|
+
*/
|
|
1850
|
+
hideGroupedColumns?: boolean;
|
|
1851
|
+
/**
|
|
1852
|
+
* Allows customizing the synthesized group columns.
|
|
1853
|
+
* Applicable when `displayMode` is `'singleColumn'` or `'multipleColumns'`.
|
|
1854
|
+
*
|
|
1855
|
+
* Utilizing the callback approach enables you to customize each column individually in `'multipleColumns'` mode.
|
|
1856
|
+
* Providing a GroupColumnSettings configuration object applies the settings for all group columns.
|
|
1857
|
+
*/
|
|
1858
|
+
groupColumn?: GroupColumnFn | GroupColumnSettings;
|
|
1859
|
+
}
|
|
1860
|
+
/**
|
|
1861
|
+
* Specifies the visualization mode for grouped data in the Grid.
|
|
1862
|
+
*
|
|
1863
|
+
* - `'default'` — An empty indent cell is inserted per group level
|
|
1864
|
+
* before each row, visually reflecting nesting depth via horizontal offset.
|
|
1865
|
+
* - `'compact'` — Removes the empty indent cells. Group header rows span the full column
|
|
1866
|
+
* width, improving data density in grids with many group levels.
|
|
1867
|
+
* - `'singleColumn'` — Consolidates all group levels into one dedicated left-positioned
|
|
1868
|
+
* group column. Nesting depth is conveyed through increasing left padding inside that column. Long group titles truncate with an ellipsis.
|
|
1869
|
+
* - `'multipleColumns'` — Renders one dedicated group column per active group level.
|
|
1870
|
+
* Each column displays the value for its corresponding hierarchy level. Long group titles
|
|
1871
|
+
* truncate with an ellipsis.
|
|
1872
|
+
*/
|
|
1873
|
+
type GroupDisplayMode = 'default' | 'compact' | 'singleColumn' | 'multipleColumns';
|
|
1874
|
+
/**
|
|
1875
|
+
* Represents the callback used by the [`groupColumn`](slug:api_grid_groupablesettings#groupcolumn) option of the [`GroupableSettings`](slug://api_grid_groupablesettings) interface.
|
|
1876
|
+
* Allows customizing each synthesized group column individually.
|
|
1877
|
+
* Applicable when [`displayMode`](slug:api_grid_groupablesettings#displaymode) is `'multipleColumns'`.
|
|
1878
|
+
*
|
|
1879
|
+
* @example
|
|
1880
|
+
* ```typescript
|
|
1881
|
+
* groupColumnCallback({ field }) {
|
|
1882
|
+
* return {
|
|
1883
|
+
* width: field === 'Category.CategoryName' ? 260 : 160,
|
|
1884
|
+
* title: field === 'Category.CategoryName' ? 'Category' : field,
|
|
1885
|
+
* reorderable: false
|
|
1886
|
+
* };
|
|
1887
|
+
* }
|
|
1888
|
+
* ```
|
|
1889
|
+
*/
|
|
1890
|
+
type GroupColumnFn = (context: GroupDescriptor) => GroupColumnSettings;
|
|
1891
|
+
/**
|
|
1892
|
+
* Sets options for the Grid's synthesized group columns.
|
|
1893
|
+
* Has effect when [`displayMode`](slug:api_grid_groupablesettings#displaymode) is `'singleColumn'` or `'multipleColumns'`.
|
|
1894
|
+
*/
|
|
1895
|
+
interface GroupColumnSettings {
|
|
1896
|
+
/**
|
|
1897
|
+
* The title of the column.
|
|
1898
|
+
*/
|
|
1899
|
+
title?: string;
|
|
1900
|
+
/**
|
|
1901
|
+
* The width of the column in pixels.
|
|
1902
|
+
*/
|
|
1903
|
+
width?: number;
|
|
1904
|
+
/**
|
|
1905
|
+
* Toggles the locked (frozen) state of the column.
|
|
1906
|
+
*
|
|
1907
|
+
* @default false
|
|
1908
|
+
*/
|
|
1909
|
+
locked?: boolean;
|
|
1910
|
+
/**
|
|
1911
|
+
* Specifies if the column can be locked or unlocked from the column menu or by reordering.
|
|
1912
|
+
*
|
|
1913
|
+
* @default true
|
|
1914
|
+
*/
|
|
1915
|
+
lockable?: boolean;
|
|
1916
|
+
/**
|
|
1917
|
+
* Specifies if the column is always visible when scrolling the Grid horizontally.
|
|
1918
|
+
*
|
|
1919
|
+
* @default false
|
|
1920
|
+
*/
|
|
1921
|
+
sticky?: boolean;
|
|
1922
|
+
/**
|
|
1923
|
+
* Specifies if the column can be stuck or unstuck from the column menu.
|
|
1924
|
+
*
|
|
1925
|
+
* @default true
|
|
1926
|
+
*/
|
|
1927
|
+
stickable?: boolean;
|
|
1928
|
+
/**
|
|
1929
|
+
* Specifies if the column is resizable.
|
|
1930
|
+
*
|
|
1931
|
+
* @default true
|
|
1932
|
+
*/
|
|
1933
|
+
resizable?: boolean;
|
|
1934
|
+
/**
|
|
1935
|
+
* Sets the distance in pixels by which the column width is adjusted during keyboard navigation resizing.
|
|
1936
|
+
* Used when resizing columns with `Alt/Option + Left/Right Arrow` keyboard shortcuts.
|
|
1937
|
+
*
|
|
1938
|
+
* @default 10
|
|
1939
|
+
*/
|
|
1940
|
+
resizeStep?: number;
|
|
1941
|
+
/**
|
|
1942
|
+
* Sets the minimum width (in pixels) for resizing the column by using the UI.
|
|
1943
|
+
* The `autoFitColumn` and `autoFitColumns` methods have higher priority.
|
|
1944
|
+
*
|
|
1945
|
+
* @default 10
|
|
1946
|
+
*/
|
|
1947
|
+
minResizableWidth?: number;
|
|
1948
|
+
/**
|
|
1949
|
+
* Sets the maximum width (in pixels) for resizing the column by using the UI.
|
|
1950
|
+
* By default, the maximum width is not restricted.
|
|
1951
|
+
* The `autoFitColumn` and `autoFitColumns` methods have higher priority.
|
|
1952
|
+
*/
|
|
1953
|
+
maxResizableWidth?: number;
|
|
1954
|
+
/**
|
|
1955
|
+
* Specifies if the column is automatically resized during initialization to fit its header and row content.
|
|
1956
|
+
*/
|
|
1957
|
+
autoSize?: boolean;
|
|
1958
|
+
/**
|
|
1959
|
+
* Specifies if the column is reorderable.
|
|
1960
|
+
*
|
|
1961
|
+
* @default true
|
|
1962
|
+
*/
|
|
1963
|
+
reorderable?: boolean;
|
|
1964
|
+
/**
|
|
1965
|
+
* Specifies if the column menu is shown for the column.
|
|
1966
|
+
*
|
|
1967
|
+
* @default true
|
|
1968
|
+
*/
|
|
1969
|
+
columnMenu?: boolean;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
/**
|
|
1973
|
+
* Represents the column for displaying groups in the 'singleColumn' and 'multipleColumns' grouping modes.
|
|
1974
|
+
*
|
|
1975
|
+
* @hidden
|
|
1976
|
+
*/
|
|
1977
|
+
declare class GroupColumnComponent extends ColumnBase {
|
|
1978
|
+
private localization;
|
|
1979
|
+
isGroupColumn: boolean;
|
|
1980
|
+
groupLevel: number;
|
|
1981
|
+
includeInChooser: boolean;
|
|
1982
|
+
dataColumnDisplayTitle: string;
|
|
1983
|
+
groupingMode: GroupDisplayMode;
|
|
1984
|
+
sortable: boolean;
|
|
1985
|
+
filterable: boolean;
|
|
1986
|
+
editable: boolean;
|
|
1987
|
+
groupable: boolean;
|
|
1988
|
+
constructor(localization: LocalizationService, parent?: ColumnBase, idService?: IdService);
|
|
1989
|
+
get displayTitle(): string;
|
|
1990
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupColumnComponent, [null, { optional: true; host: true; skipSelf: true; }, { optional: true; }]>;
|
|
1991
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupColumnComponent, "kendo-grid-group-column", never, { "sortable": { "alias": "sortable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; }, {}, never, never, true, never>;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1805
1994
|
/**
|
|
1806
1995
|
* Uses a predicate to control conditional rendering for the
|
|
1807
1996
|
* [`DetailTemplateDirective`](https://www.telerik.com/kendo-angular-ui/components/grid/api/detailtemplatedirective).
|
|
@@ -2516,6 +2705,7 @@ declare class GroupsService implements OnDestroy {
|
|
|
2516
2705
|
* @hidden
|
|
2517
2706
|
*/
|
|
2518
2707
|
declare class GroupInfoService {
|
|
2708
|
+
groupColumnGroupHeaderTemplate: any;
|
|
2519
2709
|
private _columnList;
|
|
2520
2710
|
private get columns();
|
|
2521
2711
|
registerColumnsContainer(columns: () => ColumnList): void;
|
|
@@ -2523,43 +2713,8 @@ declare class GroupInfoService {
|
|
|
2523
2713
|
isGroupable(groupField: string): boolean;
|
|
2524
2714
|
groupTitle(item: GroupItem | GroupDescriptor): string;
|
|
2525
2715
|
groupHeaderTemplate(item: GroupItem | GroupDescriptor): any;
|
|
2716
|
+
columnForGroup(group: any): ColumnComponent;
|
|
2526
2717
|
private groupField;
|
|
2527
|
-
private columnForGroup;
|
|
2528
|
-
}
|
|
2529
|
-
|
|
2530
|
-
/**
|
|
2531
|
-
* Sets options for the Grid's grouping feature.
|
|
2532
|
-
*/
|
|
2533
|
-
interface GroupableSettings {
|
|
2534
|
-
/**
|
|
2535
|
-
* If `true`, lets users group by dragging and dropping column headers.
|
|
2536
|
-
* If set to `true`, users can group the Grid by dragging column headers.
|
|
2537
|
-
* Grouping is off by default.
|
|
2538
|
-
*/
|
|
2539
|
-
enabled?: boolean;
|
|
2540
|
-
/**
|
|
2541
|
-
* Represents the text shown when the grouping area is empty.
|
|
2542
|
-
* The default is **Drag a column header and drop it here to group by that column**.
|
|
2543
|
-
*/
|
|
2544
|
-
emptyText?: string;
|
|
2545
|
-
/**
|
|
2546
|
-
* When `true`, shows the group footer template when the group is collapsed.
|
|
2547
|
-
*/
|
|
2548
|
-
showFooter: boolean;
|
|
2549
|
-
/**
|
|
2550
|
-
* When `true`, keeps the group header row pinned at the top of the scroll
|
|
2551
|
-
* container while its group's data rows are visible.
|
|
2552
|
-
*
|
|
2553
|
-
* @default false
|
|
2554
|
-
*/
|
|
2555
|
-
stickyHeaders?: boolean;
|
|
2556
|
-
/**
|
|
2557
|
-
* When `true`, keeps the group footer row pinned at the bottom of the scroll
|
|
2558
|
-
* container while its group's data rows are visible.
|
|
2559
|
-
*
|
|
2560
|
-
* @default false
|
|
2561
|
-
*/
|
|
2562
|
-
stickyFooters?: boolean;
|
|
2563
2718
|
}
|
|
2564
2719
|
|
|
2565
2720
|
/**
|
|
@@ -4080,6 +4235,7 @@ declare class StickyGroupContainerComponent implements OnInit, OnDestroy, AfterV
|
|
|
4080
4235
|
tableWidth: number;
|
|
4081
4236
|
lockedWidth: number;
|
|
4082
4237
|
isLocked: boolean;
|
|
4238
|
+
groupingMode: GroupDisplayMode;
|
|
4083
4239
|
hostClass: boolean;
|
|
4084
4240
|
get isBottom(): boolean;
|
|
4085
4241
|
hostRole: string;
|
|
@@ -4151,7 +4307,7 @@ declare class StickyGroupContainerComponent implements OnInit, OnDestroy, AfterV
|
|
|
4151
4307
|
private getFooterRowCells;
|
|
4152
4308
|
private syncLockedRowHeights;
|
|
4153
4309
|
static ɵfac: i0.ɵɵFactoryDeclaration<StickyGroupContainerComponent, never>;
|
|
4154
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StickyGroupContainerComponent, "[kendoGridStickyGroupContainer]", never, { "position": { "alias": "position"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lockedColumns": { "alias": "lockedColumns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "hasGroupHeaderColumn": { "alias": "hasGroupHeaderColumn"; "required": false; }; "groupHeaderColumns": { "alias": "groupHeaderColumns"; "required": false; }; "tableWidth": { "alias": "tableWidth"; "required": false; }; "lockedWidth": { "alias": "lockedWidth"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; }, {}, never, never, true, never>;
|
|
4310
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StickyGroupContainerComponent, "[kendoGridStickyGroupContainer]", never, { "position": { "alias": "position"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lockedColumns": { "alias": "lockedColumns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "hasGroupHeaderColumn": { "alias": "hasGroupHeaderColumn"; "required": false; }; "groupHeaderColumns": { "alias": "groupHeaderColumns"; "required": false; }; "tableWidth": { "alias": "tableWidth"; "required": false; }; "lockedWidth": { "alias": "lockedWidth"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
4155
4311
|
}
|
|
4156
4312
|
|
|
4157
4313
|
/**
|
|
@@ -4204,6 +4360,7 @@ declare class ListComponent implements OnInit, OnDestroy, AfterViewInit, AfterVi
|
|
|
4204
4360
|
loadingTemplate: TemplateRef<any>;
|
|
4205
4361
|
sort: Array<SortDescriptor>;
|
|
4206
4362
|
size: GridSize;
|
|
4363
|
+
groupingMode: GroupDisplayMode;
|
|
4207
4364
|
contentScroll: EventEmitter<any>;
|
|
4208
4365
|
pageChange: EventEmitter<Action>;
|
|
4209
4366
|
scrollBottom: EventEmitter<void>;
|
|
@@ -4373,7 +4530,7 @@ declare class ListComponent implements OnInit, OnDestroy, AfterViewInit, AfterVi
|
|
|
4373
4530
|
private calcVirtualPageSize;
|
|
4374
4531
|
private setScrollerOptions;
|
|
4375
4532
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
4376
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-grid-list", never, { "data": { "alias": "data"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "total": { "alias": "total"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "take": { "alias": "take"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "contentScroll": "contentScroll"; "pageChange": "pageChange"; "scrollBottom": "scrollBottom"; }, never, never, true, never>;
|
|
4533
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-grid-list", never, { "data": { "alias": "data"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "total": { "alias": "total"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "take": { "alias": "take"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, { "contentScroll": "contentScroll"; "pageChange": "pageChange"; "scrollBottom": "scrollBottom"; }, never, never, true, never>;
|
|
4377
4534
|
}
|
|
4378
4535
|
|
|
4379
4536
|
/**
|
|
@@ -5006,11 +5163,12 @@ declare class RowPinContainerComponent implements AfterViewChecked {
|
|
|
5006
5163
|
detailRowHeight: number;
|
|
5007
5164
|
loading: boolean;
|
|
5008
5165
|
size: GridSize;
|
|
5166
|
+
groupingMode: GroupDisplayMode;
|
|
5009
5167
|
constructor(localization: LocalizationService);
|
|
5010
5168
|
ngAfterViewChecked(): void;
|
|
5011
5169
|
get ariaLabel(): string;
|
|
5012
5170
|
static ɵfac: i0.ɵɵFactoryDeclaration<RowPinContainerComponent, never>;
|
|
5013
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RowPinContainerComponent, "kendo-grid-rowpin-container", never, { "leafColumns": { "alias": "leafColumns"; "required": false; }; "lockedLeafColumns": { "alias": "lockedLeafColumns"; "required": false; }; "nonLockedLeafColumns": { "alias": "nonLockedLeafColumns"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "position": { "alias": "position"; "required": false; }; "rowsToRender": { "alias": "rowsToRender"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "lockedWidth": { "alias": "lockedWidth"; "required": false; }; "nonLockedWidth": { "alias": "nonLockedWidth"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
5171
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowPinContainerComponent, "kendo-grid-rowpin-container", never, { "leafColumns": { "alias": "leafColumns"; "required": false; }; "lockedLeafColumns": { "alias": "lockedLeafColumns"; "required": false; }; "nonLockedLeafColumns": { "alias": "nonLockedLeafColumns"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "position": { "alias": "position"; "required": false; }; "rowsToRender": { "alias": "rowsToRender"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "lockedWidth": { "alias": "lockedWidth"; "required": false; }; "nonLockedWidth": { "alias": "nonLockedWidth"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
5014
5172
|
}
|
|
5015
5173
|
|
|
5016
5174
|
/**
|
|
@@ -5131,6 +5289,35 @@ declare class PinnedRowTrackingService {
|
|
|
5131
5289
|
static ɵprov: i0.ɵɵInjectableDeclaration<PinnedRowTrackingService>;
|
|
5132
5290
|
}
|
|
5133
5291
|
|
|
5292
|
+
/**
|
|
5293
|
+
* Represents the group-header template of the synthetic group column that is rendered when the Grid group [`displayMode`](slug:api_grid_groupablesettings#displaymode) is `singleColumn` or `multipleColumns`. It allows customization of the group header content.
|
|
5294
|
+
* To define the group header template, nest an `<ng-template>` tag with the `kendoGridGroupColumnGroupHeaderTemplate`
|
|
5295
|
+
* directive inside the `<kendo-grid>`.
|
|
5296
|
+
*
|
|
5297
|
+
* The template context is set to the current data item and provides the following fields:
|
|
5298
|
+
* - `group`—The current group item.
|
|
5299
|
+
* - `field`—The name of the field used for grouping.
|
|
5300
|
+
* - `value`—The current group value.
|
|
5301
|
+
* - `aggregates`—Aggregate values for the current group.
|
|
5302
|
+
*
|
|
5303
|
+
* @example
|
|
5304
|
+
* ```html
|
|
5305
|
+
* <kendo-grid>
|
|
5306
|
+
* <ng-template kendoGridGroupColumnGroupHeaderTemplate let-field="field" let-value="value">
|
|
5307
|
+
* <span title="Group Column Group Header Template">
|
|
5308
|
+
* <strong>{{field}}: {{ value }}</strong>
|
|
5309
|
+
* </span>
|
|
5310
|
+
* </ng-template>
|
|
5311
|
+
* </kendo-grid>
|
|
5312
|
+
* ```
|
|
5313
|
+
*/
|
|
5314
|
+
declare class GroupColumnGroupHeaderTemplateDirective {
|
|
5315
|
+
templateRef: TemplateRef<any>;
|
|
5316
|
+
constructor(templateRef: TemplateRef<any>);
|
|
5317
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupColumnGroupHeaderTemplateDirective, [{ optional: true; }]>;
|
|
5318
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GroupColumnGroupHeaderTemplateDirective, "[kendoGridGroupColumnGroupHeaderTemplate]", never, {}, {}, never, never, true, never>;
|
|
5319
|
+
}
|
|
5320
|
+
|
|
5134
5321
|
/**
|
|
5135
5322
|
* Represents the Kendo UI for Angular Data Grid component.
|
|
5136
5323
|
*
|
|
@@ -5352,6 +5539,17 @@ declare class GridComponent implements AfterContentInit, AfterViewInit, OnDestro
|
|
|
5352
5539
|
* @hidden
|
|
5353
5540
|
*/
|
|
5354
5541
|
get isActionSheetExpanded(): boolean;
|
|
5542
|
+
/**
|
|
5543
|
+
* @hidden
|
|
5544
|
+
*/
|
|
5545
|
+
get groupingMode(): GroupDisplayMode;
|
|
5546
|
+
/**
|
|
5547
|
+
* @hidden
|
|
5548
|
+
* The groups column in 'singleColumn' grouping mode.
|
|
5549
|
+
* Created once and reused across change detection cycles so that its state
|
|
5550
|
+
* is not lost when the view re-renders.
|
|
5551
|
+
*/
|
|
5552
|
+
get singleGroupColumn(): GroupColumnComponent;
|
|
5355
5553
|
/**
|
|
5356
5554
|
* @hidden
|
|
5357
5555
|
*/
|
|
@@ -5704,6 +5902,7 @@ declare class GridComponent implements AfterContentInit, AfterViewInit, OnDestro
|
|
|
5704
5902
|
get toolbarTemplate(): ToolbarTemplateDirective;
|
|
5705
5903
|
set toolbarTemplate(customToolbarTemplate: ToolbarTemplateDirective);
|
|
5706
5904
|
columnMenuTemplates: QueryList<ColumnMenuTemplateDirective>;
|
|
5905
|
+
set groupColumnGroupHeaderTemplates(value: QueryList<GroupColumnGroupHeaderTemplateDirective>);
|
|
5707
5906
|
lockedHeader: any;
|
|
5708
5907
|
header: any;
|
|
5709
5908
|
pinnedContainers: QueryList<RowPinContainerComponent>;
|
|
@@ -5778,6 +5977,9 @@ declare class GridComponent implements AfterContentInit, AfterViewInit, OnDestro
|
|
|
5778
5977
|
private _navigable;
|
|
5779
5978
|
private _size;
|
|
5780
5979
|
private _loading;
|
|
5980
|
+
private _singleGroupColumn;
|
|
5981
|
+
private _multiGroupColumns;
|
|
5982
|
+
private _hiddenByGrouping;
|
|
5781
5983
|
private _showPagerInput;
|
|
5782
5984
|
private _showPagerPageText;
|
|
5783
5985
|
private _showPagerItemsText;
|
|
@@ -6152,6 +6354,18 @@ declare class GridComponent implements AfterContentInit, AfterViewInit, OnDestro
|
|
|
6152
6354
|
private columnInstance;
|
|
6153
6355
|
private verifySettings;
|
|
6154
6356
|
private autoGenerateColumns;
|
|
6357
|
+
private applyGroupColumnSettings;
|
|
6358
|
+
/**
|
|
6359
|
+
* Ensures the correct synthesized group columns are present for the active `displayMode`:
|
|
6360
|
+
* - `'singleColumn'`: one shared column for all group levels.
|
|
6361
|
+
* - `'multipleColumns'`: one column per active group descriptor.
|
|
6362
|
+
* Removes all group columns when neither mode is active.
|
|
6363
|
+
*/
|
|
6364
|
+
private syncGroupColumn;
|
|
6365
|
+
private resolveGroupColumns;
|
|
6366
|
+
private createGroupColumn;
|
|
6367
|
+
private applyGroupColumnConfigs;
|
|
6368
|
+
private syncHiddenGroupedColumns;
|
|
6155
6369
|
/**
|
|
6156
6370
|
* @hidden
|
|
6157
6371
|
*/
|
|
@@ -6182,7 +6396,7 @@ declare class GridComponent implements AfterContentInit, AfterViewInit, OnDestro
|
|
|
6182
6396
|
private shouldResetSelection;
|
|
6183
6397
|
private notifyReorderContainers;
|
|
6184
6398
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
6185
|
-
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>;
|
|
6399
|
+
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", "groupColumnGroupHeaderTemplates"], ["kendo-toolbar"], true, never>;
|
|
6186
6400
|
}
|
|
6187
6401
|
|
|
6188
6402
|
/**
|
|
@@ -6861,8 +7075,9 @@ declare class NavigationMetadata {
|
|
|
6861
7075
|
isStacked: boolean;
|
|
6862
7076
|
pinnedTopRowsCount: number;
|
|
6863
7077
|
pinnedBottomRowsCount: number;
|
|
7078
|
+
isColumnsGroupMode: boolean;
|
|
6864
7079
|
get maxLogicalRowIndex(): number;
|
|
6865
|
-
constructor(dataRows: number, headerRows: number, isVirtual: boolean, hasPager: boolean, hasDetailTemplate: boolean, gridElement: ElementRef, virtualColumns: boolean, columns: any, footerRow: number, isStacked: boolean, pinnedTopRowsCount
|
|
7080
|
+
constructor(dataRows: number, headerRows: number, isVirtual: boolean, hasPager: boolean, hasDetailTemplate: boolean, gridElement: ElementRef, virtualColumns: boolean, columns: any, footerRow: number, isStacked: boolean, pinnedTopRowsCount: number, pinnedBottomRowsCount: number, isColumnsGroupMode: boolean);
|
|
6866
7081
|
}
|
|
6867
7082
|
|
|
6868
7083
|
/**
|
|
@@ -7143,6 +7358,7 @@ declare class ColGroupComponent {
|
|
|
7143
7358
|
groups: Array<GroupDescriptor>;
|
|
7144
7359
|
detailTemplate: DetailTemplateDirective;
|
|
7145
7360
|
sort: Array<SortDescriptor>;
|
|
7361
|
+
groupingMode: GroupDisplayMode;
|
|
7146
7362
|
constructor(ctx: ContextService);
|
|
7147
7363
|
getColumnWidth(column: ColumnBase): string;
|
|
7148
7364
|
get columnsToRender(): Array<ColumnBase>;
|
|
@@ -7153,7 +7369,7 @@ declare class ColGroupComponent {
|
|
|
7153
7369
|
private isSortable;
|
|
7154
7370
|
private sortDescriptor;
|
|
7155
7371
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColGroupComponent, never>;
|
|
7156
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColGroupComponent, "[kendoGridColGroup]", never, { "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; }, {}, never, never, true, never>;
|
|
7372
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColGroupComponent, "[kendoGridColGroup]", never, { "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
7157
7373
|
}
|
|
7158
7374
|
|
|
7159
7375
|
/**
|
|
@@ -7297,6 +7513,7 @@ declare class GroupHeaderComponent implements DoCheck {
|
|
|
7297
7513
|
groupsService: GroupsService;
|
|
7298
7514
|
groupInfoService: GroupInfoService;
|
|
7299
7515
|
private ctx;
|
|
7516
|
+
private columnInfoService;
|
|
7300
7517
|
rowIndex: number;
|
|
7301
7518
|
logicalRowIndex: number;
|
|
7302
7519
|
item: GroupItem;
|
|
@@ -7305,6 +7522,7 @@ declare class GroupHeaderComponent implements DoCheck {
|
|
|
7305
7522
|
totalColumnsCount: number;
|
|
7306
7523
|
hasGroupHeaderColumn: boolean;
|
|
7307
7524
|
groupHeaderColumns: any[];
|
|
7525
|
+
groupingMode: GroupDisplayMode;
|
|
7308
7526
|
columns: any;
|
|
7309
7527
|
groups: Array<GroupDescriptor>;
|
|
7310
7528
|
groupItemClass: boolean;
|
|
@@ -7313,8 +7531,16 @@ declare class GroupHeaderComponent implements DoCheck {
|
|
|
7313
7531
|
chevronDownIcon: SVGIcon;
|
|
7314
7532
|
chevronRightIcon: SVGIcon;
|
|
7315
7533
|
chevronLeftIcon: SVGIcon;
|
|
7316
|
-
constructor(groupsService: GroupsService, groupInfoService: GroupInfoService, ctx: ContextService);
|
|
7534
|
+
constructor(groupsService: GroupsService, groupInfoService: GroupInfoService, ctx: ContextService, columnInfoService: ColumnInfoService);
|
|
7317
7535
|
ngDoCheck(): void;
|
|
7536
|
+
groupColumnForItem(item: GroupItem): ColumnBase;
|
|
7537
|
+
groupColumnIndexForLevel(level?: number): number;
|
|
7538
|
+
shouldShowGroupContent(): boolean;
|
|
7539
|
+
addStickyStyles(column: ColumnBase): {
|
|
7540
|
+
[key: string]: any;
|
|
7541
|
+
};
|
|
7542
|
+
hasGroupColumnInColumns(): boolean;
|
|
7543
|
+
get groupColumn(): any;
|
|
7318
7544
|
prefixGroupCell(item: GroupItem): any[];
|
|
7319
7545
|
toggleGroup(item: GroupItem, event: any): boolean;
|
|
7320
7546
|
groupSpan(item: GroupItem): number;
|
|
@@ -7323,12 +7549,14 @@ declare class GroupHeaderComponent implements DoCheck {
|
|
|
7323
7549
|
formatForGroup(item: GroupItem): string;
|
|
7324
7550
|
groupTitle(item: GroupItem): string;
|
|
7325
7551
|
groupHeaderTemplate(item: GroupItem): any;
|
|
7552
|
+
get groupColumnGroupHeaderTemplate(): any;
|
|
7553
|
+
singleColumnRemainingSpan(): number;
|
|
7326
7554
|
get groupButtonTitle(): any;
|
|
7327
7555
|
get arrowIcon(): string;
|
|
7328
7556
|
get arrowSVGIcon(): SVGIcon;
|
|
7329
7557
|
get isStacked(): boolean;
|
|
7330
7558
|
static ɵfac: i0.ɵɵFactoryDeclaration<GroupHeaderComponent, never>;
|
|
7331
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GroupHeaderComponent, "[kendoGridGroupHeader]", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "item": { "alias": "item"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "hasDetails": { "alias": "hasDetails"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "hasGroupHeaderColumn": { "alias": "hasGroupHeaderColumn"; "required": false; }; "groupHeaderColumns": { "alias": "groupHeaderColumns"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; }, {}, never, never, true, never>;
|
|
7559
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupHeaderComponent, "[kendoGridGroupHeader]", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "item": { "alias": "item"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "hasDetails": { "alias": "hasDetails"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "hasGroupHeaderColumn": { "alias": "hasGroupHeaderColumn"; "required": false; }; "groupHeaderColumns": { "alias": "groupHeaderColumns"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; }, {}, never, never, true, never>;
|
|
7332
7560
|
}
|
|
7333
7561
|
|
|
7334
7562
|
/**
|
|
@@ -9594,6 +9822,7 @@ declare class FilterRowComponent {
|
|
|
9594
9822
|
detailTemplate: DetailTemplateDirective;
|
|
9595
9823
|
logicalRowIndex: number;
|
|
9596
9824
|
lockedColumnsCount: number;
|
|
9825
|
+
groupingMode: GroupDisplayMode;
|
|
9597
9826
|
filterRowClass: boolean;
|
|
9598
9827
|
constructor(ctx: ContextService, columnInfoService: ColumnInfoService);
|
|
9599
9828
|
addStickyStyles(column: ColumnBase): {
|
|
@@ -9603,7 +9832,7 @@ declare class FilterRowComponent {
|
|
|
9603
9832
|
getLogicalColIndex(column: any): number;
|
|
9604
9833
|
get isStacked(): boolean;
|
|
9605
9834
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterRowComponent, never>;
|
|
9606
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterRowComponent, "[kendoGridFilterRow]", never, { "columns": { "alias": "columns"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
9835
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterRowComponent, "[kendoGridFilterRow]", never, { "columns": { "alias": "columns"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
9607
9836
|
}
|
|
9608
9837
|
|
|
9609
9838
|
/**
|
|
@@ -10719,6 +10948,7 @@ declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges, OnDes
|
|
|
10719
10948
|
totalColumns: ColumnsContainer;
|
|
10720
10949
|
tabIndex: string;
|
|
10721
10950
|
size: GridSize;
|
|
10951
|
+
groupingMode: GroupDisplayMode;
|
|
10722
10952
|
sortedFields: any;
|
|
10723
10953
|
hostClass: boolean;
|
|
10724
10954
|
get columnMenuSettings(): ColumnMenuSettings;
|
|
@@ -10770,6 +11000,7 @@ declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges, OnDes
|
|
|
10770
11000
|
canDrop(draggable: DraggableColumnDirective, target: DropTargetDirective): boolean;
|
|
10771
11001
|
shouldActivate(column: ColumnBase): boolean;
|
|
10772
11002
|
isInteractive(column: ColumnComponent, prop: string): boolean;
|
|
11003
|
+
showDefaultCursor(column: ColumnComponent): boolean;
|
|
10773
11004
|
isCheckboxColumn(column: any): boolean;
|
|
10774
11005
|
addStickyStyles(column: ColumnBase): {
|
|
10775
11006
|
[key: string]: any;
|
|
@@ -10791,7 +11022,7 @@ declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges, OnDes
|
|
|
10791
11022
|
private leave;
|
|
10792
11023
|
private drop;
|
|
10793
11024
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
10794
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "[kendoGridHeader]", never, { "totalColumnLevels": { "alias": "totalColumnLevels"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columnMenuTemplate": { "alias": "columnMenuTemplate"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
11025
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "[kendoGridHeader]", never, { "totalColumnLevels": { "alias": "totalColumnLevels"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columnMenuTemplate": { "alias": "columnMenuTemplate"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
10795
11026
|
}
|
|
10796
11027
|
|
|
10797
11028
|
/**
|
|
@@ -10909,6 +11140,7 @@ declare class FooterComponent {
|
|
|
10909
11140
|
logicalRowIndex: number;
|
|
10910
11141
|
totalColumns: ColumnsContainer;
|
|
10911
11142
|
totalColumnsCount: number;
|
|
11143
|
+
groupingMode: GroupDisplayMode;
|
|
10912
11144
|
get footerClass(): boolean;
|
|
10913
11145
|
hostClass: boolean;
|
|
10914
11146
|
hostRole: string;
|
|
@@ -10923,7 +11155,7 @@ declare class FooterComponent {
|
|
|
10923
11155
|
isColumnGroupComponent(column: ColumnBase): boolean;
|
|
10924
11156
|
get isStacked(): boolean;
|
|
10925
11157
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
10926
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "[kendoGridFooter]", never, { "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
11158
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "[kendoGridFooter]", never, { "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
10927
11159
|
}
|
|
10928
11160
|
|
|
10929
11161
|
/**
|
|
@@ -11092,6 +11324,7 @@ declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges, DoChec
|
|
|
11092
11324
|
detailRowHeight: number;
|
|
11093
11325
|
isPinContainer: boolean;
|
|
11094
11326
|
pinPosition: 'top' | 'bottom' | null;
|
|
11327
|
+
groupingMode: GroupDisplayMode;
|
|
11095
11328
|
hostClass: boolean;
|
|
11096
11329
|
groupHeaderSlaveCellsCount: number;
|
|
11097
11330
|
groupHeaderColumns: any[];
|
|
@@ -11149,7 +11382,7 @@ declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges, DoChec
|
|
|
11149
11382
|
private eventTarget;
|
|
11150
11383
|
private applyStickyRowsStyling;
|
|
11151
11384
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableBodyComponent, never>;
|
|
11152
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableBodyComponent, "[kendoGridTableBody]", never, { "columns": { "alias": "columns"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "rowsToRender": { "alias": "rowsToRender"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "noRecordsText": { "alias": "noRecordsText"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "isPinContainer": { "alias": "isPinContainer"; "required": false; }; "pinPosition": { "alias": "pinPosition"; "required": false; }; }, {}, never, never, true, never>;
|
|
11385
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableBodyComponent, "[kendoGridTableBody]", never, { "columns": { "alias": "columns"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "rowsToRender": { "alias": "rowsToRender"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "noRecordsText": { "alias": "noRecordsText"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "isPinContainer": { "alias": "isPinContainer"; "required": false; }; "pinPosition": { "alias": "pinPosition"; "required": false; }; "groupingMode": { "alias": "groupingMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
11153
11386
|
}
|
|
11154
11387
|
|
|
11155
11388
|
/**
|
|
@@ -12367,8 +12600,12 @@ declare class GridMessages extends ComponentMessages {
|
|
|
12367
12600
|
* Sets the label for the Grid row unpin column icon.
|
|
12368
12601
|
*/
|
|
12369
12602
|
rowUnpinLabel: string;
|
|
12603
|
+
/**
|
|
12604
|
+
* Sets the text for the group column's header when group mode is **singleColumn**.
|
|
12605
|
+
*/
|
|
12606
|
+
groupsSingleColumnTitle: string;
|
|
12370
12607
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
12371
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "aiAssistantApplyButtonText": { "alias": "aiAssistantApplyButtonText"; "required": false; }; "aiAssistantToolbarToolText": { "alias": "aiAssistantToolbarToolText"; "required": false; }; "aiAssistantWindowTitle": { "alias": "aiAssistantWindowTitle"; "required": false; }; "aiAssistantWindowCloseTitle": { "alias": "aiAssistantWindowCloseTitle"; "required": false; }; "aiAssistantOutputCardTitle": { "alias": "aiAssistantOutputCardTitle"; "required": false; }; "aiAssistantOutputCardBodyContent": { "alias": "aiAssistantOutputCardBodyContent"; "required": false; }; "aiAssistantSelectionNotEnabled": { "alias": "aiAssistantSelectionNotEnabled"; "required": false; }; "aiAssistantSelectionRowModeRequired": { "alias": "aiAssistantSelectionRowModeRequired"; "required": false; }; "aiAssistantSelectionCellModeRequired": { "alias": "aiAssistantSelectionCellModeRequired"; "required": false; }; "aiAssistantWindowMaximizeTitle": { "alias": "aiAssistantWindowMaximizeTitle"; "required": false; }; "aiAssistantWindowMinimizeTitle": { "alias": "aiAssistantWindowMinimizeTitle"; "required": false; }; "aiAssistantWindowRestoreTitle": { "alias": "aiAssistantWindowRestoreTitle"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnChooserSelectAll": { "alias": "columnChooserSelectAll"; "required": false; }; "columnChooserSearchLabel": { "alias": "columnChooserSearchLabel"; "required": false; }; "columnChooserSelectedColumnsCount": { "alias": "columnChooserSelectedColumnsCount"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "adaptiveGroupTitle": { "alias": "adaptiveGroupTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "groupClearButton": { "alias": "groupClearButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "groupDoneButton": { "alias": "groupDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "checkboxColumnHeaderLabel": { "alias": "checkboxColumnHeaderLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "csvExportToolbarToolText": { "alias": "csvExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "groupToolbarToolText": { "alias": "groupToolbarToolText"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; "multiCheckboxFilterSearchPlaceholder": { "alias": "multiCheckboxFilterSearchPlaceholder"; "required": false; }; "multiCheckboxFilterSelectAllLabel": { "alias": "multiCheckboxFilterSelectAllLabel"; "required": false; }; "multiCheckboxFilterSelectedItemsCount": { "alias": "multiCheckboxFilterSelectedItemsCount"; "required": false; }; "smartBoxSpeechToTextButton": { "alias": "smartBoxSpeechToTextButton"; "required": false; }; "smartBoxSubmitPromptButton": { "alias": "smartBoxSubmitPromptButton"; "required": false; }; "smartBoxSearchPlaceholder": { "alias": "smartBoxSearchPlaceholder"; "required": false; }; "smartBoxSemanticSearchPlaceholder": { "alias": "smartBoxSemanticSearchPlaceholder"; "required": false; }; "smartBoxAIAssistantPlaceholder": { "alias": "smartBoxAIAssistantPlaceholder"; "required": false; }; "smartBoxSuggestedPrompts": { "alias": "smartBoxSuggestedPrompts"; "required": false; }; "smartBoxNoPreviousSearches": { "alias": "smartBoxNoPreviousSearches"; "required": false; }; "smartBoxNoPreviousPrompts": { "alias": "smartBoxNoPreviousPrompts"; "required": false; }; "smartBoxPreviouslySearched": { "alias": "smartBoxPreviouslySearched"; "required": false; }; "smartBoxPreviouslyAsked": { "alias": "smartBoxPreviouslyAsked"; "required": false; }; "searchModeListItemText": { "alias": "searchModeListItemText"; "required": false; }; "searchModeListItemDescription": { "alias": "searchModeListItemDescription"; "required": false; }; "semanticSearchModeListItemText": { "alias": "semanticSearchModeListItemText"; "required": false; }; "semanticSearchModeListItemDescription": { "alias": "semanticSearchModeListItemDescription"; "required": false; }; "smartBoxSearchModePopupButton": { "alias": "smartBoxSearchModePopupButton"; "required": false; }; "smartBoxAIAssistantModePopupButton": { "alias": "smartBoxAIAssistantModePopupButton"; "required": false; }; "detailColumnHeaderLabel": { "alias": "detailColumnHeaderLabel"; "required": false; }; "dragColumnHeaderLabel": { "alias": "dragColumnHeaderLabel"; "required": false; }; "commandColumnHeaderLabel": { "alias": "commandColumnHeaderLabel"; "required": false; }; "pinnedTopRowsLabel": { "alias": "pinnedTopRowsLabel"; "required": false; }; "pinnedBottomRowsLabel": { "alias": "pinnedBottomRowsLabel"; "required": false; }; "pinMenuPinToTopText": { "alias": "pinMenuPinToTopText"; "required": false; }; "pinMenuPinToBottomText": { "alias": "pinMenuPinToBottomText"; "required": false; }; "pinMenuUnpinText": { "alias": "pinMenuUnpinText"; "required": false; }; "pinColumnHeaderLabel": { "alias": "pinColumnHeaderLabel"; "required": false; }; "rowPinLabel": { "alias": "rowPinLabel"; "required": false; }; "rowUnpinLabel": { "alias": "rowUnpinLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
12608
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "aiAssistantApplyButtonText": { "alias": "aiAssistantApplyButtonText"; "required": false; }; "aiAssistantToolbarToolText": { "alias": "aiAssistantToolbarToolText"; "required": false; }; "aiAssistantWindowTitle": { "alias": "aiAssistantWindowTitle"; "required": false; }; "aiAssistantWindowCloseTitle": { "alias": "aiAssistantWindowCloseTitle"; "required": false; }; "aiAssistantOutputCardTitle": { "alias": "aiAssistantOutputCardTitle"; "required": false; }; "aiAssistantOutputCardBodyContent": { "alias": "aiAssistantOutputCardBodyContent"; "required": false; }; "aiAssistantSelectionNotEnabled": { "alias": "aiAssistantSelectionNotEnabled"; "required": false; }; "aiAssistantSelectionRowModeRequired": { "alias": "aiAssistantSelectionRowModeRequired"; "required": false; }; "aiAssistantSelectionCellModeRequired": { "alias": "aiAssistantSelectionCellModeRequired"; "required": false; }; "aiAssistantWindowMaximizeTitle": { "alias": "aiAssistantWindowMaximizeTitle"; "required": false; }; "aiAssistantWindowMinimizeTitle": { "alias": "aiAssistantWindowMinimizeTitle"; "required": false; }; "aiAssistantWindowRestoreTitle": { "alias": "aiAssistantWindowRestoreTitle"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnChooserSelectAll": { "alias": "columnChooserSelectAll"; "required": false; }; "columnChooserSearchLabel": { "alias": "columnChooserSearchLabel"; "required": false; }; "columnChooserSelectedColumnsCount": { "alias": "columnChooserSelectedColumnsCount"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "adaptiveGroupTitle": { "alias": "adaptiveGroupTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "groupClearButton": { "alias": "groupClearButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "groupDoneButton": { "alias": "groupDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "checkboxColumnHeaderLabel": { "alias": "checkboxColumnHeaderLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "csvExportToolbarToolText": { "alias": "csvExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "groupToolbarToolText": { "alias": "groupToolbarToolText"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; "multiCheckboxFilterSearchPlaceholder": { "alias": "multiCheckboxFilterSearchPlaceholder"; "required": false; }; "multiCheckboxFilterSelectAllLabel": { "alias": "multiCheckboxFilterSelectAllLabel"; "required": false; }; "multiCheckboxFilterSelectedItemsCount": { "alias": "multiCheckboxFilterSelectedItemsCount"; "required": false; }; "smartBoxSpeechToTextButton": { "alias": "smartBoxSpeechToTextButton"; "required": false; }; "smartBoxSubmitPromptButton": { "alias": "smartBoxSubmitPromptButton"; "required": false; }; "smartBoxSearchPlaceholder": { "alias": "smartBoxSearchPlaceholder"; "required": false; }; "smartBoxSemanticSearchPlaceholder": { "alias": "smartBoxSemanticSearchPlaceholder"; "required": false; }; "smartBoxAIAssistantPlaceholder": { "alias": "smartBoxAIAssistantPlaceholder"; "required": false; }; "smartBoxSuggestedPrompts": { "alias": "smartBoxSuggestedPrompts"; "required": false; }; "smartBoxNoPreviousSearches": { "alias": "smartBoxNoPreviousSearches"; "required": false; }; "smartBoxNoPreviousPrompts": { "alias": "smartBoxNoPreviousPrompts"; "required": false; }; "smartBoxPreviouslySearched": { "alias": "smartBoxPreviouslySearched"; "required": false; }; "smartBoxPreviouslyAsked": { "alias": "smartBoxPreviouslyAsked"; "required": false; }; "searchModeListItemText": { "alias": "searchModeListItemText"; "required": false; }; "searchModeListItemDescription": { "alias": "searchModeListItemDescription"; "required": false; }; "semanticSearchModeListItemText": { "alias": "semanticSearchModeListItemText"; "required": false; }; "semanticSearchModeListItemDescription": { "alias": "semanticSearchModeListItemDescription"; "required": false; }; "smartBoxSearchModePopupButton": { "alias": "smartBoxSearchModePopupButton"; "required": false; }; "smartBoxAIAssistantModePopupButton": { "alias": "smartBoxAIAssistantModePopupButton"; "required": false; }; "detailColumnHeaderLabel": { "alias": "detailColumnHeaderLabel"; "required": false; }; "dragColumnHeaderLabel": { "alias": "dragColumnHeaderLabel"; "required": false; }; "commandColumnHeaderLabel": { "alias": "commandColumnHeaderLabel"; "required": false; }; "pinnedTopRowsLabel": { "alias": "pinnedTopRowsLabel"; "required": false; }; "pinnedBottomRowsLabel": { "alias": "pinnedBottomRowsLabel"; "required": false; }; "pinMenuPinToTopText": { "alias": "pinMenuPinToTopText"; "required": false; }; "pinMenuPinToBottomText": { "alias": "pinMenuPinToBottomText"; "required": false; }; "pinMenuUnpinText": { "alias": "pinMenuUnpinText"; "required": false; }; "pinColumnHeaderLabel": { "alias": "pinColumnHeaderLabel"; "required": false; }; "rowPinLabel": { "alias": "rowPinLabel"; "required": false; }; "rowUnpinLabel": { "alias": "rowUnpinLabel"; "required": false; }; "groupsSingleColumnTitle": { "alias": "groupsSingleColumnTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
12372
12609
|
}
|
|
12373
12610
|
|
|
12374
12611
|
/**
|
|
@@ -14337,7 +14574,7 @@ declare const KENDO_GRID_SHARED: readonly [typeof ColumnComponent, typeof Column
|
|
|
14337
14574
|
*
|
|
14338
14575
|
* Utility array that contains the former Group module exports
|
|
14339
14576
|
*/
|
|
14340
|
-
declare const KENDO_GRID_GROUP_EXPORTS: readonly [typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent];
|
|
14577
|
+
declare const KENDO_GRID_GROUP_EXPORTS: readonly [typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupColumnGroupHeaderTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent];
|
|
14341
14578
|
/**
|
|
14342
14579
|
* @hidden
|
|
14343
14580
|
*
|
|
@@ -14413,7 +14650,7 @@ declare const KENDO_GRID_DECLARATIONS: readonly [typeof GridComponent, typeof Li
|
|
|
14413
14650
|
*
|
|
14414
14651
|
* Utility array that contains the Grid module exports
|
|
14415
14652
|
*/
|
|
14416
|
-
declare const KENDO_GRID_EXPORTS: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective];
|
|
14653
|
+
declare const KENDO_GRID_EXPORTS: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupColumnGroupHeaderTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective];
|
|
14417
14654
|
/**
|
|
14418
14655
|
* @hidden
|
|
14419
14656
|
*
|
|
@@ -14444,7 +14681,7 @@ declare const KENDO_GRID_PDF_EXPORT: readonly [typeof PDFComponent, typeof PDFMa
|
|
|
14444
14681
|
* export class AppModule {}
|
|
14445
14682
|
* ```
|
|
14446
14683
|
*/
|
|
14447
|
-
declare const KENDO_GRID: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective, typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ColumnComponent$1, typeof ColumnGroupComponent$1, typeof FooterTemplateDirective$1, typeof GroupFooterTemplateDirective$1, typeof GroupHeaderColumnTemplateDirective$1, typeof GroupHeaderTemplateDirective$1, typeof CSVComponent, typeof CSVCommandDirective, typeof CSVCommandToolbarDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
|
|
14684
|
+
declare const KENDO_GRID: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupColumnGroupHeaderTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective, typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ColumnComponent$1, typeof ColumnGroupComponent$1, typeof FooterTemplateDirective$1, typeof GroupFooterTemplateDirective$1, typeof GroupHeaderColumnTemplateDirective$1, typeof GroupHeaderTemplateDirective$1, typeof CSVComponent, typeof CSVCommandDirective, typeof CSVCommandToolbarDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
|
|
14448
14685
|
|
|
14449
14686
|
/**
|
|
14450
14687
|
* @hidden
|
|
@@ -14497,7 +14734,7 @@ declare class TableDirective implements OnInit, OnDestroy {
|
|
|
14497
14734
|
*/
|
|
14498
14735
|
declare class GridModule {
|
|
14499
14736
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
|
|
14500
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof 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 FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnListComponent, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridComponent, typeof ListComponent, typeof ToolbarComponent, typeof LocalizedMessagesDirective, typeof CustomMessagesComponent, typeof DataBindingDirective, typeof ToolbarTemplateDirective, typeof SelectionDirective, typeof HighlightDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridMarqueeDirective, typeof GridSpacerComponent, typeof GridToolbarFocusableDirective, typeof StatusBarComponent, typeof StatusBarTemplateDirective, typeof GridClipboardDirective, typeof FormComponent, typeof DialogFormComponent, typeof FormFormFieldComponent, typeof 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 TableDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective], [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof 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]>;
|
|
14737
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupColumnGroupHeaderTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i15.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FooterComponent, typeof i58.CustomMessagesComponent, typeof i58.PagerFocusableDirective, typeof i58.PagerInfoComponent, typeof i58.PagerInputComponent, typeof i58.PagerNextButtonsComponent, typeof i58.PagerNumericButtonsComponent, typeof i58.PagerPageSizesComponent, typeof i58.PagerPrevButtonsComponent, typeof i58.PagerTemplateDirective, typeof i58.PagerComponent, typeof i58.PagerSpacerComponent, typeof i59.ToolBarComponent, typeof i59.ToolbarCustomMessagesComponent, typeof i59.ToolBarButtonComponent, typeof i59.ToolBarButtonGroupComponent, typeof i59.ToolBarDropDownButtonComponent, typeof i59.ToolBarSeparatorComponent, typeof i59.ToolBarSpacerComponent, typeof i59.ToolBarSplitButtonComponent, typeof i59.ToolBarToolComponent, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i15.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i15.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnListComponent, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridComponent, typeof ListComponent, typeof ToolbarComponent, typeof LocalizedMessagesDirective, typeof CustomMessagesComponent, typeof DataBindingDirective, typeof ToolbarTemplateDirective, typeof SelectionDirective, typeof HighlightDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridMarqueeDirective, typeof GridSpacerComponent, typeof GridToolbarFocusableDirective, typeof StatusBarComponent, typeof StatusBarTemplateDirective, typeof GridClipboardDirective, typeof FormComponent, typeof DialogFormComponent, typeof FormFormFieldComponent, typeof UndoRedoDirective, typeof i59.ToolBarComponent, typeof i59.ToolbarCustomMessagesComponent, typeof i59.ToolBarButtonComponent, typeof i59.ToolBarButtonGroupComponent, typeof i59.ToolBarDropDownButtonComponent, typeof i59.ToolBarSeparatorComponent, typeof i59.ToolBarSpacerComponent, typeof i59.ToolBarSplitButtonComponent, typeof i59.ToolBarToolComponent, typeof TableDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective], [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupColumnGroupHeaderTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof i15.TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective, typeof i59.ToolBarComponent, typeof i59.ToolbarCustomMessagesComponent, typeof i59.ToolBarButtonComponent, typeof i59.ToolBarButtonGroupComponent, typeof i59.ToolBarDropDownButtonComponent, typeof i59.ToolBarSeparatorComponent, typeof i59.ToolBarSpacerComponent, typeof i59.ToolBarSplitButtonComponent, typeof i59.ToolBarToolComponent, typeof i58.CustomMessagesComponent, typeof i58.PagerFocusableDirective, typeof i58.PagerInfoComponent, typeof i58.PagerInputComponent, typeof i58.PagerNextButtonsComponent, typeof i58.PagerNumericButtonsComponent, typeof i58.PagerPageSizesComponent, typeof i58.PagerPrevButtonsComponent, typeof i58.PagerTemplateDirective, typeof i58.PagerComponent, typeof i58.PagerSpacerComponent]>;
|
|
14501
14738
|
static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
|
|
14502
14739
|
}
|
|
14503
14740
|
|
|
@@ -14651,5 +14888,5 @@ declare class CSVModule {
|
|
|
14651
14888
|
static ɵinj: i0.ɵɵInjectorDeclaration<CSVModule>;
|
|
14652
14889
|
}
|
|
14653
14890
|
|
|
14654
|
-
export { AIAssistantToolbarDirective, AdaptiveGridService, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, CELL_CONTEXT, CSVCommandDirective, CSVCommandToolbarDirective, CSVComponent, CSVExportEvent, CSVModule, CSVService, CancelCommandDirective, CancelCommandToolbarDirective, CellCloseEvent, CellComponent, CellLoadingTemplateDirective, CellSelectionAggregateService, CellSelectionService, CellTemplateDirective, ChangeNotificationService, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnChooserToolbarDirective, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnListComponent, ColumnLockedChangeEvent, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuContainerComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuPositionComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuStickComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnReorderService, ColumnResizingService, ColumnStickyChangeEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, ContextService, CustomMessagesComponent, DEFAULT_AI_REQUEST_OPTIONS, DEFAULT_SCROLLER_FACTORY, DataBindingDirective, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DetailCollapseEvent, DetailExpandEvent, DetailTemplateDirective, DetailsService, DoesNotContainFilterOperatorComponent, DomEventsService, DragAndDropService, DragHintService, DropCueService, EditCommandDirective, EditCommandToolbarDirective, EditService$1 as EditServiceClass, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandDetailsDirective, ExpandGroupDirective, ExternalEditingDirective, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterCommandToolbarDirective, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuDropDownListDirective, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterOperatorBase, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridAIAssistantResponseErrorEvent, GridAIAssistantResponseSuccessEvent, GridClipboardDirective, GridComponent, GridModule, GridSmartBoxHistoryItemTemplateDirective, GridSmartBoxPromptSuggestionTemplateDirective, GridSmartBoxResponseErrorEvent, GridSmartBoxResponseSuccessEvent, GridSmartBoxSearchEvent, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupCommandToolbarDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, HighlightDirective, IdService, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_GRID, KENDO_GRID_BODY_EXPORTS, KENDO_GRID_COLUMN_DRAGANDDROP, KENDO_GRID_COLUMN_MENU_DECLARATIONS, KENDO_GRID_COLUMN_MENU_EXPORTS, KENDO_GRID_CSV_EXPORT, KENDO_GRID_DECLARATIONS, KENDO_GRID_EXCEL_EXPORT, KENDO_GRID_EXPORTS, KENDO_GRID_FILTER_MENU, KENDO_GRID_FILTER_MENU_EXPORTS, KENDO_GRID_FILTER_OPERATORS, KENDO_GRID_FILTER_ROW, KENDO_GRID_FILTER_ROW_EXPORTS, KENDO_GRID_FILTER_SHARED, KENDO_GRID_FOOTER_EXPORTS, KENDO_GRID_GROUP_EXPORTS, KENDO_GRID_HEADER_EXPORTS, KENDO_GRID_PDF_EXPORT, KENDO_GRID_SHARED, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, ListComponent, LoadingComponent, LoadingTemplateDirective, LocalDataChangesService, LogicalCellDirective, LogicalRowDirective, MenuTabbingService, MultiCheckboxFilterComponent, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RedoCommandToolbarDirective, RemoveCommandDirective, RemoveCommandToolbarDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowPinColumnComponent, RowPinService, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SaveCommandToolbarDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectAllToolbarToolComponent, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SmartBoxToolbarToolComponent, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, UndoCommandToolbarDirective, UndoRedoDirective, UndoRedoEvent, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable };
|
|
14655
|
-
export type { AddEvent, CSVFetchDataCallback, CancelEvent, CellClickEvent, CellRowspanFn, CellSelectedFn, CellSelectionItem, ColumnMenuSettings, ColumnReorderConfig, ColumnResizeArgs, ColumnSortSettings, ColumnState, CompositeHighlightDescriptor, ContentScrollEvent, CreateFormGroup, CreateFormGroupArgs, DataItem, DataLayoutMode, DataLayoutModeSettings, DataStateChangeEvent, DetailTemplateShowIfFn, DragRow, DropPosition, EditEvent, EditRowOptions, EditService, ExpandableColumnMenuItem, FetchDataCallback, FieldDataType, FilterVariant, FilterVariantSettings, FilterableSettings, FormDialogSettings, FormFieldSettings, FormSettings, GridAIAssistantOpenEvent, GridAIAssistantPromptSettings, GridAIAssistantRequestEvent, GridAIAssistantWindowSettings, GridAICommand, GridAICommandType, GridAIRequestColumnDescriptor, GridAIRequestData, GridAIRequestOptions, GridAIResponse, GridClipboardEvent, GridClipboardEventType, GridClipboardItem, GridClipboardSettings, GridClipboardTargetCell, GridClipboardTargetType, GridColSize, GridDataResult, GridItem, GridNavigableSection, GridNavigableSettings, GridResizableSettings, GridRowPinLocation, GridSelectionItem, GridSize, GridSmartBoxAIAssistantSettings, GridSmartBoxHistorySettings, GridSmartBoxMode, GridSmartBoxRequestEvent, GridSmartBoxSearchSettings, GridSmartBoxSemanticSearchEvent, GridSmartBoxSemanticSearchSettings, GridState, GroupFooterItem, GroupItem, GroupKey, GroupRowArgs, GroupableSettings, HighlightItem, ModifierKey, MultipleSortSettings, NavigationCell, NavigationRow, PDFMargin, PageChangeEvent, PageSizeItem, PagerPosition, PagerSettings, PagerType, RemoveConfirmationCallback, RemoveEvent, ResizeMode, RowArgs, RowClassArgs, RowClassFn, RowPinEvent, RowPinnableFn, RowReorderEvent, RowSelectableFn, RowSelectedFn, RowStickyFn, SaveEvent, ScrollBottomEvent, ScrollMode, ScrollRequest, ScrollToItemRequest, SelectAllCheckboxState, SelectableMode, SelectableSettings, SelectionAggregate, SelectionAggregates, SelectionEvent, SingleSortSettings, SortSettings };
|
|
14891
|
+
export { AIAssistantToolbarDirective, AdaptiveGridService, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, CELL_CONTEXT, CSVCommandDirective, CSVCommandToolbarDirective, CSVComponent, CSVExportEvent, CSVModule, CSVService, CancelCommandDirective, CancelCommandToolbarDirective, CellCloseEvent, CellComponent, CellLoadingTemplateDirective, CellSelectionAggregateService, CellSelectionService, CellTemplateDirective, ChangeNotificationService, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnChooserToolbarDirective, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnListComponent, ColumnLockedChangeEvent, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuContainerComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuPositionComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuStickComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnReorderService, ColumnResizingService, ColumnStickyChangeEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, ContextService, CustomMessagesComponent, DEFAULT_AI_REQUEST_OPTIONS, DEFAULT_SCROLLER_FACTORY, DataBindingDirective, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DetailCollapseEvent, DetailExpandEvent, DetailTemplateDirective, DetailsService, DoesNotContainFilterOperatorComponent, DomEventsService, DragAndDropService, DragHintService, DropCueService, EditCommandDirective, EditCommandToolbarDirective, EditService$1 as EditServiceClass, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandDetailsDirective, ExpandGroupDirective, ExternalEditingDirective, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterCommandToolbarDirective, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuDropDownListDirective, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterOperatorBase, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridAIAssistantResponseErrorEvent, GridAIAssistantResponseSuccessEvent, GridClipboardDirective, GridComponent, GridModule, GridSmartBoxHistoryItemTemplateDirective, GridSmartBoxPromptSuggestionTemplateDirective, GridSmartBoxResponseErrorEvent, GridSmartBoxResponseSuccessEvent, GridSmartBoxSearchEvent, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupColumnGroupHeaderTemplateDirective, GroupCommandToolbarDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, HighlightDirective, IdService, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_GRID, KENDO_GRID_BODY_EXPORTS, KENDO_GRID_COLUMN_DRAGANDDROP, KENDO_GRID_COLUMN_MENU_DECLARATIONS, KENDO_GRID_COLUMN_MENU_EXPORTS, KENDO_GRID_CSV_EXPORT, KENDO_GRID_DECLARATIONS, KENDO_GRID_EXCEL_EXPORT, KENDO_GRID_EXPORTS, KENDO_GRID_FILTER_MENU, KENDO_GRID_FILTER_MENU_EXPORTS, KENDO_GRID_FILTER_OPERATORS, KENDO_GRID_FILTER_ROW, KENDO_GRID_FILTER_ROW_EXPORTS, KENDO_GRID_FILTER_SHARED, KENDO_GRID_FOOTER_EXPORTS, KENDO_GRID_GROUP_EXPORTS, KENDO_GRID_HEADER_EXPORTS, KENDO_GRID_PDF_EXPORT, KENDO_GRID_SHARED, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, ListComponent, LoadingComponent, LoadingTemplateDirective, LocalDataChangesService, LogicalCellDirective, LogicalRowDirective, MenuTabbingService, MultiCheckboxFilterComponent, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RedoCommandToolbarDirective, RemoveCommandDirective, RemoveCommandToolbarDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowPinColumnComponent, RowPinService, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SaveCommandToolbarDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectAllToolbarToolComponent, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SmartBoxToolbarToolComponent, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, UndoCommandToolbarDirective, UndoRedoDirective, UndoRedoEvent, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable };
|
|
14892
|
+
export type { AddEvent, CSVFetchDataCallback, CancelEvent, CellClickEvent, CellRowspanFn, CellSelectedFn, CellSelectionItem, ColumnMenuSettings, ColumnReorderConfig, ColumnResizeArgs, ColumnSortSettings, ColumnState, CompositeHighlightDescriptor, ContentScrollEvent, CreateFormGroup, CreateFormGroupArgs, DataItem, DataLayoutMode, DataLayoutModeSettings, DataStateChangeEvent, DetailTemplateShowIfFn, DragRow, DropPosition, EditEvent, EditRowOptions, EditService, ExpandableColumnMenuItem, FetchDataCallback, FieldDataType, FilterVariant, FilterVariantSettings, FilterableSettings, FormDialogSettings, FormFieldSettings, FormSettings, GridAIAssistantOpenEvent, GridAIAssistantPromptSettings, GridAIAssistantRequestEvent, GridAIAssistantWindowSettings, GridAICommand, GridAICommandType, GridAIRequestColumnDescriptor, GridAIRequestData, GridAIRequestOptions, GridAIResponse, GridClipboardEvent, GridClipboardEventType, GridClipboardItem, GridClipboardSettings, GridClipboardTargetCell, GridClipboardTargetType, GridColSize, GridDataResult, GridItem, GridNavigableSection, GridNavigableSettings, GridResizableSettings, GridRowPinLocation, GridSelectionItem, GridSize, GridSmartBoxAIAssistantSettings, GridSmartBoxHistorySettings, GridSmartBoxMode, GridSmartBoxRequestEvent, GridSmartBoxSearchSettings, GridSmartBoxSemanticSearchEvent, GridSmartBoxSemanticSearchSettings, GridState, GroupColumnFn, GroupColumnSettings, GroupDisplayMode, GroupFooterItem, GroupItem, GroupKey, GroupRowArgs, GroupableSettings, HighlightItem, ModifierKey, MultipleSortSettings, NavigationCell, NavigationRow, PDFMargin, PageChangeEvent, PageSizeItem, PagerPosition, PagerSettings, PagerType, RemoveConfirmationCallback, RemoveEvent, ResizeMode, RowArgs, RowClassArgs, RowClassFn, RowPinEvent, RowPinnableFn, RowReorderEvent, RowSelectableFn, RowSelectedFn, RowStickyFn, SaveEvent, ScrollBottomEvent, ScrollMode, ScrollRequest, ScrollToItemRequest, SelectAllCheckboxState, SelectableMode, SelectableSettings, SelectionAggregate, SelectionAggregates, SelectionEvent, SingleSortSettings, SortSettings };
|