@syncfusion/ej2-angular-treegrid 25.2.5-ngcc → 25.2.6-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,20 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ### Tree Grid
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#F56915` - Fixed an issue where adding an action while data is being fetched and re-rendered would throw a script error.
10
+
11
+ ## 25.2.5 (2024-05-21)
12
+
13
+ ### Tree Grid
14
+
15
+ #### Bug Fixes
16
+
17
+ - `#I585943` - Resolved border not showing on Row Drag and Drop when the height exceeds the current view port.
18
+
5
19
  ## 25.2.4 (2024-05-14)
6
20
 
7
21
  ### Tree Grid
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-treegrid.umd.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
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,10 +39,27 @@ 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
- var StackedColumnDirective = (function (_super) {
42
+ /**
43
+ * `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.
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) {
44
59
  __extends(StackedColumnDirective, _super);
45
-
60
+ /**
61
+ * @param {?} viewContainerRef
62
+ */
46
63
  function StackedColumnDirective(viewContainerRef) {
47
64
  var _this = _super.call(this) || this;
48
65
  _this.viewContainerRef = viewContainerRef;
@@ -61,7 +78,9 @@ StackedColumnDirective.decorators = [
61
78
  queries: {}
62
79
  },] },
63
80
  ];
64
-
81
+ /**
82
+ * @nocollapse
83
+ */
65
84
  StackedColumnDirective.ctorParameters = function () { return [
66
85
  { type: core.ViewContainerRef, },
67
86
  ]; };
@@ -97,8 +116,10 @@ __decorate([
97
116
  ej2AngularBase.Template(),
98
117
  __metadata("design:type", Object)
99
118
  ], StackedColumnDirective.prototype, "editTemplate", void 0);
100
-
101
- var StackedColumnsDirective = (function (_super) {
119
+ /**
120
+ * StackedColumn Array Directive
121
+ */
122
+ var StackedColumnsDirective = /** @class */ (function (_super) {
102
123
  __extends(StackedColumnsDirective, _super);
103
124
  function StackedColumnsDirective() {
104
125
  return _super.call(this, 'columns') || this;
@@ -113,7 +134,9 @@ StackedColumnsDirective.decorators = [
113
134
  },
114
135
  },] },
115
136
  ];
116
-
137
+ /**
138
+ * @nocollapse
139
+ */
117
140
  StackedColumnsDirective.ctorParameters = function () { return []; };
118
141
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
119
142
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -131,10 +154,23 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
131
154
  };
132
155
  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'];
133
156
  var outputs$1 = [];
134
-
135
- var ColumnDirective = (function (_super) {
157
+ /**
158
+ * `e-column` directive represent a column of the Angular TreeGrid.
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) {
136
170
  __extends(ColumnDirective, _super);
137
-
171
+ /**
172
+ * @param {?} viewContainerRef
173
+ */
138
174
  function ColumnDirective(viewContainerRef) {
139
175
  var _this = _super.call(this) || this;
140
176
  _this.viewContainerRef = viewContainerRef;
@@ -156,7 +192,9 @@ ColumnDirective.decorators = [
156
192
  }
157
193
  },] },
158
194
  ];
159
-
195
+ /**
196
+ * @nocollapse
197
+ */
160
198
  ColumnDirective.ctorParameters = function () { return [
161
199
  { type: core.ViewContainerRef, },
162
200
  ]; };
@@ -192,8 +230,10 @@ __decorate$1([
192
230
  ej2AngularBase.Template(),
193
231
  __metadata$1("design:type", Object)
194
232
  ], ColumnDirective.prototype, "editTemplate", void 0);
195
-
196
- var ColumnsDirective = (function (_super) {
233
+ /**
234
+ * Column Array Directive
235
+ */
236
+ var ColumnsDirective = /** @class */ (function (_super) {
197
237
  __extends(ColumnsDirective, _super);
198
238
  function ColumnsDirective() {
199
239
  return _super.call(this, 'columns') || this;
@@ -208,7 +248,9 @@ ColumnsDirective.decorators = [
208
248
  },
209
249
  },] },
210
250
  ];
211
-
251
+ /**
252
+ * @nocollapse
253
+ */
212
254
  ColumnsDirective.ctorParameters = function () { return []; };
213
255
  var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
214
256
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -226,10 +268,29 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
226
268
  };
227
269
  var input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'type'];
228
270
  var outputs$2 = [];
229
-
230
- var AggregateColumnDirective = (function (_super) {
271
+ /**
272
+ * `e-aggregate->e-column` directive represent a aggregate column of the Angular TreeGrid.
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) {
231
290
  __extends(AggregateColumnDirective, _super);
232
-
291
+ /**
292
+ * @param {?} viewContainerRef
293
+ */
233
294
  function AggregateColumnDirective(viewContainerRef) {
234
295
  var _this = _super.call(this) || this;
235
296
  _this.viewContainerRef = viewContainerRef;
@@ -248,7 +309,9 @@ AggregateColumnDirective.decorators = [
248
309
  queries: {}
249
310
  },] },
250
311
  ];
