@syncfusion/ej2-treegrid 21.2.9 → 22.1.34

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 (41) hide show
  1. package/.eslintrc.json +1 -0
  2. package/CHANGELOG.md +4 -80
  3. package/dist/ej2-treegrid.min.js +2 -2
  4. package/dist/ej2-treegrid.umd.min.js +2 -2
  5. package/dist/ej2-treegrid.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-treegrid.es2015.js +55 -20
  7. package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
  8. package/dist/es6/ej2-treegrid.es5.js +57 -22
  9. package/dist/es6/ej2-treegrid.es5.js.map +1 -1
  10. package/dist/global/ej2-treegrid.min.js +2 -2
  11. package/dist/global/ej2-treegrid.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +9 -9
  14. package/src/treegrid/actions/edit.js +23 -9
  15. package/src/treegrid/actions/freeze-column.js +5 -1
  16. package/src/treegrid/actions/summary.js +1 -0
  17. package/src/treegrid/actions/virtual-scroll.js +2 -1
  18. package/src/treegrid/base/treegrid-model.d.ts +9 -4
  19. package/src/treegrid/base/treegrid.d.ts +10 -4
  20. package/src/treegrid/base/treegrid.js +14 -6
  21. package/src/treegrid/models/column.d.ts +18 -10
  22. package/src/treegrid/models/edit-settings-model.d.ts +2 -1
  23. package/src/treegrid/models/edit-settings.d.ts +2 -1
  24. package/src/treegrid/models/page-settings-model.d.ts +2 -1
  25. package/src/treegrid/models/page-settings.d.ts +2 -1
  26. package/src/treegrid/models/summary-model.d.ts +3 -1
  27. package/src/treegrid/models/summary.d.ts +3 -1
  28. package/src/treegrid/renderer/render.js +7 -1
  29. package/src/treegrid/renderer/virtual-tree-content-render.js +6 -5
  30. package/styles/material3-dark.css +545 -0
  31. package/styles/material3-dark.scss +3 -0
  32. package/styles/material3.css +601 -0
  33. package/styles/material3.scss +3 -0
  34. package/styles/treegrid/_material3-dark-definition.scss +1 -0
  35. package/styles/treegrid/_material3-definition.scss +28 -0
  36. package/styles/treegrid/icons/_material3-dark.scss +1 -0
  37. package/styles/treegrid/icons/_material3.scss +12 -1
  38. package/styles/treegrid/material3-dark.css +545 -0
  39. package/styles/treegrid/material3-dark.scss +19 -0
  40. package/styles/treegrid/material3.css +601 -0
  41. package/styles/treegrid/material3.scss +19 -0
package/.eslintrc.json CHANGED
@@ -37,6 +37,7 @@
37
37
  "security/detect-possible-timing-attacks":"error",
38
38
  "security/detect-pseudoRandomBytes":"error",
39
39
  "security/detect-new-buffer":"error",
40
+ "security/detect-bidi-characters":"error",
40
41
  "@typescript-eslint/no-inferrable-types": "off",
