@syncfusion/ej2-treegrid 19.2.60 → 19.3.46

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 (80) hide show
  1. package/.eslintrc.json +1 -1
  2. package/CHANGELOG.md +10 -54
  3. package/dist/ej2-treegrid.umd.min.js +2 -2
  4. package/dist/ej2-treegrid.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-treegrid.es2015.js +519 -112
  6. package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
  7. package/dist/es6/ej2-treegrid.es5.js +568 -148
  8. package/dist/es6/ej2-treegrid.es5.js.map +1 -1
  9. package/dist/global/ej2-treegrid.min.js +2 -2
  10. package/dist/global/ej2-treegrid.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +9 -9
  13. package/src/treegrid/actions/batch-edit.js +19 -6
  14. package/src/treegrid/actions/crud-actions.js +1 -0
  15. package/src/treegrid/actions/edit.js +52 -7
  16. package/src/treegrid/actions/freeze-column.js +11 -0
  17. package/src/treegrid/actions/rowdragdrop.js +69 -45
  18. package/src/treegrid/actions/selection.js +29 -6
  19. package/src/treegrid/actions/virtual-scroll.js +13 -2
  20. package/src/treegrid/base/constant.d.ts +4 -0
  21. package/src/treegrid/base/constant.js +4 -0
  22. package/src/treegrid/base/treegrid-model.d.ts +8 -74
  23. package/src/treegrid/base/treegrid.d.ts +101 -77
  24. package/src/treegrid/base/treegrid.js +209 -24
  25. package/src/treegrid/models/column.d.ts +18 -19
  26. package/src/treegrid/models/filter-settings-model.d.ts +0 -3
  27. package/src/treegrid/models/filter-settings.d.ts +0 -3
  28. package/src/treegrid/models/page-settings-model.d.ts +0 -4
  29. package/src/treegrid/models/page-settings.d.ts +0 -4
  30. package/src/treegrid/models/search-settings-model.d.ts +0 -2
  31. package/src/treegrid/models/search-settings.d.ts +0 -2
  32. package/src/treegrid/models/selection-settings-model.d.ts +0 -4
  33. package/src/treegrid/models/selection-settings.d.ts +0 -4
  34. package/src/treegrid/models/sort-settings-model.d.ts +0 -2
  35. package/src/treegrid/models/sort-settings.d.ts +0 -2
  36. package/src/treegrid/models/summary-model.d.ts +0 -1
  37. package/src/treegrid/models/summary.d.ts +0 -1
  38. package/src/treegrid/renderer/render.js +37 -12
  39. package/src/treegrid/renderer/virtual-row-model-generator.d.ts +1 -0
  40. package/src/treegrid/renderer/virtual-row-model-generator.js +12 -0
  41. package/src/treegrid/renderer/virtual-tree-content-render.d.ts +3 -2
  42. package/src/treegrid/renderer/virtual-tree-content-render.js +113 -46
  43. package/styles/bootstrap-dark.css +7 -3
  44. package/styles/bootstrap.css +7 -3
  45. package/styles/bootstrap4.css +12 -3
  46. package/styles/bootstrap5-dark.css +535 -0
  47. package/styles/bootstrap5-dark.scss +1 -0
  48. package/styles/bootstrap5.css +535 -0
  49. package/styles/bootstrap5.scss +1 -0
  50. package/styles/fabric-dark.css +7 -3
  51. package/styles/fabric.css +7 -3
  52. package/styles/highcontrast-light.css +7 -3
  53. package/styles/highcontrast.css +9 -5
  54. package/styles/material-dark.css +26 -22
  55. package/styles/material.css +5 -1
  56. package/styles/tailwind-dark.css +34 -30
  57. package/styles/tailwind.css +5 -1
  58. package/styles/treegrid/_bootstrap5-dark-definition.scss +1 -0
  59. package/styles/treegrid/_bootstrap5-definition.scss +31 -0
  60. package/styles/treegrid/_layout.scss +7 -3
  61. package/styles/treegrid/_tailwind-dark-definition.scss +1 -33
  62. package/styles/treegrid/_tailwind-definition.scss +13 -15
  63. package/styles/treegrid/bootstrap-dark.css +7 -3
  64. package/styles/treegrid/bootstrap.css +7 -3
  65. package/styles/treegrid/bootstrap4.css +12 -3
  66. package/styles/treegrid/bootstrap5-dark.css +535 -0
  67. package/styles/treegrid/bootstrap5-dark.scss +18 -0
  68. package/styles/treegrid/bootstrap5.css +535 -0
  69. package/styles/treegrid/bootstrap5.scss +18 -0
  70. package/styles/treegrid/fabric-dark.css +7 -3
  71. package/styles/treegrid/fabric.css +7 -3
  72. package/styles/treegrid/highcontrast-light.css +7 -3
  73. package/styles/treegrid/highcontrast.css +9 -5
  74. package/styles/treegrid/icons/_bootstrap5-dark.scss +1 -0
  75. package/styles/treegrid/icons/_bootstrap5.scss +26 -0
  76. package/styles/treegrid/icons/_highcontrast.scss +2 -2
  77. package/styles/treegrid/material-dark.css +26 -22
  78. package/styles/treegrid/material.css +5 -1
  79. package/styles/treegrid/tailwind-dark.css +34 -30
  80. package/styles/treegrid/tailwind.css +5 -1
