@syncfusion/ej2-vue-treegrid 23.2.7 → 24.1.41

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 (38) hide show
  1. package/CHANGELOG.md +15 -56
  2. package/dist/ej2-vue-treegrid.umd.min.js +1 -1
  3. package/dist/global/ej2-vue-treegrid.min.js +2 -2
  4. package/package.json +9 -9
  5. package/styles/bootstrap-dark.css +1 -446
  6. package/styles/bootstrap.css +1 -453
  7. package/styles/bootstrap4.css +1 -499
  8. package/styles/bootstrap5-dark.css +1 -489
  9. package/styles/bootstrap5.css +1 -489
  10. package/styles/fabric-dark.css +1 -428
  11. package/styles/fabric.css +1 -421
  12. package/styles/fluent-dark.css +1 -486
  13. package/styles/fluent.css +1 -486
  14. package/styles/highcontrast-light.css +1 -419
  15. package/styles/highcontrast.css +1 -425
  16. package/styles/material-dark.css +1 -462
  17. package/styles/material.css +1 -496
  18. package/styles/material3-dark.css +1 -553
  19. package/styles/material3.css +1 -609
  20. package/styles/tailwind-dark.css +1 -435
  21. package/styles/tailwind.css +1 -435
  22. package/styles/treegrid/bootstrap-dark.css +1 -446
  23. package/styles/treegrid/bootstrap.css +1 -453
  24. package/styles/treegrid/bootstrap4.css +1 -499
  25. package/styles/treegrid/bootstrap5-dark.css +1 -489
  26. package/styles/treegrid/bootstrap5.css +1 -489
  27. package/styles/treegrid/fabric-dark.css +1 -428
  28. package/styles/treegrid/fabric.css +1 -421
  29. package/styles/treegrid/fluent-dark.css +1 -486
  30. package/styles/treegrid/fluent.css +1 -486
  31. package/styles/treegrid/highcontrast-light.css +1 -419
  32. package/styles/treegrid/highcontrast.css +1 -425
  33. package/styles/treegrid/material-dark.css +1 -462
  34. package/styles/treegrid/material.css +1 -496
  35. package/styles/treegrid/material3-dark.css +1 -553
  36. package/styles/treegrid/material3.css +1 -609
  37. package/styles/treegrid/tailwind-dark.css +1 -435
  38. package/styles/treegrid/tailwind.css +1 -435
package/CHANGELOG.md CHANGED
@@ -2,52 +2,6 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### TreeGrid
6
-
7
- #### Bug Fixes
8
-
9
- - `#I517211` - Exception throws on dynamically changing the stacked column and normal column.
10
- - `#FB48417` - Fixed the issue where a Script Error was thrown when searching for an invalid value and when rendering empty data.
11
-
12
- ## 23.2.6 (2023-11-28)
13
-
14
- ### TreeGrid
15
-
16
- #### Bug Fixes
17
-
18
- - `#I522828` - Fixed an issue where the Excel export datasource properties were not being applied correctly for remote data binding.
19
- - `#I523652` - Fixed an issue where the cell saving functionality was not working correctly after pressing enter or update in the treegrid.
20
-
21
- ## 23.2.4 (2023-11-20)
22
-
23
- ### TreeGrid
24
-
25
- #### Bug Fixes
26
-
27
- - `#I511389` - Fixed an issue where the expand all/collapse all functionality was not working correctly when the `EnableCollapseAll` property enabled in the virtualization feature.
28
- - `#I507506` - Fixed an issue where the template was not rendered when using frozen columns in a treegrid.
29
- - `#I512641` - Fixed the issue where the header checkbox was not functioning correctly in the checkbox column.
30
- - `#I520059` - Fixed an issue where the clipboard functionality (Copy/Paste) on excel would paste hidden column values when selecting a row.
31
-
32
- ## 23.1.43 (2023-10-31)
33
-
34
- ### TreeGrid
35
-
36
- #### Bug Fixes
37
-
38
- - `#I499002` - Fixed a bug where a script error would occur when editing and focusing out on a record.
39
- - `#I502660` - Fixed issue with external filter not working properly when using virtualization feature.
40
-
41
- ## 23.1.39 (2023-10-04)
42
-
43
- ### Tree Grid
44
-
45
- #### Bug Fixes
46
-
47
- - `#I502102` - Fixed the issue where the drop index was displaying as `Nan` when dropping a row in white space.
48
-
49
- ## 23.1.36 (2023-09-15)
50
-
51
5
  ### Tree Grid
52
6
 
53
7
  #### Features
