@syncfusion/ej2-angular-treegrid 28.2.6 → 29.1.33-ngcc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/@syncfusion/ej2-angular-treegrid.es5.js +798 -0
  2. package/@syncfusion/ej2-angular-treegrid.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-treegrid.js +748 -0
  4. package/@syncfusion/ej2-angular-treegrid.js.map +1 -0
  5. package/README.md +6 -6
  6. package/dist/ej2-angular-treegrid.umd.js +978 -0
  7. package/dist/ej2-angular-treegrid.umd.js.map +1 -0
  8. package/dist/ej2-angular-treegrid.umd.min.js +11 -0
  9. package/dist/ej2-angular-treegrid.umd.min.js.map +1 -0
  10. package/ej2-angular-treegrid.d.ts +5 -0
  11. package/ej2-angular-treegrid.metadata.json +1 -0
  12. package/license +10 -0
  13. package/package.json +15 -28
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/treegrid/aggregate-columns.directive.d.ts +26 -33
  18. package/src/treegrid/aggregates.directive.d.ts +2 -7
  19. package/src/treegrid/columns.directive.d.ts +54 -79
  20. package/src/treegrid/stacked-column.directive.d.ts +54 -79
  21. package/src/treegrid/treegrid-all.module.d.ts +0 -6
  22. package/src/treegrid/treegrid.component.d.ts +1 -4
  23. package/src/treegrid/treegrid.module.d.ts +0 -10
  24. package/CHANGELOG.md +0 -260
  25. package/esm2020/public_api.mjs +0 -2
  26. package/esm2020/src/index.mjs +0 -9
  27. package/esm2020/src/treegrid/aggregate-columns.directive.mjs +0 -72
  28. package/esm2020/src/treegrid/aggregates.directive.mjs +0 -69
  29. package/esm2020/src/treegrid/columns.directive.mjs +0 -100
  30. package/esm2020/src/treegrid/stacked-column.directive.mjs +0 -100
  31. package/esm2020/src/treegrid/treegrid-all.module.mjs +0 -89
  32. package/esm2020/src/treegrid/treegrid.component.mjs +0 -247
  33. package/esm2020/src/treegrid/treegrid.module.mjs +0 -61
  34. package/esm2020/syncfusion-ej2-angular-treegrid.mjs +0 -5
  35. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs +0 -710
  36. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
  37. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs +0 -710
  38. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
  39. package/syncfusion-ej2-angular-treegrid.d.ts +0 -5
@@ -1,6 +1,5 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
3
  /**
5
4
  * `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.
6
5
  * It must be contained in a StackedColumns component(`e-stacked-columns`).
@@ -21,60 +20,53 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
21
20
  private viewContainerRef;
22
21
  directivePropList: any;
23
22
  /**
24
- * Defines the data type of the column.
23
+ * Defines the type of data stored in the column, which may be string, number, date, or other types.
25
24
  * @default null
26
25
  */
27
26
  type: any;
28
27
  /**
29
- * If `allowEditing` set to false, then it disables editing of a particular column.
30
- * By default all columns are editable.
28
+ * Controls whether editing is permitted for the column. By default, all columns are editable.
31
29
  * @default true
32
30
  */
33
31
  allowEditing: any;
34
32
  /**
35
- * If `allowFiltering` set to false, then it disables filtering option and filter bar element of a particular column.
36
- * By default all columns are filterable.
33
+ * Controls whether the column supports filtering. If set to false, users cannot filter data by this column.
37
34
  * @default true
38
35
  */
39
36
  allowFiltering: any;
40
37
  /**
41
- * If `allowReordering` set to false, then it disables reorder of a particular column.
42
- * By default all columns can be reorder.
38
+ * Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.
43
39
  * @default true
44
40
  */
45
41
  allowReordering: any;
46
42
  /**
47
- * If `allowResizing` set to false, it disables resize option of a particular column.
43
+ * Determines if this column can be resized. If false, the column size is fixed.
48
44
  * @default true
49
45
  */
50
46
  allowResizing: any;
