@syncfusion/ej2-treegrid 22.2.7 → 22.2.9

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 22.2.7
3
+ * version : 22.2.9
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. 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@22.2.5",
3
+ "_id": "@syncfusion/ej2-treegrid@22.2.7",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-8D61dwEBCpuIbsV5GsfqXstqH/w43e5bssWOFc2MN3xUkHKqDRXKE7wXPEj6K8x0omK97+gq5ljvwrmurG066Q==",
5
+ "_integrity": "sha512-o8+KYvDYa3+iIyNrsSOWgw312DfYRAXC/p/ci7TtSarH0/pUmS0j1X/pnDAr6xVTU0GL2N/xCGyrEIXhUxpKIQ==",
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.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-22.2.5.tgz",
28
- "_shasum": "0ed8d47baf64f199f176f32acbe72b22f989350b",
27
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-22.2.7.tgz",
28
+ "_shasum": "50d28084650115fe8009065240becadd7c1c3b4b",
29
29
  "_spec": "@syncfusion/ej2-treegrid@*",
30
30
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
31
31
  "author": {
@@ -36,10 +36,10 @@
36
36
  },
37
37
  "bundleDependencies": false,
38
38
  "dependencies": {
39
- "@syncfusion/ej2-base": "~22.2.5",
39
+ "@syncfusion/ej2-base": "~22.2.9",
40
40
  "@syncfusion/ej2-data": "~22.2.5",
41
- "@syncfusion/ej2-grids": "~22.2.7",
42
- "@syncfusion/ej2-popups": "~22.2.7"
41
+ "@syncfusion/ej2-grids": "~22.2.9",
42
+ "@syncfusion/ej2-popups": "~22.2.9"
43
43
  },
44
44
  "deprecated": false,
45
45
  "description": "Essential JS 2 TreeGrid Component",
@@ -66,6 +66,6 @@
66
66
  "url": "git+https://github.com/syncfusion/ej2-treegrid.git"
67
67
  },
68
68
  "typings": "index.d.ts",
69
- "version": "22.2.7",
69
+ "version": "22.2.9",
70
70
  "sideEffects": false
71
71
  }
@@ -1849,9 +1849,11 @@ var TreeGrid = /** @class */ (function (_super) {
1849
1849
  }
1850
1850
  };
1851
1851
  TreeGrid.prototype.ignoreInColumn = function (ignoreOnColumn, column) {
1852
- for (var i = 0; i < ignoreOnColumn.length; i++) {
1853
- delete column[ignoreOnColumn[parseInt(i.toString(), 10)]];
1854
- column.filter = {};
1852
+ if (isNullOrUndefined(column.template)) {
1853
+ for (var i = 0; i < ignoreOnColumn.length; i++) {
1854
+ delete column[ignoreOnColumn[parseInt(i.toString(), 10)]];
1855
+ column.filter = {};
1856
+ }
1855
1857
  }
1856
1858
  };
1857
1859
  TreeGrid.prototype.mouseClickHandler = function (e) {