@syncfusion/ej2-angular-treegrid 30.1.38-ngcc → 30.2.4-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.
@@ -1,27 +1,27 @@
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
+ 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,121 +1,121 @@
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
- excelExportComplete: any;
61
- excelHeaderQueryCellInfo: any;
62
- excelQueryCellInfo: any;
63
- expanded: any;
64
- expanding: any;
65
- headerCellInfo: any;
66
- load: any;
67
- pdfExportComplete: any;
68
- pdfHeaderQueryCellInfo: any;
69
- pdfQueryCellInfo: any;
70
- printComplete: any;
71
- queryCellInfo: any;
72
- recordDoubleClick: any;
73
- resizeStart: any;
74
- resizeStop: any;
75
- resizing: any;
76
- rowDataBound: any;
77
- rowDeselected: any;
78
- rowDeselecting: any;
79
- rowDrag: any;
80
- rowDragStart: any;
81
- rowDragStartHelper: any;
82
- rowDrop: any;
83
- rowSelected: any;
84
- rowSelecting: any;
85
- toolbarClick: any;
86
- dataSourceChange: any;
87
- childColumns: QueryList<ColumnsDirective>;
88
- childAggregates: QueryList<AggregatesDirective>;
89
- tags: string[];
90
- toolbarTemplate: any;
91
- pagerTemplate: any;
92
- /**
93
- * The row template that renders customized rows from the given template.
94
- * By default, TreeGrid renders a table row for every data source item.
95
- * > * It accepts either [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
96
- * or HTML element ID.
97
- * > * The row template must be a table row.
98
- *
99
- * > Check the [Row Template](../../treegrid/row) customization.
100
- *
101
- * @asptype string
102
- */
103
- rowTemplate: any;
104
- /**
105
- * The detail template allows you to show or hide additional information about a particular row.
106
- *
107
- * > It accepts either the [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
108
- *or the HTML element ID.
109
- *
110
- * @asptype string
111
- */
112
- detailTemplate: any;
113
- editSettings_template: any;
114
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
115
- ngOnInit(): void;
116
- ngAfterViewInit(): void;
117
- ngOnDestroy(): void;
118
- ngAfterContentChecked(): void;
119
- registerEvents: (eventList: string[]) => void;
120
- addTwoWay: (propList: string[]) => void;
121
- }
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
+ excelExportComplete: any;
61
+ excelHeaderQueryCellInfo: any;
62
+ excelQueryCellInfo: any;
63
+ expanded: any;
64
+ expanding: any;
65
+ headerCellInfo: any;
66
+ load: any;
67
+ pdfExportComplete: any;
68
+ pdfHeaderQueryCellInfo: any;
69
+ pdfQueryCellInfo: any;
70
+ printComplete: any;
71
+ queryCellInfo: any;
72
+ recordDoubleClick: any;
73
+ resizeStart: any;
74
+ resizeStop: any;
75
+ resizing: any;
76
+ rowDataBound: any;
77
+ rowDeselected: any;
78
+ rowDeselecting: any;
79
+ rowDrag: any;
80
+ rowDragStart: any;
81
+ rowDragStartHelper: any;
82
+ rowDrop: any;
83
+ rowSelected: any;
84
+ rowSelecting: any;
85
+ toolbarClick: any;
86
+ dataSourceChange: any;
87
+ childColumns: QueryList<ColumnsDirective>;
88
+ childAggregates: QueryList<AggregatesDirective>;
89
+ tags: string[];
90
+ toolbarTemplate: any;
91
+ pagerTemplate: any;
92
+ /**
93
+ * The row template that renders customized rows from the given template.
94
+ * By default, TreeGrid renders a table row for every data source item.
95
+ * > * It accepts either [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
96
+ * or HTML element ID.
97
+ * > * The row template must be a table row.
98
+ *
99
+ * > Check the [Row Template](../../treegrid/row) customization.
100
+ *
101
+ * @asptype string
102
+ */
103
+ rowTemplate: any;
104
+ /**
105
+ * The detail template allows you to show or hide additional information about a particular row.
106
+ *
107
+ * > It accepts either the [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
108
+ *or the HTML element ID.
109
+ *
110
+ * @asptype string
111
+ */
112
+ detailTemplate: any;
113
+ editSettings_template: any;
114
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
115
+ ngOnInit(): void;
116
+ ngAfterViewInit(): void;
117
+ ngOnDestroy(): void;
118
+ ngAfterContentChecked(): void;
119
+ registerEvents: (eventList: string[]) => void;
120
+ addTwoWay: (propList: string[]) => void;
121
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the TreeGrid component.
3
- */
4
- export declare class TreeGridModule {
5
- }
1
+ /**
2
+ * NgModule definition for the TreeGrid component.
3
+ */
4
+ export declare class TreeGridModule {
5
+ }