package/.eslintrc.json CHANGED
@@ -241,4 +241,4 @@
241
241
  }
242
242
  }
243
243
  ]
244
- }
244
+ }
package/CHANGELOG.md CHANGED
@@ -6,78 +6,34 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `#I339350` - Text content is displayed properly when allowTextWrap and checkbox column is enabled.
9
+ - `#I343755` - Resolved record missing while using single root node with Virtualization and ExpandStateMapping enabled.
10
+ - `#I335120` - Resolved Deleting child records and creation of duplicate records after row drag and drop performed.
10
11
 
11
- ## 19.2.59 (2021-08-31)
12
+ ## 19.3.45 (2021-10-12)
12
13
 
13
14
  ### Tree Grid
14
15
 
15
16
  #### Bug Fixes
16
17
 
17
- - `#F168235` - Adding a new row as a child using context menu works fine.
18
+ - `#I341871` - Resolved getCheckedRecords method doesn’t return collapsed records after filtering with Virtualization enabled.
19
+ - `#I340839` - Resolved dragging and dropping creates duplicate rows when setting initial sort for the newly added record.
20
+ - `#I339818` - Resolved "No records to display" issue when we expand filtered parent record with Virtualization and collapseAll enabled.
18
21
 
19
- ## 19.2.56 (2021-08-17)
22
+ ## 19.3.44 (2021-10-05)
20
23
 
21
24
  ### Tree Grid
22
25
 
23
- #### Bug Fixes
24
-
25
- - `#I335989` - Resolved the issue of dragged rows getting deleted while using drag and drop.
26
- - `#I337766` - expandAtLevel and collapseAtLevel methods works fine when enableCollapseAll is true.
27
- - `#I334273` - Resolved white space issue while using single root node with Virtualization and enableCollapseAll.
28
- - `#I335120` - Drag and drop of newly added records works fine.
29
- - `#I336436` - RefreshColumns method works properly when we access the column from the getColumnByUid method.
30
- - `#I337393` - Select all checkbox works fine with filtering.
31
-
32
- ## 19.2.51 (2021-08-03)
33
-
34
- ### Tree Grid
35
-
36
- #### Bug Fixes
37
-
38
- - `#I334818` - Issue in `addRecord` method with `newRowPosition` `Child` and Virtualization enabled has been resolved.
39
- - `#I334589` - Row drag and drop works fine between the detail template enabled tree grids.
40
- - `#I336758` - Pressing tab key to a non-editable cell works fine in cell edit mode.
41
-
42
- ## 19.2.49 (2021-07-27)
43
-
44
- ### Tree Grid
45
-
46
- #### Bug Fixes
47
-
48
- - `#I333305` - Resolved the script error while rendering tree grid inside a tab.
49
- - `#I335120` - Resolved duplicate records issue while drag and drop records between tree grids.
50
-
51
- ## 19.2.48 (2021-07-20)
52
-
53
- ### Tree Grid
54
-
55
- #### Bug Fixes
56
-
57
- - `#I334684` - Issue in `addRecord` method with `newRowPosition` `Child` and InfiniteScrolling enabled has been resolved.
58
- - `#I334273` - Resolved issue in row position when we expand/collapse a row with Virtualization and collapseAll enabled.
59
- - `#I334442` - Expand/Collapse action works fine after cell save using Enter key.
60
-
61
- ## 19.2.47 (2021-07-13)
62
-
63
- ### Tree Grid
64
-
65
- #### Bug Fixes
26
+ #### New Features
66
27
 
67
- - `#I328508` - Resolved white space issue while Virtualization and collapse all property is enabled.
68
- - `#334818` - Issue in `addRecord` method with `newRowPosition` `Child` and Virtualization enabled has been resolved.
28
+ - `#314841` - Provided support to freeze the columns on right, left or both sides.
69
29
 
70
- ## 19.2.46 (2021-07-06)
30
+ ## 19.2.44 (2021-06-30)
71
31
 
72
32
  ### Tree Grid
73
33
 
74
34
  #### Bug Fixes
75
35
 
76
- - `#I331724` - Child summary values are updated properly after editing a record.
77
36
  - `#332604` - Resolved white space issue while using less number of records with Virtualization.
78
- - `#I328508` - Selecting a row using selectRow method at load time works properly with Virtualization.
79
- - `#332847` - Batch Edit mode works properly with custom data binding.
80
- - `#333663` - Cancelling the edit action works properly when using escape key.
81
37
 
82
38
  ## 18.4.30 (2020-12-17)
83
39