51
47
  /**
52
- * If `allowSorting` set to false, then it disables sorting option of a particular column.
53
- * By default all columns are sortable.
48
+ * Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.
54
49
  * @default true
55
50
  */
56
51
  allowSorting: any;
57
52
  /**
58
- * Defines the cell content's overflow mode. The available modes are
59
- *
60
- * also it will display tooltip while hover on ellipsis applied cell.
53
+ * Determines how overflow content is handled within a cell. Options include:
54
+ * * `Clip`: Truncates the content.
55
+ * * `Ellipsis`: Shows ellipsis for overflow.
56
+ * * `EllipsisWithTooltip`: Shows ellipsis and tooltip on hover.
61
57
  * @default Syncfusion.EJ2.Grids.ClipMode.Ellipsis
62
58
  * @isenumeration true
63
59
  * @asptype Syncfusion.EJ2.Grids.ClipMode
64
60
  */
65
61
  clipMode: any;
66
62
  /**
67
- * Used to render multiple header rows(stacked headers) on TreeGrid header.
63
+ * Allows for the creation of stacked headers by using multiple rows in the grid's header.
68
64
  * @default null
69
65
  */
70
66
  columns: any;
71
67
  /**
72
- * `commands` provides an option to display command buttons in every cell.
73
- * The available built-in command buttons are
74
- * * Edit - Edit the record.
75
- * * Delete - Delete the record.
76
- * * Save - Save the record.
77
- * * Cancel - Cancel the edit state.
68
+ * Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel.
69
+ * Custom command button implementations are possible.
78
70
  *
79
71
  * The following code example implements the custom command column.
80
72
  *```html
@@ -101,53 +93,49 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
101
93
  */
102
94
  commands: any;
103
95
  /**
104
- * The CSS styles and attributes of the content cells of a particular column can be customized.
96
+ * Enables the addition of CSS styles and attributes for the content cells in a particular column.
105
97
  * @default null
106
98
  */
107
99
  customAttributes: any;
108
100
  /**
109
- * Defines default values for the component when adding a new record to the TreeGrid.
101
+ * Sets default values when new records are added to the TreeGrid involving this column.
110
102
  * @default null
111
103
  */
112
104
  defaultValue: any;
113
105
  /**
114
- * If `disableHtmlEncode` is set to true, it encodes the HTML of the header and content cells.
106
+ * If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.
115
107
  * @default true
116
108
  */
117
109
  disableHtmlEncode: any;
118
110
  /**
119
- * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.
111
+ * Displays the column value as a checkbox instead of a Boolean value when set to `true`.
120
112
  * @default false
121
113
  */
122
114
  displayAsCheckBox: any;
123
115
  /**
124
- * Defines the `IEditCell` object to customize default edit cell.
116
+ * Allows customizing the default edit cell through the `IEditCell` object for more control over editing.
125
117
  * @default {}
126
118
  */
127
119
  edit: any;
128
120
  /**
129
- * Defines the type of component for editing.
121
+ * Specifies the component type used for editing cells within this column.
130
122
  * @default 'stringedit'
131
123
  */
132
124
  editType: any;
133
125
  /**
134
- * Defines the field name of column which is mapped with mapping name of DataSource.
135
- * The bounded columns can be sort, filter etc.,
136
- * The `field` name must be a valid JavaScript identifier,
137
- * the first character must be an alphabet and should not contain spaces and special characters.
126
+ * Specifies the field name in the data source to which the column is bound. This field is used for operations like sorting and filtering.
127
+ * The field name must be a valid JavaScript identifier, beginning with a letter and avoiding spaces and special characters.
138
128
  * @default 'undefined'
139
129
  */
140
130
  field: any;
141
131
  /**
142
- * Defines the filter options to customize filtering for the particular column.
132
+ * Customizes filter options for the column, enabling specialized filtering functionality.
143
133
  * @default null
144
134
  */
145
135
  filter: any;