@@ -58,18 +12,23 @@
58
12
  - Provided support for inline editing with virtualization enabled. Please find the demo [here](https://ej2.syncfusion.com/vue/demos/#/bootstrap5/tree-grid/virtual-scrolling.html).
59
13
  - `#I323425`, `#I332700`, `#I344742`, `#I375307` - Provided support for frozen column with virtualization enabled.
60
14
 
61
- #### Breaking changes
15
+ #### Breaking Changes
62
16
 
63
- - Optimized the frozen columns feature in Tree Grid and thus changed the dom structure of tree grid from two table to single table architecture. Also, the following methods have been deprecated, and it's recommended to use the following alternatives instead.
17
+ - Optimized the frozen columns feature in Tree Grid and thus changed the dom structure of tree grid from two table to single table architecture. Also, the following methods have been removed, and it's recommended to use the following alternatives instead.
64
18
 
65
- | Deprecated Methods | Previous | Current | Suggested Alternative Methods |
66
- |---|---|---|---|
67
- | | `getMoavableRows` | This method returns only the movable table rows `(tr's)`. | This method will return all table rows `(tr's)` of the entire table. The movable cells within the tr element can be selected using the `e-unfreeze` class. | `getRows()` | |
68
- | `getFrozenRightRows()` | This method returns only the table rows `(tr's)` from the freeze right table. | This method will return all the rows `(tr’s)` of the entire table. The frozen right cells can be selected using the `e-rightfreeze` class. | `getRows()` |
69
- | `getMovableRowByIndex()` <br> `getFrozenRightRowByIndex()` | * `getMovableRowByIndex` - select a movable row <br> *`getFrozenRightRowByIndex` - select a right freeze row. | This method will return the table row `(tr)` based on the given index. Additionally, class names for table cells `(td's)` have been separated as follows: <br> * Left-Freeze: `e-leftfreeze` <br> * Movable: `e-unfreeze` <br> | `getRowByIndex()` |
70
- | `getMovableCellFromIndex()` <br> `getFrozenRightCellFromIndex()` | * `getMovableCellFromIndex()` - select a particular cell in the movable table. <br> *`getFrozenRightCellFromIndex()` - select a particular cell in the right freeze table. | No change | `getCellFromIndex()` |
71
- | `getMovableDataRows()` <br> `getFrozenRightDataRows()` | These methods return the viewport data rows for the freeze, movable tables separately. | This method, will return the entire viewport data rows. | `getDataRows()` |
72
- | `getMovableColumnHeaderByIndex()` <br> `getFrozenRightColumnHeaderByIndex()` <br> `getFrozenLeftColumnHeaderByIndex()` | These methods select the movable, right freeze, and left freeze headers from the table separately. | No change | `getColumnHeaderByIndex`() |
19
+ | Removed methods | Suggested to use alternative methods |
20
+ |---|---|
21
+ | `getMoavableRows`, `getFrozenRightRows` | `getRows` |
22
+ | `getMovableRowByIndex`, `getFrozenRowByIndex`, `getFrozenRightRowByIndex` | `getRowByIndex` |
23
+ | `getMovableCellFromIndex`, `getFrozenRightCellFromIndex` | `getCellFromIndex` |
24
+ | `getMovableDataRows`, `getFrozenRightDataRows`, `getFrozenDataRows` | `getDataRows` |
25
+ | `getAllMovableDataRows`, `getAllFrozenDataRows`, `getAllFrozenRightDataRows` | `getAllDataRows` |
26
+ | `getMovableColumnHeaderByIndex`, `getFrozenRightColumnHeaderByIndex`, `getFrozenLeftColumnHeaderByIndex` | `getColumnHeaderByIndex` |
27
+ | `getFrozenRightHeader`, `getMovableHeader` | `getHeaderContent` |
28
+ | `getFrozenRightRowsObject`, `getMovableRwsObject` | `getRowsObject` |
29
+ | `getFrozenRightHeaderTbody`, `getMovableHeaderTbody`, `getFrozenHeaderTbody` | `getContent().querySelector(‘tbody’)` |
30
+ | `getFrozenLeftContentTbody`, `getFrozenRightContentTbody`, `getMovableContentTbody` | `getHeaderContent().querySelector(‘tbody’)` |
31
+ | `getFrozenRightContent`, `getMovableContent` | `getContent` |
73
32
 
74
33
  ## 20.2.36 (2022-06-30)
75
34
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-vue-treegrid.umd.min.js
3
- * version : 23.2.7
3
+ * version : 24.1.41
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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