@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
|
@@ -29,23 +29,27 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
29
29
|
var 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'];
|
|
30
30
|
var outputs = [];
|
|
31
31
|
/**
|
|
32
|
-
* `e-column` directive represent
|
|
33
|
-
* It must be contained in a
|
|
32
|
+
* `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.
|
|
33
|
+
* It must be contained in a StackedColumns component(`e-stacked-columns`).
|
|
34
34
|
* ```html
|
|
35
35
|
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
36
36
|
* <e-columns>
|
|
37
|
-
*
|
|
38
|
-
*
|
|
37
|
+
* <e-column field='ID' width='100'></e-column>
|
|
38
|
+
* <e-column headerText='Details' width='100'>
|
|
39
|
+
* <e-stacked-columns>
|
|
40
|
+
* <e-stacked-column field='Name' width='140'></e-stacked-column>
|
|
41
|
+
* </e-stacked-columns>
|
|
42
|
+
* </e-column>
|
|
39
43
|
* </e-columns>
|
|
40
44
|
* </ejs-treegrid>
|
|
41
45
|
* ```
|
|
42
46
|
*/
|
|
43
|
-
var
|
|
44
|
-
__extends(
|
|
47
|
+
var StackedColumnDirective = /** @class */ (function (_super) {
|
|
48
|
+
__extends(StackedColumnDirective, _super);
|
|
45
49
|
/**
|
|
46
50
|
* @param {?} viewContainerRef
|
|
47
51
|
*/
|
|
48
|
-
function
|
|
52
|
+
function StackedColumnDirective(viewContainerRef) {
|
|
49
53
|
var _this = _super.call(this) || this;
|
|
50
54
|
_this.viewContainerRef = viewContainerRef;
|
|
51
55
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
@@ -53,11 +57,11 @@ var ColumnDirective = /** @class */ (function (_super) {
|
|
|
53
57
|
_this.directivePropList = input;
|
|
54
58
|
return _this;
|
|
55
59
|
}
|
|
56
|
-
return
|
|
60
|
+
return StackedColumnDirective;
|
|
57
61
|
}(ComplexBase));
|
|
58
|
-
|
|
62
|
+
StackedColumnDirective.decorators = [
|
|
59
63
|
{ type: Directive, args: [{
|
|
60
|
-
selector: 'ejs-treegrid>e-columns>e-column',
|
|
64
|
+
selector: 'ejs-treegrid>e-columns>e-column>e-stacked-columns>e-stacked-column',
|
|
61
65
|
inputs: input,
|
|
62
66
|
outputs: outputs,
|
|
63
67
|
queries: {}
|
|
@@ -66,10 +70,10 @@ ColumnDirective.decorators = [
|
|
|
66
70
|
/**
|
|
67
71
|
* @nocollapse
|
|
68
72
|
*/
|
|
69
|
-
|
|
73
|
+
StackedColumnDirective.ctorParameters = function () { return [
|
|
70
74
|
{ type: ViewContainerRef, },
|
|
71
75
|
]; };
|
|
72
|
-
|
|
76
|
+
StackedColumnDirective.propDecorators = {
|
|
73
77
|
'template': [{ type: ContentChild, args: ['template',] },],
|
|
74
78
|
'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
|
|
75
79
|
'filter_itemTemplate': [{ type: ContentChild, args: ['filterItemTemplate',] },],
|
|
@@ -80,26 +84,140 @@ ColumnDirective.propDecorators = {
|
|
|
80
84
|
__decorate([
|
|
81
85
|
Template(),
|
|
82
86
|
__metadata("design:type", Object)
|
|
83
|
-
],
|
|
87
|
+
], StackedColumnDirective.prototype, "template", void 0);
|
|
84
88
|
__decorate([
|
|
85
89
|
Template(),
|
|
86
90
|
__metadata("design:type", Object)
|
|
87
|
-
],
|
|
91
|
+
], StackedColumnDirective.prototype, "headerTemplate", void 0);
|
|
88
92
|
__decorate([
|
|
89
93
|
Template(),
|
|
90
94
|
__metadata("design:type", Object)
|
|
91
|
-
],
|
|
95
|
+
], StackedColumnDirective.prototype, "filter_itemTemplate", void 0);
|
|
92
96
|
__decorate([
|
|
93
97
|
Template(),
|
|
94
98
|
__metadata("design:type", Object)
|
|
95
|
-
],
|
|
99
|
+
], StackedColumnDirective.prototype, "filterTemplate", void 0);
|
|
96
100
|
__decorate([
|
|
97
101
|
Template(),
|
|
98
102
|
__metadata("design:type", Object)
|
|
99
|
-
],
|
|
103
|
+
], StackedColumnDirective.prototype, "commandsTemplate", void 0);
|
|
100
104
|
__decorate([
|
|
101
105
|
Template(),
|
|
102
106
|
__metadata("design:type", Object)
|
|
107
|
+
], StackedColumnDirective.prototype, "editTemplate", void 0);
|
|
108
|
+
/**
|
|
109
|
+
* StackedColumn Array Directive
|
|
110
|
+
*/
|
|
111
|
+
var StackedColumnsDirective = /** @class */ (function (_super) {
|
|
112
|
+
__extends(StackedColumnsDirective, _super);
|
|
113
|
+
function StackedColumnsDirective() {
|
|
114
|
+
return _super.call(this, 'columns') || this;
|
|
115
|
+
}
|
|
116
|
+
return StackedColumnsDirective;
|
|
117
|
+
}(ArrayBase));
|
|
118
|
+
StackedColumnsDirective.decorators = [
|
|
119
|
+
{ type: Directive, args: [{
|
|
120
|
+
selector: 'ejs-treegrid>e-columns>e-column>e-stacked-columns',
|
|
121
|
+
queries: {
|
|
122
|
+
children: new ContentChildren(StackedColumnDirective)
|
|
123
|
+
},
|
|
124
|
+
},] },
|
|
125
|
+
];
|
|
126
|
+
/**
|
|
127
|
+
* @nocollapse
|
|
128
|
+
*/
|
|
129
|
+
StackedColumnsDirective.ctorParameters = function () { return []; };
|
|
130
|
+
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
131
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
132
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
133
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
134
|
+
else
|
|
135
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
136
|
+
if (d = decorators[i])
|
|
137
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
138
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
139
|
+
};
|
|
140
|
+
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
141
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
142
|
+
return Reflect.metadata(k, v);
|
|
143
|
+
};
|
|
144
|
+
var 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'];
|
|
145
|
+
var outputs$1 = [];
|
|
146
|
+
/**
|
|
147
|
+
* `e-column` directive represent a column of the Angular TreeGrid.
|
|
148
|
+
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
|
149
|
+
* ```html
|
|
150
|
+
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
|
151
|
+
* <e-columns>
|
|
152
|
+
* <e-column field='ID' width='100'></e-column>
|
|
153
|
+
* <e-column field='name' headerText='Name' width='100'></e-column>
|
|
154
|
+
* </e-columns>
|
|
155
|
+
* </ejs-treegrid>
|
|
156
|
+
* ```
|
|
157
|
+
*/
|
|
158
|
+
var ColumnDirective = /** @class */ (function (_super) {
|
|
159
|
+
__extends(ColumnDirective, _super);
|
|
160
|
+
/**
|
|
161
|
+
* @param {?} viewContainerRef
|
|
162
|
+
*/
|
|
163
|
+
function ColumnDirective(viewContainerRef) {
|
|
164
|
+
var _this = _super.call(this) || this;
|
|
165
|
+
_this.viewContainerRef = viewContainerRef;
|
|
166
|
+
_this.tags = ['columns'];
|
|
167
|
+
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
168
|
+
_this.registerEvents(outputs$1);
|
|
169
|
+
_this.directivePropList = input$1;
|
|
170
|
+
return _this;
|
|
171
|
+
}
|
|
172
|
+
return ColumnDirective;
|
|
173
|
+
}(ComplexBase));
|
|
174
|
+
ColumnDirective.decorators = [
|
|
175
|
+
{ type: Directive, args: [{
|
|
176
|
+
selector: 'ejs-treegrid>e-columns>e-column',
|
|
177
|
+
inputs: input$1,
|
|
178
|
+
outputs: outputs$1,
|
|
179
|
+
queries: {
|
|
180
|
+
childColumns: new ContentChild(StackedColumnsDirective)
|
|
181
|
+
}
|
|
182
|
+
},] },
|
|
183
|
+
];
|
|
184
|
+
/**
|
|
185
|
+
* @nocollapse
|
|
186
|
+
*/
|
|
187
|
+
ColumnDirective.ctorParameters = function () { return [
|
|
188
|
+
{ type: ViewContainerRef, },
|
|
189
|
+
]; };
|
|
190
|
+
ColumnDirective.propDecorators = {
|
|
191
|
+
'template': [{ type: ContentChild, args: ['template',] },],
|
|
192
|
+
'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
|
|
193
|
+
'filter_itemTemplate': [{ type: ContentChild, args: ['filterItemTemplate',] },],
|
|
194
|
+
'filterTemplate': [{ type: ContentChild, args: ['filterTemplate',] },],
|
|
195
|
+
'commandsTemplate': [{ type: ContentChild, args: ['commandsTemplate',] },],
|
|
196
|
+
'editTemplate': [{ type: ContentChild, args: ['editTemplate',] },],
|
|
197
|
+
};
|
|
198
|
+
__decorate$1([
|
|
199
|
+
Template(),
|
|
200
|
+
__metadata$1("design:type", Object)
|
|
201
|
+
], ColumnDirective.prototype, "template", void 0);
|
|
202
|
+
__decorate$1([
|
|
203
|
+
Template(),
|
|
204
|
+
__metadata$1("design:type", Object)
|
|
205
|
+
], ColumnDirective.prototype, "headerTemplate", void 0);
|
|
206
|
+
__decorate$1([
|
|
207
|
+
Template(),
|
|
208
|
+
__metadata$1("design:type", Object)
|
|
209
|
+
], ColumnDirective.prototype, "filter_itemTemplate", void 0);
|
|
210
|
+
__decorate$1([
|
|
211
|
+
Template(),
|
|
212
|
+
__metadata$1("design:type", Object)
|
|
213
|
+
], ColumnDirective.prototype, "filterTemplate", void 0);
|
|
214
|
+
__decorate$1([
|
|
215
|
+
Template(),
|
|
216
|
+
__metadata$1("design:type", Object)
|
|
217
|
+
], ColumnDirective.prototype, "commandsTemplate", void 0);
|
|
218
|
+
__decorate$1([
|
|
219
|
+
Template(),
|
|
220
|
+
__metadata$1("design:type", Object)
|
|
103
221
|
], ColumnDirective.prototype, "editTemplate", void 0);
|
|
104
222
|
/**
|
|
105
223
|
* Column Array Directive
|
|
@@ -123,7 +241,7 @@ ColumnsDirective.decorators = [
|
|
|
123
241
|
* @nocollapse
|
|
124
242
|
*/
|
|
125
243
|
ColumnsDirective.ctorParameters = function () { return []; };
|
|
126
|
-
var __decorate$
|
|
244
|
+
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
127
245
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
128
246
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
129
247
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -133,12 +251,12 @@ var __decorate$1 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
133
251
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
134
252
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
135
253
|
};
|
|
136
|
-
var __metadata$
|
|
254
|
+
var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
|
137
255
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
138
256
|
return Reflect.metadata(k, v);
|
|
139
257
|
};
|
|
140
|
-
var input$
|
|
141
|
-
var outputs$
|
|
258
|
+
var input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'type'];
|
|
259
|
+
var outputs$2 = [];
|
|
142
260
|
/**
|
|
143
261
|
* `e-aggregate->e-column` directive represent a aggregate column of the Angular TreeGrid.
|
|
144
262
|
* ```html
|
|
@@ -166,8 +284,8 @@ var AggregateColumnDirective = /** @class */ (function (_super) {
|
|
|
166
284
|
var _this = _super.call(this) || this;
|
|
167
285
|
_this.viewContainerRef = viewContainerRef;
|
|
168
286
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
169
|
-
_this.registerEvents(outputs$
|
|
170
|
-
_this.directivePropList = input$
|
|
287
|
+
_this.registerEvents(outputs$2);
|
|
288
|
+
_this.directivePropList = input$2;
|
|
171
289
|
return _this;
|
|
172
290
|
}
|
|
173
291
|
return AggregateColumnDirective;
|
|
@@ -175,8 +293,8 @@ var AggregateColumnDirective = /** @class */ (function (_super) {
|
|
|
175
293
|
AggregateColumnDirective.decorators = [
|
|
176
294
|
{ type: Directive, args: [{
|
|
177
295
|
selector: 'ejs-treegrid>e-aggregates>e-aggregate>e-columns>e-column',
|
|
178
|
-
inputs: input$
|
|
179
|
-
outputs: outputs$
|
|
296
|
+
inputs: input$2,
|
|
297
|
+
outputs: outputs$2,
|
|
180
298
|
queries: {}
|
|
181
299
|
},] },
|
|
182
300
|
];
|
|
@@ -189,9 +307,9 @@ AggregateColumnDirective.ctorParameters = function () { return [
|
|
|
189
307
|
AggregateColumnDirective.propDecorators = {
|
|
190
308
|
'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
|
|
191
309
|
};
|
|
192
|
-
__decorate$
|
|
310
|
+
__decorate$2([
|
|
193
311
|
Template(),
|
|
194
|
-
__metadata$
|
|
312
|
+
__metadata$2("design:type", Object)
|
|
195
313
|
], AggregateColumnDirective.prototype, "footerTemplate", void 0);
|
|
196
314
|
/**
|
|
197
315
|
* AggregateColumn Array Directive
|
|
@@ -215,8 +333,8 @@ AggregateColumnsDirective.decorators = [
|
|
|
215
333
|
* @nocollapse
|
|
216
334
|
*/
|
|
217
335
|
AggregateColumnsDirective.ctorParameters = function () { return []; };
|
|
218
|
-
var input$
|
|
219
|
-
var outputs$
|
|
336
|
+
var input$3 = ['columns', 'showChildSummary'];
|
|
337
|
+
var outputs$3 = [];
|
|
220
338
|
/**
|
|
221
339
|
* `e-aggregate` directive represent a aggregate row of the Angular TreeGrid.
|
|
222
340
|
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
|
@@ -246,8 +364,8 @@ var AggregateDirective = /** @class */ (function (_super) {
|
|
|
246
364
|
_this.viewContainerRef = viewContainerRef;
|
|
247
365
|
_this.tags = ['columns'];
|
|
248
366
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
249
|
-
_this.registerEvents(outputs$
|
|
250
|
-
_this.directivePropList = input$
|
|
367
|
+
_this.registerEvents(outputs$3);
|
|
368
|
+
_this.directivePropList = input$3;
|
|
251
369
|
return _this;
|
|
252
370
|
}
|
|
253
371
|
return AggregateDirective;
|
|
@@ -255,8 +373,8 @@ var AggregateDirective = /** @class */ (function (_super) {
|
|
|
255
373
|
AggregateDirective.decorators = [
|
|
256
374
|
{ type: Directive, args: [{
|
|
257
375
|
selector: 'ejs-treegrid>e-aggregates>e-aggregate',
|
|
258
|
-
inputs: input$
|
|
259
|
-
outputs: outputs$
|
|
376
|
+
inputs: input$3,
|
|
377
|
+
outputs: outputs$3,
|
|
260
378
|
queries: {
|
|
261
379
|
childColumns: new ContentChild(AggregateColumnsDirective)
|
|
262
380
|
}
|
|
@@ -290,7 +408,7 @@ AggregatesDirective.decorators = [
|
|
|
290
408
|
* @nocollapse
|
|
291
409
|
*/
|
|
292
410
|
AggregatesDirective.ctorParameters = function () { return []; };
|
|
293
|
-
var __decorate$
|
|
411
|
+
var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
294
412
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
295
413
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
296
414
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -300,12 +418,12 @@ var __decorate$2 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
300
418
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
301
419
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
302
420
|
};
|
|
303
|
-
var __metadata$
|
|
421
|
+
var __metadata$3 = (this && this.__metadata) || function (k, v) {
|
|
304
422
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
305
423
|
return Reflect.metadata(k, v);
|
|
306
424
|
};
|
|
307
425
|
var 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'];
|
|
308
|
-
var outputs$
|
|
426
|
+
var 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'];
|
|
309
427
|
var twoWays = ['dataSource'];
|
|
310
428
|
/**
|
|
311
429
|
* `ejs-treegrid` represents the Angular TreeTreeGrid Component.
|
|
@@ -477,7 +595,7 @@ var TreeGridComponent = /** @class */ (function (_super) {
|
|
|
477
595
|
}
|
|
478
596
|
}
|
|
479
597
|
catch (_w) { }
|
|
480
|
-
_this.registerEvents(outputs$
|
|
598
|
+
_this.registerEvents(outputs$4);
|
|
481
599
|
_this.addTwoWay.call(_this, twoWays);
|
|
482
600
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
483
601
|
_this.context = new ComponentBase();
|
|
@@ -517,7 +635,7 @@ TreeGridComponent.decorators = [
|
|
|
517
635
|
{ type: Component, args: [{
|
|
518
636
|
selector: 'ejs-treegrid',
|
|
519
637
|
inputs: inputs,
|
|
520
|
-
outputs: outputs$
|
|
638
|
+
outputs: outputs$4,
|
|
521
639
|
template: '',
|
|
522
640
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
523
641
|
queries: {
|
|
@@ -542,29 +660,29 @@ TreeGridComponent.propDecorators = {
|
|
|
542
660
|
'detailTemplate': [{ type: ContentChild, args: ['detailTemplate',] },],
|
|
543
661
|
'editSettings_template': [{ type: ContentChild, args: ['editSettingsTemplate',] },],
|
|
544
662
|
};
|
|
545
|
-
__decorate$
|
|
663
|
+
__decorate$3([
|
|
546
664
|
Template(),
|
|
547
|
-
__metadata$
|
|
665
|
+
__metadata$3("design:type", Object)
|
|
548
666
|
], TreeGridComponent.prototype, "toolbarTemplate", void 0);
|
|
549
|
-
__decorate$
|
|
667
|
+
__decorate$3([
|
|
550
668
|
Template(),
|
|
551
|
-
__metadata$
|
|
669
|
+
__metadata$3("design:type", Object)
|
|
552
670
|
], TreeGridComponent.prototype, "pagerTemplate", void 0);
|
|
553
|
-
__decorate$
|
|
671
|
+
__decorate$3([
|
|
554
672
|
Template(),
|
|
555
|
-
__metadata$
|
|
673
|
+
__metadata$3("design:type", Object)
|
|
556
674
|
], TreeGridComponent.prototype, "rowTemplate", void 0);
|
|
557
|
-
__decorate$
|
|
675
|
+
__decorate$3([
|
|
558
676
|
Template(),
|
|
559
|
-
__metadata$
|
|
677
|
+
__metadata$3("design:type", Object)
|
|
560
678
|
], TreeGridComponent.prototype, "detailTemplate", void 0);
|
|
561
|
-
__decorate$
|
|
679
|
+
__decorate$3([
|
|
562
680
|
Template(),
|
|
563
|
-
__metadata$
|
|
681
|
+
__metadata$3("design:type", Object)
|
|
564
682
|
], TreeGridComponent.prototype, "editSettings_template", void 0);
|
|
565
|
-
TreeGridComponent = __decorate$
|
|
683
|
+
TreeGridComponent = __decorate$3([
|
|
566
684
|
ComponentMixins([ComponentBase]),
|
|
567
|
-
__metadata$
|
|
685
|
+
__metadata$3("design:paramtypes", [ElementRef,
|
|
568
686
|
Renderer2,
|
|
569
687
|
ViewContainerRef,
|
|
570
688
|
Injector])
|
|
@@ -582,6 +700,8 @@ TreeGridModule.decorators = [
|
|
|
582
700
|
imports: [CommonModule],
|
|
583
701
|
declarations: [
|
|
584
702
|
TreeGridComponent,
|
|
703
|
+
StackedColumnDirective,
|
|
704
|
+
StackedColumnsDirective,
|
|
585
705
|
ColumnDirective,
|
|
586
706
|
ColumnsDirective,
|
|
587
707
|
AggregateColumnDirective,
|
|
@@ -591,6 +711,8 @@ TreeGridModule.decorators = [
|
|
|
591
711
|
],
|
|
592
712
|
exports: [
|
|
593
713
|
TreeGridComponent,
|
|
714
|
+
StackedColumnDirective,
|
|
715
|
+
StackedColumnsDirective,
|
|
594
716
|
ColumnDirective,
|
|
595
717
|
ColumnsDirective,
|
|
596
718
|
AggregateColumnDirective,
|
|
@@ -671,6 +793,6 @@ TreeGridAllModule.ctorParameters = function () { return []; };
|
|
|
671
793
|
/**
|
|
672
794
|
* Generated bundle index. Do not edit.
|
|
673
795
|
*/
|
|
674
|
-
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$
|
|
675
|
-
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';
|
|
796
|
+
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 };
|
|
797
|
+
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';
|
|
676
798
|
//# sourceMappingURL=ej2-angular-treegrid.es5.js.map
|