146
136
  /**
147
- * The `filterBarTemplate` is used to add a custom component instead of default input component for filter bar.
148
- * It have create and read functions.
149
- * * create: It is used for creating custom components.
150
- * * read: It is used to perform custom filter action.
137
+ * Allows for a custom component within the filter bar, facilitating advanced filter interfaces.
138
+ * Includes create and read functions for custom component management.
151
139
  *
152
140
  * ```html
153
141
  *<div id="TreeGrid"></div>
@@ -172,7 +160,7 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
172
160
  * gridObj.filterByColumn(args.element.id, 'equal', args.element.value);
173
161
  * }
174
162
  * }
175
- * }],
163
+ *}],
176
164
  * allowFiltering: true
177
165
  *});
178
166
  *gridObj.appendTo('#TreeGrid');
@@ -182,35 +170,33 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
182
170
  */
183
171
  filterBarTemplate: any;
184
172
  /**
185
- * It is used to change display value with the given format and does not affect the original data.
186
- * Gets the format from the user which can be standard or custom
187
- * [`number`](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)
188
- * and [`date`](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string-1) formats.
173
+ * Formats the displayed value of the column without affecting the underlying data. Supports standard and custom formats for numbers and dates.
174
+ *
175
+ * References for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)
176
+ *and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats.
189
177
  * @default null
190
178
  * @asptype string
191
179
  */
192
180
  format: any;
193
181
  /**
194
- * Defines the method which is used to achieve custom formatting from an external function.
195
- * This function triggers before rendering of each cell.
182
+ * Allows for custom cell content formatting using an external method, executed prior to rendering.
196
183
  * @default null
197
184
  */
198
185
  formatter: any;
199
186
  /**
200
- * Defines which side the column need to freeze
187
+ * Determines which side (left, right, or center) the column should be frozen on.
201
188
  * @default Syncfusion.EJ2.Grids.FreezeDirection.None
202
189
  * @isenumeration true
203
190
  * @asptype Syncfusion.EJ2.Grids.FreezeDirection
204
191
  */
205
192
  freeze: any;
206
193
  /**
207
- * Defines the header text of column which is used to display in column header.
208
- * If `headerText` is not defined, then field name value will be assigned to header text.
194
+ * Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.
209
195
  * @default 'undefined'
210
196
  */
211
197
  headerText: any;
212
198
  /**
213
- * Define the alignment of column header which is used to align the text of column header.
199
+ * Aligns the text in the column header. By default, the alignment corresponds to other content alignments.
214
200
  * @default null
215
201
  * @aspdefaultvalueignore
216
202
  * @isenumeration true
@@ -218,126 +204,117 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
218
204
  */
219
205
  headerTextAlign: any;
220
206
  /**
221
- * Column visibility can change based on [`Media Queries`](http://cssmediaqueries.com/what-are-css-media-queries.html).
222
- * `hideAtMedia` accepts only valid Media Queries.
207
+ * Adjusts column visibility based on [Media Queries](http://cssmediaqueries.com/what-are-css-media-queries.html). Accepts valid CSS media query strings for responsive adjustments.
223
208
  * @default 'undefined'
224
209
  */
225
210
  hideAtMedia: any;
226
211
  /**
227
- * You can use this property to freeze selected columns in grid.
212
+ * Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.
228
213
  * @default false
229
214
  */
230
215
  isFrozen: any;
231
216
  /**
232
- * If `isIdentity` is set to true, then this column is considered as identity column.
217
+ * Identifies the column as an identity column in database terms, if set to `true`.
233
218
  * @default false
234
219
  */
235
220
  isIdentity: any;
236
221
  /**
237
- * If `isPrimaryKey` is set to true, considers this column as the primary key constraint.
222
+ * Identifies the column as a primary key if set to `true`, enforcing uniqueness.
238
223
  * @default false
239
224
  */
240
225
  isPrimaryKey: any;
241
226
  /**
242
- * If `lockColumn` set to true, then it disables Reordering of a particular column.
243
- * The locked column will be moved to first position.
227
+ * Prevents column reordering when set to true, locking the column into a set position.
244
228
  * @default false
245
229
  */
