@syncfusion/ej2-vue-treegrid 23.2.7 → 24.1.44

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 (39) hide show
  1. package/CHANGELOG.md +16 -55
  2. package/README.md +1 -1
  3. package/dist/ej2-vue-treegrid.umd.min.js +1 -1
  4. package/dist/global/ej2-vue-treegrid.min.js +2 -2
  5. package/package.json +9 -9
  6. package/styles/bootstrap-dark.css +1 -446
  7. package/styles/bootstrap.css +1 -453
  8. package/styles/bootstrap4.css +1 -499
  9. package/styles/bootstrap5-dark.css +1 -489
  10. package/styles/bootstrap5.css +1 -489
  11. package/styles/fabric-dark.css +1 -428
  12. package/styles/fabric.css +1 -421
  13. package/styles/fluent-dark.css +1 -486
  14. package/styles/fluent.css +1 -486
  15. package/styles/highcontrast-light.css +1 -419
  16. package/styles/highcontrast.css +1 -425
  17. package/styles/material-dark.css +1 -462
  18. package/styles/material.css +1 -496
  19. package/styles/material3-dark.css +1 -553
  20. package/styles/material3.css +1 -609
  21. package/styles/tailwind-dark.css +1 -435
  22. package/styles/tailwind.css +1 -435
  23. package/styles/treegrid/bootstrap-dark.css +1 -446
  24. package/styles/treegrid/bootstrap.css +1 -453
  25. package/styles/treegrid/bootstrap4.css +1 -499
  26. package/styles/treegrid/bootstrap5-dark.css +1 -489
  27. package/styles/treegrid/bootstrap5.css +1 -489
  28. package/styles/treegrid/fabric-dark.css +1 -428
  29. package/styles/treegrid/fabric.css +1 -421
  30. package/styles/treegrid/fluent-dark.css +1 -486
  31. package/styles/treegrid/fluent.css +1 -486
  32. package/styles/treegrid/highcontrast-light.css +1 -419
  33. package/styles/treegrid/highcontrast.css +1 -425
  34. package/styles/treegrid/material-dark.css +1 -462
  35. package/styles/treegrid/material.css +1 -496
  36. package/styles/treegrid/material3-dark.css +1 -553
  37. package/styles/treegrid/material3.css +1 -609
  38. package/styles/treegrid/tailwind-dark.css +1 -435
  39. package/styles/treegrid/tailwind.css +1 -435
package/CHANGELOG.md CHANGED
@@ -2,51 +2,7 @@
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)
5
+ ## 24.1.41 (2023-12-18)
50
6
 
51
7
  ### Tree Grid
52
8
 
@@ -58,18 +14,23 @@
58
14
  - 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
15
  - `#I323425`, `#I332700`, `#I344742`, `#I375307` - Provided support for frozen column with virtualization enabled.
60
16
 
61
- #### Breaking changes
17
+ #### Breaking Changes
62
18
 
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.
19
+ - 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
20
 
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`() |
21
+ | Removed methods | Suggested to use alternative methods |
22
+ |---|---|
23
+ | `getMoavableRows`, `getFrozenRightRows` | `getRows` |
24
+ | `getMovableRowByIndex`, `getFrozenRowByIndex`, `getFrozenRightRowByIndex` | `getRowByIndex` |
25
+ | `getMovableCellFromIndex`, `getFrozenRightCellFromIndex` | `getCellFromIndex` |
26
+ | `getMovableDataRows`, `getFrozenRightDataRows`, `getFrozenDataRows` | `getDataRows` |
27
+ | `getAllMovableDataRows`, `getAllFrozenDataRows`, `getAllFrozenRightDataRows` | `getAllDataRows` |
28
+ | `getMovableColumnHeaderByIndex`, `getFrozenRightColumnHeaderByIndex`, `getFrozenLeftColumnHeaderByIndex` | `getColumnHeaderByIndex` |
29
+ | `getFrozenRightHeader`, `getMovableHeader` | `getHeaderContent` |
30
+ | `getFrozenRightRowsObject`, `getMovableRwsObject` | `getRowsObject` |
31
+ | `getFrozenRightHeaderTbody`, `getMovableHeaderTbody`, `getFrozenHeaderTbody` | `getContent().querySelector(‘tbody’)` |
32
+ | `getFrozenLeftContentTbody`, `getFrozenRightContentTbody`, `getMovableContentTbody` | `getHeaderContent().querySelector(‘tbody’)` |
33
+ | `getFrozenRightContent`, `getMovableContent` | `getContent` |
73
34
 
74
35
  ## 20.2.36 (2022-06-30)
75
36
 
package/README.md CHANGED
@@ -181,4 +181,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-vue-ui-components/b
181
181
 
182
182
  See [LICENSE FILE](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license?utm_source=npm&utm_medium=listing&utm_campaign=vue-grid-npm) for more info.
183
183
 
184
- © Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
184
+ © Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-vue-treegrid.umd.min.js
3
- * version : 23.2.7
3
+ * version : 24.1.44
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