@syncfusion/ej2-vue-treegrid 19.2.60 → 19.3.43

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +14 -74
  2. package/dist/ej2-vue-treegrid.umd.min.js +1 -10
  3. package/dist/es6/ej2-vue-treegrid.es2015.js +22 -0
  4. package/dist/es6/ej2-vue-treegrid.es2015.js.map +1 -1
  5. package/dist/es6/ej2-vue-treegrid.es5.js +22 -0
  6. package/dist/es6/ej2-vue-treegrid.es5.js.map +1 -1
  7. package/dist/global/ej2-vue-treegrid.min.js +2 -2
  8. package/package.json +8 -8
  9. package/src/treegrid/treegrid.component.d.ts +7 -0
  10. package/src/treegrid/treegrid.component.js +22 -0
  11. package/styles/bootstrap-dark.css +7 -3
  12. package/styles/bootstrap.css +7 -3
  13. package/styles/bootstrap4.css +7 -3
  14. package/styles/bootstrap5-dark.css +530 -0
  15. package/styles/bootstrap5-dark.scss +1 -0
  16. package/styles/bootstrap5.css +530 -0
  17. package/styles/bootstrap5.scss +1 -0
  18. package/styles/fabric-dark.css +7 -3
  19. package/styles/fabric.css +7 -3
  20. package/styles/highcontrast-light.css +7 -3
  21. package/styles/highcontrast.css +9 -5
  22. package/styles/material-dark.css +26 -22
  23. package/styles/material.css +5 -1
  24. package/styles/tailwind-dark.css +34 -30
  25. package/styles/tailwind.css +5 -1
  26. package/styles/treegrid/bootstrap-dark.css +7 -3
  27. package/styles/treegrid/bootstrap.css +7 -3
  28. package/styles/treegrid/bootstrap4.css +7 -3
  29. package/styles/treegrid/bootstrap5-dark.css +530 -0
  30. package/styles/treegrid/bootstrap5-dark.scss +1 -0
  31. package/styles/treegrid/bootstrap5.css +530 -0
  32. package/styles/treegrid/bootstrap5.scss +1 -0
  33. package/styles/treegrid/fabric-dark.css +7 -3
  34. package/styles/treegrid/fabric.css +7 -3
  35. package/styles/treegrid/highcontrast-light.css +7 -3
  36. package/styles/treegrid/highcontrast.css +9 -5
  37. package/styles/treegrid/material-dark.css +26 -22
  38. package/styles/treegrid/material.css +5 -1
  39. package/styles/treegrid/tailwind-dark.css +34 -30
  40. package/styles/treegrid/tailwind.css +5 -1
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-treegrid@*",
3
- "_id": "@syncfusion/ej2-vue-treegrid@19.2.59",
3
+ "_id": "@syncfusion/ej2-vue-treegrid@18.9.1",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-05U1Qt5zln88uUlznpxGj1H/ybheHF5ZYUBOWBVJDEvHBMJ9VqiassouofWqt6q2/OPoaRlfaKChhzpWrN05HQ==",
5
+ "_integrity": "sha512-BVHhjPotmSzF87e73ums2xp29DYIraPs5WLuCCv6pto7Nwzxno3PUTY4iB3nY/WjUCdNWxgtsiC0nX4r9KXAWA==",
6
6
  "_location": "/@syncfusion/ej2-vue-treegrid",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-vue-treegrid/-/ej2-vue-treegrid-19.2.59.tgz",
23
- "_shasum": "f1cd602d223ba60eb1edaac05a2cba89e021ffa6",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-treegrid/-/ej2-vue-treegrid-18.9.1.tgz",
23
+ "_shasum": "c6fb94ac5bd4e61f1c14f36589e56d70671bf2fd",
24
24
  "_spec": "@syncfusion/ej2-vue-treegrid@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~19.2.60",
35
- "@syncfusion/ej2-treegrid": "19.2.60",
36
- "@syncfusion/ej2-vue-base": "~19.2.60"
34
+ "@syncfusion/ej2-base": "~19.3.43",
35
+ "@syncfusion/ej2-treegrid": "19.3.43",
36
+ "@syncfusion/ej2-vue-base": "~19.3.43"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 TreeGrid Component for Vue",
@@ -62,6 +62,6 @@
62
62
  "type": "git",
63
63
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
64
64
  },
65
- "version": "19.2.60",
65
+ "version": "19.3.43",
66
66
  "sideEffects": false
67
67
  }
@@ -73,9 +73,16 @@ export declare class TreeGridComponent extends ComponentBase {
73
73
  getDataRows(): Object[];
74
74
  getFooterContent(): Object;
75
75
  getFooterContentTable(): Object;
76
+ getFrozenLeftColumnHeaderByIndex(index: number): Object;
77
+ getFrozenRightCellFromIndex(rowIndex: number, columnIndex: number): Object;
78
+ getFrozenRightColumnHeaderByIndex(index: number): Object;
79
+ getFrozenRightDataRows(): Object[];
80
+ getFrozenRightRowByIndex(index: number): Object;
81
+ getFrozenRightRows(): Object[];
76
82
  getHeaderContent(): Object;
77
83
  getHeaderTable(): Object;
78
84
  getMovableCellFromIndex(rowIndex: number, columnIndex: number): Object;
85
+ getMovableColumnHeaderByIndex(index: number): Object;
79
86
  getMovableDataRows(): Object[];
80
87
  getMovableRowByIndex(index: number): Object;
81
88
  getMovableRows(): Object[];
@@ -104,6 +104,7 @@ var TreeGridComponent = /** @class */ (function (_super) {
104
104
  }
105
105
  else {
106
106
  _this.$emit('update:' + key, prop[key]);
107
+ _this.$emit('modelchanged', prop[key]);
107
108
  }
108
109
  }
109
110
  });