246
230
  lockColumn: any;
247
231
  /**
248
- * Defines the maximum width of the column in pixels or percentage, which will restrict resizing beyond this pixels or percentage.
232
+ * Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.
249
233
  * @default 'undefined'
250
234
  */
251
235
  maxWidth: any;
252
236
  /**
253
- * Defines the minimum width of the column in pixels or percentage.
237
+ * Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.
254
238
  * @default 'undefined'
255
239
  */
256
240
  minWidth: any;
257
241
  /**
258
- * If `showCheckbox` set to true, then the checkboxes will be displayed in particular column.
242
+ * Displays checkboxes in the column when enabled, allowing for selections and certain operations.
259
243
  * @default false
260
244
  */
261
245
  showCheckbox: any;
262
246
  /**
263
- * If `showColumnMenu` set to false, then it disable the column menu of a particular column.
264
- * By default column menu will show for all columns
247
+ * Decides if the column menu should be available, providing options for column customization.
265
248
  * @default true
266
249
  */
267
250
  showColumnMenu: any;
268
251
  /**
269
- * If `showInColumnChooser` set to false, then hide the particular column in column chooser.
270
- * By default all columns are displayed in column Chooser.
252
+ * Determines whether the column should appear in the Column Chooser. Set to false to exclude it.
271
253
  * @default true
272
254
  */
273
255
  showInColumnChooser: any;
274
256
  /**
275
- * Defines the sort comparer property.
257
+ * Provides a custom sort comparer property to control how sorting is handled for this column's data.
276
258
  * @default 'undefined'
277
259
  */
278
260
  sortComparer: any;
279
261
  /**
280
- * Defines the alignment of the column in both header and content cells.
262
+ * Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.
281
263
  * @default Syncfusion.EJ2.Grids.TextAlign.Left
282
264
  * @isenumeration true
283
265
  * @asptype Syncfusion.EJ2.Grids.TextAlign
284
266
  */
285
267
  textAlign: any;
286
268
  /**
287
- * Gets the unique identifier value of the column. It is used to get the object.
269
+ * Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.
288
270
  * @default 'undefined'
289
271
  */
290
272
  uid: any;
291
273
  /**
292
- * Defines rules to validate data before creating and updating.
274
+ * Establishes validation rules to ensure data integrity during creation and updates.
293
275
  * @default null
294
276
  */
295
277
  validationRules: any;
296
278
  /**
297
- * Defines the method used to apply custom cell values from external function and display this on each cell rendered.
279
+ * Applies custom cell values using an external function, allowing for dynamic display adjustments.
298
280
  * @default null
299
281
  */
300
282
  valueAccessor: any;
301
283
  /**
302
- * If `visible` is set to false, hides the particular column. By default, columns are displayed.
284
+ * Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.
303
285
  * @default true
304
286
  */
305
287
  visible: any;
306
288
  /**
307
- * Defines the width of the column in pixels or percentage.
289
+ * Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.
308
290
  * @default 'undefined'
309
291
  */
310
292
  width: any;
311
293
  /**
312
- * Defines the column template that renders customized element in each cell of the column.
313
- * It accepts either [template string](https://ej2.syncfusion.com/documentation/common/template-engine/) or HTML element ID.
294
+ * Customizes the rendering of cell content using either a template string or HTML element ID.
314
295
  * @default null
315
296
  * @asptype string
316
297
  */
317
298
  template: any;
318
299
  /**
319
- * Defines the header template as string or HTML element ID which is used to add customized element in the column header.
300
+ * Customizes the header content with a template, defined as a string or an HTML element ID.
320
301
  * @default null
321
302
  * @asptype string
322
303
  */
323
304
  headerTemplate: any;
324
305
  filter_itemTemplate: any;
325
306
  /**
326
- * Defines the filter template/UI that is used as filter for a particular column.
327
- * It accepts either template string or HTML element ID.
307
+ * Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.
328
308
  * @aspignore
329
309
  */
330
310
  filterTemplate: any;
331
311
  commandsTemplate: any;