251
-
312
+ /**
313
+ * @nocollapse
314
+ */
252
315
  AggregateColumnDirective.ctorParameters = function () { return [
253
316
  { type: core.ViewContainerRef, },
254
317
  ]; };
@@ -259,8 +322,10 @@ __decorate$2([
259
322
  ej2AngularBase.Template(),
260
323
  __metadata$2("design:type", Object)
261
324
  ], AggregateColumnDirective.prototype, "footerTemplate", void 0);
262
-
263
- var AggregateColumnsDirective = (function (_super) {
325
+ /**
326
+ * AggregateColumn Array Directive
327
+ */
328
+ var AggregateColumnsDirective = /** @class */ (function (_super) {
264
329
  __extends(AggregateColumnsDirective, _super);
265
330
  function AggregateColumnsDirective() {
266
331
  return _super.call(this, 'columns') || this;
@@ -275,14 +340,36 @@ AggregateColumnsDirective.decorators = [
275
340
  },
276
341
  },] },
277
342
  ];
278
-
343
+ /**
344
+ * @nocollapse
345
+ */
279
346
  AggregateColumnsDirective.ctorParameters = function () { return []; };
280
347
  var input$3 = ['columns', 'showChildSummary'];
281
348
  var outputs$3 = [];
282
-
283
- var AggregateDirective = (function (_super) {
349
+ /**
350
+ * `e-aggregate` directive represent a aggregate row of the Angular TreeGrid.
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) {
284
369
  __extends(AggregateDirective, _super);
285
-
370
+ /**
371
+ * @param {?} viewContainerRef
372
+ */
286
373
  function AggregateDirective(viewContainerRef) {
287
374
  var _this = _super.call(this) || this;
288
375
  _this.viewContainerRef = viewContainerRef;
@@ -304,12 +391,16 @@ AggregateDirective.decorators = [
304
391
  }
305
392
  },] },
306
393
  ];
307
-
394
+ /**
395
+ * @nocollapse
396
+ */
308
397
  AggregateDirective.ctorParameters = function () { return [
309
398
  { type: core.ViewContainerRef, },
310
399
  ]; };
