@syncfusion/ej2-navigations 17.3.9-beta → 17.3.14-96615

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 (314) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +898 -800
  3. package/README.md +163 -163
  4. package/dist/ej2-navigations.umd.min.js +1 -10
  5. package/dist/ej2-navigations.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es2015.js +325 -170
  7. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  8. package/dist/es6/ej2-navigations.es5.js +455 -300
  9. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  10. package/dist/global/ej2-navigations.min.js +1 -10
  11. package/dist/global/ej2-navigations.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/accordion/accordion.ts +1312 -0
  14. package/dist/ts/common/h-scroll.ts +459 -0
  15. package/dist/ts/common/menu-base.ts +2131 -0
  16. package/dist/ts/common/v-scroll.ts +430 -0
  17. package/dist/ts/context-menu/context-menu.ts +119 -0
  18. package/dist/ts/menu/menu.ts +270 -0
  19. package/dist/ts/sidebar/sidebar.ts +817 -0
  20. package/dist/ts/tab/tab.ts +1761 -0
  21. package/dist/ts/toolbar/toolbar.ts +2076 -0
  22. package/dist/ts/treeview/treeview.ts +5050 -0
  23. package/helpers/e2e/index.js +3 -3
  24. package/license +10 -10
  25. package/package.json +135 -149
  26. package/src/accordion/accordion-model.d.ts +156 -156
  27. package/src/accordion/accordion.d.ts +1 -0
  28. package/src/accordion/accordion.js +40 -41
  29. package/src/common/h-scroll-model.d.ts +5 -5
  30. package/src/common/h-scroll.js +19 -20
  31. package/src/common/menu-base-model.d.ts +157 -157
  32. package/src/common/menu-base.d.ts +19 -0
  33. package/src/common/menu-base.js +94 -24
  34. package/src/common/v-scroll-model.d.ts +5 -5
  35. package/src/common/v-scroll.js +19 -19
  36. package/src/context-menu/context-menu-model.d.ts +15 -15
  37. package/src/context-menu/context-menu.js +19 -19
  38. package/src/menu/menu-model.d.ts +30 -30
  39. package/src/menu/menu.js +19 -19
  40. package/src/sidebar/sidebar-model.d.ts +136 -136
  41. package/src/sidebar/sidebar.js +19 -19
  42. package/src/tab/tab-model.d.ts +215 -215
  43. package/src/tab/tab.d.ts +3 -0
  44. package/src/tab/tab.js +117 -82
  45. package/src/toolbar/toolbar-model.d.ts +175 -175
  46. package/src/toolbar/toolbar.d.ts +1 -0
  47. package/src/toolbar/toolbar.js +30 -24
  48. package/src/treeview/treeview-model.d.ts +323 -323
  49. package/src/treeview/treeview.js +79 -33
  50. package/styles/accordion/_all.scss +2 -2
  51. package/styles/accordion/_bootstrap-dark-definition.scss +69 -69
  52. package/styles/accordion/_bootstrap-definition.scss +76 -76
  53. package/styles/accordion/_bootstrap4-definition.scss +82 -82
  54. package/styles/accordion/_fabric-dark-definition.scss +74 -74
  55. package/styles/accordion/_fabric-definition.scss +78 -78
  56. package/styles/accordion/_highcontrast-definition.scss +106 -106
  57. package/styles/accordion/_highcontrast-light-definition.scss +104 -104
  58. package/styles/accordion/_layout.scss +447 -447
  59. package/styles/accordion/_material-dark-definition.scss +75 -75
  60. package/styles/accordion/_material-definition.scss +72 -72
  61. package/styles/accordion/_theme.scss +479 -479
  62. package/styles/accordion/icons/_bootstrap-dark.scss +17 -17
  63. package/styles/accordion/icons/_bootstrap.scss +17 -17
  64. package/styles/accordion/icons/_bootstrap4.scss +17 -17
  65. package/styles/accordion/icons/_fabric-dark.scss +17 -17
  66. package/styles/accordion/icons/_fabric.scss +17 -17
  67. package/styles/accordion/icons/_highcontrast-light.scss +17 -17
  68. package/styles/accordion/icons/_highcontrast.scss +17 -17
  69. package/styles/accordion/icons/_material-dark.scss +17 -17
  70. package/styles/accordion/icons/_material.scss +17 -17
  71. package/styles/bootstrap-dark.css +7 -9
  72. package/styles/bootstrap.css +7 -9
  73. package/styles/bootstrap4.css +7 -9
  74. package/styles/bootstrap5-dark.css +0 -0
  75. package/styles/bootstrap5-dark.scss +0 -0
  76. package/styles/bootstrap5.css +0 -0
  77. package/styles/bootstrap5.scss +0 -0
  78. package/styles/context-menu/_all.scss +2 -2
  79. package/styles/context-menu/_bootstrap-dark-definition.scss +54 -54
  80. package/styles/context-menu/_bootstrap-definition.scss +52 -52
  81. package/styles/context-menu/_bootstrap4-definition.scss +52 -52
  82. package/styles/context-menu/_fabric-dark-definition.scss +54 -54
  83. package/styles/context-menu/_fabric-definition.scss +52 -52
  84. package/styles/context-menu/_highcontrast-definition.scss +52 -52
  85. package/styles/context-menu/_highcontrast-light-definition.scss +54 -54
  86. package/styles/context-menu/_layout-mixin.scss +175 -175
  87. package/styles/context-menu/_layout.scss +70 -70
  88. package/styles/context-menu/_material-dark-definition.scss +54 -54
  89. package/styles/context-menu/_material-definition.scss +52 -52
  90. package/styles/context-menu/_theme-mixin.scss +59 -59
  91. package/styles/context-menu/_theme.scss +36 -36
  92. package/styles/context-menu/bootstrap-dark.css +0 -1
  93. package/styles/context-menu/bootstrap.css +0 -1
  94. package/styles/context-menu/bootstrap4.css +0 -1
  95. package/styles/context-menu/fabric-dark.css +0 -1
  96. package/styles/context-menu/fabric.css +0 -1
  97. package/styles/context-menu/highcontrast-light.css +0 -1
  98. package/styles/context-menu/highcontrast.css +0 -1
  99. package/styles/context-menu/icons/_bootstrap-dark.scss +30 -30
  100. package/styles/context-menu/icons/_bootstrap.scss +30 -30
  101. package/styles/context-menu/icons/_bootstrap4.scss +30 -30
  102. package/styles/context-menu/icons/_fabric-dark.scss +30 -30
  103. package/styles/context-menu/icons/_fabric.scss +30 -30
  104. package/styles/context-menu/icons/_highcontrast-light.scss +30 -30
  105. package/styles/context-menu/icons/_highcontrast.scss +30 -30
  106. package/styles/context-menu/icons/_material-dark.scss +30 -30
  107. package/styles/context-menu/icons/_material.scss +30 -30
  108. package/styles/context-menu/material-dark.css +0 -1
  109. package/styles/context-menu/material.css +3 -4
  110. package/styles/fabric-dark.css +7 -9
  111. package/styles/fabric.css +7 -9
  112. package/styles/h-scroll/_all.scss +2 -2
  113. package/styles/h-scroll/_bootstrap-dark-definition.scss +49 -49
  114. package/styles/h-scroll/_bootstrap-definition.scss +50 -50
  115. package/styles/h-scroll/_bootstrap4-definition.scss +49 -49
  116. package/styles/h-scroll/_fabric-dark-definition.scss +50 -50
  117. package/styles/h-scroll/_fabric-definition.scss +48 -48
  118. package/styles/h-scroll/_highcontrast-definition.scss +52 -52
  119. package/styles/h-scroll/_highcontrast-light-definition.scss +54 -54
  120. package/styles/h-scroll/_layout.scss +198 -198
  121. package/styles/h-scroll/_material-dark-definition.scss +77 -77
  122. package/styles/h-scroll/_material-definition.scss +77 -77
  123. package/styles/h-scroll/_theme.scss +157 -157
  124. package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -49
  125. package/styles/h-scroll/icons/_bootstrap.scss +49 -49
  126. package/styles/h-scroll/icons/_bootstrap4.scss +49 -49
  127. package/styles/h-scroll/icons/_fabric-dark.scss +49 -49
  128. package/styles/h-scroll/icons/_fabric.scss +49 -49
  129. package/styles/h-scroll/icons/_highcontrast-light.scss +49 -49
  130. package/styles/h-scroll/icons/_highcontrast.scss +49 -49
  131. package/styles/h-scroll/icons/_material-dark.scss +49 -49
  132. package/styles/h-scroll/icons/_material.scss +49 -49
  133. package/styles/highcontrast-light.css +7 -9
  134. package/styles/highcontrast.css +7 -9
  135. package/styles/material-dark.css +7 -9
  136. package/styles/material.css +21 -14
  137. package/styles/menu/_all.scss +2 -2
  138. package/styles/menu/_bootstrap-dark-definition.scss +63 -63
  139. package/styles/menu/_bootstrap-definition.scss +65 -65
  140. package/styles/menu/_bootstrap4-definition.scss +64 -64
  141. package/styles/menu/_fabric-dark-definition.scss +63 -63
  142. package/styles/menu/_fabric-definition.scss +64 -64
  143. package/styles/menu/_highcontrast-definition.scss +65 -65
  144. package/styles/menu/_highcontrast-light-definition.scss +61 -61
  145. package/styles/menu/_layout.scss +638 -638
  146. package/styles/menu/_material-dark-definition.scss +63 -63
  147. package/styles/menu/_material-definition.scss +64 -64
  148. package/styles/menu/_theme.scss +243 -243
  149. package/styles/menu/bootstrap-dark.css +0 -1
  150. package/styles/menu/bootstrap.css +0 -1
  151. package/styles/menu/bootstrap.scss +1 -0
  152. package/styles/menu/bootstrap4.css +0 -1
  153. package/styles/menu/fabric-dark.css +0 -1
  154. package/styles/menu/fabric.css +0 -1
  155. package/styles/menu/fabric.scss +1 -0
  156. package/styles/menu/highcontrast-light.css +0 -1
  157. package/styles/menu/highcontrast.css +0 -1
  158. package/styles/menu/highcontrast.scss +1 -0
  159. package/styles/menu/icons/_bootstrap-dark.scss +127 -127
  160. package/styles/menu/icons/_bootstrap.scss +127 -127
  161. package/styles/menu/icons/_bootstrap4.scss +127 -127
  162. package/styles/menu/icons/_fabric-dark.scss +127 -127
  163. package/styles/menu/icons/_fabric.scss +127 -127
  164. package/styles/menu/icons/_highcontrast-light.scss +127 -127
  165. package/styles/menu/icons/_highcontrast.scss +127 -127
  166. package/styles/menu/icons/_material-dark.scss +127 -127
  167. package/styles/menu/icons/_material.scss +127 -127
  168. package/styles/menu/material-dark.css +0 -1
  169. package/styles/menu/material.css +2 -3
  170. package/styles/menu/material.scss +1 -0
  171. package/styles/sidebar/_all.scss +3 -3
  172. package/styles/sidebar/_bootstrap-dark-definition.scss +4 -4
  173. package/styles/sidebar/_bootstrap-definition.scss +4 -4
  174. package/styles/sidebar/_bootstrap4-definition.scss +4 -4
  175. package/styles/sidebar/_fabric-dark-definition.scss +4 -4
  176. package/styles/sidebar/_fabric-definition.scss +6 -6
  177. package/styles/sidebar/_highcontrast-definition.scss +4 -4
  178. package/styles/sidebar/_highcontrast-light-definition.scss +4 -4
  179. package/styles/sidebar/_icons.scss +1 -1
  180. package/styles/sidebar/_material-dark-definition.scss +4 -4
  181. package/styles/sidebar/_material-definition.scss +6 -6
  182. package/styles/sidebar/_theme.scss +168 -168
  183. package/styles/sidebar/bootstrap-dark.css +0 -1
  184. package/styles/sidebar/bootstrap.css +0 -1
  185. package/styles/sidebar/bootstrap4.css +0 -1
  186. package/styles/sidebar/fabric-dark.css +0 -1
  187. package/styles/sidebar/fabric.css +0 -1
  188. package/styles/sidebar/highcontrast-light.css +0 -1
  189. package/styles/sidebar/highcontrast.css +0 -1
  190. package/styles/sidebar/material-dark.css +0 -1
  191. package/styles/sidebar/material.css +0 -1
  192. package/styles/tab/_all.scss +2 -2
  193. package/styles/tab/_bootstrap-dark-definition.scss +386 -386
  194. package/styles/tab/_bootstrap-definition.scss +396 -396
  195. package/styles/tab/_bootstrap4-definition.scss +401 -401
  196. package/styles/tab/_fabric-dark-definition.scss +394 -394
  197. package/styles/tab/_fabric-definition.scss +410 -410
  198. package/styles/tab/_highcontrast-definition.scss +434 -434
  199. package/styles/tab/_highcontrast-light-definition.scss +423 -423
  200. package/styles/tab/_icons.scss +43 -43
  201. package/styles/tab/_layout.scss +3528 -3521
  202. package/styles/tab/_material-dark-definition.scss +407 -407
  203. package/styles/tab/_material-definition.scss +416 -416
  204. package/styles/tab/_theme.scss +1751 -1751
  205. package/styles/tab/bootstrap-dark.css +7 -2
  206. package/styles/tab/bootstrap.css +7 -2
  207. package/styles/tab/bootstrap4.css +7 -2
  208. package/styles/tab/fabric-dark.css +7 -2
  209. package/styles/tab/fabric.css +7 -2
  210. package/styles/tab/highcontrast-light.css +7 -2
  211. package/styles/tab/highcontrast.css +7 -2
  212. package/styles/tab/icons/_bootstrap-dark.scss +132 -132
  213. package/styles/tab/icons/_bootstrap.scss +132 -132
  214. package/styles/tab/icons/_bootstrap4.scss +132 -132
  215. package/styles/tab/icons/_fabric-dark.scss +132 -132
  216. package/styles/tab/icons/_fabric.scss +132 -132
  217. package/styles/tab/icons/_highcontrast-light.scss +132 -132
  218. package/styles/tab/icons/_highcontrast.scss +132 -132
  219. package/styles/tab/icons/_material-dark.scss +132 -132
  220. package/styles/tab/icons/_material.scss +132 -132
  221. package/styles/tab/material-dark.css +7 -2
  222. package/styles/tab/material.css +7 -2
  223. package/styles/tailwind-dark.css +0 -0
  224. package/styles/tailwind-dark.scss +0 -0
  225. package/styles/tailwind.css +0 -0
  226. package/styles/tailwind.scss +0 -0
  227. package/styles/toolbar/_all.scss +2 -2
  228. package/styles/toolbar/_bootstrap-dark-definition.scss +135 -135
  229. package/styles/toolbar/_bootstrap-definition.scss +134 -134
  230. package/styles/toolbar/_bootstrap4-definition.scss +139 -139
  231. package/styles/toolbar/_fabric-dark-definition.scss +155 -155
  232. package/styles/toolbar/_fabric-definition.scss +139 -139
  233. package/styles/toolbar/_highcontrast-definition.scss +149 -149
  234. package/styles/toolbar/_highcontrast-light-definition.scss +164 -164
  235. package/styles/toolbar/_layout.scss +1460 -1460
  236. package/styles/toolbar/_material-dark-definition.scss +180 -180
  237. package/styles/toolbar/_material-definition.scss +164 -164
  238. package/styles/toolbar/_theme.scss +451 -451
  239. package/styles/toolbar/bootstrap-dark.css +0 -1
  240. package/styles/toolbar/bootstrap.css +0 -1
  241. package/styles/toolbar/bootstrap.scss +1 -0
  242. package/styles/toolbar/bootstrap4.css +0 -1
  243. package/styles/toolbar/fabric-dark.css +0 -1
  244. package/styles/toolbar/fabric.css +0 -1
  245. package/styles/toolbar/fabric.scss +1 -0
  246. package/styles/toolbar/highcontrast-light.css +0 -1
  247. package/styles/toolbar/highcontrast.css +0 -1
  248. package/styles/toolbar/highcontrast.scss +1 -0
  249. package/styles/toolbar/icons/_bootstrap-dark.scss +16 -16
  250. package/styles/toolbar/icons/_bootstrap.scss +16 -16
  251. package/styles/toolbar/icons/_bootstrap4.scss +16 -16
  252. package/styles/toolbar/icons/_fabric-dark.scss +16 -16
  253. package/styles/toolbar/icons/_fabric.scss +16 -16
  254. package/styles/toolbar/icons/_highcontrast-light.scss +16 -16
  255. package/styles/toolbar/icons/_highcontrast.scss +16 -16
  256. package/styles/toolbar/icons/_material-dark.scss +16 -16
  257. package/styles/toolbar/icons/_material.scss +16 -16
  258. package/styles/toolbar/material-dark.css +0 -1
  259. package/styles/toolbar/material.css +0 -1
  260. package/styles/toolbar/material.scss +1 -0
  261. package/styles/treeview/_all.scss +2 -2
  262. package/styles/treeview/_bootstrap-dark-definition.scss +131 -131
  263. package/styles/treeview/_bootstrap-definition.scss +127 -127
  264. package/styles/treeview/_bootstrap4-definition.scss +153 -153
  265. package/styles/treeview/_fabric-dark-definition.scss +130 -130
  266. package/styles/treeview/_fabric-definition.scss +126 -126
  267. package/styles/treeview/_highcontrast-definition.scss +132 -132
  268. package/styles/treeview/_highcontrast-light-definition.scss +137 -137
  269. package/styles/treeview/_layout.scss +551 -551
  270. package/styles/treeview/_material-dark-definition.scss +126 -126
  271. package/styles/treeview/_material-definition.scss +126 -126
  272. package/styles/treeview/_theme.scss +331 -331
  273. package/styles/treeview/bootstrap-dark.css +0 -3
  274. package/styles/treeview/bootstrap.css +0 -3
  275. package/styles/treeview/bootstrap4.css +0 -3
  276. package/styles/treeview/fabric-dark.css +0 -3
  277. package/styles/treeview/fabric.css +0 -3
  278. package/styles/treeview/highcontrast-light.css +0 -3
  279. package/styles/treeview/highcontrast.css +0 -3
  280. package/styles/treeview/icons/_bootstrap-dark.scss +39 -39
  281. package/styles/treeview/icons/_bootstrap.scss +39 -39
  282. package/styles/treeview/icons/_bootstrap4.scss +39 -39
  283. package/styles/treeview/icons/_fabric-dark.scss +43 -43
  284. package/styles/treeview/icons/_fabric.scss +43 -43
  285. package/styles/treeview/icons/_highcontrast-light.scss +43 -43
  286. package/styles/treeview/icons/_highcontrast.scss +43 -43
  287. package/styles/treeview/icons/_material-dark.scss +43 -43
  288. package/styles/treeview/icons/_material.scss +43 -43
  289. package/styles/treeview/material-dark.css +0 -3
  290. package/styles/treeview/material.css +9 -3
  291. package/styles/v-scroll/_all.scss +2 -2
  292. package/styles/v-scroll/_bootstrap-dark-definition.scss +50 -50
  293. package/styles/v-scroll/_bootstrap-definition.scss +49 -49
  294. package/styles/v-scroll/_bootstrap4-definition.scss +49 -49
  295. package/styles/v-scroll/_fabric-dark-definition.scss +51 -51
  296. package/styles/v-scroll/_fabric-definition.scss +50 -50
  297. package/styles/v-scroll/_highcontrast-definition.scss +51 -51
  298. package/styles/v-scroll/_highcontrast-light-definition.scss +52 -52
  299. package/styles/v-scroll/_layout.scss +162 -162
  300. package/styles/v-scroll/_material-dark-definition.scss +78 -78
  301. package/styles/v-scroll/_material-definition.scss +77 -77
  302. package/styles/v-scroll/_theme.scss +133 -133
  303. package/styles/v-scroll/icons/_bootstrap-dark.scss +26 -26
  304. package/styles/v-scroll/icons/_bootstrap.scss +26 -26
  305. package/styles/v-scroll/icons/_bootstrap4.scss +26 -26
  306. package/styles/v-scroll/icons/_fabric-dark.scss +26 -26
  307. package/styles/v-scroll/icons/_fabric.scss +26 -26
  308. package/styles/v-scroll/icons/_highcontrast-light.scss +26 -26
  309. package/styles/v-scroll/icons/_highcontrast.scss +26 -26
  310. package/styles/v-scroll/icons/_material-dark.scss +26 -26
  311. package/styles/v-scroll/icons/_material.scss +26 -26
  312. package/tslint.json +111 -0
  313. package/.gitlab/merge_request_templates/Bug.md +0 -63
  314. package/.gitlab/merge_request_templates/feature.md +0 -39