332
312
  /**
333
- * Defines the cell edit template that used as editor for a particular column.
334
- * It accepts either template string or HTML element ID.
313
+ * Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.
335
314
  * @aspignore
336
315
  */
337
316
  editTemplate: any;
338
317
  constructor(viewContainerRef: ViewContainerRef);
339
- static ɵfac: i0.ɵɵFactoryDeclaration<StackedColumnDirective, never>;
340
- static ɵdir: i0.ɵɵDirectiveDeclaration<StackedColumnDirective, "ejs-treegrid>e-columns>e-column>e-stacked-columns>e-stacked-column", never, { "allowEditing": "allowEditing"; "allowFiltering": "allowFiltering"; "allowReordering": "allowReordering"; "allowResizing": "allowResizing"; "allowSorting": "allowSorting"; "clipMode": "clipMode"; "columns": "columns"; "commands": "commands"; "customAttributes": "customAttributes"; "defaultValue": "defaultValue"; "disableHtmlEncode": "disableHtmlEncode"; "displayAsCheckBox": "displayAsCheckBox"; "edit": "edit"; "editTemplate": "editTemplate"; "editType": "editType"; "field": "field"; "filter": "filter"; "filterBarTemplate": "filterBarTemplate"; "filterTemplate": "filterTemplate"; "format": "format"; "formatter": "formatter"; "freeze": "freeze"; "headerTemplate": "headerTemplate"; "headerText": "headerText"; "headerTextAlign": "headerTextAlign"; "hideAtMedia": "hideAtMedia"; "isFrozen": "isFrozen"; "isIdentity": "isIdentity"; "isPrimaryKey": "isPrimaryKey"; "lockColumn": "lockColumn"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "showCheckbox": "showCheckbox"; "showColumnMenu": "showColumnMenu"; "showInColumnChooser": "showInColumnChooser"; "sortComparer": "sortComparer"; "template": "template"; "textAlign": "textAlign"; "type": "type"; "uid": "uid"; "validationRules": "validationRules"; "valueAccessor": "valueAccessor"; "visible": "visible"; "width": "width"; }, {}, ["template", "headerTemplate", "filter_itemTemplate", "filterTemplate", "commandsTemplate", "editTemplate"]>;
341
318
  }
342
319
  /**
343
320
  * StackedColumn Array Directive
@@ -345,6 +322,4 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
345
322
  */
346
323
  export declare class StackedColumnsDirective extends ArrayBase<StackedColumnsDirective> {
347
324
  constructor();
348
- static ɵfac: i0.ɵɵFactoryDeclaration<StackedColumnsDirective, never>;
349
- static ɵdir: i0.ɵɵDirectiveDeclaration<StackedColumnsDirective, "ejs-treegrid>e-columns>e-column>e-stacked-columns", never, {}, {}, ["children"]>;
350
325
  }
@@ -1,7 +1,4 @@
1
1
  import { ValueProvider } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "./treegrid.module";
5
2
  export declare const FilterService: ValueProvider;
6
3
  export declare const PageService: ValueProvider;
7
4
  export declare const SortService: ValueProvider;
@@ -27,7 +24,4 @@ export declare const InfiniteScrollService: ValueProvider;
27
24
  * NgModule definition for the TreeGrid component with providers.
28
25
  */
29
26
  export declare class TreeGridAllModule {
30
- static ɵfac: i0.ɵɵFactoryDeclaration<TreeGridAllModule, never>;
31
- static ɵmod: i0.ɵɵNgModuleDeclaration<TreeGridAllModule, never, [typeof i1.CommonModule, typeof i2.TreeGridModule], [typeof i2.TreeGridModule]>;
32
- static ɵinj: i0.ɵɵInjectorDeclaration<TreeGridAllModule>;
33
27
  }
@@ -3,7 +3,6 @@ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
3
  import { TreeGrid } from '@syncfusion/ej2-treegrid';
4
4
  import { ColumnsDirective } from './columns.directive';
5
5
  import { AggregatesDirective } from './aggregates.directive';
6
- import * as i0 from "@angular/core";
7
6
  export declare const inputs: string[];
