@progress/kendo-angular-grid 22.1.0-develop.14 → 22.1.0-develop.16

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/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
  >
14
14
  > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
15
15
 
16
- The [Kendo UI for Angular Data Grid](https://www.telerik.com/kendo-angular-ui/components/grid) includes a comprehensive set of ready-to-use features covering everything from paging, sorting, filtering, editing, and grouping to row and column virtualization, exporting to PDF and Excel, and accessibility support. This Data Grid Component (sometimes called a Data Table) is built on Angular from the ground up, by a company with a long history of making enterprise-ready Grids. This results in an Angular data grid that delivers lighting fast performance and is highly customizable.
16
+ The [Kendo UI for Angular Data Grid](https://www.telerik.com/kendo-angular-ui/components/grid) includes a comprehensive set of ready-to-use features covering everything from paging, sorting, filtering, editing, and grouping to row and column virtualization, exporting to PDF, Excel, and CSV, and accessibility support. This Data Grid Component (sometimes called a Data Table) is built on Angular from the ground up, by a company with a long history of making enterprise-ready Grids. This results in an Angular data grid that delivers lighting fast performance and is highly customizable.
17
17
 
18
18
  ## Key Features
19
19
 
@@ -25,7 +25,7 @@ Among the many features which the Kendo UI for Angular Grid delivers are:
25
25
  * Sorting—The Grid supports a number of sorting options. These options include the sorting and unsorting of single and multiple columns, pre-sorting data records, setting the sorting direction, and more. [Read more about the sorting options of the Grid...](https://www.telerik.com/kendo-angular-ui/components/grid/sorting/basics)
26
26
  * Filtering—The Grid provides options for displaying only those data records which meet specified criteria. The component also allows you to additionally customize its filtering behavior by using its built-in filter templates or reusable custom filter components. [Read more about filtering the Grid records...](https://www.telerik.com/kendo-angular-ui/components/grid/filtering/basics)
27
27
  * Grouping—Out of the box, you can apply dynamic grouping to the data Grid records, set grouping by aggregate values, and, in the same way as with the sorting functionality, pre-group the data. [Read more about grouping the records of the Grid...](https://www.telerik.com/kendo-angular-ui/components/grid/grouping/basics)
28
- * Exporting to PDF and Excel—When implementing the Grid export to PDF, you can set the fonts, the exact portion and layout of the exported content, also customize the columns and other elements of the output result. When exporting to Excel, you can export specific data and customize the exported columns. Read more on [exporting the Grid to PDF](https://www.telerik.com/kendo-angular-ui/components/grid/export/pdf-export) and [exporting the Grid to Excel](https://www.telerik.com/kendo-angular-ui/components/grid/export/excel-export).
28
+ * Exporting to PDF, Excel, and CSV—When implementing the Grid export to PDF, you can set the fonts, the exact portion and layout of the exported content, also customize the columns and other elements of the output result. When exporting to Excel, you can export specific data and customize the exported columns. When exporting to CSV, you can configure delimiters, line separators, encoding options, and control which data to export. Read more on [exporting the Grid to PDF](https://www.telerik.com/kendo-angular-ui/components/grid/export/pdf-export), [exporting the Grid to Excel](https://www.telerik.com/kendo-angular-ui/components/grid/export/excel-export), and [exporting the Grid to CSV](https://www.telerik.com/kendo-angular-ui/components/grid/export/csv-export).
29
29
  * Rows Options—The Data Grid provides an extensive collection of row configuration options, including:
30
30
 
31
31
  - [Row selection](https://www.telerik.com/kendo-angular-ui/components/grid/selection/row-selection)—Allows you to select rows through interaction with the row itself or a checkbox. Supports single and multiple row selection.
@@ -83,6 +83,7 @@ export declare class AdaptiveRendererComponent {
83
83
  cancelChanges(): void;
84
84
  onTab(event: KeyboardEvent): void;
85
85
  saveEditing(): void;
86
+ onAdaptiveResetClick(e: Event): void;
86
87
  static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveRendererComponent, never>;
87
88
  static ɵcmp: i0.ɵɵComponentDeclaration<AdaptiveRendererComponent, "kendo-grid-adaptive-renderer", never, {}, {}, never, never, true, never>;
88
89
  }
@@ -10,6 +10,7 @@ import type { DataBindingDirective } from '../databinding.directive';
10
10
  import type { ScrollerService } from '../scrolling/scroller.service';
11
11
  import { HighlightDirective } from '../highlight/highlight.directive';
12
12
  import type { ExcelComponent } from '../excel/excel.component';
13
+ import type { CSVComponent } from '../csv/csv.component';
13
14
  import type { PDFComponent } from '../pdf/pdf.component';
14
15
  import * as i0 from "@angular/core";
15
16
  /**
@@ -32,6 +33,7 @@ export declare class ContextService {
32
33
  dataBindingDirective: DataBindingDirective;
33
34
  highlightDirective: HighlightDirective;
34
35
  excelComponent?: ExcelComponent;
36
+ csvComponent?: CSVComponent;
35
37
  pdfComponent?: PDFComponent;
36
38
  constructor(renderer: Renderer2, localization: LocalizationService);
37
39
  static ɵfac: i0.ɵɵFactoryDeclaration<ContextService, never>;
@@ -0,0 +1,38 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ChangeDetectorRef, NgZone } from '@angular/core';
6
+ import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
7
+ import { CSVService } from './csv.service';
8
+ import { ContextService } from '../common/provider.service';
9
+ import { ToolbarToolBase } from '../common/toolbar-tool-base.directive';
10
+ import * as i0 from "@angular/core";
11
+ /**
12
+ * Represents the **Export to CSV** toolbar tool of the Grid.
13
+ * Apply this directive to any `kendo-toolbar-button` element inside a ToolbarComponent used in the Grid.
14
+ * When the user clicks the button, the [`csvExport`]({% slug api_grid_gridcomponent %}#toc-csvexport) event fires ([see example]({% slug csvexport_grid %})).
15
+ *
16
+ * @example
17
+ * ```html
18
+ * <kendo-grid>
19
+ * <kendo-toolbar>
20
+ * <kendo-toolbar-button text="CSV Export" kendoGridCSVTool></kendo-toolbar-button>
21
+ * </kendo-toolbar>
22
+ * <kendo-grid-csv fileName="Grid.csv"></kendo-grid-csv>
23
+ * </kendo-grid>
24
+ * ```
25
+ * @remarks
26
+ * Applied to: {@link ToolBarButtonComponent}.
27
+ */
28
+ export declare class CSVCommandToolbarDirective extends ToolbarToolBase {
29
+ private csvService;
30
+ constructor(csvService: CSVService, host: ToolBarButtonComponent, ctx: ContextService, zone: NgZone, cdr: ChangeDetectorRef);
31
+ ngOnInit(): void;
32
+ /**
33
+ * @hidden
34
+ */
35
+ onClick(e: any): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<CSVCommandToolbarDirective, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CSVCommandToolbarDirective, "[kendoGridCSVTool]", never, {}, {}, never, never, true, never>;
38
+ }
@@ -0,0 +1,38 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
6
+ import { Button } from '@progress/kendo-angular-buttons';
7
+ import { ContextService } from '../common/provider.service';
8
+ import { CSVService } from './csv.service';
9
+ import * as i0 from "@angular/core";
10
+ /**
11
+ * Represents the `csvExport` command of the Grid. Apply this
12
+ * directive to any `button` element inside a [`ToolbarTemplate`]({% slug api_grid_toolbartemplatedirective %}).
13
+ * When the user clicks the button, the [`csvExport`]({% slug api_grid_gridcomponent %}#toc-csvexport) event fires ([see example]({% slug csvexport_grid %})).
14
+ *
15
+ * @example
16
+ * ```html
17
+ * <kendo-grid>
18
+ * <ng-template kendoGridToolbarTemplate>
19
+ * <button kendoGridCSVCommand>Export to CSV</button>
20
+ * </ng-template>
21
+ * <kendo-grid-csv fileName="Grid.csv"></kendo-grid-csv>
22
+ * </kendo-grid>
23
+ * ```
24
+ */
25
+ export declare class CSVCommandDirective extends Button {
26
+ private csvService;
27
+ /**
28
+ * @hidden
29
+ */
30
+ onClick(e: any): void;
31
+ /**
32
+ * @hidden
33
+ */
34
+ csvClass: boolean;
35
+ constructor(csvService: CSVService, element: ElementRef, renderer: Renderer, ctx: ContextService, ngZone: NgZone);
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<CSVCommandDirective, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<CSVCommandDirective, "[kendoGridCSVCommand]", never, {}, {}, never, ["*"], true, never>;
38
+ }
@@ -0,0 +1,15 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { PreventableEvent } from '../common/preventable-event';
6
+ /**
7
+ * Provides arguments for the `csvExport` event.
8
+ */
9
+ export declare class CSVExportEvent extends PreventableEvent {
10
+ csv: string;
11
+ /**
12
+ * @hidden
13
+ */
14
+ constructor(csv: string);
15
+ }
@@ -0,0 +1,131 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { OnDestroy, NgZone } from '@angular/core';
6
+ import { Observable } from 'rxjs';
7
+ import { type CSVExportOptions, type CSVRow } from '@progress/kendo-csv';
8
+ import { DataResult } from '@progress/kendo-data-query';
9
+ import { GridComponent } from '../grid.component';
10
+ import { CSVService } from './csv.service';
11
+ import { ContextService } from '../common/provider.service';
12
+ import * as i0 from "@angular/core";
13
+ /**
14
+ * Defines a function that returns the data for CSV export.
15
+ * @param component The Grid component.
16
+ * @returns The data to export - can be an array of rows, a DataResult, or a Promise/Observable of the same types.
17
+ */
18
+ export type CSVFetchDataCallback = (component: GridComponent) => CSVRow[] | DataResult | Promise<CSVRow[] | DataResult> | Observable<CSVRow[] | DataResult>;
19
+ /**
20
+ * The component is required when exporting the data to a CSV file. The component provides different options to customize the exported file and its content.
21
+ *
22
+ * @example
23
+ * ```html
24
+ * <kendo-grid>
25
+ * <kendo-grid-csv fileName="Export.csv"></kendo-grid-csv>
26
+ * </kendo-grid>
27
+ * ```
28
+ */
29
+ export declare class CSVComponent implements OnDestroy {
30
+ private ctx;
31
+ private zone;
32
+ /**
33
+ * Sets the file name for the exported CSV file.
34
+ * @default "Export.csv"
35
+ */
36
+ fileName: string;
37
+ /**
38
+ * Provides a function to get the exported data. By default, uses the data displayed in the Grid in accordance with the currently applied `State`. Supply a custom function to export a different data set. Typically used to export all data, not just the current page.
39
+ */
40
+ fetchData: CSVFetchDataCallback;
41
+ /**
42
+ * Sets optional column headers to render on the first line. By default, column names are extracted from each column's `title` or `field` properties.
43
+ */
44
+ names: string[] | null;
45
+ /**
46
+ * Sets property names to extract from object or Map rows, in order. By default, these are the properties used as `field` binding values in the Grid's column definitions.
47
+ */
48
+ keys: string[] | null;
49
+ /**
50
+ * Sets the character used to separate values in a row. Must be a single character.
51
+ * @default ","
52
+ */
53
+ delimiter: string;
54
+ /**
55
+ * Sets the string used to terminate each line.
56
+ * @default "\r\n"
57
+ */
58
+ lineSeparator: string;
59
+ /**
60
+ * When `true`, prefixes potentially dangerous formula characters (`=`, `+`, `-`, `@`, tab, `\r`) with a single quote (`'`) to prevent formula injection attacks in spreadsheet applications.
61
+ * @default true
62
+ */
63
+ preventFormulaInjection: boolean;
64
+ /**
65
+ * Sets the maximum number of characters allowed per cell. Values exceeding this limit are truncated.
66
+ * @default 32767
67
+ */
68
+ maxCellLength: number;
69
+ /**
70
+ * Maximum number of rows to export.
71
+ * Data exceeding this limit is automatically truncated.
72
+ * Default: 1000000 (prevents memory exhaustion and DoS attacks).
73
+ *
74
+ * @default 1000000
75
+ */
76
+ maxRows: number;
77
+ /**
78
+ * Maximum number of columns to export.
79
+ * Keys/columns exceeding this limit are automatically truncated.
80
+ * Default: 1000 (prevents memory exhaustion and DoS attacks).
81
+ *
82
+ * @default 1000
83
+ */
84
+ maxColumns: number;
85
+ /**
86
+ * When `true`, adds a UTF-8 Byte Order Mark (BOM) at the beginning of the file. Helps applications like Microsoft Excel correctly recognize UTF-8 encoding.
87
+ * @default false
88
+ */
89
+ includeUTF8BOM: boolean;
90
+ /**
91
+ * Provides a custom formatter for group headers in grouped data exports. Receives the display names of grouped fields and returns the formatted header.
92
+ * @default Joins display names with '/' separator
93
+ */
94
+ groupHeaderFormatter: ((displayNames: string[]) => string) | undefined;
95
+ /**
96
+ * Provides a custom formatter for group value rows in grouped data exports. Receives the values and field names, and returns the formatted group value.
97
+ * @default Joins values with '/' separator
98
+ */
99
+ groupValueFormatter: ((values: any[], groupNames: string[]) => string) | undefined;
100
+ /**
101
+ * Forwards the content to [`proxyURL`](#toc-proxyurl) even if the browser supports local file saving when set to `true`.
102
+ */
103
+ forceProxy: boolean;
104
+ /**
105
+ * Sets the URL of the server-side proxy that streams the file to the user. Use a proxy if the browser cannot save files locally.
106
+ * Set [`forceProxy`](#toc-forceproxy) to `true` to skip client-side saving.
107
+ * The proxy receives a POST request with specific parameters and returns the decoded file with the `"Content-Disposition"` header set to `attachment; filename="<fileName.csv>"`.
108
+ * For more details, see the [File Saver]({% slug overview_filesaver %}) documentation.
109
+ */
110
+ proxyURL: string;
111
+ private saveSubscription;
112
+ private dataSubscription;
113
+ constructor(csvService: CSVService, ctx: ContextService, zone: NgZone);
114
+ ngOnDestroy(): void;
115
+ /**
116
+ * @hidden
117
+ */
118
+ toCSVString(component: GridComponent): string | Promise<string>;
119
+ /**
120
+ * @hidden
121
+ */
122
+ saveAsCSV(component: GridComponent): void;
123
+ protected save(component: GridComponent): void;
124
+ protected exportData(component: GridComponent, result: any): void;
125
+ protected getCSVOptions(component: GridComponent): Omit<CSVExportOptions, 'data'>;
126
+ protected extractColumnNames(component: GridComponent): string[];
127
+ protected extractColumnKeys(component: GridComponent): string[];
128
+ protected saveFile(csvString: string): void;
129
+ static ɵfac: i0.ɵɵFactoryDeclaration<CSVComponent, never>;
130
+ static ɵcmp: i0.ɵɵComponentDeclaration<CSVComponent, "kendo-grid-csv", never, { "fileName": { "alias": "fileName"; "required": false; }; "fetchData": { "alias": "fetchData"; "required": false; }; "names": { "alias": "names"; "required": false; }; "keys": { "alias": "keys"; "required": false; }; "delimiter": { "alias": "delimiter"; "required": false; }; "lineSeparator": { "alias": "lineSeparator"; "required": false; }; "preventFormulaInjection": { "alias": "preventFormulaInjection"; "required": false; }; "maxCellLength": { "alias": "maxCellLength"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; "maxColumns": { "alias": "maxColumns"; "required": false; }; "includeUTF8BOM": { "alias": "includeUTF8BOM"; "required": false; }; "groupHeaderFormatter": { "alias": "groupHeaderFormatter"; "required": false; }; "groupValueFormatter": { "alias": "groupValueFormatter"; "required": false; }; "forceProxy": { "alias": "forceProxy"; "required": false; }; "proxyURL": { "alias": "proxyURL"; "required": false; }; }, {}, never, never, true, never>;
131
+ }
@@ -0,0 +1,32 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@progress/kendo-angular-icons";
7
+ import * as i2 from "./csv.component";
8
+ import * as i3 from "./csv-command.directive";
9
+ import * as i4 from "./csv-command-tool.directive";
10
+ /**
11
+ * Defines the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) for the CSV component of the Grid.
12
+ *
13
+ * @example
14
+ * ```ts
15
+ * import { NgModule } from '@angular/core';
16
+ * import { BrowserModule } from "@angular/platform-browser";
17
+ * import { GridModule, CSVModule } from '@progress/kendo-angular-grid';
18
+ * import { AppComponent } from './app.component';
19
+ *
20
+ * _@NgModule({
21
+ * declarations: [AppComponent],
22
+ * imports: [BrowserModule, GridModule, CSVModule],
23
+ * bootstrap: [AppComponent]
24
+ * })
25
+ * export class AppModule {}
26
+ * ```
27
+ */
28
+ export declare class CSVModule {
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<CSVModule, never>;
30
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CSVModule, never, [typeof i1.IconComponent, typeof i1.SVGIconComponent, typeof i2.CSVComponent, typeof i3.CSVCommandDirective, typeof i4.CSVCommandToolbarDirective], [typeof i2.CSVComponent, typeof i3.CSVCommandDirective, typeof i4.CSVCommandToolbarDirective]>;
31
+ static ɵinj: i0.ɵɵInjectorDeclaration<CSVModule>;
32
+ }
@@ -0,0 +1,16 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { EventEmitter } from '@angular/core';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * @hidden
9
+ */
10
+ export declare class CSVService {
11
+ saveToCSV: EventEmitter<any>;
12
+ exportClick: EventEmitter<any>;
13
+ save(component: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<CSVService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<CSVService>;
16
+ }
package/directives.d.ts CHANGED
@@ -86,6 +86,9 @@ import { ColumnMenuComponent } from "./column-menu/column-menu.component";
86
86
  import { ExcelComponent } from "./excel/excel.component";
87
87
  import { ExcelCommandDirective } from "./excel/excel-command.directive";
88
88
  import { ColumnComponent as ExcelColumnComponent, ColumnGroupComponent as ExcelColumnGroupComponent, FooterTemplateDirective as ExcelFooterTemplateDirective, GroupFooterTemplateDirective as ExcelGroupFooterTemplateDirective, GroupHeaderTemplateDirective as ExcelGroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective as ExcelGroupHeaderColumnTemplateDirective } from '@progress/kendo-angular-excel-export';
89
+ import { CSVComponent } from "./csv/csv.component";
90
+ import { CSVCommandDirective } from "./csv/csv-command.directive";
91
+ import { CSVCommandToolbarDirective } from "./csv/csv-command-tool.directive";
89
92
  import { PDFComponent } from "./pdf/pdf.component";
90
93
  import { PDFMarginComponent } from "./pdf/pdf-margin.component";
91
94
  import { PDFCommandDirective } from "./pdf/pdf-command.directive";
@@ -251,6 +254,12 @@ export declare const KENDO_GRID_EXPORTS: readonly [typeof GridComponent, typeof
251
254
  * Utility array that contains the ExcelExport module exports
252
255
  */
253
256
  export declare const KENDO_GRID_EXCEL_EXPORT: readonly [typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective];
257
+ /**
258
+ * @hidden
259
+ *
260
+ * Utility array that contains the CSVExport module exports
261
+ */
262
+ export declare const KENDO_GRID_CSV_EXPORT: readonly [typeof CSVComponent, typeof CSVCommandDirective, typeof CSVCommandToolbarDirective];
254
263
  /**
255
264
  * @hidden
256
265
  *
@@ -269,4 +278,4 @@ export declare const KENDO_GRID_PDF_EXPORT: readonly [typeof PDFComponent, typeo
269
278
  * export class AppModule {}
270
279
  * ```
271
280
  */
272
- export 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 SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, 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 ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
281
+ export 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 SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, 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 ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective, typeof CSVComponent, typeof CSVCommandDirective, typeof CSVCommandToolbarDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];