@syncfusion/ej2-treegrid 20.1.59 → 20.1.60
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 +2 -0
- 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 +5 -0
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +5 -0
- 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 +7 -7
- package/src/treegrid/base/treegrid.js +3 -0
- package/src/treegrid/renderer/render.js +2 -0
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 20.1.
|
|
3
|
+
* version : 20.1.60
|
|
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@20.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-treegrid@20.1.59",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-LOslqFTo0Gua6HY+2oUsYWRa9AABCh+9DilQp1ewuMxw1mu3rrlTUQk52FGE6VGi78oOUmGbZcAAeMz6lc/XYQ==",
|
|
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": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-20.1.
|
|
28
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-20.1.59.tgz",
|
|
28
|
+
"_shasum": "5723cf35775fc07a90823da3f4dae1200ea0b243",
|
|
29
29
|
"_spec": "@syncfusion/ej2-treegrid@*",
|
|
30
30
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
31
31
|
"author": {
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
},
|
|
37
37
|
"bundleDependencies": false,
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@syncfusion/ej2-base": "~20.1.
|
|
39
|
+
"@syncfusion/ej2-base": "~20.1.60",
|
|
40
40
|
"@syncfusion/ej2-data": "~20.1.55",
|
|
41
|
-
"@syncfusion/ej2-grids": "~20.1.
|
|
41
|
+
"@syncfusion/ej2-grids": "~20.1.60",
|
|
42
42
|
"@syncfusion/ej2-popups": "~20.1.58"
|
|
43
43
|
},
|
|
44
44
|
"deprecated": false,
|
|
@@ -60,6 +60,6 @@
|
|
|
60
60
|
"url": "git+https://github.com/syncfusion/ej2-treegrid.git"
|
|
61
61
|
},
|
|
62
62
|
"typings": "index.d.ts",
|
|
63
|
-
"version": "20.1.
|
|
63
|
+
"version": "20.1.60",
|
|
64
64
|
"sideEffects": false
|
|
65
65
|
}
|
|
@@ -1404,6 +1404,9 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
1404
1404
|
gridColumn[prop] = this.getGridColumns(column[i][prop], false, index);
|
|
1405
1405
|
treeGridColumn[prop] = column[i][prop];
|
|
1406
1406
|
}
|
|
1407
|
+
else if (this.initialRender && !isNullOrUndefined(treeColumn) && this.enablePersistence && prop === 'edit') {
|
|
1408
|
+
gridColumn[prop] = treeGridColumn[prop] = treeColumn[prop];
|
|
1409
|
+
}
|
|
1407
1410
|
else if (!(treeColumn) || prop !== 'sortComparer') {
|
|
1408
1411
|
gridColumn[prop] = treeGridColumn[prop] = column[i][prop];
|
|
1409
1412
|
}
|
|
@@ -296,6 +296,8 @@ var Render = /** @class */ (function () {
|
|
|
296
296
|
var cellRenderer = new CellRenderer(_this.parent.grid, _this.parent.grid.serviceLocator);
|
|
297
297
|
var td = _this.parent.getCellFromIndex(rowsObj[j].index, cellIndex - indent);
|
|
298
298
|
cellRenderer.refreshTD(td, cell, rowsObj[j].data, { index: rowsObj[j][rowIdx] });
|
|
299
|
+
var treecell = _this.parent.getRows()[j].cells[cellIndex];
|
|
300
|
+
_this.cellRender({ data: rowsObj[j].data, cell: treecell, column: cell.column });
|
|
299
301
|
}
|
|
300
302
|
}
|
|
301
303
|
});
|