8
7
  export declare const outputs: string[];
9
8
  export declare const twoWays: string[];
@@ -97,7 +96,7 @@ export declare class TreeGridComponent extends TreeGrid implements IComponentBas
97
96
  * or HTML element ID.
98
97
  * > * The row template must be a table row.
99
98
  *
100
- * > Check the [`Row Template`](../../treegrid/row) customization.
99
+ * > Check the [Row Template](../../treegrid/row) customization.
101
100
  *
102
101
  * @asptype string
103
102
  */
@@ -119,6 +118,4 @@ export declare class TreeGridComponent extends TreeGrid implements IComponentBas
119
118
  ngAfterContentChecked(): void;
120
119
  registerEvents: (eventList: string[]) => void;
121
120
  addTwoWay: (propList: string[]) => void;
122
- static ɵfac: i0.ɵɵFactoryDeclaration<TreeGridComponent, never>;
123
- static ɵcmp: i0.ɵɵComponentDeclaration<TreeGridComponent, "ejs-treegrid", never, { "aggregates": "aggregates"; "allowExcelExport": "allowExcelExport"; "allowFiltering": "allowFiltering"; "allowMultiSorting": "allowMultiSorting"; "allowPaging": "allowPaging"; "allowPdfExport": "allowPdfExport"; "allowReordering": "allowReordering"; "allowResizing": "allowResizing"; "allowRowDragAndDrop": "allowRowDragAndDrop"; "allowSelection": "allowSelection"; "allowSorting": "allowSorting"; "allowTextWrap": "allowTextWrap"; "autoCheckHierarchy": "autoCheckHierarchy"; "childMapping": "childMapping"; "clipMode": "clipMode"; "columnMenuItems": "columnMenuItems"; "columnQueryMode": "columnQueryMode"; "columns": "columns"; "contextMenuItems": "contextMenuItems"; "copyHierarchyMode": "copyHierarchyMode"; "currencyCode": "currencyCode"; "dataSource": "dataSource"; "detailTemplate": "detailTemplate"; "editSettings": "editSettings"; "enableAdaptiveUI": "enableAdaptiveUI"; "enableAltRow": "enableAltRow"; "enableAutoFill": "enableAutoFill"; "enableCollapseAll": "enableCollapseAll"; "enableColumnVirtualization": "enableColumnVirtualization"; "enableHover": "enableHover"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enableImmutableMode": "enableImmutableMode"; "enableInfiniteScrolling": "enableInfiniteScrolling"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableVirtualMaskRow": "enableVirtualMaskRow"; "enableVirtualization": "enableVirtualization"; "expandStateMapping": "expandStateMapping"; "filterSettings": "filterSettings"; "frozenColumns": "frozenColumns"; "frozenRows": "frozenRows"; "gridLines": "gridLines"; "hasChildMapping": "hasChildMapping"; "height": "height"; "idMapping": "idMapping"; "infiniteScrollSettings": "infiniteScrollSettings"; "loadChildOnDemand": "loadChildOnDemand"; "loadingIndicator": "loadingIndicator"; "locale": "locale"; "pageSettings": "pageSettings"; "parentIdMapping": "parentIdMapping"; "printMode": "printMode"; "query": "query"; "rowDropSettings": "rowDropSettings"; "rowHeight": "rowHeight"; "rowTemplate": "rowTemplate"; "searchSettings": "searchSettings"; "selectedRowIndex": "selectedRowIndex"; "selectionSettings": "selectionSettings"; "showColumnChooser": "showColumnChooser"; "showColumnMenu": "showColumnMenu"; "sortSettings": "sortSettings"; "textWrapSettings": "textWrapSettings"; "toolbar": "toolbar"; "treeColumnIndex": "treeColumnIndex"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "batchAdd": "batchAdd"; "batchCancel": "batchCancel"; "batchDelete": "batchDelete"; "beforeBatchAdd": "beforeBatchAdd"; "beforeBatchDelete": "beforeBatchDelete"; "beforeBatchSave": "beforeBatchSave"; "beforeCopy": "beforeCopy"; "beforeDataBound": "beforeDataBound"; "beforeExcelExport": "beforeExcelExport"; "beforePaste": "beforePaste"; "beforePdfExport": "beforePdfExport"; "beforePrint": "beforePrint"; "beginEdit": "beginEdit"; "cellDeselected": "cellDeselected"; "cellDeselecting": "cellDeselecting"; "cellEdit": "cellEdit"; "cellSave": "cellSave"; "cellSaved": "cellSaved"; "cellSelected": "cellSelected"; "cellSelecting": "cellSelecting"; "checkboxChange": "checkboxChange"; "collapsed": "collapsed"; "collapsing": "collapsing"; "columnDrag": "columnDrag"; "columnDragStart": "columnDragStart"; "columnDrop": "columnDrop"; "columnMenuClick": "columnMenuClick"; "columnMenuOpen": "columnMenuOpen"; "contextMenuClick": "contextMenuClick"; "contextMenuOpen": "contextMenuOpen"; "created": "created"; "dataBound": "dataBound"; "dataSourceChanged": "dataSourceChanged"; "dataStateChange": "dataStateChange"; "detailDataBound": "detailDataBound"; "excelExportComplete": "excelExportComplete"; "excelHeaderQueryCellInfo": "excelHeaderQueryCellInfo"; "excelQueryCellInfo": "excelQueryCellInfo"; "expanded": "expanded"; "expanding": "expanding"; "headerCellInfo": "headerCellInfo"; "load": "load"; "pdfExportComplete": "pdfExportComplete"; "pdfHeaderQueryCellInfo": "pdfHeaderQueryCellInfo"; "pdfQueryCellInfo": "pdfQueryCellInfo"; "printComplete": "printComplete"; "queryCellInfo": "queryCellInfo"; "recordDoubleClick": "recordDoubleClick"; "resizeStart": "resizeStart"; "resizeStop": "resizeStop"; "resizing": "resizing"; "rowDataBound": "rowDataBound"; "rowDeselected": "rowDeselected"; "rowDeselecting": "rowDeselecting"; "rowDrag": "rowDrag"; "rowDragStart": "rowDragStart"; "rowDragStartHelper": "rowDragStartHelper"; "rowDrop": "rowDrop"; "rowSelected": "rowSelected"; "rowSelecting": "rowSelecting"; "toolbarClick": "toolbarClick"; "dataSourceChange": "dataSourceChange"; }, ["toolbarTemplate", "pagerTemplate", "rowTemplate", "detailTemplate", "editSettings_template", "childColumns", "childAggregates"], never>;
124
121
  }
