@syncfusion/ej2-treegrid 20.3.57 → 20.3.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 +17 -0
- 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 +36 -11
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +38 -11
- 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 +8 -8
- package/src/treegrid/actions/selection.js +5 -2
- package/src/treegrid/base/treegrid.js +31 -8
- package/src/treegrid/renderer/render.js +1 -0
- package/src/treegrid/renderer/virtual-tree-content-render.js +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 20.3.
|
|
3
|
+
* version : 20.3.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.3.
|
|
3
|
+
"_id": "@syncfusion/ej2-treegrid@20.3.58",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-iDfaMXRuBHOpBp3zDL6cZm71E8IAU7cssCK9y4Zth7TIBwoN67TQbVSqO59cj+6dcII5fGTe2buOY98chHYm5Q==",
|
|
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-20.3.
|
|
28
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-20.3.58.tgz",
|
|
28
|
+
"_shasum": "212d2849066360a08e9f0d66461fa6d5030c93a4",
|
|
29
29
|
"_spec": "@syncfusion/ej2-treegrid@*",
|
|
30
30
|
"_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
|
|
31
31
|
"author": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"bundleDependencies": false,
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@syncfusion/ej2-base": "~20.3.56",
|
|
40
|
-
"@syncfusion/ej2-data": "~20.3.
|
|
41
|
-
"@syncfusion/ej2-grids": "~20.3.
|
|
42
|
-
"@syncfusion/ej2-popups": "~20.3.
|
|
40
|
+
"@syncfusion/ej2-data": "~20.3.60",
|
|
41
|
+
"@syncfusion/ej2-grids": "~20.3.60",
|
|
42
|
+
"@syncfusion/ej2-popups": "~20.3.60"
|
|
43
43
|
},
|
|
44
44
|
"deprecated": false,
|
|
45
45
|
"description": "Essential JS 2 TreeGrid Component",
|
|
@@ -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.3.
|
|
63
|
+
"version": "20.3.60",
|
|
64
64
|
"sideEffects": false
|
|
65
65
|
}
|
|
@@ -128,7 +128,7 @@ var Selection = /** @class */ (function () {
|
|
|
128
128
|
}
|
|
129
129
|
};
|
|
130
130
|
Selection.prototype.renderColumnCheckbox = function (args) {
|
|
131
|
-
var rowChkBox = this.parent.createElement('input', { className: 'e-treecheckselect', attrs: { 'type': 'checkbox' } });
|
|
131
|
+
var rowChkBox = this.parent.createElement('input', { className: 'e-treecheckselect', attrs: { 'type': 'checkbox', 'aria-label': 'checkbox' } });
|
|
132
132
|
var data = args.data;
|
|
133
133
|
args.cell.classList.add('e-treegridcheckbox');
|
|
134
134
|
args.cell.setAttribute('aria-label', 'checkbox');
|
|
@@ -360,9 +360,9 @@ var Selection = /** @class */ (function () {
|
|
|
360
360
|
var checkedRecord;
|
|
361
361
|
var recordIndex = this.parent.getCurrentViewRecords().indexOf(record[0]);
|
|
362
362
|
var checkboxRecord = getParentData(this.parent, currentRecord.uniqueID);
|
|
363
|
+
var tr = this.parent.getRows()[recordIndex];
|
|
363
364
|
var checkbox;
|
|
364
365
|
if (recordIndex > -1) {
|
|
365
|
-
var tr = this.parent.getRows()[recordIndex];
|
|
366
366
|
var movableTr = void 0;
|
|
367
367
|
if (this.parent.frozenRows || this.parent.getFrozenColumns()) {
|
|
368
368
|
movableTr = this.parent.getMovableDataRows()[recordIndex];
|
|
@@ -411,6 +411,9 @@ var Selection = /** @class */ (function () {
|
|
|
411
411
|
if (recordIndex > -1) {
|
|
412
412
|
if (!isNullOrUndefined(checkbox)) {
|
|
413
413
|
checkbox.classList.add(checkBoxclass);
|
|
414
|
+
var chkstate = checkState === 'check' ? 'checked' : checkState === 'uncheck' ? 'unchecked' : 'mixed';
|
|
415
|
+
tr.querySelector('.e-treecheckselect').setAttribute('aria-checked', checkState === 'check' ? 'true' : checkState === 'uncheck' ? 'false' : 'mixed');
|
|
416
|
+
tr.querySelector('.e-frame').setAttribute('title', 'checkbox' + chkstate);
|
|
414
417
|
}
|
|
415
418
|
}
|
|
416
419
|
};
|
|
@@ -747,13 +747,9 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
747
747
|
this.trigger(getObject('name', args), args);
|
|
748
748
|
};
|
|
749
749
|
TreeGrid.prototype.IsExpandCollapseClicked = function (args) {
|
|
750
|
-
if (
|
|
751
|
-
|| args.target.classList.contains('e-treegridcollapse') || args.target.classList.contains('e-summarycell'))
|
|
752
|
-
args.
|
|
753
|
-
return;
|
|
754
|
-
}
|
|
755
|
-
else if (args['name'] === 'rowDeselecting' && !isNullOrUndefined(args.target) && ((!isNullOrUndefined(args.row) && (!args.row.length)) && (args.target.classList.contains('e-treegridexpand')
|
|
756
|
-
|| args.target.classList.contains('e-treegridcollapse') || args.target.classList.contains('e-summarycell')))) {
|
|
750
|
+
if (!isNullOrUndefined(args.target) && (args.target.classList.contains('e-treegridexpand')
|
|
751
|
+
|| args.target.classList.contains('e-treegridcollapse') || args.target.classList.contains('e-summarycell'))
|
|
752
|
+
&& (!isNullOrUndefined(args.data) && args.data['hasChildRecords'])) {
|
|
757
753
|
args.cancel = true;
|
|
758
754
|
return;
|
|
759
755
|
}
|
|
@@ -1420,7 +1416,9 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
1420
1416
|
}
|
|
1421
1417
|
var treeGridColumn;
|
|
1422
1418
|
var gridColumn;
|
|
1423
|
-
|
|
1419
|
+
if (this.columnModel.length == 0) {
|
|
1420
|
+
index = index === 0 ? -1 : index;
|
|
1421
|
+
}
|
|
1424
1422
|
var gridColumnCollection = [];
|
|
1425
1423
|
for (var i = 0; i < column.length; i++) {
|
|
1426
1424
|
index = index + 1;
|
|
@@ -2910,6 +2908,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
2910
2908
|
}
|
|
2911
2909
|
removeClass([targetEle], 'e-treegridexpand');
|
|
2912
2910
|
}
|
|
2911
|
+
row.querySelectorAll('.e-treerowcell')[0].setAttribute('aria-expanded', action === 'expand' ? 'true' : 'false');
|
|
2913
2912
|
var detailrows = gridRows.filter(function (r) {
|
|
2914
2913
|
return r.classList.contains('e-griddetailrowindex' + record.index + 'level' + (record.level + 1));
|
|
2915
2914
|
});
|
|
@@ -3102,10 +3101,25 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
3102
3101
|
return r.querySelector('.e-gridrowindex' + record.index + 'level' + (record.level + 1));
|
|
3103
3102
|
});
|
|
3104
3103
|
}
|
|
3104
|
+
var gridRowsObject = this.grid.getRowsObject();
|
|
3105
|
+
if (gridRowsObject[record.index].visible !== false) {
|
|
3106
|
+
gridRowsObject[record.index].visible = true;
|
|
3107
|
+
}
|
|
3108
|
+
var detailrows = gridRows.filter(function (r) {
|
|
3109
|
+
return r.classList.contains('e-griddetailrowindex' + record.index + 'level' + (record.level + 1));
|
|
3110
|
+
});
|
|
3105
3111
|
for (var i = 0; i < rows.length; i++) {
|
|
3106
3112
|
if (!isNullOrUndefined(rows[i])) {
|
|
3107
3113
|
rows[i].style.display = displayAction;
|
|
3108
3114
|
}
|
|
3115
|
+
if (!isNullOrUndefined(rows[i]) && !this.allowPaging && !(this.enableVirtualization || this.enableInfiniteScrolling || isRemoteData(this) || isCountRequired(this))) {
|
|
3116
|
+
gridRowsObject[rows[i].rowIndex].visible = displayAction != 'none' ? true : false;
|
|
3117
|
+
if ("parentItem" in record) {
|
|
3118
|
+
if (gridRows[record.parentItem.index].getElementsByClassName('e-treegridcollapse').length) {
|
|
3119
|
+
gridRowsObject[record.index].visible = false;
|
|
3120
|
+
}
|
|
3121
|
+
}
|
|
3122
|
+
}
|
|
3109
3123
|
if (!isNullOrUndefined(movableRows)) {
|
|
3110
3124
|
movableRows[i].style.display = displayAction;
|
|
3111
3125
|
}
|
|
@@ -3121,6 +3135,15 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
3121
3135
|
}
|
|
3122
3136
|
}
|
|
3123
3137
|
}
|
|
3138
|
+
for (var i = 0; i < detailrows.length; i++) {
|
|
3139
|
+
if (!isNullOrUndefined(detailrows[i]) && !this.allowPaging && !(this.enableVirtualization || this.enableInfiniteScrolling || isRemoteData(this) || isCountRequired(this))) {
|
|
3140
|
+
gridRowsObject[detailrows[i].rowIndex].visible = displayAction != 'none' ? true : false;
|
|
3141
|
+
detailrows[i].style.display = displayAction;
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3144
|
+
if (!this.allowPaging && !(this.enableVirtualization || this.enableInfiniteScrolling || isRemoteData(this) || isCountRequired(this))) {
|
|
3145
|
+
this.grid.notify('refresh-Expand-and-Collapse', { rows: this.grid.getRowsObject() });
|
|
3146
|
+
}
|
|
3124
3147
|
};
|
|
3125
3148
|
TreeGrid.prototype.updateAltRow = function (rows) {
|
|
3126
3149
|
if (this.enableAltRow && !this.rowTemplate) {
|
|
@@ -122,6 +122,7 @@ var Render = /** @class */ (function () {
|
|
|
122
122
|
}
|
|
123
123
|
if (iconRequired) {
|
|
124
124
|
addClass([args.cell], 'e-treerowcell');
|
|
125
|
+
args.cell.setAttribute('aria-expanded', data.expanded ? 'true' : 'false');
|
|
125
126
|
var expandIcon = createElement('span', { className: 'e-icons' });
|
|
126
127
|
var expand = void 0;
|
|
127
128
|
if (this.parent.initialRender) {
|
|
@@ -581,7 +581,7 @@ var TreeInterSectionObserver = /** @class */ (function (_super) {
|
|
|
581
581
|
};
|
|
582
582
|
TreeInterSectionObserver.prototype.virtualScrollHandlers = function (callback, onEnterCallback, instance) {
|
|
583
583
|
var _this = this;
|
|
584
|
-
|
|
584
|
+
//const delay: number = Browser.info.name === 'chrome' ? 200 : 100;
|
|
585
585
|
var options = 'options';
|
|
586
586
|
var movableEle = 'movableEle';
|
|
587
587
|
var element = 'element';
|