@syncfusion/ej2-angular-treegrid 31.2.10-ngcc → 31.2.10

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 (38) hide show
  1. package/CHANGELOG.md +230 -0
  2. package/README.md +15 -7
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/index.mjs +9 -0
  5. package/esm2020/src/treegrid/aggregate-columns.directive.mjs +72 -0
  6. package/esm2020/src/treegrid/aggregates.directive.mjs +69 -0
  7. package/esm2020/src/treegrid/columns.directive.mjs +100 -0
  8. package/esm2020/src/treegrid/stacked-column.directive.mjs +100 -0
  9. package/esm2020/src/treegrid/treegrid-all.module.mjs +89 -0
  10. package/esm2020/src/treegrid/treegrid.component.mjs +271 -0
  11. package/esm2020/src/treegrid/treegrid.module.mjs +61 -0
  12. package/esm2020/syncfusion-ej2-angular-treegrid.mjs +5 -0
  13. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs +734 -0
  14. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs.map +1 -0
  15. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs +734 -0
  16. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs.map +1 -0
  17. package/package.json +20 -7
  18. package/public_api.d.ts +1 -1
  19. package/src/index.d.ts +8 -8
  20. package/src/treegrid/aggregate-columns.directive.d.ts +91 -86
  21. package/src/treegrid/aggregates.directive.d.ts +49 -44
  22. package/src/treegrid/columns.directive.d.ts +328 -323
  23. package/src/treegrid/stacked-column.directive.d.ts +330 -325
  24. package/src/treegrid/treegrid-all.module.d.ts +33 -27
  25. package/src/treegrid/treegrid.component.d.ts +143 -140
  26. package/src/treegrid/treegrid.module.d.ts +15 -5
  27. package/syncfusion-ej2-angular-treegrid.d.ts +5 -0
  28. package/@syncfusion/ej2-angular-treegrid.es5.js +0 -818
  29. package/@syncfusion/ej2-angular-treegrid.es5.js.map +0 -1
  30. package/@syncfusion/ej2-angular-treegrid.js +0 -768
  31. package/@syncfusion/ej2-angular-treegrid.js.map +0 -1
  32. package/LICENSE +0 -10
  33. package/dist/ej2-angular-treegrid.umd.js +0 -998
  34. package/dist/ej2-angular-treegrid.umd.js.map +0 -1
  35. package/dist/ej2-angular-treegrid.umd.min.js +0 -11
  36. package/dist/ej2-angular-treegrid.umd.min.js.map +0 -1
  37. package/ej2-angular-treegrid.d.ts +0 -5
  38. package/ej2-angular-treegrid.metadata.json +0 -1