@@ -1,15 +1,5 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./treegrid.component";
3
- import * as i2 from "./stacked-column.directive";
4
- import * as i3 from "./columns.directive";
5
- import * as i4 from "./aggregate-columns.directive";
6
- import * as i5 from "./aggregates.directive";
7
- import * as i6 from "@angular/common";
8
1
  /**
9
2
  * NgModule definition for the TreeGrid component.
10
3
  */
11
4
  export declare class TreeGridModule {
12
- static ɵfac: i0.ɵɵFactoryDeclaration<TreeGridModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<TreeGridModule, [typeof i1.TreeGridComponent, typeof i2.StackedColumnDirective, typeof i2.StackedColumnsDirective, typeof i3.ColumnDirective, typeof i3.ColumnsDirective, typeof i4.AggregateColumnDirective, typeof i4.AggregateColumnsDirective, typeof i5.AggregateDirective, typeof i5.AggregatesDirective], [typeof i6.CommonModule], [typeof i1.TreeGridComponent, typeof i2.StackedColumnDirective, typeof i2.StackedColumnsDirective, typeof i3.ColumnDirective, typeof i3.ColumnsDirective, typeof i4.AggregateColumnDirective, typeof i4.AggregateColumnsDirective, typeof i5.AggregateDirective, typeof i5.AggregatesDirective]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<TreeGridModule>;
15
5
  }