@syncfusion/ej2-angular-treegrid 21.2.8-ngcc → 21.2.9-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.
- package/@syncfusion/ej2-angular-treegrid.es5.js +174 -52
- package/@syncfusion/ej2-angular-treegrid.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-treegrid.js +162 -49
- package/@syncfusion/ej2-angular-treegrid.js.map +1 -1
- package/CHANGELOG.md +13 -1
- package/dist/ej2-angular-treegrid.umd.js +178 -52
- package/dist/ej2-angular-treegrid.umd.js.map +1 -1
- package/dist/ej2-angular-treegrid.umd.min.js +2 -2
- package/dist/ej2-angular-treegrid.umd.min.js.map +1 -1
- package/ej2-angular-treegrid.metadata.json +1 -1
- package/package.json +7 -7
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +1 -0
- package/src/treegrid/columns.directive.d.ts +2 -0
- package/src/treegrid/stacked-column.directive.d.ts +345 -0
|
@@ -15,18 +15,22 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
15
15
|
let input = ['allowEditing', 'allowFiltering', 'allowReordering', 'allowResizing', 'allowSorting', 'clipMode', 'columns', 'commands', 'customAttributes', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'hideAtMedia', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showCheckbox', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
|
|
16
16
|
let outputs = [];
|
|
17
17
|
/**
|
|
18
|
-
* `e-column` directive represent
|
|
19
|
-
* It must be contained in a
|
|
18
|
+
* `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.
|
|
19
|
+
* It must be contained in a StackedColumns component(`e-stacked-columns`).
|
|
20
20
|
* ```html
|
|
21
21
|
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
22
22
|
* <e-columns>
|
|
23
|
-
*
|
|
24
|
-
*
|
|
23
|
+
* <e-column field='ID' width='100'></e-column>
|
|
24
|
+
* <e-column headerText='Details' width='100'>
|
|
25
|
+
* <e-stacked-columns>
|
|
26
|
+
* <e-stacked-column field='Name' width='140'></e-stacked-column>
|
|
27
|
+
* </e-stacked-columns>
|
|
28
|
+
* </e-column>
|
|
25
29
|
* </e-columns>
|
|
26
30
|
* </ejs-treegrid>
|
|
27
31
|
* ```
|
|
28
32
|
*/
|
|
29
|
-
class
|
|
33
|
+
class StackedColumnDirective extends ComplexBase {
|
|
30
34
|
/**
|
|
31
35
|
* @param {?} viewContainerRef
|
|
32
36
|
*/
|
|
@@ -38,9 +42,9 @@ class ColumnDirective extends ComplexBase {
|
|
|
38
42
|
this.directivePropList = input;
|
|
39
43
|
}
|
|
40
44
|
}
|
|
41
|
-
|
|
45
|
+
StackedColumnDirective.decorators = [
|
|
42
46
|
{ type: Directive, args: [{
|
|
43
|
-
selector: 'ejs-treegrid>e-columns>e-column',
|
|
47
|
+
selector: 'ejs-treegrid>e-columns>e-column>e-stacked-columns>e-stacked-column',
|
|
44
48
|
inputs: input,
|
|
45
49
|
outputs: outputs,
|
|
46
50
|
queries: {}
|
|
@@ -49,10 +53,10 @@ ColumnDirective.decorators = [
|
|
|
49
53
|
/**
|
|
50
54
|
* @nocollapse
|
|
51
55
|
*/
|
|
52
|
-
|
|
56
|
+
StackedColumnDirective.ctorParameters = () => [
|
|
53
57
|
{ type: ViewContainerRef, },
|
|
54
58
|
];
|
|
55
|
-
|
|
59
|
+
StackedColumnDirective.propDecorators = {
|
|
56
60
|
'template': [{ type: ContentChild, args: ['template',] },],
|
|
57
61
|
'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
|
|
58
62
|
'filter_itemTemplate': [{ type: ContentChild, args: ['filterItemTemplate',] },],
|
|
@@ -63,26 +67,131 @@ ColumnDirective.propDecorators = {
|
|
|
63
67
|
__decorate([
|
|
64
68
|
Template(),
|
|
65
69
|
__metadata("design:type", Object)
|
|
66
|
-
],
|
|
70
|
+
], StackedColumnDirective.prototype, "template", void 0);
|
|
67
71
|
__decorate([
|
|
68
72
|
Template(),
|
|
69
73
|
__metadata("design:type", Object)
|
|
70
|
-
],
|
|
74
|
+
], StackedColumnDirective.prototype, "headerTemplate", void 0);
|
|
71
75
|
__decorate([
|
|
72
76
|
Template(),
|
|
73
77
|
__metadata("design:type", Object)
|
|
74
|
-
],
|
|
78
|
+
], StackedColumnDirective.prototype, "filter_itemTemplate", void 0);
|
|
75
79
|
__decorate([
|
|
76
80
|
Template(),
|
|
77
81
|
__metadata("design:type", Object)
|
|
78
|
-
],
|
|
82
|
+
], StackedColumnDirective.prototype, "filterTemplate", void 0);
|
|
79
83
|
__decorate([
|
|
80
84
|
Template(),
|
|
81
85
|
__metadata("design:type", Object)
|
|
82
|
-
],
|
|
86
|
+
], StackedColumnDirective.prototype, "commandsTemplate", void 0);
|
|
83
87
|
__decorate([
|
|
84
88
|
Template(),
|
|
85
89
|
__metadata("design:type", Object)
|
|
90
|
+
], StackedColumnDirective.prototype, "editTemplate", void 0);
|
|
91
|
+
/**
|
|
92
|
+
* StackedColumn Array Directive
|
|
93
|
+
*/
|
|
94
|
+
class StackedColumnsDirective extends ArrayBase {
|
|
95
|
+
constructor() {
|
|
96
|
+
super('columns');
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
StackedColumnsDirective.decorators = [
|
|
100
|
+
{ type: Directive, args: [{
|
|
101
|
+
selector: 'ejs-treegrid>e-columns>e-column>e-stacked-columns',
|
|
102
|
+
queries: {
|
|
103
|
+
children: new ContentChildren(StackedColumnDirective)
|
|
104
|
+
},
|
|
105
|
+
},] },
|
|
106
|
+
];
|
|
107
|
+
/**
|
|
108
|
+
* @nocollapse
|
|
109
|
+
*/
|
|
110
|
+
StackedColumnsDirective.ctorParameters = () => [];
|
|
111
|
+
|
|
112
|
+
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
113
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
114
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
115
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
116
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
117
|
+
};
|
|
118
|
+
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
119
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
120
|
+
};
|
|
121
|
+
let input$1 = ['allowEditing', 'allowFiltering', 'allowReordering', 'allowResizing', 'allowSorting', 'clipMode', 'columns', 'commands', 'customAttributes', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'hideAtMedia', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showCheckbox', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
|
|
122
|
+
let outputs$1 = [];
|
|
123
|
+
/**
|
|
124
|
+
* `e-column` directive represent a column of the Angular TreeGrid.
|
|
125
|
+
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
|
126
|
+
* ```html
|
|
127
|
+
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
128
|
+
* <e-columns>
|
|
129
|
+
* <e-column field='ID' width='100'></e-column>
|
|
130
|
+
* <e-column field='name' headerText='Name' width='100'></e-column>
|
|
131
|
+
* </e-columns>
|
|
132
|
+
* </ejs-treegrid>
|
|
133
|
+
* ```
|
|
134
|
+
*/
|
|
135
|
+
class ColumnDirective extends ComplexBase {
|
|
136
|
+
/**
|
|
137
|
+
* @param {?} viewContainerRef
|
|
138
|
+
*/
|
|
139
|
+
constructor(viewContainerRef) {
|
|
140
|
+
super();
|
|
141
|
+
this.viewContainerRef = viewContainerRef;
|
|
142
|
+
this.tags = ['columns'];
|
|
143
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
144
|
+
this.registerEvents(outputs$1);
|
|
145
|
+
this.directivePropList = input$1;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
ColumnDirective.decorators = [
|
|
149
|
+
{ type: Directive, args: [{
|
|
150
|
+
selector: 'ejs-treegrid>e-columns>e-column',
|
|
151
|
+
inputs: input$1,
|
|
152
|
+
outputs: outputs$1,
|
|
153
|
+
queries: {
|
|
154
|
+
childColumns: new ContentChild(StackedColumnsDirective)
|
|
155
|
+
}
|
|
156
|
+
},] },
|
|
157
|
+
];
|
|
158
|
+
/**
|
|
159
|
+
* @nocollapse
|
|
160
|
+
*/
|
|
161
|
+
ColumnDirective.ctorParameters = () => [
|
|
162
|
+
{ type: ViewContainerRef, },
|
|
163
|
+
];
|
|
164
|
+
ColumnDirective.propDecorators = {
|
|
165
|
+
'template': [{ type: ContentChild, args: ['template',] },],
|
|
166
|
+
'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
|
|
167
|
+
'filter_itemTemplate': [{ type: ContentChild, args: ['filterItemTemplate',] },],
|
|
168
|
+
'filterTemplate': [{ type: ContentChild, args: ['filterTemplate',] },],
|
|
169
|
+
'commandsTemplate': [{ type: ContentChild, args: ['commandsTemplate',] },],
|
|
170
|
+
'editTemplate': [{ type: ContentChild, args: ['editTemplate',] },],
|
|
171
|
+
};
|
|
172
|
+
__decorate$1([
|
|
173
|
+
Template(),
|
|
174
|
+
__metadata$1("design:type", Object)
|
|
175
|
+
], ColumnDirective.prototype, "template", void 0);
|
|
176
|
+
__decorate$1([
|
|
177
|
+
Template(),
|
|
178
|
+
__metadata$1("design:type", Object)
|
|
179
|
+
], ColumnDirective.prototype, "headerTemplate", void 0);
|
|
180
|
+
__decorate$1([
|
|
181
|
+
Template(),
|
|
182
|
+
__metadata$1("design:type", Object)
|
|
183
|
+
], ColumnDirective.prototype, "filter_itemTemplate", void 0);
|
|
184
|
+
__decorate$1([
|
|
185
|
+
Template(),
|
|
186
|
+
__metadata$1("design:type", Object)
|
|
187
|
+
], ColumnDirective.prototype, "filterTemplate", void 0);
|
|
188
|
+
__decorate$1([
|
|
189
|
+
Template(),
|
|
190
|
+
__metadata$1("design:type", Object)
|
|
191
|
+
], ColumnDirective.prototype, "commandsTemplate", void 0);
|
|
192
|
+
__decorate$1([
|
|
193
|
+
Template(),
|
|
194
|
+
__metadata$1("design:type", Object)
|
|
86
195
|
], ColumnDirective.prototype, "editTemplate", void 0);
|
|
87
196
|
/**
|
|
88
197
|
* Column Array Directive
|
|
@@ -105,17 +214,17 @@ ColumnsDirective.decorators = [
|
|
|
105
214
|
*/
|
|
106
215
|
ColumnsDirective.ctorParameters = () => [];
|
|
107
216
|
|
|
108
|
-
var __decorate$
|
|
217
|
+
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
109
218
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
110
219
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
111
220
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
112
221
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
113
222
|
};
|
|
114
|
-
var __metadata$
|
|
223
|
+
var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
|
115
224
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
116
225
|
};
|
|
117
|
-
let input$
|
|
118
|
-
let outputs$
|
|
226
|
+
let input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'type'];
|
|
227
|
+
let outputs$2 = [];
|
|
119
228
|
/**
|
|
120
229
|
* `e-aggregate->e-column` directive represent a aggregate column of the Angular TreeGrid.
|
|
121
230
|
* ```html
|
|
@@ -142,15 +251,15 @@ class AggregateColumnDirective extends ComplexBase {
|
|
|
142
251
|
super();
|
|
143
252
|
this.viewContainerRef = viewContainerRef;
|
|
144
253
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
145
|
-
this.registerEvents(outputs$
|
|
146
|
-
this.directivePropList = input$
|
|
254
|
+
this.registerEvents(outputs$2);
|
|
255
|
+
this.directivePropList = input$2;
|
|
147
256
|
}
|
|
148
257
|
}
|
|
149
258
|
AggregateColumnDirective.decorators = [
|
|
150
259
|
{ type: Directive, args: [{
|
|
151
260
|
selector: 'ejs-treegrid>e-aggregates>e-aggregate>e-columns>e-column',
|
|
152
|
-
inputs: input$
|
|
153
|
-
outputs: outputs$
|
|
261
|
+
inputs: input$2,
|
|
262
|
+
outputs: outputs$2,
|
|
154
263
|
queries: {}
|
|
155
264
|
},] },
|
|
156
265
|
];
|
|
@@ -163,9 +272,9 @@ AggregateColumnDirective.ctorParameters = () => [
|
|
|
163
272
|
AggregateColumnDirective.propDecorators = {
|
|
164
273
|
'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
|
|
165
274
|
};
|
|
166
|
-
__decorate$
|
|
275
|
+
__decorate$2([
|
|
167
276
|
Template(),
|
|
168
|
-
__metadata$
|
|
277
|
+
__metadata$2("design:type", Object)
|
|
169
278
|
], AggregateColumnDirective.prototype, "footerTemplate", void 0);
|
|
170
279
|
/**
|
|
171
280
|
* AggregateColumn Array Directive
|
|
@@ -188,8 +297,8 @@ AggregateColumnsDirective.decorators = [
|
|
|
188
297
|
*/
|
|
189
298
|
AggregateColumnsDirective.ctorParameters = () => [];
|
|
190
299
|
|
|
191
|
-
let input$
|
|
192
|
-
let outputs$
|
|
300
|
+
let input$3 = ['columns', 'showChildSummary'];
|
|
301
|
+
let outputs$3 = [];
|
|
193
302
|
/**
|
|
194
303
|
* `e-aggregate` directive represent a aggregate row of the Angular TreeGrid.
|
|
195
304
|
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
|
@@ -218,15 +327,15 @@ class AggregateDirective extends ComplexBase {
|
|
|
218
327
|
this.viewContainerRef = viewContainerRef;
|
|
219
328
|
this.tags = ['columns'];
|
|
220
329
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
221
|
-
this.registerEvents(outputs$
|
|
222
|
-
this.directivePropList = input$
|
|
330
|
+
this.registerEvents(outputs$3);
|
|
331
|
+
this.directivePropList = input$3;
|
|
223
332
|
}
|
|
224
333
|
}
|
|
225
334
|
AggregateDirective.decorators = [
|
|
226
335
|
{ type: Directive, args: [{
|
|
227
336
|
selector: 'ejs-treegrid>e-aggregates>e-aggregate',
|
|
228
|
-
inputs: input$
|
|
229
|
-
outputs: outputs$
|
|
337
|
+
inputs: input$3,
|
|
338
|
+
outputs: outputs$3,
|
|
230
339
|
queries: {
|
|
231
340
|
childColumns: new ContentChild(AggregateColumnsDirective)
|
|
232
341
|
}
|
|
@@ -259,17 +368,17 @@ AggregatesDirective.decorators = [
|
|
|
259
368
|
*/
|
|
260
369
|
AggregatesDirective.ctorParameters = () => [];
|
|
261
370
|
|
|
262
|
-
var __decorate$
|
|
371
|
+
var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
263
372
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
264
373
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
265
374
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
266
375
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
267
376
|
};
|
|
268
|
-
var __metadata$
|
|
377
|
+
var __metadata$3 = (this && this.__metadata) || function (k, v) {
|
|
269
378
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
270
379
|
};
|
|
271
380
|
const inputs = ['aggregates', 'allowExcelExport', 'allowFiltering', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'autoCheckHierarchy', 'childMapping', 'clipMode', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'copyHierarchyMode', 'dataSource', 'detailTemplate', 'editSettings', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableCollapseAll', 'enableColumnVirtualization', 'enableHover', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', 'enableVirtualMaskRow', 'enableVirtualization', 'expandStateMapping', 'filterSettings', 'frozenColumns', 'frozenRows', 'gridLines', 'hasChildMapping', 'height', 'idMapping', 'infiniteScrollSettings', 'loadChildOnDemand', 'loadingIndicator', 'locale', 'pageSettings', 'parentIdMapping', 'printMode', 'query', 'rowDropSettings', 'rowHeight', 'rowTemplate', 'searchSettings', 'selectedRowIndex', 'selectionSettings', 'showColumnChooser', 'showColumnMenu', 'sortSettings', 'textWrapSettings', 'toolbar', 'treeColumnIndex', 'width'];
|
|
272
|
-
const outputs$
|
|
381
|
+
const outputs$4 = ['actionBegin', 'actionComplete', 'actionFailure', 'batchAdd', 'batchCancel', 'batchDelete', 'beforeBatchAdd', 'beforeBatchDelete', 'beforeBatchSave', 'beforeCopy', 'beforeDataBound', 'beforeExcelExport', 'beforePaste', 'beforePdfExport', 'beforePrint', 'beginEdit', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSave', 'cellSaved', 'cellSelected', 'cellSelecting', 'checkboxChange', 'collapsed', 'collapsing', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataSourceChanged', 'dataStateChange', 'detailDataBound', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'expanded', 'expanding', 'headerCellInfo', 'load', 'pdfExportComplete', 'pdfHeaderQueryCellInfo', 'pdfQueryCellInfo', 'printComplete', 'queryCellInfo', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'toolbarClick', 'dataSourceChange'];
|
|
273
382
|
const twoWays = ['dataSource'];
|
|
274
383
|
/**
|
|
275
384
|
* `ejs-treegrid` represents the Angular TreeTreeGrid Component.
|
|
@@ -440,7 +549,7 @@ let TreeGridComponent = class TreeGridComponent extends TreeGrid {
|
|
|
440
549
|
}
|
|
441
550
|
}
|
|
442
551
|
catch (_w) { }
|
|
443
|
-
this.registerEvents(outputs$
|
|
552
|
+
this.registerEvents(outputs$4);
|
|
444
553
|
this.addTwoWay.call(this, twoWays);
|
|
445
554
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
446
555
|
this.context = new ComponentBase();
|
|
@@ -478,7 +587,7 @@ TreeGridComponent.decorators = [
|
|
|
478
587
|
{ type: Component, args: [{
|
|
479
588
|
selector: 'ejs-treegrid',
|
|
480
589
|
inputs: inputs,
|
|
481
|
-
outputs: outputs$
|
|
590
|
+
outputs: outputs$4,
|
|
482
591
|
template: '',
|
|
483
592
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
484
593
|
queries: {
|
|
@@ -503,29 +612,29 @@ TreeGridComponent.propDecorators = {
|
|
|
503
612
|
'detailTemplate': [{ type: ContentChild, args: ['detailTemplate',] },],
|
|
504
613
|
'editSettings_template': [{ type: ContentChild, args: ['editSettingsTemplate',] },],
|
|
505
614
|
};
|
|
506
|
-
__decorate$
|
|
615
|
+
__decorate$3([
|
|
507
616
|
Template(),
|
|
508
|
-
__metadata$
|
|
617
|
+
__metadata$3("design:type", Object)
|
|
509
618
|
], TreeGridComponent.prototype, "toolbarTemplate", void 0);
|
|
510
|
-
__decorate$
|
|
619
|
+
__decorate$3([
|
|
511
620
|
Template(),
|
|
512
|
-
__metadata$
|
|
621
|
+
__metadata$3("design:type", Object)
|
|
513
622
|
], TreeGridComponent.prototype, "pagerTemplate", void 0);
|
|
514
|
-
__decorate$
|
|
623
|
+
__decorate$3([
|
|
515
624
|
Template(),
|
|
516
|
-
__metadata$
|
|
625
|
+
__metadata$3("design:type", Object)
|
|
517
626
|
], TreeGridComponent.prototype, "rowTemplate", void 0);
|
|
518
|
-
__decorate$
|
|
627
|
+
__decorate$3([
|
|
519
628
|
Template(),
|
|
520
|
-
__metadata$
|
|
629
|
+
__metadata$3("design:type", Object)
|
|
521
630
|
], TreeGridComponent.prototype, "detailTemplate", void 0);
|
|
522
|
-
__decorate$
|
|
631
|
+
__decorate$3([
|
|
523
632
|
Template(),
|
|
524
|
-
__metadata$
|
|
633
|
+
__metadata$3("design:type", Object)
|
|
525
634
|
], TreeGridComponent.prototype, "editSettings_template", void 0);
|
|
526
|
-
TreeGridComponent = __decorate$
|
|
635
|
+
TreeGridComponent = __decorate$3([
|
|
527
636
|
ComponentMixins([ComponentBase]),
|
|
528
|
-
__metadata$
|
|
637
|
+
__metadata$3("design:paramtypes", [ElementRef,
|
|
529
638
|
Renderer2,
|
|
530
639
|
ViewContainerRef,
|
|
531
640
|
Injector])
|
|
@@ -541,6 +650,8 @@ TreeGridModule.decorators = [
|
|
|
541
650
|
imports: [CommonModule],
|
|
542
651
|
declarations: [
|
|
543
652
|
TreeGridComponent,
|
|
653
|
+
StackedColumnDirective,
|
|
654
|
+
StackedColumnsDirective,
|
|
544
655
|
ColumnDirective,
|
|
545
656
|
ColumnsDirective,
|
|
546
657
|
AggregateColumnDirective,
|
|
@@ -550,6 +661,8 @@ TreeGridModule.decorators = [
|
|
|
550
661
|
],
|
|
551
662
|
exports: [
|
|
552
663
|
TreeGridComponent,
|
|
664
|
+
StackedColumnDirective,
|
|
665
|
+
StackedColumnsDirective,
|
|
553
666
|
ColumnDirective,
|
|
554
667
|
ColumnsDirective,
|
|
555
668
|
AggregateColumnDirective,
|
|
@@ -630,6 +743,6 @@ TreeGridAllModule.ctorParameters = () => [];
|
|
|
630
743
|
* Generated bundle index. Do not edit.
|
|
631
744
|
*/
|
|
632
745
|
|
|
633
|
-
export { ColumnDirective, ColumnsDirective, AggregateColumnDirective, AggregateColumnsDirective, AggregateDirective, AggregatesDirective, TreeGridComponent, TreeGridModule, TreeGridAllModule, FilterService, PageService, SortService, ReorderService, ToolbarService, AggregateService, ResizeService, ColumnMenuService, ExcelExportService, PdfExportService, CommandColumnService, ContextMenuService, EditService, SelectionService, VirtualScrollService, DetailRowService, RowDDService, FreezeService, ColumnChooserService, LoggerService, InfiniteScrollService, inputs as ɵa, outputs$
|
|
634
|
-
export { TreeGrid, load, rowDataBound, dataBound, queryCellInfo, beforeDataBound, actionBegin, dataStateChange, actionComplete, rowSelecting, rowSelected, checkboxChange, rowDeselected, toolbarClick, beforeExcelExport, beforePdfExport, resizeStop, expanded, expanding, collapsed, collapsing, remoteExpand, localPagedExpandCollapse, pagingActions, printGridInit, contextMenuOpen, contextMenuClick, beforeCopy, beforePaste, savePreviousRowPosition, crudAction, beginEdit, beginAdd, recordDoubleClick, cellSave, cellSaved, cellEdit, batchDelete, batchCancel, batchAdd, beforeBatchDelete, beforeBatchAdd, beforeBatchSave, batchSave, keyPressed, updateData, doubleTap, virtualColumnIndex, virtualActionArgs, destroy, dataListener, indexModifier, beforeStartEdit, beforeBatchCancel, batchEditFormRendered, detailDataBound, rowDrag, rowDragStartHelper, rowDrop, rowDragStart, rowsAdd, rowsRemove, rowdraging, rowDropped, autoCol, rowDeselecting, headerContent, movableContent, movableHeader, frozenContent, frozenHeader, content, table, leftRight, frozenRight, frozenLeft, dataColIndex, ariaColIndex, dataRowIndex, ariaRowIndex, DataManipulation, Reorder, Resize, RowDD, Column, EditSettings, Predicate, FilterSettings, PageSettings, SearchSettings, SelectionSettings, AggregateColumn, AggregateRow, SortDescriptor, SortSettings, RowDropSettings, InfiniteScrollSettings, LoadingIndicator, Render, TreeVirtualRowModelGenerator, isRemoteData, isCountRequired, isCheckboxcolumn, isFilterChildHierarchy, findParentRecords, getExpandStatus, findChildrenRecords, isOffline, extendArray, getPlainData, getParentData, isHidden, ToolbarItem, ContextMenuItems, Filter, ExcelExport, PdfExport, Page, Toolbar, Aggregate, Sort, TreeClipboard, ColumnMenu, ContextMenu, Edit, CommandColumn, Selection, DetailRow, VirtualScroll, TreeVirtual, Freeze, ColumnChooser, Logger, treeGridDetails, InfiniteScroll } from '@syncfusion/ej2-treegrid';
|
|
746
|
+
export { StackedColumnDirective, StackedColumnsDirective, ColumnDirective, ColumnsDirective, AggregateColumnDirective, AggregateColumnsDirective, AggregateDirective, AggregatesDirective, TreeGridComponent, TreeGridModule, TreeGridAllModule, FilterService, PageService, SortService, ReorderService, ToolbarService, AggregateService, ResizeService, ColumnMenuService, ExcelExportService, PdfExportService, CommandColumnService, ContextMenuService, EditService, SelectionService, VirtualScrollService, DetailRowService, RowDDService, FreezeService, ColumnChooserService, LoggerService, InfiniteScrollService, inputs as ɵa, outputs$4 as ɵb };
|
|
747
|
+
export { TreeGrid, load, rowDataBound, dataBound, queryCellInfo, beforeDataBound, actionBegin, dataStateChange, actionComplete, rowSelecting, rowSelected, checkboxChange, rowDeselected, toolbarClick, beforeExcelExport, beforePdfExport, resizeStop, expanded, expanding, collapsed, collapsing, remoteExpand, localPagedExpandCollapse, pagingActions, printGridInit, contextMenuOpen, contextMenuClick, beforeCopy, beforePaste, savePreviousRowPosition, crudAction, beginEdit, beginAdd, recordDoubleClick, cellSave, cellSaved, cellEdit, batchDelete, batchCancel, batchAdd, beforeBatchDelete, beforeBatchAdd, beforeBatchSave, batchSave, keyPressed, updateData, doubleTap, virtualColumnIndex, virtualActionArgs, destroy, dataListener, indexModifier, beforeStartEdit, beforeBatchCancel, batchEditFormRendered, detailDataBound, rowDrag, rowDragStartHelper, rowDrop, rowDragStart, rowsAdd, rowsRemove, rowdraging, rowDropped, autoCol, rowDeselecting, headerContent, movableContent, movableHeader, frozenContent, frozenHeader, content, table, leftRight, frozenRight, frozenLeft, dataColIndex, ariaColIndex, dataRowIndex, ariaRowIndex, DataManipulation, Reorder, Resize, RowDD, Column, TreeGridColumn, StackedColumn, EditSettings, Predicate, FilterSettings, PageSettings, SearchSettings, SelectionSettings, AggregateColumn, AggregateRow, SortDescriptor, SortSettings, RowDropSettings, InfiniteScrollSettings, LoadingIndicator, Render, TreeVirtualRowModelGenerator, isRemoteData, isCountRequired, isCheckboxcolumn, isFilterChildHierarchy, findParentRecords, getExpandStatus, findChildrenRecords, isOffline, extendArray, getPlainData, getParentData, isHidden, ToolbarItem, ContextMenuItems, Filter, ExcelExport, PdfExport, Page, Toolbar, Aggregate, Sort, TreeClipboard, ColumnMenu, ContextMenu, Edit, CommandColumn, Selection, DetailRow, VirtualScroll, TreeVirtual, Freeze, ColumnChooser, Logger, treeGridDetails, InfiniteScroll } from '@syncfusion/ej2-treegrid';
|
|
635
748
|
//# sourceMappingURL=ej2-angular-treegrid.js.map
|