@@ -1,27 +1,33 @@
1
- import { ValueProvider } from '@angular/core';
2
- export declare const FilterService: ValueProvider;
3
- export declare const PageService: ValueProvider;
4
- export declare const SortService: ValueProvider;
5
- export declare const ReorderService: ValueProvider;
6
- export declare const ToolbarService: ValueProvider;
7
- export declare const AggregateService: ValueProvider;
8
- export declare const ResizeService: ValueProvider;
9
- export declare const ColumnMenuService: ValueProvider;
10
- export declare const ExcelExportService: ValueProvider;
11
- export declare const PdfExportService: ValueProvider;
12
- export declare const CommandColumnService: ValueProvider;
13
- export declare const ContextMenuService: ValueProvider;
14
- export declare const EditService: ValueProvider;
15
- export declare const SelectionService: ValueProvider;
16
- export declare const VirtualScrollService: ValueProvider;
17
- export declare const DetailRowService: ValueProvider;
18
- export declare const RowDDService: ValueProvider;
19
- export declare const FreezeService: ValueProvider;
20
- export declare const ColumnChooserService: ValueProvider;
21
- export declare const LoggerService: ValueProvider;
22
- export declare const InfiniteScrollService: ValueProvider;
23
- /**
24
- * NgModule definition for the TreeGrid component with providers.
25
- */
26
- export declare class TreeGridAllModule {
27
- }
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
+ export declare const FilterService: ValueProvider;
6
+ export declare const PageService: ValueProvider;
7
+ export declare const SortService: ValueProvider;
8
+ export declare const ReorderService: ValueProvider;
9
+ export declare const ToolbarService: ValueProvider;
10
+ export declare const AggregateService: ValueProvider;
11
+ export declare const ResizeService: ValueProvider;
12
+ export declare const ColumnMenuService: ValueProvider;
13
+ export declare const ExcelExportService: ValueProvider;
14
+ export declare const PdfExportService: ValueProvider;
15
+ export declare const CommandColumnService: ValueProvider;
16
+ export declare const ContextMenuService: ValueProvider;
17
+ export declare const EditService: ValueProvider;
18
+ export declare const SelectionService: ValueProvider;
19
+ export declare const VirtualScrollService: ValueProvider;
20
+ export declare const DetailRowService: ValueProvider;
21
+ export declare const RowDDService: ValueProvider;
22
+ export declare const FreezeService: ValueProvider;
23
+ export declare const ColumnChooserService: ValueProvider;
24
+ export declare const LoggerService: ValueProvider;
25
+ export declare const InfiniteScrollService: ValueProvider;
26
+ /**
27
+ * NgModule definition for the TreeGrid component with providers.
28
+ */
29
+ 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
+ }
@@ -1,140 +1,143 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { TreeGrid } from '@syncfusion/ej2-treegrid';
4
- import { ColumnsDirective } from './columns.directive';
5
- import { AggregatesDirective } from './aggregates.directive';
6
- export declare const inputs: string[];
7
- export declare const outputs: string[];
8
- export declare const twoWays: string[];
9
- /**
10
- * `ejs-treegrid` represents the Angular TreeTreeGrid Component.
11
- * ```html
12
- * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-treegrid>
13
- * ```
14
- */
15
- export declare class TreeGridComponent extends TreeGrid implements IComponentBase {
16
- private ngEle;
17
- private srenderer;
18
- private viewContainerRef;
19
- private injector;
20
- context: any;
21
- tagObjects: any;
22
- actionBegin: any;
23
- actionComplete: any;
24
- actionFailure: any;
25
- batchAdd: any;
26
- batchCancel: any;
27
- batchDelete: any;
28
- beforeBatchAdd: any;
29
- beforeBatchDelete: any;
30
- beforeBatchSave: any;
31
- beforeCopy: any;
32
- beforeDataBound: any;
33
- beforeExcelExport: any;
34
- beforePaste: any;
35
- beforePdfExport: any;
36
- beforePrint: any;
37
- beginEdit: any;
38
- cellDeselected: any;
39
- cellDeselecting: any;
40
- cellEdit: any;
41
- cellSave: any;
42
- cellSaved: any;
43
- cellSelected: any;
44
- cellSelecting: any;
45
- checkboxChange: any;
46
- collapsed: any;
47
- collapsing: any;
48
- columnDrag: any;
49
- columnDragStart: any;
50
- columnDrop: any;
51
- columnMenuClick: any;
52
- columnMenuOpen: any;
53
- contextMenuClick: any;
54
- contextMenuOpen: any;
55
- created: any;
56
- dataBound: any;
57
- dataSourceChanged: any;
58
- dataStateChange: any;
59
- detailDataBound: any;
60
- excelAggregateQueryCellInfo: any;
61
- excelExportComplete: any;
62
- excelHeaderQueryCellInfo: any;
63
- excelQueryCellInfo: any;
64
- expanded: any;
65
- expanding: any;
66
- headerCellInfo: any;
67
- load: any;
68
- pdfAggregateQueryCellInfo: any;
69
- pdfExportComplete: any;
70
- pdfHeaderQueryCellInfo: any;
71
- pdfQueryCellInfo: any;
72
- printComplete: any;
73
- queryCellInfo: any;
74
- recordDoubleClick: any;
75
- resizeStart: any;
76
- resizeStop: any;
77
- resizing: any;
78
- rowDataBound: any;
79
- rowDeselected: any;
80
- rowDeselecting: any;
81
- rowDrag: any;
82
- rowDragStart: any;
83
- rowDragStartHelper: any;
84
- rowDrop: any;
85
- rowSelected: any;
86
- rowSelecting: any;
87
- toolbarClick: any;
88
- dataSourceChange: any;
89
- childColumns: QueryList<ColumnsDirective>;
90
- childAggregates: QueryList<AggregatesDirective>;
91
- tags: string[];
92
- toolbarTemplate: any;
93
- /**
94
- * It used to render pager template
95
- * @default null
96
- * @asptype string
97
- */
98
- pagerTemplate: any;
99
- /**
100
- * The row template that renders customized rows from the given template.
101
- * By default, TreeGrid renders a table row for every data source item.
102
- * > * It accepts either [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
103
- * or HTML element ID.
104
- * > * The row template must be a table row.
105
- *
106
- * > Check the [Row Template](../../treegrid/row) customization.
107
- *
108
- * @asptype string
109
- */
110
- rowTemplate: any;
111
- /**
112
- * The detail template allows you to show or hide additional information about a particular row.
113
- *
114
- * > It accepts either the [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
115
- *or the HTML element ID.
116
- *
117
- * @asptype string
118
- */
119
- detailTemplate: any;
120
- editSettings_template: any;
121
- /**
122
- * The empty record template that renders customized element or text or image instead of displaying the empty record message in the TreeGrid.
123
- *
124
- * > It accepts either the [template string](../../common/template-engine/) or the HTML element ID.
125
- *
126
- * @default null
127
- * @asptype string
128
- */
129
- emptyRecordTemplate: any;
130
- columnChooserSettings_headerTemplate: any;
131
- columnChooserSettings_template: any;
132
- columnChooserSettings_footerTemplate: any;
133
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
134
- ngOnInit(): void;
135
- ngAfterViewInit(): void;
136
- ngOnDestroy(): void;
137
- ngAfterContentChecked(): void;
138
- registerEvents: (eventList: string[]) => void;
139
- addTwoWay: (propList: string[]) => void;
140
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { TreeGrid } from '@syncfusion/ej2-treegrid';
4
+ import { ColumnsDirective } from './columns.directive';
5
+ import { AggregatesDirective } from './aggregates.directive';
6
+ import * as i0 from "@angular/core";
7
+ export declare const inputs: string[];
8
+ export declare const outputs: string[];
9
+ export declare const twoWays: string[];
10
+ /**
11
+ * `ejs-treegrid` represents the Angular TreeTreeGrid Component.
12
+ * ```html
13
+ * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-treegrid>
14
+ * ```
15
+ */
16
+ export declare class TreeGridComponent extends TreeGrid implements IComponentBase {
17
+ private ngEle;
18
+ private srenderer;
19
+ private viewContainerRef;
20
+ private injector;
21
+ context: any;
22
+ tagObjects: any;
23
+ actionBegin: any;
24
+ actionComplete: any;
25
+ actionFailure: any;
26
+ batchAdd: any;
27
+ batchCancel: any;
28
+ batchDelete: any;
29
+ beforeBatchAdd: any;
30
+ beforeBatchDelete: any;
31
+ beforeBatchSave: any;
32
+ beforeCopy: any;
33
+ beforeDataBound: any;
34
+ beforeExcelExport: any;
35
+ beforePaste: any;
36
+ beforePdfExport: any;
37
+ beforePrint: any;
38
+ beginEdit: any;
39
+ cellDeselected: any;
40
+ cellDeselecting: any;
41
+ cellEdit: any;
42
+ cellSave: any;
43
+ cellSaved: any;
44
+ cellSelected: any;
45
+ cellSelecting: any;
46
+ checkboxChange: any;
47
+ collapsed: any;
48
+ collapsing: any;
49
+ columnDrag: any;
50
+ columnDragStart: any;
51
+ columnDrop: any;
52
+ columnMenuClick: any;
53
+ columnMenuOpen: any;
54
+ contextMenuClick: any;
55
+ contextMenuOpen: any;
56
+ created: any;
57
+ dataBound: any;
58
+ dataSourceChanged: any;
59
+ dataStateChange: any;
60
+ detailDataBound: any;
61
+ excelAggregateQueryCellInfo: any;
62
+ excelExportComplete: any;
63
+ excelHeaderQueryCellInfo: any;
64
+ excelQueryCellInfo: any;
65
+ expanded: any;
66
+ expanding: any;
67
+ headerCellInfo: any;
68
+ load: any;
69
+ pdfAggregateQueryCellInfo: any;
70
+ pdfExportComplete: any;
71
+ pdfHeaderQueryCellInfo: any;
72
+ pdfQueryCellInfo: any;
73
+ printComplete: any;
74
+ queryCellInfo: any;
75
+ recordDoubleClick: any;
76
+ resizeStart: any;
77
+ resizeStop: any;
78
+ resizing: any;
79
+ rowDataBound: any;
80
+ rowDeselected: any;
81
+ rowDeselecting: any;
82
+ rowDrag: any;
83
+ rowDragStart: any;
84
+ rowDragStartHelper: any;
85
+ rowDrop: any;
86
+ rowSelected: any;
87
+ rowSelecting: any;
88
+ toolbarClick: any;
89
+ dataSourceChange: any;
90
+ childColumns: QueryList<ColumnsDirective>;
91
+ childAggregates: QueryList<AggregatesDirective>;
92
+ tags: string[];
93
+ toolbarTemplate: any;
94
+ /**
95
+ * It used to render pager template
96
+ * @default null
97
+ * @asptype string
98
+ */
99
+ pagerTemplate: any;
100
+ /**
101
+ * The row template that renders customized rows from the given template.
102
+ * By default, TreeGrid renders a table row for every data source item.
103
+ * > * It accepts either [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
104
+ * or HTML element ID.
105
+ * > * The row template must be a table row.
106
+ *
107
+ * > Check the [Row Template](../../treegrid/row) customization.
108
+ *
109
+ * @asptype string
110
+ */
111
+ rowTemplate: any;
112
+ /**
113
+ * The detail template allows you to show or hide additional information about a particular row.
114
+ *
115
+ * > It accepts either the [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
116
+ *or the HTML element ID.
117
+ *
118
+ * @asptype string
119
+ */
120
+ detailTemplate: any;
121
+ editSettings_template: any;
122
+ /**
123
+ * The empty record template that renders customized element or text or image instead of displaying the empty record message in the TreeGrid.
124
+ *
125
+ * > It accepts either the [template string](../../common/template-engine/) or the HTML element ID.
126
+ *
127
+ * @default null
128
+ * @asptype string
129
+ */
130
+ emptyRecordTemplate: any;
131
+ columnChooserSettings_headerTemplate: any;
132
+ columnChooserSettings_template: any;
133
+ columnChooserSettings_footerTemplate: any;
134
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
135
+ ngOnInit(): void;
136
+ ngAfterViewInit(): void;
137
+ ngOnDestroy(): void;
138
+ ngAfterContentChecked(): void;
139
+ registerEvents: (eventList: string[]) => void;
140
+ addTwoWay: (propList: string[]) => void;
141
+ static ɵfac: i0.ɵɵFactoryDeclaration<TreeGridComponent, never>;
142
+ 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"; "columnChooserSettings": "columnChooserSettings"; "columnMenuItems": "columnMenuItems"; "columnQueryMode": "columnQueryMode"; "columns": "columns"; "contextMenuItems": "contextMenuItems"; "copyHierarchyMode": "copyHierarchyMode"; "currencyCode": "currencyCode"; "dataSource": "dataSource"; "detailTemplate": "detailTemplate"; "editSettings": "editSettings"; "emptyRecordTemplate": "emptyRecordTemplate"; "enableAdaptiveUI": "enableAdaptiveUI"; "enableAltRow": "enableAltRow"; "enableAutoFill": "enableAutoFill"; "enableCollapseAll": "enableCollapseAll"; "enableColumnVirtualization": "enableColumnVirtualization"; "enableHover": "enableHover"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enableImmutableMode": "enableImmutableMode"; "enableInfiniteScrolling": "enableInfiniteScrolling"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableStickyHeader": "enableStickyHeader"; "enableVirtualMaskRow": "enableVirtualMaskRow"; "enableVirtualization": "enableVirtualization"; "expandStateMapping": "expandStateMapping"; "filterSettings": "filterSettings"; "frozenColumns": "frozenColumns"; "frozenRows": "frozenRows"; "gridLines": "gridLines"; "hasChildMapping": "hasChildMapping"; "height": "height"; "idMapping": "idMapping"; "infiniteScrollSettings": "infiniteScrollSettings"; "isRowSelectable": "isRowSelectable"; "loadChildOnDemand": "loadChildOnDemand"; "loadingIndicator": "loadingIndicator"; "locale": "locale"; "pageSettings": "pageSettings"; "pagerTemplate": "pagerTemplate"; "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"; "excelAggregateQueryCellInfo": "excelAggregateQueryCellInfo"; "excelExportComplete": "excelExportComplete"; "excelHeaderQueryCellInfo": "excelHeaderQueryCellInfo"; "excelQueryCellInfo": "excelQueryCellInfo"; "expanded": "expanded"; "expanding": "expanding"; "headerCellInfo": "headerCellInfo"; "load": "load"; "pdfAggregateQueryCellInfo": "pdfAggregateQueryCellInfo"; "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", "emptyRecordTemplate", "columnChooserSettings_headerTemplate", "columnChooserSettings_template", "columnChooserSettings_footerTemplate", "childColumns", "childAggregates"], never>;
143
+ }
@@ -1,5 +1,15 @@
1
- /**
2
- * NgModule definition for the TreeGrid component.
3
- */
4
- export declare class TreeGridModule {
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
+ /**
9
+ * NgModule definition for the TreeGrid component.
10
+ */
11
+ 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
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-treegrid" />
5
+ export * from './public_api';