@syncfusion/ej2-treegrid 29.1.37 → 29.1.39
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/dist/ej2-treegrid.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js.map +1 -1
- package/dist/es6/ej2-treegrid.es2015.js +2 -3
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +2 -3
- package/dist/es6/ej2-treegrid.es5.js.map +1 -1
- package/dist/global/ej2-treegrid.min.js +2 -2
- package/dist/global/ej2-treegrid.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/treegrid/base/treegrid.js +2 -3
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 29.1.
|
|
3
|
+
* version : 29.1.39
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2024. 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-treegrid@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-treegrid@29.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-treegrid@29.1.37",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-LVhrALwC5AX+T58ItxosY8FcTZDZgE7/oLxmzZuA5PrJhVWU8WA7+Qzcbiz6v98EzySQUKL+u9YMSi/DIjnc3w==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-treegrid",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"/@syncfusion/ej2-react-treegrid",
|
|
25
25
|
"/@syncfusion/ej2-vue-treegrid"
|
|
26
26
|
],
|
|
27
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-29.1.
|
|
28
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-29.1.37.tgz",
|
|
28
|
+
"_shasum": "650f83e1df1da1bc026fa0ca36cf6aeafdb5936d",
|
|
29
29
|
"_spec": "@syncfusion/ej2-treegrid@*",
|
|
30
30
|
"_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
|
|
31
31
|
"author": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@syncfusion/ej2-base": "~29.1.36",
|
|
40
40
|
"@syncfusion/ej2-data": "~29.1.33",
|
|
41
|
-
"@syncfusion/ej2-grids": "~29.1.
|
|
41
|
+
"@syncfusion/ej2-grids": "~29.1.39",
|
|
42
42
|
"@syncfusion/ej2-popups": "~29.1.37"
|
|
43
43
|
},
|
|
44
44
|
"deprecated": false,
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"url": "git+https://github.com/syncfusion/ej2-treegrid.git"
|
|
77
77
|
},
|
|
78
78
|
"typings": "index.d.ts",
|
|
79
|
-
"version": "29.1.
|
|
79
|
+
"version": "29.1.39",
|
|
80
80
|
"sideEffects": false
|
|
81
81
|
}
|
|
@@ -980,6 +980,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
980
980
|
this.grid.pagerTemplate = this.pagerTemplate;
|
|
981
981
|
this.grid.showColumnMenu = this.showColumnMenu;
|
|
982
982
|
this.grid.allowSorting = this.allowSorting;
|
|
983
|
+
this.grid.allowMultiSorting = this.allowMultiSorting;
|
|
983
984
|
this.grid.allowFiltering = this.allowFiltering;
|
|
984
985
|
this.grid.enableVirtualization = this.enableVirtualization;
|
|
985
986
|
this.grid.enableColumnVirtualization = this.enableColumnVirtualization;
|
|
@@ -2766,9 +2767,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
2766
2767
|
};
|
|
2767
2768
|
TreeGrid.prototype.mergeColumns = function (storedColumn, columns) {
|
|
2768
2769
|
var persist2 = 'mergeColumns';
|
|
2769
|
-
var mergedColumns = 'mergedColumns';
|
|
2770
2770
|
this.grid["" + persist2].apply(this, [storedColumn, columns]);
|
|
2771
|
-
this.grid["" + mergedColumns] = true;
|
|
2772
2771
|
};
|
|
2773
2772
|
TreeGrid.prototype.setFrozenCount = function () {
|
|
2774
2773
|
var persist3 = 'setFrozenCount';
|
|
@@ -2779,7 +2778,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
2779
2778
|
this.grid["" + persist4].apply(this.grid, [columns]);
|
|
2780
2779
|
};
|
|
2781
2780
|
TreeGrid.prototype.isFrozenGrid = function () {
|
|
2782
|
-
return this.grid.isFrozenGrid
|
|
2781
|
+
return this.grid.isFrozenGrid();
|
|
2783
2782
|
};
|
|
2784
2783
|
TreeGrid.prototype.updateTreeGridModel = function () {
|
|
2785
2784
|
this.setProperties({ filterSettings: getObject('properties', this.grid.filterSettings) }, true);
|