package/CHANGELOG.md CHANGED
@@ -1,800 +1,898 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### Tab
6
-
7
- #### New Features
8
-
9
- - Provided template support for tab header.
10
-
11
- ### Accordion
12
-
13
- #### New Features
14
-
15
- - Provided item template support for accorion.
16
-
17
- ### TreeView
18
-
19
- #### Bug Fixes
20
-
21
- - #242926 - Now the drop indicator has been shown correctly while enabling the checkbox.
22
-
23
- ## 17.2.49 (2019-09-04)
24
-
25
- ### Menu
26
-
27
- #### Bug Fixes
28
-
29
- - Issue with modifying item in 'beforeOpen' event creates extra Item in Context Menu is fixed.
30
-
31
- ## 17.2.48-beta (2019-08-28)
32
-
33
- ### Toolbar
34
-
35
- #### New Features
36
-
37
- - `enableItems` public method will now support number type.
38
-
39
- ### Accordion
40
-
41
- #### Breaking Changes
42
-
43
- - The `expanded` event type changed from `ExpandEventArgs` to `ExpandedEventArgs`.
44
-
45
- ## 17.2.41 (2019-08-14)
46
-
47
- ### TreeView
48
-
49
- #### Bug Fixes
50
-
51
- - Issue with custom icon size changed while double clicking the tree node has been fixed.
52
-
53
- ## 17.2.40 (2019-08-06)
54
-
55
- ### TreeView
56
-
57
- #### Bug Fixes
58
-
59
- - #242925 - Issue with checked and unchecked the checkbox using keyboard interaction even disable the checkbox has been fixed.
60
-
61
- ## 17.2.39 (2019-07-30)
62
-
63
- ### TreeView
64
-
65
- #### Bug Fixes
66
-
67
- - #242589 - Issue with getting checked nodes value using `checkedNodes` property has been fixed.
68
-
69
- ## 17.2.34 (2019-07-11)
70
-
71
- ### Accordion
72
-
73
- #### Bug Fixes
74
-
75
- - #239739 - An issue with addItem public method for accordion which was rendered using HTML elements has been fixed
76
-
77
- ## 17.2.28-beta (2019-06-27)
78
-
79
- ### Menu
80
-
81
- #### Bug Fixes
82
-
83
- - #237136 - Issue with Parent Menu click in mobile mode.
84
-
85
- - #236458 - Issue with Menu Item hovering while a page contains multiple menus.
86
-
87
- ### Sidebar
88
-
89
- #### Breaking Changes
90
-
91
- - Change event will trigger only after the expand or collapse transition of the Sidebar.
92
-
93
- ## 17.1.49 (2019-05-29)
94
-
95
- ### TreeView
96
-
97
- #### Bug Fixes
98
-
99
- - #234147 - Issue with getting checked nodes value using `getAllCheckedNodes` method has been fixed.
100
-
101
- ## 17.1.48 (2019-05-21)
102
-
103
- ### Sidebar
104
-
105
- #### Bug Fixes
106
-
107
- - #236219 - On initial rendering, right positioned sidebar opens and closes irrespective of type and isOpen properties has been fixed.
108
-
109
- ### Tab
110
-
111
- #### Bug Fixes
112
-
113
- - #235397 - The cancel parameter is exposed in tab selecting event.
114
-
115
- - #235274 - Incorrect selected content had been getting in tab selected event issue has been fixed.
116
-
117
- ## 17.1.47 (2019-05-14)
118
-
119
- ### Menu
120
-
121
- #### New Features
122
-
123
- - #230456 - Provided hamburger menu support for adaptive view.
124
-
125
- ### TreeView
126
-
127
- #### New Features
128
-
129
- - #227540 - Provided the support for rendering treeview data in single server request while disabling the loadOnDemand
130
-
131
- ## 17.1.43 (2019-04-30)
132
-
133
- ### Toolbar
134
-
135
- #### Bug Fixes
136
-
137
- - #231019 - An issue with RTL mode of Toolbar scroller has not working in Firefox browser has been resolved.
138
-
139
- ### TreeView
140
-
141
- #### Bug Fixes
142
-
143
- - #234147 - Issue with maintaining checked states while giving `id` and `parentID` value as string type in data source has been fixed.
144
-
145
- ## 17.1.41 (2019-04-16)
146
-
147
- ### Accordion
148
-
149
- #### Bug Fixes
150
-
151
- - Content value getting changed while updating header dynamically issue has been fixed.
152
-
153
- ### TreeView
154
-
155
- #### Bug Fixes
156
-
157
- - #231497 - Now the selected node background color is removed before collapsing the parent node with out removing 'e-active' class.
158
-
159
- ## 17.1.40 (2019-04-09)
160
-
161
- ### TreeView
162
-
163
- #### Bug Fixes
164
-
165
- - Now the selected node background color is removed before collapsing the parent node.
166
-
167
- ### Tab
168
-
169
- #### Bug Fixes
170
-
171
- - Support to restrict add and remove functionalities of Tab has been provided.
172
-
173
- ## 17.1.38 (2019-03-29)
174
-
175
- ### Menu
176
-
177
- #### Bug Fixes
178
-
179
- - Support provided for dynamically updating the self referential data.
180
-
181
- ### Accordion
182
-
183
- #### Bug Fixes
184
-
185
- - An issue with the expand action of Accordion when set to single mode, with the items being rendered using content template is fixed now.
186
-
187
- ## 17.1.32-beta (2019-03-13)
188
-
189
- ### ContextMenu
190
-
191
- #### Bug Fixes
192
-
193
- - Submenu items styles are not proper in ContextMenu issue is fixed.
194
-
195
- ### Sidebar
196
-
197
- #### New Features
198
-
199
- - `MediaQuery` property will now support both string and `MediaQueryList` object types.
200
-
201
- #### Bug Fixes
202
-
203
- - Multiple event bindings issue on calling show and hide methods when `closeOnDocumentClick` property is enabled has been fixed.
204
-
205
- ### TreeView
206
-
207
- #### New Features
208
-
209
- - Provided an option for auto checking parent tree nodes based on child tree nodes checked state and vice versa.
210
- - Now it is possible to select or unselect the collapsed child nodes by selecting its parent node through checkbox selection, with Load-On-Demand mode enabled.
211
-
212
- ## 16.4.54 (2019-02-19)
213
-
214
- ### Tab
215
-
216
- #### Breaking Changes
217
-
218
- - The initial focus set on active tab item is removed from the component on initial load.
219
-
220
- ## 16.4.53 (2019-02-13)
221
-
222
- ### Accordion
223
-
224
- #### Bug Fixes
225
-
226
- - Resolved the issue with accessing Accordion item object in clicked event arguments.
227
-
228
- ## 16.4.52 (2019-02-05)
229
-
230
- ### Sidebar
231
-
232
- #### Bug Fixes
233
-
234
- - Tabindex support has been provided.
235
-
236
- #### Breaking Changes
237
-
238
- - Sidebar with type `Auto` will always expand on initial rendering, irrespective of `enableDock` and `isOpen` properties.
239
-
240
- - When dynamically changing the type property of the Sidebar with invalid property value (For ex:`Pushs`), will reset the type of the Sidebar to its default type as `Auto`.
241
-
242
- ## 17.1.1-beta (2019-01-29)
243
-
244
- ### Menu
245
-
246
- #### Bug Fixes
247
-
248
- - Popup not opened properly when two menu rendered side by side issue fixed.
249
-
250
- ### TreeView
251
-
252
- #### Bug Fixes
253
-
254
- - The issue with, “When disabling the TreeView parent nodes, the child nodes also appear in a disabled state” has been fixed.
255
-
256
- ## 16.4.45 (2019-01-02)
257
-
258
- ### Toolbar
259
-
260
- #### Bug Fixes
261
-
262
- - While resizing, Toolbar items are not moving from popup to toolbar in `extended` overflow mode issue is fixed.
263
-
264
- ### Menu
265
-
266
- #### Bug Fixes
267
-
268
- - Getting custom properties from menu items in `beforeItemRender` event issue fixed.
269
-
270
- ### Sidebar
271
-
272
- #### Bug Fixes
273
-
274
- - Fixed the issue with rendering the Sidebar using `isOpen` property and type `Auto`.
275
-
276
- ## 16.4.44 (2018-12-24)
277
-
278
- ### Accordion
279
-
280
- #### Bug Fixes
281
-
282
- - Parent accordion collapsing issue is fixed when Tab renders within it.
283
-
284
- ## 16.4.40-beta (2018-12-10)
285
-
286
- ### Tab
287
-
288
- #### New Features
289
-
290
- - Tab vertical orientation support was provided.
291
-
292
- ### ContextMenu
293
-
294
- #### Breaking Changes
295
-
296
- - The `animationSettings` property type changed from `AnimationSettings` to `AnimationSettingsModel`
297
-
298
- ### Menu
299
-
300
- #### New Features
301
-
302
- - Provided scrollable option in Menu for rendering large menus and submenus in an adaptive way.
303
-
304
- #### Breaking Changes
305
-
306
- - Type changes done for the following property.
307
-
308
- Property Name | Old Type | New Type
309
- -----|-----|-----
310
- `animationSettings` | AnimationSettings | AnimationSettingsModel
311
- `fields` | FieldSettings | FieldSettingsModel
312
-
313
- ### TreeView
314
-
315
- #### New Features
316
-
317
- - Provided an option to disable child nodes when load-on-demand support is enabled.
318
- - Provided an option to disable the load-on-demand support in TreeView control.
319
-
320
- ## 16.3.33 (2018-11-20)
321
-
322
- ### Sidebar
323
-
324
- #### Bug Fixes
325
-
326
- - Added the `event` and `isInteracted` event arguments in open and close events of Sidebar.
327
-
328
- ### TreeView
329
-
330
- #### Bug Fixes
331
-
332
- - In TreeView, scrolling is not working smoothly for iPad device issue is resolved
333
-
334
- ## 16.3.29 (2018-10-31)
335
-
336
- ### TreeView
337
-
338
- #### New Features
339
-
340
- - Provided an option to prevent the tree node from auto checking when checked state of the parent or child tree node is modified.
341
- - Provided support to use hierarchical data as remote data source of the TreeView component by using offline mode of data manager plugin.
342
-
343
- ## 16.3.27 (2018-10-23)
344
-
345
- ### Menu
346
-
347
- #### Bug Fixes
348
-
349
- - Destroy method issue while using multiple menu is fixed.
350
-
351
- ## 16.3.25 (2018-10-15)
352
-
353
- ### Menu
354
-
355
- #### Bug Fixes
356
-
357
- - Issue with sub menu positioning fixed.
358
-
359
- ## 16.3.23 (2018-10-03)
360
-
361
- ### Sidebar
362
-
363
- #### New Features
364
-
365
- - Two-way binding support has been provided for `isOpen` property.
366
-
367
- ### Tab
368
-
369
- #### Bug Fixes
370
-
371
- - The issue with tab selection after remove other tabs has been fixed.
372
-
373
- ## 16.3.21 (2018-09-22)
374
-
375
- ### TreeView
376
-
377
- #### Bug Fixes
378
-
379
- - The `nodeData` argument in `nodeSelected` event showing wrong value issue has been fixed.
380
-
381
- ## 16.3.17 (2018-09-12)
382
-
383
- ### Menu
384
-
385
- Menu is a graphical user interface that serves as navigation header for your application or site. Menu can be populated from a data source such as an array of JavaScript objects that can be either structured as hierarchical or self-referential data. The following key features are available in Menu component.
386
-
387
- - **Rendering** - Supports to render based on the items collection (array of JavaScript objects) and HTML elements.
388
-
389
- - **Separator** - Supports menu items grouping by using the Separator.
390
-
391
- - **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
392
-
393
- - **Template and Multilevel Nesting** - Supports template and multilevel nesting in Menu.
394
-
395
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the Menu component features through the keyboard, screen readers, or other assistive technology devices.
396
-
397
- ### TreeView
398
-
399
- #### New Features
400
-
401
- - Provided an option to get updated data source of tree view after drag and drop, editing, deleting, and adding nodes in tree view.
402
- - Support to get custom data from tree view.
403
- - Support to maintain expanded nodes of tree view on page reloads.
404
- - Provided an option to get all the checked nodes if the tree node is expanded or collapsed.
405
- - Provided 'none' option in 'expandOn' property to prevent expand or collapse of tree node
406
- - Provided an option to prevent the parent node from expanding, while adding a node to the tree view control.
407
-
408
- ## 16.2.49 (2018-08-21)
409
-
410
- ### Tab
411
-
412
- #### Bug Fixes
413
-
414
- - The issue with updating model on enable/disable tab has fixed in `enableTab` method.
415
-
416
- ### TreeView
417
-
418
- #### Bug Fixes
419
-
420
- - Issue with drag and drop of nodes from one tree view to another empty tree view has been fixed.
421
-
422
- ## 16.2.48 (2018-08-14)
423
-
424
- ### Tab
425
-
426
- #### Breaking Changes
427
-
428
- - Issue with triggering select events at initial load has been resolved
429
-
430
- ### Toolbar
431
-
432
- #### Bug Fixes
433
-
434
- - Resolved the tooltip issue on display special character in toolbar items.
435
-
436
- ## 16.2.47 (2018-08-07)
437
-
438
- ### Tab
439
-
440
- #### Bug Fixes
441
-
442
- - The issue with updating model on removing tab has fixed in `removeTab` method.
443
- - Resolve the issue which occurs on updating item value with `hideTab` method.
444
-
445
- ### Sidebar
446
-
447
- #### Bug Fixes
448
-
449
- - Issue with Sidebar destroyed in Angular routing is fixed.
450
-
451
- ### TreeView
452
-
453
- #### Bug Fixes
454
-
455
- - Tree view checkbox not working properly in Firefox browser issue has been resolved.
456
-
457
- ## 16.2.46 (2018-07-30)
458
-
459
- ### Accordion
460
-
461
- #### Bug Fixes
462
-
463
- - Issue with Space and Enter key, which is not working in RTE while rendering inside the Accordion is fixed
464
-
465
- ### TreeView
466
-
467
- #### New Features
468
-
469
- - In tree view, provided an option to prevent dropping an element in the sibling position.
470
-
471
- ## 16.2.45 (2018-07-17)
472
-
473
- ### Tab
474
-
475
- #### Bug Fixes
476
-
477
- - Issue with content animation, when switching to other tabs before previous animation complete is fixed
478
-
479
- ## 16.2.44 (2018-07-10)
480
-
481
- ### Sidebar
482
-
483
- #### Bug Fixes
484
-
485
- - `target` property is not working on lower version of Firefox browser (below 48), issue has been fixed.
486
-
487
- ## 16.2.41 (2018-06-25)
488
-
489
- ### Sidebar
490
-
491
- #### New Features
492
-
493
- - Support for setting the open/close state of the Sidebar has been provided with `isOpen` property.
494
-
495
- #### Breaking Changes
496
-
497
- - Target property supports both the id and class selectors to locate the target element.
498
- - `isOpen()` method is now removed and know about the Sidebar is whether open or close state by using `isOpen` property.
499
-
500
- ### Tab
501
-
502
- #### Bug Fixes
503
-
504
- - Content initiated twice when using ng-template in Tab item has been fixed.
505
- - Solved issues on `removeItem` public method.
506
-
507
- ### Toolbar
508
-
509
- #### New Features
510
-
511
- - Provided support for `MultiRow` options on toolbar items.
512
- - Inline alignment of toolbar items support is provided.
513
-
514
- ## 16.1.42 (2018-05-08)
515
-
516
- ### Accordion
517
-
518
- #### Bug Fixes
519
-
520
- - Issue with space key in text area, when placed inside Accordion is fixed.
521
-
522
- ### Tab
523
-
524
- #### Breaking Changes
525
-
526
- - Breaking issue with dynamic loading tab content template ID is fixed.
527
-
528
- ## 16.1.40 (2018-05-08)
529
-
530
- ### Tab
531
-
532
- #### Bug Fixes
533
-
534
- - Issue with event unbinding in tab content is fixed.
535
-
536
- ## 16.1.38 (2018-05-02)
537
-
538
- ### TreeView
539
-
540
- #### Bug Fixes
541
-
542
- - TreeView is not rendering properly when you return entire data (including child nodes) on initial request issue is fixed.
543
-
544
- ### Tab
545
-
546
- #### Bug Fixes
547
-
548
- - Issue with loading dynamic content using template ID is fixed.
549
-
550
- ## 16.1.37 (2018-04-24)
551
-
552
- ### TreeView
553
-
554
- #### Bug Fixes
555
-
556
- - Issue in triggering `nodeExpanded` event while expanding all the nodes is fixed.
557
-
558
- ## 16.1.35 (2018-04-17)
559
-
560
- ### TreeView
561
-
562
- #### Bug Fixes
563
-
564
- - Provided option to prevent expand/collapse node while double clicking the tree node.
565
-
566
- ## 16.1.34 (2018-04-10)
567
-
568
- ### TreeView
569
-
570
- #### Bug Fixes
571
-
572
- - Issue in TreeView while ‘cancel' the `nodeDragDrop` event is fixed.
573
-
574
- - Issue in TreeView drag and drop function, while adding ‘e-droppable’ class in the target element is fixed.
575
-
576
- ## 16.1.32 (2018-03-29)
577
-
578
- ### TreeView
579
-
580
- #### Bug Fixes
581
-
582
- - Prevented the checkbox interactions while the corresponding node was in disabled state.
583
-
584
- ## 16.1.28 (2018-03-09)
585
-
586
- ### Toolbar
587
-
588
- #### Bug Fixes
589
-
590
- - Toolbar border hidden issue with grid in IE11 browser is fixed.
591
-
592
- ## 16.1.24 (2018-02-22)
593
-
594
- ### Common
595
-
596
- #### Breaking Changes
597
-
598
- - Changed the Angular component selector, component name prefix with `ejs` e.g: `ejs-tab`.
599
-
600
- #### New Features
601
-
602
- - High contrast theme support.
603
-
604
- ### Sidebar
605
-
606
- The Sidebar is an expandable and collapsible component that typically acts as a side container to place primary or secondary content alongside the main content.
607
-
608
- - **Target** - The Sidebar can be initialized in any HTML element other than the body element.
609
-
610
- - **Types** Supports Push, Over, Slide and Auto to expand or collapse the Sidebar.
611
-
612
- - **Position** – Allows to position the Sidebar in Left or Right direction.
613
-
614
- - **Auto close** - Allows to set the sidebar in an expanded or collapsed state only in certain resolutions.
615
-
616
- - **Dock** - By default, supports display of short notifications about the content on docked mode.
617
-
618
- - **Backdrop** Specifies the whether to apply overlay options to main content when the Sidebar is in open state.
619
-
620
- ### Tab
621
-
622
- #### Breaking Changes
623
-
624
- - Locale key changed from close to `closeButtonTitle`.
625
-
626
- ### Toolbar
627
-
628
- #### Breaking Changes
629
-
630
- - Pascal casing change to `align` property values (`Left`, `Center`, `Right`).
631
-
632
- ## 15.4.30-preview (2018-02-14)
633
-
634
- ### TreeView
635
-
636
- #### New Features
637
-
638
- - Added “getNode” method in TreeView to get the node's data based on given node element or it's ID.
639
-
640
- - Added “beginEdit” method in TreeView, to initiate the editing mode of the TreeView node through code.
641
-
642
- #### Breaking Changes
643
-
644
- - In TreeView, “replaceText” method name has been modified as “updateNode”.
645
-
646
- ## 15.4.27-preview (2018-01-30)
647
-
648
- ### Tab
649
-
650
- #### Bug Fixes
651
-
652
- - Separate item change for active content issue with Tab fixed.
653
-
654
- ## 15.4.26-preview (2018-01-23)
655
-
656
- ### ContextMenu
657
-
658
- #### Bug Fixes
659
-
660
- - Lengthy text and caret icon wraps next line issue fixed.
661
-
662
- ### Accordion
663
-
664
- #### Bug Fixes
665
-
666
- - Accordion content class styles overriding with the other component issue fixed.
667
-
668
- ### Tab
669
-
670
- #### Bug Fixes
671
-
672
- - Issue with changing separate items property has been fixed.
673
-
674
- ### Toolbar
675
-
676
- #### New Features
677
-
678
- - Provided support to display Toolbar items in popup always.
679
-
680
- ## 15.4.25-preview (2018-01-09)
681
-
682
- ## 15.4.23-preview (2017-12-27)
683
-
684
- ### Common
685
-
686
- #### New Features
687
-
688
- - Added typing file for ES5 global scripts (dist/global/index.d.ts)
689
-
690
- #### Breaking Changes
691
-
692
- - Modified the module bundle file name for ES6 bundling
693
-
694
- ### Toolbar
695
-
696
- #### Bug Fixes
697
-
698
- - Issue with changing separate items property has been fixed.
699
-
700
- - The Toolbar Popup and scrollable creation issue in non visible element is fixed.
701
-
702
- - Dynamic Items updating with toolbar alignment is fixed.
703
-
704
- - Removed unwanted space available in the Toolbar Popup mode initial time.
705
-
706
- ## 15.4.22-preview (2017-12-14)
707
-
708
- ### ContextMenu
709
-
710
- #### Bug Fixes
711
-
712
- - Destroy method issue in angular is fixed.
713
-
714
- ## 15.4.21-preview (2017-12-08)
715
-
716
- ### Tab
717
-
718
- #### Bug Fixes
719
-
720
- - Tab header overlapping issue with grid is fixed.
721
-
722
- ## 15.4.20-preview (2017-12-01)
723
-
724
- ### Common
725
-
726
- #### New Features
727
-
728
- - Upgraded TypeScript version to 2.6.2
729
-
730
- ## 15.4.17-preview (2017-11-13)
731
-
732
- ### Accordion
733
-
734
- Accordion is a vertically collapsible content panel which is displaying panels, one or multiple at a time within the available space.
735
-
736
- - **Rendering** - Supports to render based on the items collection and HTML elements.
737
-
738
- - **Expand Mode** - Supports to define single or multiple expand mode for Accordion panels.
739
-
740
- - **Animation** - Supports animation effects for expanding/collapsing the panels.
741
-
742
- - **Accessibility** - Provided with built-in accessibility support which helps to access all the Accordion component features through the keyboard, screen readers, or other assistive technology devices.
743
-
744
- ### ContextMenu
745
-
746
- ContextMenu is a graphical user interface that appears on the user right click/touch hold action.
747
-
748
- - **Separator** - Supports menu items grouping by using the Separator.
749
-
750
- - **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
751
-
752
- - **Template and Multilevel Nesting** - Supports template and multilevel nesting in ContextMenu.
753
-
754
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the ContextMenu component features through the keyboard, screen readers, or other assistive technology devices.
755
-
756
- ### Tab
757
-
758
- Tab is a content panel to show multiple contents in specific space one at a time.
759
-
760
- - **Rendering** - Supports to render based on the items collection and HTML elements.
761
-
762
- - **Adaptive** - Supports responsive rendering with scrollable Tabs and popup menu.
763
-
764
- - **Animation** - Supports animation effects for moving previous/next contents of the Tab.
765
-
766
- - **Customization** - Provides customization support for header with icons and orientation.
767
-
768
- - **Accessibility** - Provided with built-in accessibility support which helps to access all the Tab component features through the keyboard, screen readers, or other assistive technology devices.
769
-
770
- ### Toolbar
771
-
772
- Displays a group of command buttons arranged horizontally.
773
-
774
- - **Rendering** - Supports to render based on the items collection and HTML elements.
775
-
776
- - **Customization** - Supports to add buttons , separator & input components.
777
-
778
- - **Adaptive** - Supports responsive rendering with scrollable Toolbar and popup menu.
779
-
780
- - **Accessibility**- Provided with built-in accessibility support which helps to access all the Toolbar component features through the keyboard, screen readers, or other assistive technology devices.
781
-
782
- ### TreeView
783
-
784
- TreeView component is used to represent hierarchical data in a tree like structure with advanced functions to edit, drag and drop, select with CheckBox and more. TreeView can be populated from a data source such as an array of JavaScript objects or from DataManager. The following key features are available in TreeView component.
785
-
786
- - **Data Binding** - Binds the TreeView component with an array of JavaScript objects or DataManager.
787
-
788
- - **CheckBox** - Allows you to select more than one node in TreeView without affecting the UI appearance.
789
-
790
- - **Drag and Drop** - Allows you to drag and drop any node in TreeView.
791
-
792
- - **Multi Selection** - Allows you to select more than one node in TreeView.
793
-
794
- - **Node Editing** - Allows you to change the text of a node in TreeView.
795
-
796
- - **Sorting** - Allows display of the TreeView nodes in an ascending or a descending order.
797
-
798
- - **Template** - Allows you to customize the nodes in TreeView.
799
-
800
- - **Accessibility** - Provides built-in accessibility support that helps to access all the TreeView component features through the keyboard, on-screen readers, or other assistive technology devices.
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## 17.3.34 (2019-12-10)
6
+
7
+ ### Tab
8
+
9
+ #### Bug Fixes
10
+
11
+ - Accessibility issues has been fixed.
12
+
13
+ ### Toolbar
14
+
15
+ #### Bug Fixes
16
+
17
+ - Accessibility issues has been fixed.
18
+
19
+ ### Accordion
20
+
21
+ #### Bug Fixes
22
+
23
+ - Accessibility issues has been fixed.
24
+
25
+ ## 17.3.27 (2019-11-12)
26
+
27
+ ### Tab
28
+
29
+ #### Bug Fixes
30
+
31
+ - `#253216` - An issue with destroying Tab component in IE11 has been fixed.
32
+
33
+ ### TreeView
34
+
35
+ #### Bug Fixes
36
+
37
+ - #242926 - Now the drop indicator has been shown correctly while hovering the expand and collapse icon.
38
+
39
+ ## 17.3.26 (2019-11-05)
40
+
41
+ ### Menu
42
+
43
+ #### Bug Fixes
44
+
45
+ - `#253129` - Menu child item disable issue resolved.
46
+
47
+ ## 17.3.21 (2019-10-30)
48
+
49
+ ### ContextMenu
50
+
51
+ #### Bug Fixes
52
+
53
+ - `#F147793` - ContextMenu not closed while scrolling the target element has been resolved.
54
+
55
+ ## 17.3.17 (2019-10-15)
56
+
57
+ ### Tab
58
+
59
+ #### Bug Fixes
60
+
61
+ - `#250013` - An issue with nested tab rendering while `headerPlacement` is set as `Bottom` has been fixed.
62
+
63
+ ## 17.3.16 (2019-10-09)
64
+
65
+ ### Toolbar
66
+
67
+ #### Bug Fixes
68
+
69
+ - `#246126` - An issue with toolbar is not working properly in overflow as popup mode when we used input elements in it has been fixed.
70
+
71
+ ### Menu
72
+
73
+ #### Bug Fixes
74
+
75
+ - `#249638` - Multiple Menu in the Page causes an issue in Hamburger mode is fixed.
76
+
77
+ ## 17.3.14 (2019-10-03)
78
+
79
+ ### TreeView
80
+
81
+ #### Bug Fixes
82
+
83
+ - #246937 - The unchecking checkbox performance issue has been resolved.
84
+
85
+ ### Accordion
86
+
87
+ #### Bug Fixes
88
+
89
+ - #245474 - Improper rendering of other components inside the accordion content issue has been fixed.
90
+
91
+ - Material dark theme issue has been resolved.
92
+
93
+ - Accessing multiple cssClass property issue with accordion has been fixed.
94
+
95
+ ### Tab
96
+
97
+ #### New Features
98
+
99
+ - Provided scroll step customization support for tab header.
100
+
101
+ ## 17.3.9-beta (2019-09-20)
102
+
103
+ ### Tab
104
+
105
+ #### New Features
106
+
107
+ - Provided template support for tab header.
108
+
109
+ ### Accordion
110
+
111
+ #### New Features
112
+
113
+ - Provided item template support for accorion.
114
+
115
+ ### TreeView
116
+
117
+ #### Bug Fixes
118
+
119
+ - #242926 - Now the drop indicator has been shown correctly while enabling the checkbox.
120
+
121
+ ## 17.2.49 (2019-09-04)
122
+
123
+ ### Menu
124
+
125
+ #### Bug Fixes
126
+
127
+ - Issue with modifying item in 'beforeOpen' event creates extra Item in Context Menu is fixed.
128
+
129
+ ## 17.2.48-beta (2019-08-28)
130
+
131
+ ### Toolbar
132
+
133
+ #### New Features
134
+
135
+ - `enableItems` public method will now support number type.
136
+
137
+ ### Accordion
138
+
139
+ #### Breaking Changes
140
+
141
+ - The `expanded` event type changed from `ExpandEventArgs` to `ExpandedEventArgs`.
142
+
143
+ ## 17.2.41 (2019-08-14)
144
+
145
+ ### TreeView
146
+
147
+ #### Bug Fixes
148
+
149
+ - Issue with custom icon size changed while double clicking the tree node has been fixed.
150
+
151
+ ## 17.2.40 (2019-08-06)
152
+
153
+ ### TreeView
154
+
155
+ #### Bug Fixes
156
+
157
+ - #242925 - Issue with checked and unchecked the checkbox using keyboard interaction even disable the checkbox has been fixed.
158
+
159
+ ## 17.2.39 (2019-07-30)
160
+
161
+ ### TreeView
162
+
163
+ #### Bug Fixes
164
+
165
+ - #242589 - Issue with getting checked nodes value using `checkedNodes` property has been fixed.
166
+
167
+ ## 17.2.34 (2019-07-11)
168
+
169
+ ### Accordion
170
+
171
+ #### Bug Fixes
172
+
173
+ - #239739 - An issue with addItem public method for accordion which was rendered using HTML elements has been fixed
174
+
175
+ ## 17.2.28-beta (2019-06-27)
176
+
177
+ ### Menu
178
+
179
+ #### Bug Fixes
180
+
181
+ - #237136 - Issue with Parent Menu click in mobile mode.
182
+
183
+ - #236458 - Issue with Menu Item hovering while a page contains multiple menus.
184
+
185
+ ### Sidebar
186
+
187
+ #### Breaking Changes
188
+
189
+ - Change event will trigger only after the expand or collapse transition of the Sidebar.
190
+
191
+ ## 17.1.49 (2019-05-29)
192
+
193
+ ### TreeView
194
+
195
+ #### Bug Fixes
196
+
197
+ - #234147 - Issue with getting checked nodes value using `getAllCheckedNodes` method has been fixed.
198
+
199
+ ## 17.1.48 (2019-05-21)
200
+
201
+ ### Sidebar
202
+
203
+ #### Bug Fixes
204
+
205
+ - #236219 - On initial rendering, right positioned sidebar opens and closes irrespective of type and isOpen properties has been fixed.
206
+
207
+ ### Tab
208
+
209
+ #### Bug Fixes
210
+
211
+ - #235397 - The cancel parameter is exposed in tab selecting event.
212
+
213
+ - #235274 - Incorrect selected content had been getting in tab selected event issue has been fixed.
214
+
215
+ ## 17.1.47 (2019-05-14)
216
+
217
+ ### Menu
218
+
219
+ #### New Features
220
+
221
+ - #230456 - Provided hamburger menu support for adaptive view.
222
+
223
+ ### TreeView
224
+
225
+ #### New Features
226
+
227
+ - #227540 - Provided the support for rendering treeview data in single server request while disabling the loadOnDemand
228
+
229
+ ## 17.1.43 (2019-04-30)
230
+
231
+ ### Toolbar
232
+
233
+ #### Bug Fixes
234
+
235
+ - #231019 - An issue with RTL mode of Toolbar scroller has not working in Firefox browser has been resolved.
236
+
237
+ ### TreeView
238
+
239
+ #### Bug Fixes
240
+
241
+ - #234147 - Issue with maintaining checked states while giving `id` and `parentID` value as string type in data source has been fixed.
242
+
243
+ ## 17.1.41 (2019-04-16)
244
+
245
+ ### Accordion
246
+
247
+ #### Bug Fixes
248
+
249
+ - Content value getting changed while updating header dynamically issue has been fixed.
250
+
251
+ ### TreeView
252
+
253
+ #### Bug Fixes
254
+
255
+ - #231497 - Now the selected node background color is removed before collapsing the parent node with out removing 'e-active' class.
256
+
257
+ ## 17.1.40 (2019-04-09)
258
+
259
+ ### TreeView
260
+
261
+ #### Bug Fixes
262
+
263
+ - Now the selected node background color is removed before collapsing the parent node.
264
+
265
+ ### Tab
266
+
267
+ #### Bug Fixes
268
+
269
+ - Support to restrict add and remove functionalities of Tab has been provided.
270
+
271
+ ## 17.1.38 (2019-03-29)
272
+
273
+ ### Menu
274
+
275
+ #### Bug Fixes
276
+
277
+ - Support provided for dynamically updating the self referential data.
278
+
279
+ ### Accordion
280
+
281
+ #### Bug Fixes
282
+
283
+ - An issue with the expand action of Accordion when set to single mode, with the items being rendered using content template is fixed now.
284
+
285
+ ## 17.1.32-beta (2019-03-13)
286
+
287
+ ### ContextMenu
288
+
289
+ #### Bug Fixes
290
+
291
+ - Submenu items styles are not proper in ContextMenu issue is fixed.
292
+
293
+ ### Sidebar
294
+
295
+ #### New Features
296
+
297
+ - `MediaQuery` property will now support both string and `MediaQueryList` object types.
298
+
299
+ #### Bug Fixes
300
+
301
+ - Multiple event bindings issue on calling show and hide methods when `closeOnDocumentClick` property is enabled has been fixed.
302
+
303
+ ### TreeView
304
+
305
+ #### New Features
306
+
307
+ - Provided an option for auto checking parent tree nodes based on child tree nodes checked state and vice versa.
308
+ - Now it is possible to select or unselect the collapsed child nodes by selecting its parent node through checkbox selection, with Load-On-Demand mode enabled.
309
+
310
+ ## 16.4.54 (2019-02-19)
311
+
312
+ ### Tab
313
+
314
+ #### Breaking Changes
315
+
316
+ - The initial focus set on active tab item is removed from the component on initial load.
317
+
318
+ ## 16.4.53 (2019-02-13)
319
+
320
+ ### Accordion
321
+
322
+ #### Bug Fixes
323
+
324
+ - Resolved the issue with accessing Accordion item object in clicked event arguments.
325
+
326
+ ## 16.4.52 (2019-02-05)
327
+
328
+ ### Sidebar
329
+
330
+ #### Bug Fixes
331
+
332
+ - Tabindex support has been provided.
333
+
334
+ #### Breaking Changes
335
+
336
+ - Sidebar with type `Auto` will always expand on initial rendering, irrespective of `enableDock` and `isOpen` properties.
337
+
338
+ - When dynamically changing the type property of the Sidebar with invalid property value (For ex:`Pushs`), will reset the type of the Sidebar to its default type as `Auto`.
339
+
340
+ ## 17.1.1-beta (2019-01-29)
341
+
342
+ ### Menu
343
+
344
+ #### Bug Fixes
345
+
346
+ - Popup not opened properly when two menu rendered side by side issue fixed.
347
+
348
+ ### TreeView
349
+
350
+ #### Bug Fixes
351
+
352
+ - The issue with, “When disabling the TreeView parent nodes, the child nodes also appear in a disabled state” has been fixed.
353
+
354
+ ## 16.4.45 (2019-01-02)
355
+
356
+ ### Toolbar
357
+
358
+ #### Bug Fixes
359
+
360
+ - While resizing, Toolbar items are not moving from popup to toolbar in `extended` overflow mode issue is fixed.
361
+
362
+ ### Menu
363
+
364
+ #### Bug Fixes
365
+
366
+ - Getting custom properties from menu items in `beforeItemRender` event issue fixed.
367
+
368
+ ### Sidebar
369
+
370
+ #### Bug Fixes
371
+
372
+ - Fixed the issue with rendering the Sidebar using `isOpen` property and type `Auto`.
373
+
374
+ ## 16.4.44 (2018-12-24)
375
+
376
+ ### Accordion
377
+
378
+ #### Bug Fixes
379
+
380
+ - Parent accordion collapsing issue is fixed when Tab renders within it.
381
+
382
+ ## 16.4.40-beta (2018-12-10)
383
+
384
+ ### Tab
385
+
386
+ #### New Features
387
+
388
+ - Tab vertical orientation support was provided.
389
+
390
+ ### ContextMenu
391
+
392
+ #### Breaking Changes
393
+
394
+ - The `animationSettings` property type changed from `AnimationSettings` to `AnimationSettingsModel`
395
+
396
+ ### Menu
397
+
398
+ #### New Features
399
+
400
+ - Provided scrollable option in Menu for rendering large menus and submenus in an adaptive way.
401
+
402
+ #### Breaking Changes
403
+
404
+ - Type changes done for the following property.
405
+
406
+ Property Name | Old Type | New Type
407
+ -----|-----|-----
408
+ `animationSettings` | AnimationSettings | AnimationSettingsModel
409
+ `fields` | FieldSettings | FieldSettingsModel
410
+
411
+ ### TreeView
412
+
413
+ #### New Features
414
+
415
+ - Provided an option to disable child nodes when load-on-demand support is enabled.
416
+ - Provided an option to disable the load-on-demand support in TreeView control.
417
+
418
+ ## 16.3.33 (2018-11-20)
419
+
420
+ ### Sidebar
421
+
422
+ #### Bug Fixes
423
+
424
+ - Added the `event` and `isInteracted` event arguments in open and close events of Sidebar.
425
+
426
+ ### TreeView
427
+
428
+ #### Bug Fixes
429
+
430
+ - In TreeView, scrolling is not working smoothly for iPad device issue is resolved
431
+
432
+ ## 16.3.29 (2018-10-31)
433
+
434
+ ### TreeView
435
+
436
+ #### New Features
437
+
438
+ - Provided an option to prevent the tree node from auto checking when checked state of the parent or child tree node is modified.
439
+ - Provided support to use hierarchical data as remote data source of the TreeView component by using offline mode of data manager plugin.
440
+
441
+ ## 16.3.27 (2018-10-23)
442
+
443
+ ### Menu
444
+
445
+ #### Bug Fixes
446
+
447
+ - Destroy method issue while using multiple menu is fixed.
448
+
449
+ ## 16.3.25 (2018-10-15)
450
+
451
+ ### Menu
452
+
453
+ #### Bug Fixes
454
+
455
+ - Issue with sub menu positioning fixed.
456
+
457
+ ## 16.3.23 (2018-10-03)
458
+
459
+ ### Sidebar
460
+
461
+ #### New Features
462
+
463
+ - Two-way binding support has been provided for `isOpen` property.
464
+
465
+ ### Tab
466
+
467
+ #### Bug Fixes
468
+
469
+ - The issue with tab selection after remove other tabs has been fixed.
470
+
471
+ ## 16.3.21 (2018-09-22)
472
+
473
+ ### TreeView
474
+
475
+ #### Bug Fixes
476
+
477
+ - The `nodeData` argument in `nodeSelected` event showing wrong value issue has been fixed.
478
+
479
+ ## 16.3.17 (2018-09-12)
480
+
481
+ ### Menu
482
+
483
+ Menu is a graphical user interface that serves as navigation header for your application or site. Menu can be populated from a data source such as an array of JavaScript objects that can be either structured as hierarchical or self-referential data. The following key features are available in Menu component.
484
+
485
+ - **Rendering** - Supports to render based on the items collection (array of JavaScript objects) and HTML elements.
486
+
487
+ - **Separator** - Supports menu items grouping by using the Separator.
488
+
489
+ - **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
490
+
491
+ - **Template and Multilevel Nesting** - Supports template and multilevel nesting in Menu.
492
+
493
+ - **Accessibility** - Provided with built-in accessibility support that helps to access all the Menu component features through the keyboard, screen readers, or other assistive technology devices.
494
+
495
+ ### TreeView
496
+
497
+ #### New Features
498
+
499
+ - Provided an option to get updated data source of tree view after drag and drop, editing, deleting, and adding nodes in tree view.
500
+ - Support to get custom data from tree view.
501
+ - Support to maintain expanded nodes of tree view on page reloads.
502
+ - Provided an option to get all the checked nodes if the tree node is expanded or collapsed.
503
+ - Provided 'none' option in 'expandOn' property to prevent expand or collapse of tree node
504
+ - Provided an option to prevent the parent node from expanding, while adding a node to the tree view control.
505
+
506
+ ## 16.2.49 (2018-08-21)
507
+
508
+ ### Tab
509
+
510
+ #### Bug Fixes
511
+
512
+ - The issue with updating model on enable/disable tab has fixed in `enableTab` method.
513
+
514
+ ### TreeView
515
+
516
+ #### Bug Fixes
517
+
518
+ - Issue with drag and drop of nodes from one tree view to another empty tree view has been fixed.
519
+
520
+ ## 16.2.48 (2018-08-14)
521
+
522
+ ### Tab
523
+
524
+ #### Breaking Changes
525
+
526
+ - Issue with triggering select events at initial load has been resolved
527
+
528
+ ### Toolbar
529
+
530
+ #### Bug Fixes
531
+
532
+ - Resolved the tooltip issue on display special character in toolbar items.
533
+
534
+ ## 16.2.47 (2018-08-07)
535
+
536
+ ### Tab
537
+
538
+ #### Bug Fixes
539
+
540
+ - The issue with updating model on removing tab has fixed in `removeTab` method.
541
+ - Resolve the issue which occurs on updating item value with `hideTab` method.
542
+
543
+ ### Sidebar
544
+
545
+ #### Bug Fixes
546
+
547
+ - Issue with Sidebar destroyed in Angular routing is fixed.
548
+
549
+ ### TreeView
550
+
551
+ #### Bug Fixes
552
+
553
+ - Tree view checkbox not working properly in Firefox browser issue has been resolved.
554
+
555
+ ## 16.2.46 (2018-07-30)
556
+
557
+ ### Accordion
558
+
559
+ #### Bug Fixes
560
+
561
+ - Issue with Space and Enter key, which is not working in RTE while rendering inside the Accordion is fixed
562
+
563
+ ### TreeView
564
+
565
+ #### New Features
566
+
567
+ - In tree view, provided an option to prevent dropping an element in the sibling position.
568
+
569
+ ## 16.2.45 (2018-07-17)
570
+
571
+ ### Tab
572
+
573
+ #### Bug Fixes
574
+
575
+ - Issue with content animation, when switching to other tabs before previous animation complete is fixed
576
+
577
+ ## 16.2.44 (2018-07-10)
578
+
579
+ ### Sidebar
580
+
581
+ #### Bug Fixes
582
+
583
+ - `target` property is not working on lower version of Firefox browser (below 48), issue has been fixed.
584
+
585
+ ## 16.2.41 (2018-06-25)
586
+
587
+ ### Sidebar
588
+
589
+ #### New Features
590
+
591
+ - Support for setting the open/close state of the Sidebar has been provided with `isOpen` property.
592
+
593
+ #### Breaking Changes
594
+
595
+ - Target property supports both the id and class selectors to locate the target element.
596
+ - `isOpen()` method is now removed and know about the Sidebar is whether open or close state by using `isOpen` property.
597
+
598
+ ### Tab
599
+
600
+ #### Bug Fixes
601
+
602
+ - Content initiated twice when using ng-template in Tab item has been fixed.
603
+ - Solved issues on `removeItem` public method.
604
+
605
+ ### Toolbar
606
+
607
+ #### New Features
608
+
609
+ - Provided support for `MultiRow` options on toolbar items.
610
+ - Inline alignment of toolbar items support is provided.
611
+
612
+ ## 16.1.42 (2018-05-08)
613
+
614
+ ### Accordion
615
+
616
+ #### Bug Fixes
617
+
618
+ - Issue with space key in text area, when placed inside Accordion is fixed.
619
+
620
+ ### Tab
621
+
622
+ #### Breaking Changes
623
+
624
+ - Breaking issue with dynamic loading tab content template ID is fixed.
625
+
626
+ ## 16.1.40 (2018-05-08)
627
+
628
+ ### Tab
629
+
630
+ #### Bug Fixes
631
+
632
+ - Issue with event unbinding in tab content is fixed.
633
+
634
+ ## 16.1.38 (2018-05-02)
635
+
636
+ ### TreeView
637
+
638
+ #### Bug Fixes
639
+
640
+ - TreeView is not rendering properly when you return entire data (including child nodes) on initial request issue is fixed.
641
+
642
+ ### Tab
643
+
644
+ #### Bug Fixes
645
+
646
+ - Issue with loading dynamic content using template ID is fixed.
647
+
648
+ ## 16.1.37 (2018-04-24)
649
+
650
+ ### TreeView
651
+
652
+ #### Bug Fixes
653
+
654
+ - Issue in triggering `nodeExpanded` event while expanding all the nodes is fixed.
655
+
656
+ ## 16.1.35 (2018-04-17)
657
+
658
+ ### TreeView
659
+
660
+ #### Bug Fixes
661
+
662
+ - Provided option to prevent expand/collapse node while double clicking the tree node.
663
+
664
+ ## 16.1.34 (2018-04-10)
665
+
666
+ ### TreeView
667
+
668
+ #### Bug Fixes
669
+
670
+ - Issue in TreeView while ‘cancel' the `nodeDragDrop` event is fixed.
671
+
672
+ - Issue in TreeView drag and drop function, while adding ‘e-droppable’ class in the target element is fixed.
673
+
674
+ ## 16.1.32 (2018-03-29)
675
+
676
+ ### TreeView
677
+
678
+ #### Bug Fixes
679
+
680
+ - Prevented the checkbox interactions while the corresponding node was in disabled state.
681
+
682
+ ## 16.1.28 (2018-03-09)
683
+
684
+ ### Toolbar
685
+
686
+ #### Bug Fixes
687
+
688
+ - Toolbar border hidden issue with grid in IE11 browser is fixed.
689
+
690
+ ## 16.1.24 (2018-02-22)
691
+
692
+ ### Common
693
+
694
+ #### Breaking Changes
695
+
696
+ - Changed the Angular component selector, component name prefix with `ejs` e.g: `ejs-tab`.
697
+
698
+ #### New Features
699
+
700
+ - High contrast theme support.
701
+
702
+ ### Sidebar
703
+
704
+ The Sidebar is an expandable and collapsible component that typically acts as a side container to place primary or secondary content alongside the main content.
705
+
706
+ - **Target** - The Sidebar can be initialized in any HTML element other than the body element.
707
+
708
+ - **Types** – Supports Push, Over, Slide and Auto to expand or collapse the Sidebar.
709
+
710
+ - **Position** – Allows to position the Sidebar in Left or Right direction.
711
+
712
+ - **Auto close** - Allows to set the sidebar in an expanded or collapsed state only in certain resolutions.
713
+
714
+ - **Dock** - By default, supports display of short notifications about the content on docked mode.
715
+
716
+ - **Backdrop** – Specifies the whether to apply overlay options to main content when the Sidebar is in open state.
717
+
718
+ ### Tab
719
+
720
+ #### Breaking Changes
721
+
722
+ - Locale key changed from close to `closeButtonTitle`.
723
+
724
+ ### Toolbar
725
+
726
+ #### Breaking Changes
727
+
728
+ - Pascal casing change to `align` property values (`Left`, `Center`, `Right`).
729
+
730
+ ## 15.4.30-preview (2018-02-14)
731
+
732
+ ### TreeView
733
+
734
+ #### New Features
735
+
736
+ - Added “getNode” method in TreeView to get the node's data based on given node element or it's ID.
737
+
738
+ - Added “beginEdit” method in TreeView, to initiate the editing mode of the TreeView node through code.
739
+
740
+ #### Breaking Changes
741
+
742
+ - In TreeView, “replaceText” method name has been modified as “updateNode”.
743
+
744
+ ## 15.4.27-preview (2018-01-30)
745
+
746
+ ### Tab
747
+
748
+ #### Bug Fixes
749
+
750
+ - Separate item change for active content issue with Tab fixed.
751
+
752
+ ## 15.4.26-preview (2018-01-23)
753
+
754
+ ### ContextMenu
755
+
756
+ #### Bug Fixes
757
+
758
+ - Lengthy text and caret icon wraps next line issue fixed.
759
+
760
+ ### Accordion
761
+
762
+ #### Bug Fixes
763
+
764
+ - Accordion content class styles overriding with the other component issue fixed.
765
+
766
+ ### Tab
767
+
768
+ #### Bug Fixes
769
+
770
+ - Issue with changing separate items property has been fixed.
771
+
772
+ ### Toolbar
773
+
774
+ #### New Features
775
+
776
+ - Provided support to display Toolbar items in popup always.
777
+
778
+ ## 15.4.25-preview (2018-01-09)
779
+
780
+ ## 15.4.23-preview (2017-12-27)
781
+
782
+ ### Common
783
+
784
+ #### New Features
785
+
786
+ - Added typing file for ES5 global scripts (dist/global/index.d.ts)
787
+
788
+ #### Breaking Changes
789
+
790
+ - Modified the module bundle file name for ES6 bundling
791
+
792
+ ### Toolbar
793
+
794
+ #### Bug Fixes
795
+
796
+ - Issue with changing separate items property has been fixed.
797
+
798
+ - The Toolbar Popup and scrollable creation issue in non visible element is fixed.
799
+
800
+ - Dynamic Items updating with toolbar alignment is fixed.
801
+
802
+ - Removed unwanted space available in the Toolbar Popup mode initial time.
803
+
804
+ ## 15.4.22-preview (2017-12-14)
805
+
806
+ ### ContextMenu
807
+
808
+ #### Bug Fixes
809
+
810
+ - Destroy method issue in angular is fixed.
811
+
812
+ ## 15.4.21-preview (2017-12-08)
813
+
814
+ ### Tab
815
+
816
+ #### Bug Fixes
817
+
818
+ - Tab header overlapping issue with grid is fixed.
819
+
820
+ ## 15.4.20-preview (2017-12-01)
821
+
822
+ ### Common
823
+
824
+ #### New Features
825
+
826
+ - Upgraded TypeScript version to 2.6.2
827
+
828
+ ## 15.4.17-preview (2017-11-13)
829
+
830
+ ### Accordion
831
+
832
+ Accordion is a vertically collapsible content panel which is displaying panels, one or multiple at a time within the available space.
833
+
834
+ - **Rendering** - Supports to render based on the items collection and HTML elements.
835
+
836
+ - **Expand Mode** - Supports to define single or multiple expand mode for Accordion panels.
837
+
838
+ - **Animation** - Supports animation effects for expanding/collapsing the panels.
839
+
840
+ - **Accessibility** - Provided with built-in accessibility support which helps to access all the Accordion component features through the keyboard, screen readers, or other assistive technology devices.
841
+
842
+ ### ContextMenu
843
+
844
+ ContextMenu is a graphical user interface that appears on the user right click/touch hold action.
845
+
846
+ - **Separator** - Supports menu items grouping by using the Separator.
847
+
848
+ - **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
849
+
850
+ - **Template and Multilevel Nesting** - Supports template and multilevel nesting in ContextMenu.
851
+
852
+ - **Accessibility** - Provided with built-in accessibility support that helps to access all the ContextMenu component features through the keyboard, screen readers, or other assistive technology devices.
853
+
854
+ ### Tab
855
+
856
+ Tab is a content panel to show multiple contents in specific space one at a time.
857
+
858
+ - **Rendering** - Supports to render based on the items collection and HTML elements.
859
+
860
+ - **Adaptive** - Supports responsive rendering with scrollable Tabs and popup menu.
861
+
862
+ - **Animation** - Supports animation effects for moving previous/next contents of the Tab.
863
+
864
+ - **Customization** - Provides customization support for header with icons and orientation.
865
+
866
+ - **Accessibility** - Provided with built-in accessibility support which helps to access all the Tab component features through the keyboard, screen readers, or other assistive technology devices.
867
+
868
+ ### Toolbar
869
+
870
+ Displays a group of command buttons arranged horizontally.
871
+
872
+ - **Rendering** - Supports to render based on the items collection and HTML elements.
873
+
874
+ - **Customization** - Supports to add buttons , separator & input components.
875
+
876
+ - **Adaptive** - Supports responsive rendering with scrollable Toolbar and popup menu.
877
+
878
+ - **Accessibility**- Provided with built-in accessibility support which helps to access all the Toolbar component features through the keyboard, screen readers, or other assistive technology devices.
879
+
880
+ ### TreeView
881
+
882
+ TreeView component is used to represent hierarchical data in a tree like structure with advanced functions to edit, drag and drop, select with CheckBox and more. TreeView can be populated from a data source such as an array of JavaScript objects or from DataManager. The following key features are available in TreeView component.
883
+
884
+ - **Data Binding** - Binds the TreeView component with an array of JavaScript objects or DataManager.
885
+
886
+ - **CheckBox** - Allows you to select more than one node in TreeView without affecting the UI appearance.
887
+
888
+ - **Drag and Drop** - Allows you to drag and drop any node in TreeView.
889
+
890
+ - **Multi Selection** - Allows you to select more than one node in TreeView.
891
+
892
+ - **Node Editing** - Allows you to change the text of a node in TreeView.
893
+
894
+ - **Sorting** - Allows display of the TreeView nodes in an ascending or a descending order.
895
+
896
+ - **Template** - Allows you to customize the nodes in TreeView.
897
+
898
+ - **Accessibility** - Provides built-in accessibility support that helps to access all the TreeView component features through the keyboard, on-screen readers, or other assistive technology devices.