@syncfusion/ej2-treegrid 19.4.54 → 20.1.47

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 (65) hide show
  1. package/CHANGELOG.md +1 -63
  2. package/dist/ej2-treegrid.umd.min.js +2 -2
  3. package/dist/ej2-treegrid.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-treegrid.es2015.js +4824 -4753
  5. package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
  6. package/dist/es6/ej2-treegrid.es5.js +5029 -4958
  7. package/dist/es6/ej2-treegrid.es5.js.map +1 -1
  8. package/dist/global/ej2-treegrid.min.js +2 -2
  9. package/dist/global/ej2-treegrid.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +9 -9
  12. package/src/treegrid/actions/crud-actions.js +3 -1
  13. package/src/treegrid/actions/edit.js +1 -1
  14. package/src/treegrid/actions/rowdragdrop.d.ts +2 -0
  15. package/src/treegrid/actions/rowdragdrop.js +52 -15
  16. package/src/treegrid/actions/toolbar.js +2 -2
  17. package/src/treegrid/base/data.js +4 -2
  18. package/src/treegrid/base/treegrid-model.d.ts +1 -1
  19. package/src/treegrid/base/treegrid.d.ts +12 -0
  20. package/src/treegrid/base/treegrid.js +51 -2
  21. package/src/treegrid/models/column.d.ts +0 -9
  22. package/src/treegrid/models/column.js +0 -19
  23. package/src/treegrid/utils.js +2 -1
  24. package/styles/bootstrap-dark.css +27 -4
  25. package/styles/bootstrap.css +27 -4
  26. package/styles/bootstrap4.css +21 -4
  27. package/styles/bootstrap5-dark.css +43 -19
  28. package/styles/bootstrap5.css +43 -19
  29. package/styles/fabric-dark.css +27 -4
  30. package/styles/fabric.css +27 -4
  31. package/styles/fluent-dark.css +560 -0
  32. package/styles/fluent-dark.scss +1 -0
  33. package/styles/fluent.css +560 -0
  34. package/styles/fluent.scss +1 -0
  35. package/styles/highcontrast-light.css +27 -4
  36. package/styles/highcontrast.css +27 -4
  37. package/styles/material-dark.css +19 -2
  38. package/styles/material.css +19 -2
  39. package/styles/tailwind-dark.css +41 -80
  40. package/styles/tailwind.css +26 -65
  41. package/styles/treegrid/_bootstrap5-definition.scss +3 -3
  42. package/styles/treegrid/_fluent-dark-definition.scss +1 -0
  43. package/styles/treegrid/_fluent-definition.scss +3 -3
  44. package/styles/treegrid/_layout.scss +62 -7
  45. package/styles/treegrid/_tailwind-definition.scss +3 -3
  46. package/styles/treegrid/bootstrap-dark.css +27 -4
  47. package/styles/treegrid/bootstrap.css +27 -4
  48. package/styles/treegrid/bootstrap4.css +21 -4
  49. package/styles/treegrid/bootstrap5-dark.css +43 -19
  50. package/styles/treegrid/bootstrap5.css +43 -19
  51. package/styles/treegrid/fabric-dark.css +27 -4
  52. package/styles/treegrid/fabric.css +27 -4
  53. package/styles/treegrid/fluent-dark.css +560 -0
  54. package/styles/treegrid/fluent-dark.scss +18 -0
  55. package/styles/treegrid/fluent.css +560 -0
  56. package/styles/treegrid/fluent.scss +18 -0
  57. package/styles/treegrid/highcontrast-light.css +27 -4
  58. package/styles/treegrid/highcontrast.css +27 -4
  59. package/styles/treegrid/icons/_fluent-dark.scss +1 -0
  60. package/styles/treegrid/icons/_tailwind-dark.scss +5 -5
  61. package/styles/treegrid/icons/_tailwind.scss +5 -5
  62. package/styles/treegrid/material-dark.css +19 -2
  63. package/styles/treegrid/material.css +19 -2
  64. package/styles/treegrid/tailwind-dark.css +41 -80
  65. package/styles/treegrid/tailwind.css +26 -65
package/CHANGELOG.md CHANGED
@@ -4,71 +4,9 @@
4
4
 
5
5
  ### Tree Grid
6
6
 
7
- #### New Features
8
-
9
- - `#I367483` - Provided Indent/Outdent toolbar icon based on row selection and deselection.
10
-
11
- #### Bug Fixes
12
-
13
- - `#I362146` - Resolved row customization is not applied when performing an indent or outdent action with the immutable property enabled.
14
-
15
- ## 19.4.52 (2022-02-15)
16
-
17
- ### Tree Grid
18
-
19
- #### Bug Fixes
20
-
21
- - `#I360392` - Resolved infinite scrolling does not work properly when all records are collapsed.
22
- - `#I364449` - Resolved last row border missing after collapsing all records while using setRowData method.
23
- - `#I357347` - Added indent/outdent functionality details in event arguments.
24
-
25
- ## 19.4.47 (2022-01-25)
26
-
27
- ### Tree Grid
28
-
29
- #### Bug Fixes
30
-
31
- - `#332563` - Throws script error in vue platform while exporting with aggregates has been fixed.
32
-
33
- ## 19.4.42 (2022-01-11)
34
-
35
- ### Tree Grid
36
-
37
- #### Bug Fixes
38
-
39
- - `#SF-355817` - Resolved 'No records to display' issue while changing datasource when treeColumnIndex enabled for column template.
40
- - `#SF-360411` - Resolved 'No records to display' issue while expanding all records with virtualization.
41
-
42
- ## 19.4.41 (2022-01-04)
43
-
44
- ### Tree Grid
45
-
46
- #### Bug Fixes
47
-
48
- - `#F171247` - Resolved first row hiding issue in iOS device while using virtualization.
49
-
50
- ## 19.4.40 (2021-12-28)
51
-
52
- ### Tree Grid
53
-
54
- #### Bug Fixes
55
-
56
- - `#I348232` - Resolved expanding and collapsing the records clearing the selection in checkbox selection while using virtualization.
57
- - `#I349138` - The expand / collapse state on excel exported file works fine.
58
-
59
- ## 19.4.38 (2021-12-17)
60
-
61
- ### Tree Grid
62
-
63
- #### New Features
64
-
65
- - Provided support for `expandByKey`, `collapseByKey` methods and improved `expantAtLevel`, `collapseAtLevel` methods for nested records in tree grid.
66
- - Provided Adaptive UI layout support for all devices.
67
-
68
7
  #### Bug Fixes
69
8
 
70
- - `#I348001`,`#I349046`,`#I349018` Throws script error while performing scroll on Virtualization enabled has been fixed.
71
- - `#F167694` Resolved state changes not reflected for Treegrid column directive.
9
+ - `#I369691` - Indent / Outdent functionality can now be enabled without allowRowDragAndDrop property.
72
10
 
73
11
  ## 19.2.44 (2021-06-30)
74
12