311
-
312
- var AggregatesDirective = (function (_super) {
400
+ /**
401
+ * Aggregate Array Directive
402
+ */
403
+ var AggregatesDirective = /** @class */ (function (_super) {
313
404
  __extends(AggregatesDirective, _super);
314
405
  function AggregatesDirective() {
315
406
  return _super.call(this, 'aggregates') || this;
@@ -324,7 +415,9 @@ AggregatesDirective.decorators = [
324
415
  },
325
416
  },] },
326
417
  ];
327
-
418
+ /**
419
+ * @nocollapse
420
+ */
328
421
  AggregatesDirective.ctorParameters = function () { return []; };
329
422
  var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
330
423
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -343,10 +436,20 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
343
436
  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'];
344
437
  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'];
345
438
  var twoWays = ['dataSource'];
346
-
347
- exports.TreeGridComponent = (function (_super) {
439
+ /**
440
+ * `ejs-treegrid` represents the Angular TreeTreeGrid Component.
441
+ * ```html
442
+ * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-treegrid>
443
+ * ```
444
+ */
445
+ exports.TreeGridComponent = /** @class */ (function (_super) {
348
446
  __extends(TreeGridComponent, _super);
349
-
447
+ /**
448
+ * @param {?} ngEle
449
+ * @param {?} srenderer
450
+ * @param {?} viewContainerRef
451
+ * @param {?} injector
452
+ */
350
453
  function TreeGridComponent(ngEle, srenderer, viewContainerRef, injector) {
351
454
  var _this = _super.call(this) || this;
352
455
  _this.ngEle = ngEle;
@@ -509,23 +612,31 @@ exports.TreeGridComponent = (function (_super) {
509
612
  _this.context = new ej2AngularBase.ComponentBase();
510
613
  return _this;
511
614
  }
512
-
615
+ /**
616
+ * @return {?}
617
+ */
513
618
  TreeGridComponent.prototype.ngOnInit = function () {
514
619
  this.context.ngOnInit(this);
515
620
  };
516
-
621
+ /**
622
+ * @return {?}
623
+ */
517
624
  TreeGridComponent.prototype.ngAfterViewInit = function () {
518
625
  this.context.ngAfterViewInit(this);
519
626
  };
520
-
627
+ /**
628
+ * @return {?}
629
+ */
521
630
  TreeGridComponent.prototype.ngOnDestroy = function () {
522
631
  this.context.ngOnDestroy(this);
523
632
  };
524
-
633
+ /**
634
+ * @return {?}
635
+ */
525
636
  TreeGridComponent.prototype.ngAfterContentChecked = function () {
526
637
  this.tagObjects[0].instance = this.childColumns;
527
638
  if (this.childAggregates) {
528
- this.tagObjects[1].instance = (this.childAggregates);
639
+ this.tagObjects[1].instance = /** @type {?} */ (this.childAggregates);
529
640
  }
530
641
  this.context.ngAfterContentChecked(this);
531
642
  };
@@ -544,7 +655,9 @@ exports.TreeGridComponent.decorators = [
544
655
  }
545
656
  },] },
546
657
  ];
547
-
658
+ /**
659
+ * @nocollapse
660
+ */
548
661
  exports.TreeGridComponent.ctorParameters = function () { return [
549
662
  { type: core.ElementRef, },
550
663
  { type: core.Renderer2, },
@@ -585,8 +698,10 @@ exports.TreeGridComponent = __decorate$3([
585
698
  core.ViewContainerRef,
586
699
  core.Injector])
587
700
  ], exports.TreeGridComponent);
588
-
589
- var TreeGridModule = (function () {
701
+ /**
702
+ * NgModule definition for the TreeGrid component.
703
+ */
704
+ var TreeGridModule = /** @class */ (function () {
590
705
  function TreeGridModule() {
591
706
  }
592
707
  return TreeGridModule;
@@ -618,7 +733,9 @@ TreeGridModule.decorators = [
618
733
  ]
619
734
  },] },
620
735
  ];
621
-
736
+ /**
737
+ * @nocollapse
738
+ */
622
739
  TreeGridModule.ctorParameters = function () { return []; };
623
740
  var FilterService = { provide: 'TreeGridFilter', useValue: ej2Treegrid.Filter };
624
741
  var PageService = { provide: 'TreeGridPage', useValue: ej2Treegrid.Page };
@@ -641,8 +758,10 @@ var FreezeService = { provide: 'TreeGridFreeze', useValue: ej2Treegrid.Freeze };
641
758
  var ColumnChooserService = { provide: 'TreeGridColumnChooser', useValue: ej2Treegrid.ColumnChooser };
642
759
  var LoggerService = { provide: 'TreeGridLogger', useValue: ej2Treegrid.Logger };
643
760
  var InfiniteScrollService = { provide: 'TreeGridInfiniteScroll', useValue: ej2Treegrid.InfiniteScroll };
644
-
645
- var TreeGridAllModule = (function () {
761
+ /**
762
+ * NgModule definition for the TreeGrid component with providers.
763
+ */
764
+ var TreeGridAllModule = /** @class */ (function () {
646
765
  function TreeGridAllModule() {
647
766
  }
648
767
  return TreeGridAllModule;
@@ -678,7 +797,9 @@ TreeGridAllModule.decorators = [
678
797
  ]
679
798
  },] },
680
799
  ];
681
-
800
+ /**
801
+ * @nocollapse
802
+ */
682
803
  TreeGridAllModule.ctorParameters = function () { return []; };
683
804
 
684
805
  exports.StackedColumnDirective = StackedColumnDirective;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-treegrid.umd.min.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
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.2.4",
3
+ "_id": "@syncfusion/ej2-angular-treegrid@25.2.5",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-4N8IdbqHM0xmxjXjpdUm6R0Hxb28PuOVTRsInenR6eniS42IiPT0adUxEnr9tFrkaSnS5jhlaA1p3+b6WR/hAw==",
5
+ "_integrity": "sha512-AXARQzAyR9xElBXvgriAnmNFGdLszT7dezIuqvEyOU2DxLJOzdv7QFYtoKX31tAuh0e01a6oMo115UfwdAFQdA==",
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.2.4.tgz",
23
- "_shasum": "6dc483050c2bbc29b1cc1a09e40da736791d7fc6",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-treegrid/-/ej2-angular-treegrid-25.2.5.tgz",
23
+ "_shasum": "388ada5710f1efd3c6d768e891bc483bc6637a2a",
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.4",
34
+ "@syncfusion/ej2-angular-base": "~25.2.6",
35
35
  "@syncfusion/ej2-base": "~25.2.5",
36
- "@syncfusion/ej2-treegrid": "25.2.5"
36
+ "@syncfusion/ej2-treegrid": "25.2.6"
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.5-ngcc"
60
+ "version": "25.2.6-ngcc"
61
61
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-treegrid";
2
- export declare const pkgVer = "^25.2.4";
2
+ export declare const pkgVer = "^25.2.5";
3
3
  export declare const moduleName = "TreeGridModule";
4
- export declare const themeVer = "~25.2.4";
4
+ export declare const themeVer = "~25.2.5";
@@ -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.5';
4
+ exports.pkgVer = '^25.2.6';
5
5
  exports.moduleName = 'TreeGridModule';
6
- exports.themeVer = '~25.2.5';
6
+ exports.themeVer = '~25.2.6';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-treegrid';
2
- export const pkgVer = '^25.2.5';
2
+ export const pkgVer = '^25.2.6';
3
3
  export const moduleName = 'TreeGridModule';
4
- export const themeVer = '~25.2.5';
4
+ export const themeVer = '~25.2.6';