@syncfusion/ej2-angular-treegrid 25.2.3-ngcc → 25.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.
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,21 @@
|
|
2
2
|
|
3
3
|
## [Unreleased]
|
4
4
|
|
5
|
+
### Tree Grid
|
6
|
+
|
7
|
+
#### Bug Fixes
|
8
|
+
|
9
|
+
- `#I585348` - Record gets disappeared when adding new record in last page issue has been fixed.
|
10
|
+
- `#I575018` - Resolved `frozenColumns` with virtualization leads to missing records on scrolling.
|
11
|
+
- `#F187800` - Resolved exception on passing the `collpaseRow` and `expandRow` method without parameters.
|
12
|
+
- `#F53252` - Fixed issue where newly added row to the bottom was indented to the selected child record.
|
13
|
+
- `#F53285` - Fixed issue where server request was not updated properly during export with filtering and sorting action in remote data.
|
14
|
+
- `#F53846` - Fixed issue where unnecessary requests were being sent for custom local data source during excel export in remote data sample.
|
15
|
+
- `#F53930` - Fixed a script error that occurred when navigating through cells using the keyboard after updating the state in the treegrid.
|
16
|
+
- `#F54026` - Fixed a bug where a warning message was being thrown after injecting freeze modules when frozen was enabled.
|
17
|
+
|
18
|
+
- `#F187800` - Resolved exception on passing the `collpaseRow` and `expandRow` method without parameters.
|
19
|
+
|
5
20
|
## 25.1.42 (2024-04-30)
|
6
21
|
|
7
22
|
### Tree Grid
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-angular-treegrid.umd.js
|
3
|
-
* version : 25.2.
|
3
|
+
* version : 25.2.4
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
@@ -39,27 +39,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
39
39
|
};
|
40
40
|
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'];
|
41
41
|
var outputs = [];
|
42
|
-
|
43
|
-
|
44
|
-
* It must be contained in a StackedColumns component(`e-stacked-columns`).
|
45
|
-
* ```html
|
46
|
-
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
47
|
-
* <e-columns>
|
48
|
-
* <e-column field='ID' width='100'></e-column>
|
49
|
-
* <e-column headerText='Details' width='100'>
|
50
|
-
* <e-stacked-columns>
|
51
|
-
* <e-stacked-column field='Name' width='140'></e-stacked-column>
|
52
|
-
* </e-stacked-columns>
|
53
|
-
* </e-column>
|
54
|
-
* </e-columns>
|
55
|
-
* </ejs-treegrid>
|
56
|
-
* ```
|
57
|
-
*/
|
58
|
-
var StackedColumnDirective = /** @class */ (function (_super) {
|
42
|
+
|
43
|
+
var StackedColumnDirective = (function (_super) {
|
59
44
|
__extends(StackedColumnDirective, _super);
|
60
|
-
|
61
|
-
* @param {?} viewContainerRef
|
62
|
-
*/
|
45
|
+
|
63
46
|
function StackedColumnDirective(viewContainerRef) {
|
64
47
|
var _this = _super.call(this) || this;
|
65
48
|
_this.viewContainerRef = viewContainerRef;
|
@@ -78,9 +61,7 @@ StackedColumnDirective.decorators = [
|
|
78
61
|
queries: {}
|
79
62
|
},] },
|
80
63
|
];
|
81
|
-
|
82
|
-
* @nocollapse
|
83
|
-
*/
|
64
|
+
|
84
65
|
StackedColumnDirective.ctorParameters = function () { return [
|
85
66
|
{ type: core.ViewContainerRef, },
|
86
67
|
]; };
|
@@ -116,10 +97,8 @@ __decorate([
|
|
116
97
|
ej2AngularBase.Template(),
|
117
98
|
__metadata("design:type", Object)
|
118
99
|
], StackedColumnDirective.prototype, "editTemplate", void 0);
|
119
|
-
|
120
|
-
|
121
|
-
*/
|
122
|
-
var StackedColumnsDirective = /** @class */ (function (_super) {
|
100
|
+
|
101
|
+
var StackedColumnsDirective = (function (_super) {
|
123
102
|
__extends(StackedColumnsDirective, _super);
|
124
103
|
function StackedColumnsDirective() {
|
125
104
|
return _super.call(this, 'columns') || this;
|
@@ -134,9 +113,7 @@ StackedColumnsDirective.decorators = [
|
|
134
113
|
},
|
135
114
|
},] },
|
136
115
|
];
|
137
|
-
|
138
|
-
* @nocollapse
|
139
|
-
*/
|
116
|
+
|
140
117
|
StackedColumnsDirective.ctorParameters = function () { return []; };
|
141
118
|
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
142
119
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
@@ -154,23 +131,10 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
154
131
|
};
|
155
132
|
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'];
|
156
133
|
var outputs$1 = [];
|
157
|
-
|
158
|
-
|
159
|
-
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
160
|
-
* ```html
|
161
|
-
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
162
|
-
* <e-columns>
|
163
|
-
* <e-column field='ID' width='100'></e-column>
|
164
|
-
* <e-column field='name' headerText='Name' width='100'></e-column>
|
165
|
-
* </e-columns>
|
166
|
-
* </ejs-treegrid>
|
167
|
-
* ```
|
168
|
-
*/
|
169
|
-
var ColumnDirective = /** @class */ (function (_super) {
|
134
|
+
|
135
|
+
var ColumnDirective = (function (_super) {
|
170
136
|
__extends(ColumnDirective, _super);
|
171
|
-
|
172
|
-
* @param {?} viewContainerRef
|
173
|
-
*/
|
137
|
+
|
174
138
|
function ColumnDirective(viewContainerRef) {
|
175
139
|
var _this = _super.call(this) || this;
|
176
140
|
_this.viewContainerRef = viewContainerRef;
|
@@ -192,9 +156,7 @@ ColumnDirective.decorators = [
|
|
192
156
|
}
|
193
157
|
},] },
|
194
158
|
];
|
195
|
-
|
196
|
-
* @nocollapse
|
197
|
-
*/
|
159
|
+
|
198
160
|
ColumnDirective.ctorParameters = function () { return [
|
199
161
|
{ type: core.ViewContainerRef, },
|
200
162
|
]; };
|
@@ -230,10 +192,8 @@ __decorate$1([
|
|
230
192
|
ej2AngularBase.Template(),
|
231
193
|
__metadata$1("design:type", Object)
|
232
194
|
], ColumnDirective.prototype, "editTemplate", void 0);
|
233
|
-
|
234
|
-
|
235
|
-
*/
|
236
|
-
var ColumnsDirective = /** @class */ (function (_super) {
|
195
|
+
|
196
|
+
var ColumnsDirective = (function (_super) {
|
237
197
|
__extends(ColumnsDirective, _super);
|
238
198
|
function ColumnsDirective() {
|
239
199
|
return _super.call(this, 'columns') || this;
|
@@ -248,9 +208,7 @@ ColumnsDirective.decorators = [
|
|
248
208
|
},
|
249
209
|
},] },
|
250
210
|
];
|
251
|
-
|
252
|
-
* @nocollapse
|
253
|
-
*/
|
211
|
+
|
254
212
|
ColumnsDirective.ctorParameters = function () { return []; };
|
255
213
|
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
256
214
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
@@ -268,29 +226,10 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
|
268
226
|
};
|
269
227
|
var input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'type'];
|
270
228
|
var outputs$2 = [];
|
271
|
-
|
272
|
-
|
273
|
-
* ```html
|
274
|
-
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
275
|
-
* <e-columns>
|
276
|
-
* <e-column field='ID' width='100'></e-column>
|
277
|
-
* <e-column field='name' headerText='Name' width='100'></e-column>
|
278
|
-
* </e-columns>
|
279
|
-
* <e-aggregates>
|
280
|
-
* <e-aggregate>
|
281
|
-
* <e-columns>
|
282
|
-
* <e-column field='ID' type='Min'></e-column>
|
283
|
-
* </e-columns>
|
284
|
-
* </e-aggregate>
|
285
|
-
* </e-aggregates>
|
286
|
-
* </ejs-treegrid>
|
287
|
-
* ```
|
288
|
-
*/
|
289
|
-
var AggregateColumnDirective = /** @class */ (function (_super) {
|
229
|
+
|
230
|
+
var AggregateColumnDirective = (function (_super) {
|
290
231
|
__extends(AggregateColumnDirective, _super);
|
291
|
-
|
292
|
-
* @param {?} viewContainerRef
|
293
|
-
*/
|
232
|
+
|
294
233
|
function AggregateColumnDirective(viewContainerRef) {
|
295
234
|
var _this = _super.call(this) || this;
|
296
235
|
_this.viewContainerRef = viewContainerRef;
|
@@ -309,9 +248,7 @@ AggregateColumnDirective.decorators = [
|
|
309
248
|
queries: {}
|
310
249
|
},] },
|
311
250
|
];
|
312
|
-
|
313
|
-
* @nocollapse
|
314
|
-
*/
|
251
|
+
|
315
252
|
AggregateColumnDirective.ctorParameters = function () { return [
|
316
253
|
{ type: core.ViewContainerRef, },
|
317
254
|
]; };
|
@@ -322,10 +259,8 @@ __decorate$2([
|
|
322
259
|
ej2AngularBase.Template(),
|
323
260
|
__metadata$2("design:type", Object)
|
324
261
|
], AggregateColumnDirective.prototype, "footerTemplate", void 0);
|
325
|
-
|
326
|
-
|
327
|
-
*/
|
328
|
-
var AggregateColumnsDirective = /** @class */ (function (_super) {
|
262
|
+
|
263
|
+
var AggregateColumnsDirective = (function (_super) {
|
329
264
|
__extends(AggregateColumnsDirective, _super);
|
330
265
|
function AggregateColumnsDirective() {
|
331
266
|
return _super.call(this, 'columns') || this;
|
@@ -340,36 +275,14 @@ AggregateColumnsDirective.decorators = [
|
|
340
275
|
},
|
341
276
|
},] },
|
342
277
|
];
|
343
|
-
|
344
|
-
* @nocollapse
|
345
|
-
*/
|
278
|
+
|
346
279
|
AggregateColumnsDirective.ctorParameters = function () { return []; };
|
347
280
|
var input$3 = ['columns', 'showChildSummary'];
|
348
281
|
var outputs$3 = [];
|
349
|
-
|
350
|
-
|
351
|
-
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
352
|
-
* ```html
|
353
|
-
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
|
354
|
-
* <e-columns>
|
355
|
-
* <e-column field='ID' width='100'></e-column>
|
356
|
-
* <e-column field='name' headerText='Name' width='100'></e-column>
|
357
|
-
* </e-columns>
|
358
|
-
* <e-aggregates>
|
359
|
-
* <e-aggregate>
|
360
|
-
* <e-columns>
|
361
|
-
* <e-column field='ID' type='Min'></e-column>
|
362
|
-
* </e-columns>
|
363
|
-
* </e-aggregate>
|
364
|
-
* </e-aggregates>
|
365
|
-
* </ejs-treegrid>
|
366
|
-
* ```
|
367
|
-
*/
|
368
|
-
var AggregateDirective = /** @class */ (function (_super) {
|
282
|
+
|
283
|
+
var AggregateDirective = (function (_super) {
|
369
284
|
__extends(AggregateDirective, _super);
|
370
|
-
|
371
|
-
* @param {?} viewContainerRef
|
372
|
-
*/
|
285
|
+
|
373
286
|
function AggregateDirective(viewContainerRef) {
|
374
287
|
var _this = _super.call(this) || this;
|
375
288
|
_this.viewContainerRef = viewContainerRef;
|
@@ -391,16 +304,12 @@ AggregateDirective.decorators = [
|
|
391
304
|
}
|
392
305
|
},] },
|
393
306
|
];
|
394
|
-
|
395
|
-
* @nocollapse
|
396
|
-
*/
|
307
|
+
|
397
308
|
AggregateDirective.ctorParameters = function () { return [
|
398
309
|
{ type: core.ViewContainerRef, },
|
399
310
|
]; };
|
400
|
-
|
401
|
-
|
402
|
-
*/
|
403
|
-
var AggregatesDirective = /** @class */ (function (_super) {
|
311
|
+
|
312
|
+
var AggregatesDirective = (function (_super) {
|
404
313
|
__extends(AggregatesDirective, _super);
|
405
314
|
function AggregatesDirective() {
|
406
315
|
return _super.call(this, 'aggregates') || this;
|
@@ -415,9 +324,7 @@ AggregatesDirective.decorators = [
|
|
415
324
|
},
|
416
325
|
},] },
|
417
326
|
];
|
418
|
-
|
419
|
-
* @nocollapse
|
420
|
-
*/
|
327
|
+
|
421
328
|
AggregatesDirective.ctorParameters = function () { return []; };
|
422
329
|
var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
423
330
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
@@ -436,20 +343,10 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
|
|
436
343
|
var inputs = ['aggregates', 'allowExcelExport', 'allowFiltering', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'autoCheckHierarchy', 'childMapping', 'clipMode', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'copyHierarchyMode', 'currencyCode', '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'];
|
437
344
|
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'];
|
438
345
|
var twoWays = ['dataSource'];
|
439
|
-
|
440
|
-
|
441
|
-
* ```html
|
442
|
-
* <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-treegrid>
|
443
|
-
* ```
|
444
|
-
*/
|
445
|
-
exports.TreeGridComponent = /** @class */ (function (_super) {
|
346
|
+
|
347
|
+
exports.TreeGridComponent = (function (_super) {
|
446
348
|
__extends(TreeGridComponent, _super);
|
447
|
-
|
448
|
-
* @param {?} ngEle
|
449
|
-
* @param {?} srenderer
|
450
|
-
* @param {?} viewContainerRef
|
451
|
-
* @param {?} injector
|
452
|
-
*/
|
349
|
+
|
453
350
|
function TreeGridComponent(ngEle, srenderer, viewContainerRef, injector) {
|
454
351
|
var _this = _super.call(this) || this;
|
455
352
|
_this.ngEle = ngEle;
|
@@ -612,31 +509,23 @@ exports.TreeGridComponent = /** @class */ (function (_super) {
|
|
612
509
|
_this.context = new ej2AngularBase.ComponentBase();
|
613
510
|
return _this;
|
614
511
|
}
|
615
|
-
|
616
|
-
* @return {?}
|
617
|
-
*/
|
512
|
+
|
618
513
|
TreeGridComponent.prototype.ngOnInit = function () {
|
619
514
|
this.context.ngOnInit(this);
|
620
515
|
};
|
621
|
-
|
622
|
-
* @return {?}
|
623
|
-
*/
|
516
|
+
|
624
517
|
TreeGridComponent.prototype.ngAfterViewInit = function () {
|
625
518
|
this.context.ngAfterViewInit(this);
|
626
519
|
};
|
627
|
-
|
628
|
-
* @return {?}
|
629
|
-
*/
|
520
|
+
|
630
521
|
TreeGridComponent.prototype.ngOnDestroy = function () {
|
631
522
|
this.context.ngOnDestroy(this);
|
632
523
|
};
|
633
|
-
|
634
|
-
* @return {?}
|
635
|
-
*/
|
524
|
+
|
636
525
|
TreeGridComponent.prototype.ngAfterContentChecked = function () {
|
637
526
|
this.tagObjects[0].instance = this.childColumns;
|
638
527
|
if (this.childAggregates) {
|
639
|
-
this.tagObjects[1].instance =
|
528
|
+
this.tagObjects[1].instance = (this.childAggregates);
|
640
529
|
}
|
641
530
|
this.context.ngAfterContentChecked(this);
|
642
531
|
};
|
@@ -655,9 +544,7 @@ exports.TreeGridComponent.decorators = [
|
|
655
544
|
}
|
656
545
|
},] },
|
657
546
|
];
|
658
|
-
|
659
|
-
* @nocollapse
|
660
|
-
*/
|
547
|
+
|
661
548
|
exports.TreeGridComponent.ctorParameters = function () { return [
|
662
549
|
{ type: core.ElementRef, },
|
663
550
|
{ type: core.Renderer2, },
|
@@ -698,10 +585,8 @@ exports.TreeGridComponent = __decorate$3([
|
|
698
585
|
core.ViewContainerRef,
|
699
586
|
core.Injector])
|
700
587
|
], exports.TreeGridComponent);
|
701
|
-
|
702
|
-
|
703
|
-
*/
|
704
|
-
var TreeGridModule = /** @class */ (function () {
|
588
|
+
|
589
|
+
var TreeGridModule = (function () {
|
705
590
|
function TreeGridModule() {
|
706
591
|
}
|
707
592
|
return TreeGridModule;
|
@@ -733,9 +618,7 @@ TreeGridModule.decorators = [
|
|
733
618
|
]
|
734
619
|
},] },
|
735
620
|
];
|
736
|
-
|
737
|
-
* @nocollapse
|
738
|
-
*/
|
621
|
+
|
739
622
|
TreeGridModule.ctorParameters = function () { return []; };
|
740
623
|
var FilterService = { provide: 'TreeGridFilter', useValue: ej2Treegrid.Filter };
|
741
624
|
var PageService = { provide: 'TreeGridPage', useValue: ej2Treegrid.Page };
|
@@ -758,10 +641,8 @@ var FreezeService = { provide: 'TreeGridFreeze', useValue: ej2Treegrid.Freeze };
|
|
758
641
|
var ColumnChooserService = { provide: 'TreeGridColumnChooser', useValue: ej2Treegrid.ColumnChooser };
|
759
642
|
var LoggerService = { provide: 'TreeGridLogger', useValue: ej2Treegrid.Logger };
|
760
643
|
var InfiniteScrollService = { provide: 'TreeGridInfiniteScroll', useValue: ej2Treegrid.InfiniteScroll };
|
761
|
-
|
762
|
-
|
763
|
-
*/
|
764
|
-
var TreeGridAllModule = /** @class */ (function () {
|
644
|
+
|
645
|
+
var TreeGridAllModule = (function () {
|
765
646
|
function TreeGridAllModule() {
|
766
647
|
}
|
767
648
|
return TreeGridAllModule;
|
@@ -797,9 +678,7 @@ TreeGridAllModule.decorators = [
|
|
797
678
|
]
|
798
679
|
},] },
|
799
680
|
];
|
800
|
-
|
801
|
-
* @nocollapse
|
802
|
-
*/
|
681
|
+
|
803
682
|
TreeGridAllModule.ctorParameters = function () { return []; };
|
804
683
|
|
805
684
|
exports.StackedColumnDirective = StackedColumnDirective;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-angular-treegrid.umd.min.js
|
3
|
-
* version : 25.2.
|
3
|
+
* version : 25.2.4
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"_from": "@syncfusion/ej2-angular-treegrid@*",
|
3
|
-
"_id": "@syncfusion/ej2-angular-treegrid@25.
|
3
|
+
"_id": "@syncfusion/ej2-angular-treegrid@25.2.3",
|
4
4
|
"_inBundle": false,
|
5
|
-
"_integrity": "sha512-
|
5
|
+
"_integrity": "sha512-Cz5DAEBPXbsSQyonA0+45XIiprYehovX6RkSE9zXZF3oipWjipsokJDl+NI4V+Qq6C8WUAHf8ap3sRYhVuonhQ==",
|
6
6
|
"_location": "/@syncfusion/ej2-angular-treegrid",
|
7
7
|
"_phantomChildren": {},
|
8
8
|
"_requested": {
|
@@ -19,8 +19,8 @@
|
|
19
19
|
"_requiredBy": [
|
20
20
|
"/"
|
21
21
|
],
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-treegrid/-/ej2-angular-treegrid-25.
|
23
|
-
"_shasum": "
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-treegrid/-/ej2-angular-treegrid-25.2.3.tgz",
|
23
|
+
"_shasum": "897cc5478b4b10c54115d6e4f3d812c7113e1fbe",
|
24
24
|
"_spec": "@syncfusion/ej2-angular-treegrid@*",
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
26
26
|
"author": {
|
@@ -31,9 +31,9 @@
|
|
31
31
|
},
|
32
32
|
"bundleDependencies": false,
|
33
33
|
"dependencies": {
|
34
|
-
"@syncfusion/ej2-angular-base": "~25.2.
|
34
|
+
"@syncfusion/ej2-angular-base": "~25.2.4",
|
35
35
|
"@syncfusion/ej2-base": "~25.2.3",
|
36
|
-
"@syncfusion/ej2-treegrid": "25.2.
|
36
|
+
"@syncfusion/ej2-treegrid": "25.2.4"
|
37
37
|
},
|
38
38
|
"deprecated": false,
|
39
39
|
"description": "Essential JS 2 TreeGrid Component for Angular",
|
@@ -57,5 +57,5 @@
|
|
57
57
|
"schematics": "./schematics/collection.json",
|
58
58
|
"sideEffects": false,
|
59
59
|
"typings": "ej2-angular-treegrid.d.ts",
|
60
|
-
"version": "25.2.
|
60
|
+
"version": "25.2.4-ngcc"
|
61
61
|
}
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-treegrid";
|
2
|
-
export declare const pkgVer = "^25.
|
2
|
+
export declare const pkgVer = "^25.2.3";
|
3
3
|
export declare const moduleName = "TreeGridModule";
|
4
|
-
export declare const themeVer = "~25.
|
4
|
+
export declare const themeVer = "~25.2.3";
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-treegrid';
|
4
|
-
exports.pkgVer = '^25.2.
|
4
|
+
exports.pkgVer = '^25.2.4';
|
5
5
|
exports.moduleName = 'TreeGridModule';
|
6
|
-
exports.themeVer = '~25.2.
|
6
|
+
exports.themeVer = '~25.2.4';
|