41
42
  "@typescript-eslint/ban-types": ["warn", {
42
43
  "types": {
package/CHANGELOG.md CHANGED
@@ -4,86 +4,10 @@
4
4
 
5
5
  ### Tree Grid
6
6
 
7
- #### Bug Fixes
8
-
9
- - `#I464729`, `#I465729` - Resolved issue where virtualization with scrolling caused records to repeat.
10
- - `#I464999` - Fixed issue where white space was displayed while scrolling through nested records in virtualization.
11
- - `#I457827`, `#I182340`, `#I465331`, `#I465871` - Fixed issue where 'No Records to display' message wasn't being displayed when using frozen columns with `enableCollapseAll` Property.
12
- - `#I464520` - Fixed an issue where clearing the search bar in EJ2 would result in a message saying "No records to display."
13
- - `#I459187` - Fixed an issue where records were getting missed in the viewport when adding a new record in a specific position.
14
-
15
- ## 21.2.8 (2023-05-30)
16
-
17
- ### Tree Grid
18
-
19
- #### Bug Fixes
20
-
21
- - `#I461200` - Resolved After expanding parent record in virtualization enabled remote data, the child records were not updated properly.
22
- - `#I459187` -Fixed an issue where the Records are missing on adding a record as child and below.
23
- - `#I462460` , `#I461924` - Resolved Script Error throws while using Virtualization with Collapse All action.
24
-
25
- ## 21.2.6 (2023-05-23)
26
-
27
- ### Tree Grid
28
-
29
- #### Bug Fixes
30
-
31
- - `#I459413` - Fixed an issue where the expanded status in remote data was not updating correctly for nested child records.
32
-
33
- ## 21.2.5 (2023-05-16)
34
-
35
- ### Tree Grid
36
-
37
- #### Bug Fixes
38
-
39
- - `#I826966` - Fixed a bug where records were getting missed when adding a record at the bottom of the virtualization enabled sample.
40
- - `#I454734` - Resolved filtering is not working properly when using remote data with hierarchy mode as "Both".
41
-
42
- ## 21.2.4 (2023-05-09)
43
-
44
- ### Tree Grid
45
-
46
- #### Bug Fixes
47
-
48
- - `#I181658` - Fixed the issue where a script error was thrown when moving a dropdown option with key input (Arrow Keys) in edit template.
49
-
50
- ## 21.2.3 (2023-05-03)
51
-
52
- ### Tree Grid
53
-
54
- #### Bug Fixes
55
-
56
- - `#I440455`, `#F180980` - Resolved the issue where the data source was not being rendered in the row template sample.
57
-
58
- ## 21.1.41 (2023-04-18)
59
-
60
- ### Tree Grid
61
-
62
- #### Bug Fixes
63
-
64
- - `#I448090` - The excel filtering dialog box has been fixed to display the data source after filtering a column.
65
- - `#I414166` - Virtualization has been resolved when enabling it in the load event.
66
-
67
- ## 21.1.38 (2023-04-04)
68
-
69
- ### Tree Grid
70
-
71
- #### Bug Fixes
72
-
73
- - `#I407372`, `#I449067`, `#I424805` - Fixed console error when dragging and dropping a record and then pressing the tab key.
74
- - `#I441661` - Fixed incorrect checkbox selection update after selecting a record and collapsing in checkboxOnly mode.
75
- - `#I449191` - Fixed incorrect cell index selection in the getSelectedRowCellIndexes method when collapsing a record.
76
- - `#I442710` - Resolved issue of row dropping at the bottom segment (with the last record) not working properly.
77
- - `#I444506` - Resolved issue of last row border not being added when reordering a row to the last index.
78
-
79
- ## 21.1.35 (2023-03-23)
80
-
81
- ### Tree Grid
82
-
83
- #### Breaking Changes
7
+ #### Features
84
8
 
85
- - Unnecessary role attributes for Tree Grid row cell and header elements have been removed to enhance accessibility standards.
86
- - The `td` element for `e-detailcell` in [detail element](https://ej2.syncfusion.com/documentation/treegrid/row/detail-template/) has been only changed from a `td` element to the `th` element to enhance accessibility standards.
9
+ - Provided support for inline editing with virtualization enabled. Please find the demo [here](https://ej2.syncfusion.com/demos/#/bootstrap5/tree-grid/virtual-scrolling.html).
10
+ - `#I323425`, `#I332700`, `#I344742`, `#I375307` - Provided support for frozen column with virtualization enabled.
87
11
 
88
12
  ## 20.2.36 (2022-06-30)
89
13
 
@@ -235,4 +159,4 @@
235
159
  #### Bug Fixes
236
160
 
237
161
  - Expanding and Collapsing records is working fine when `pageSizeMode` is set as `All`.
238
- - `expandAtLevel`, `collapseAtLevel`, `expandAll` and `collapseAll` methods are working fine when `pageSizeMode` is set as `All`.
162
+ - `expandAtLevel`, `collapseAtLevel`, `expandAll` and `collapseAll` methods are working fine when `pageSizeMode` is set as `All`.