@@ -280,6 +281,24 @@ var TreeGridComponent = /** @class */ (function (_super) {
280
281
  TreeGridComponent.prototype.getFooterContentTable = function () {
281
282
  return this.ej2Instances.getFooterContentTable();
282
283
  };
284
+ TreeGridComponent.prototype.getFrozenLeftColumnHeaderByIndex = function (index) {
285
+ return this.ej2Instances.getFrozenLeftColumnHeaderByIndex(index);
286
+ };
287
+ TreeGridComponent.prototype.getFrozenRightCellFromIndex = function (rowIndex, columnIndex) {
288
+ return this.ej2Instances.getFrozenRightCellFromIndex(rowIndex, columnIndex);
289
+ };
290
+ TreeGridComponent.prototype.getFrozenRightColumnHeaderByIndex = function (index) {
291
+ return this.ej2Instances.getFrozenRightColumnHeaderByIndex(index);
292
+ };
293
+ TreeGridComponent.prototype.getFrozenRightDataRows = function () {
294
+ return this.ej2Instances.getFrozenRightDataRows();
295
+ };
296
+ TreeGridComponent.prototype.getFrozenRightRowByIndex = function (index) {
297
+ return this.ej2Instances.getFrozenRightRowByIndex(index);
298
+ };
299
+ TreeGridComponent.prototype.getFrozenRightRows = function () {
300
+ return this.ej2Instances.getFrozenRightRows();
301
+ };
283
302
  TreeGridComponent.prototype.getHeaderContent = function () {
284
303
  return this.ej2Instances.getHeaderContent();
285
304
  };
@@ -289,6 +308,9 @@ var TreeGridComponent = /** @class */ (function (_super) {
289
308
  TreeGridComponent.prototype.getMovableCellFromIndex = function (rowIndex, columnIndex) {
290
309
  return this.ej2Instances.getMovableCellFromIndex(rowIndex, columnIndex);
291
310
  };
311
+ TreeGridComponent.prototype.getMovableColumnHeaderByIndex = function (index) {
312
+ return this.ej2Instances.getMovableColumnHeaderByIndex(index);
313
+ };
292
314
  TreeGridComponent.prototype.getMovableDataRows = function () {
293
315
  return this.ej2Instances.getMovableDataRows();
294
316
  };
@@ -176,6 +176,10 @@
176
176
  line-height: 18px;
177
177
  }
178
178
 
179
+ .e-treegrid .e-icons.e-none::before {
180
+ content: '';
181
+ }
182
+
179
183
  .e-treegrid .e-treegridexpand::before,
180
184
  .e-treegrid .e-treegridcollapse::before {
181
185
  text-align: center;
@@ -241,8 +245,8 @@
241
245
  }
242
246
 
243
247
  .e-treegrid .e-hierarchycheckbox .e-frame {
244
- height: 18px;
245
- width: 18px;
248
+ height: 20px;
249
+ width: 20px;
246
250
  }
247
251
 
248
252
  .e-treegrid .e-checkselection .e-frozenheader .e-rowcell,
@@ -266,7 +270,7 @@
266
270
 
267
271
  .e-treegrid .e-treecell {
268
272
  display: table-cell;
269
- line-height: 16px;
273
+ line-height: 10px;
270
274
  }
271
275
 
272
276
  .e-treegrid .e-grid.e-wrap .e-rowcell .e-treecolumn-container {
@@ -177,6 +177,10 @@
177
177
  line-height: 18px;
178
178
  }
179
179
 
180
+ .e-treegrid .e-icons.e-none::before {
181
+ content: '';
182
+ }
183
+
180
184
  .e-treegrid .e-treegridexpand::before,
181
185
  .e-treegrid .e-treegridcollapse::before {
182
186
  text-align: center;
@@ -242,8 +246,8 @@
242
246
  }
243
247
 
244
248
  .e-treegrid .e-hierarchycheckbox .e-frame {
245
- height: 18px;
246
- width: 18px;
249
+ height: 20px;
250
+ width: 20px;
247
251
  }
248
252
 
249
253
  .e-treegrid .e-checkselection .e-frozenheader .e-rowcell,
@@ -267,7 +271,7 @@
267
271
 
268
272
  .e-treegrid .e-treecell {
269
273
  display: table-cell;
270
- line-height: 16px;
274
+ line-height: 10px;
271
275
  }
272
276
 
273
277
  .e-treegrid .e-grid.e-wrap .e-rowcell .e-treecolumn-container {
@@ -212,6 +212,10 @@
212
212
  line-height: 16px;
213
213
  }
214
214
 
215
+ .e-treegrid .e-icons.e-none::before {
216
+ content: '';
217
+ }
218
+
215
219
  .e-treegrid .e-treegridexpand::before,
216
220
  .e-treegrid .e-treegridcollapse::before {
217
221
  text-align: center;
@@ -277,8 +281,8 @@
277
281
  }
278
282
 
279
283
  .e-treegrid .e-hierarchycheckbox .e-frame {
280
- height: 18px;
281
- width: 18px;
284
+ height: 14px;
285
+ width: 14px;
282
286
  }
283
287
 
284
288
  .e-treegrid .e-checkselection .e-frozenheader .e-rowcell,
@@ -302,7 +306,7 @@
302
306
 
303
307
  .e-treegrid .e-treecell {
304
308
  display: table-cell;
305
- line-height: 16px;
309
+ line-height: 10px;
306
310
  }
307
311
 
308
312
  .e-treegrid .e-grid.e-wrap .e-rowcell .e-treecolumn-container {