@syncfusion/ej2-angular-navigations 27.2.5-ngcc → 28.1.33-686179

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 (169) hide show
  1. package/CHANGELOG.md +2792 -0
  2. package/README.md +1 -1
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/accordion/accordion-all.module.mjs +23 -0
  5. package/esm2020/src/accordion/accordion.component.mjs +77 -0
  6. package/esm2020/src/accordion/accordion.module.mjs +34 -0
  7. package/esm2020/src/accordion/items.directive.mjs +72 -0
  8. package/esm2020/src/appbar/appbar-all.module.mjs +23 -0
  9. package/esm2020/src/appbar/appbar.component.mjs +59 -0
  10. package/esm2020/src/appbar/appbar.module.mjs +25 -0
  11. package/esm2020/src/breadcrumb/breadcrumb-all.module.mjs +23 -0
  12. package/esm2020/src/breadcrumb/breadcrumb.component.mjs +77 -0
  13. package/esm2020/src/breadcrumb/breadcrumb.module.mjs +34 -0
  14. package/esm2020/src/breadcrumb/items.directive.mjs +58 -0
  15. package/esm2020/src/carousel/carousel-all.module.mjs +23 -0
  16. package/esm2020/src/carousel/carousel.component.mjs +95 -0
  17. package/esm2020/src/carousel/carousel.module.mjs +34 -0
  18. package/esm2020/src/carousel/items.directive.mjs +66 -0
  19. package/esm2020/src/context-menu/contextmenu-all.module.mjs +23 -0
  20. package/esm2020/src/context-menu/contextmenu.component.mjs +60 -0
  21. package/esm2020/src/context-menu/contextmenu.module.mjs +25 -0
  22. package/esm2020/src/index.mjs +42 -0
  23. package/esm2020/src/menu/items.directive.mjs +46 -0
  24. package/esm2020/src/menu/menu-all.module.mjs +23 -0
  25. package/esm2020/src/menu/menu.component.mjs +71 -0
  26. package/esm2020/src/menu/menu.module.mjs +34 -0
  27. package/esm2020/src/sidebar/sidebar-all.module.mjs +23 -0
  28. package/esm2020/src/sidebar/sidebar.component.mjs +59 -0
  29. package/esm2020/src/sidebar/sidebar.module.mjs +25 -0
  30. package/esm2020/src/stepper/stepper-all.module.mjs +23 -0
  31. package/esm2020/src/stepper/stepper.component.mjs +77 -0
  32. package/esm2020/src/stepper/stepper.module.mjs +34 -0
  33. package/esm2020/src/stepper/steps.directive.mjs +58 -0
  34. package/esm2020/src/tab/items.directive.mjs +78 -0
  35. package/esm2020/src/tab/tab-all.module.mjs +23 -0
  36. package/esm2020/src/tab/tab.component.mjs +64 -0
  37. package/esm2020/src/tab/tab.module.mjs +34 -0
  38. package/esm2020/src/toolbar/items.directive.mjs +66 -0
  39. package/esm2020/src/toolbar/toolbar-all.module.mjs +23 -0
  40. package/esm2020/src/toolbar/toolbar.component.mjs +64 -0
  41. package/esm2020/src/toolbar/toolbar.module.mjs +34 -0
  42. package/esm2020/src/treeview/treeview-all.module.mjs +23 -0
  43. package/esm2020/src/treeview/treeview.component.mjs +66 -0
  44. package/esm2020/src/treeview/treeview.module.mjs +25 -0
  45. package/esm2020/syncfusion-ej2-angular-navigations.mjs +5 -0
  46. package/fesm2015/syncfusion-ej2-angular-navigations.mjs +1615 -0
  47. package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  48. package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1615 -0
  49. package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  50. package/package.json +28 -14
  51. package/schematics/utils/lib-details.d.ts +2 -2
  52. package/schematics/utils/lib-details.js +2 -2
  53. package/schematics/utils/lib-details.ts +2 -2
  54. package/src/accordion/accordion-all.module.d.ts +6 -0
  55. package/src/accordion/accordion.component.d.ts +3 -0
  56. package/src/accordion/accordion.module.d.ts +7 -0
  57. package/src/accordion/items.directive.d.ts +5 -0
  58. package/src/appbar/appbar-all.module.d.ts +6 -0
  59. package/src/appbar/appbar.component.d.ts +3 -0
  60. package/src/appbar/appbar.module.d.ts +6 -0
  61. package/src/breadcrumb/breadcrumb-all.module.d.ts +6 -0
  62. package/src/breadcrumb/breadcrumb.component.d.ts +3 -0
  63. package/src/breadcrumb/breadcrumb.module.d.ts +7 -0
  64. package/src/breadcrumb/items.directive.d.ts +5 -0
  65. package/src/carousel/carousel-all.module.d.ts +6 -0
  66. package/src/carousel/carousel.component.d.ts +3 -0
  67. package/src/carousel/carousel.module.d.ts +7 -0
  68. package/src/carousel/items.directive.d.ts +5 -0
  69. package/src/context-menu/contextmenu-all.module.d.ts +6 -0
  70. package/src/context-menu/contextmenu.component.d.ts +3 -0
  71. package/src/context-menu/contextmenu.module.d.ts +6 -0
  72. package/src/menu/items.directive.d.ts +10 -0
  73. package/src/menu/menu-all.module.d.ts +6 -0
  74. package/src/menu/menu.component.d.ts +3 -0
  75. package/src/menu/menu.module.d.ts +7 -0
  76. package/src/sidebar/sidebar-all.module.d.ts +6 -0
  77. package/src/sidebar/sidebar.component.d.ts +3 -0
  78. package/src/sidebar/sidebar.module.d.ts +6 -0
  79. package/src/stepper/stepper-all.module.d.ts +6 -0
  80. package/src/stepper/stepper.component.d.ts +3 -0
  81. package/src/stepper/stepper.module.d.ts +7 -0
  82. package/src/stepper/steps.directive.d.ts +5 -0
  83. package/src/tab/items.directive.d.ts +5 -0
  84. package/src/tab/tab-all.module.d.ts +6 -0
  85. package/src/tab/tab.component.d.ts +3 -0
  86. package/src/tab/tab.module.d.ts +7 -0
  87. package/src/toolbar/items.directive.d.ts +5 -0
  88. package/src/toolbar/toolbar-all.module.d.ts +6 -0
  89. package/src/toolbar/toolbar.component.d.ts +3 -0
  90. package/src/toolbar/toolbar.module.d.ts +7 -0
  91. package/src/treeview/treeview-all.module.d.ts +6 -0
  92. package/src/treeview/treeview.component.d.ts +3 -0
  93. package/src/treeview/treeview.module.d.ts +6 -0
  94. package/styles/accordion/bds.css +1 -0
  95. package/styles/accordion/bds.scss +1 -0
  96. package/styles/accordion/tailwind3.css +1 -0
  97. package/styles/accordion/tailwind3.scss +1 -0
  98. package/styles/appbar/bds.css +1 -0
  99. package/styles/appbar/bds.scss +1 -0
  100. package/styles/appbar/tailwind3.css +1 -0
  101. package/styles/appbar/tailwind3.scss +1 -0
  102. package/styles/bds-lite.css +1 -0
  103. package/styles/bds-lite.scss +1 -0
  104. package/styles/bds.css +1 -0
  105. package/styles/bds.scss +14 -0
  106. package/styles/breadcrumb/bds.css +1 -0
  107. package/styles/breadcrumb/bds.scss +1 -0
  108. package/styles/breadcrumb/tailwind3.css +1 -0
  109. package/styles/breadcrumb/tailwind3.scss +1 -0
  110. package/styles/carousel/bds.css +1 -0
  111. package/styles/carousel/bds.scss +1 -0
  112. package/styles/carousel/tailwind3.css +1 -0
  113. package/styles/carousel/tailwind3.scss +1 -0
  114. package/styles/context-menu/bds.css +1 -0
  115. package/styles/context-menu/bds.scss +1 -0
  116. package/styles/context-menu/tailwind3.css +1 -0
  117. package/styles/context-menu/tailwind3.scss +1 -0
  118. package/styles/h-scroll/bds.css +1 -0
  119. package/styles/h-scroll/bds.scss +1 -0
  120. package/styles/h-scroll/tailwind3.css +1 -0
  121. package/styles/h-scroll/tailwind3.scss +1 -0
  122. package/styles/menu/bds.css +1 -0
  123. package/styles/menu/bds.scss +1 -0
  124. package/styles/menu/tailwind3.css +1 -0
  125. package/styles/menu/tailwind3.scss +1 -0
  126. package/styles/pager/bds.css +1 -0
  127. package/styles/pager/bds.scss +1 -0
  128. package/styles/pager/tailwind3.css +1 -0
  129. package/styles/pager/tailwind3.scss +1 -0
  130. package/styles/sidebar/bds.css +1 -0
  131. package/styles/sidebar/bds.scss +1 -0
  132. package/styles/sidebar/tailwind3.css +1 -0
  133. package/styles/sidebar/tailwind3.scss +1 -0
  134. package/styles/stepper/bds.css +1 -0
  135. package/styles/stepper/bds.scss +1 -0
  136. package/styles/stepper/tailwind3.css +1 -0
  137. package/styles/stepper/tailwind3.scss +1 -0
  138. package/styles/tab/bds.css +1 -0
  139. package/styles/tab/bds.scss +1 -0
  140. package/styles/tab/tailwind3.css +1 -0
  141. package/styles/tab/tailwind3.scss +1 -0
  142. package/styles/tailwind3-lite.css +1 -0
  143. package/styles/tailwind3-lite.scss +1 -0
  144. package/styles/tailwind3.css +1 -0
  145. package/styles/tailwind3.scss +14 -0
  146. package/styles/toolbar/bds.css +1 -0
  147. package/styles/toolbar/bds.scss +1 -0
  148. package/styles/toolbar/tailwind3.css +1 -0
  149. package/styles/toolbar/tailwind3.scss +1 -0
  150. package/styles/treeview/bds.css +1 -0
  151. package/styles/treeview/bds.scss +1 -0
  152. package/styles/treeview/tailwind3.css +1 -0
  153. package/styles/treeview/tailwind3.scss +1 -0
  154. package/styles/v-scroll/bds.css +1 -0
  155. package/styles/v-scroll/bds.scss +1 -0
  156. package/styles/v-scroll/tailwind3.css +1 -0
  157. package/styles/v-scroll/tailwind3.scss +1 -0
  158. package/syncfusion-ej2-angular-navigations.d.ts +5 -0
  159. package/@syncfusion/ej2-angular-navigations.es5.js +0 -2247
  160. package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
  161. package/@syncfusion/ej2-angular-navigations.js +0 -2070
  162. package/@syncfusion/ej2-angular-navigations.js.map +0 -1
  163. package/dist/ej2-angular-navigations.umd.js +0 -2356
  164. package/dist/ej2-angular-navigations.umd.js.map +0 -1
  165. package/dist/ej2-angular-navigations.umd.min.js +0 -11
  166. package/dist/ej2-angular-navigations.umd.min.js.map +0 -1
  167. package/ej2-angular-navigations.d.ts +0 -15
  168. package/ej2-angular-navigations.metadata.json +0 -1
  169. package/license +0 -10
package/CHANGELOG.md ADDED
@@ -0,0 +1,2792 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### ContextMenu
6
+
7
+ #### Features
8
+
9
+ - The context menu now includes `scroller support`, improving accessibility and usability across all devices. Submenus dynamically adjust to fit the available screen space.
10
+
11
+ - The context menu now includes `Template Support`, enabling the embedding of custom layouts, controls, or components for seamless integration of text, buttons, images, and icons.
12
+
13
+ ### Menu
14
+
15
+ #### Features
16
+
17
+ - The Menu component now supports `HTML attributes`, allowing users to assign custom attributes such as `role`, `tabindex`, `aria`, and `data` to individual menu items. This enhancement improves accessibility, provides greater control, and ensures a more customizable and user-friendly experience.
18
+
19
+ ### TreeView
20
+
21
+ #### Bug Fixes
22
+
23
+ - `#I659354` - The issue where the hidden target's parent node expands after adding a new node using the addNodes method with preventTargetExpand set to true in the TreeView component has been resolved.
24
+ - `#I656707` - The issue where the source node fails to move under a hidden target node using the moveNodes method in the TreeView component has been resolved.
25
+
26
+ ### Carousel
27
+
28
+ #### Features
29
+
30
+ - `#I513228` - Provided support to enable/disable the keyboard interactions in the carousel component by using `allowKeyboardInteraction` property.
31
+
32
+ ### Tab
33
+
34
+ #### Features
35
+
36
+ - `#I313872`, `#I511661`, `#F163147`, `#F163322` - Provided the content rendering support that allows you to specify the modes for loading tab content.
37
+ - `#F153247` - Provided support to enable/disable the Tab content swiping by using the `swipeMode` property.
38
+
39
+ ## 27.2.5 (2024-12-03)
40
+
41
+ ### Tab
42
+
43
+ #### Bug Fixes
44
+
45
+ - `#I649636` - An issue where the Tab `selecting` event `isInteracted` field value returned `false` in random cases upon item selection through interaction when the `allowDragAndDrop` property is enabled has been fixed.
46
+
47
+ ### TreeView
48
+
49
+ #### Bug Fixes
50
+
51
+ - `#I656345` - The issue with child items being skipped when navigating tree items with the down arrow key while the filtering input is active in the `DropdownTree` has been resolved.
52
+
53
+ ## 27.2.4 (2024-11-26)
54
+
55
+ ### TreeView
56
+
57
+ #### Bug Fixes
58
+
59
+ - `#I658444` - Resolved console error when clicking Select All after adding a new item to the `DropdownTree` component using the search functionality.
60
+
61
+ ## 27.2.3 (2024-11-21)
62
+
63
+ ### ContextMenu
64
+
65
+ #### Bug Fixes
66
+
67
+ - `#I625957` - The issue with "Context menu reposition issue while using the `insertBefore` and `insertAfter` method" has been resolved.
68
+
69
+ ### Tab
70
+
71
+ #### Bug Fixes
72
+
73
+ - `#I649636` - An issue with Tab item selection, when the `allowDragAndDrop` property is enabled, has been fixed.
74
+
75
+ ### TreeView
76
+
77
+ #### Bug Fixes
78
+
79
+ - `#I650340` - The alignment issue in the TreeView component, which occurred when using the `IconCss` field property with the e-icons class while enabling checkbox support, has been resolved.
80
+
81
+ - `#I649622` - The issue with the `preventTargetExpand` parameter, when set to true in the TreeView component's addNodes method, has been resolved.
82
+
83
+ - `#I639573` - Resolved an issue where all child nodes of a parent node were automatically selected upon reopening the `DropdownTree` component after filtering and selecting the parent node.
84
+
85
+ ## 27.2.2 (2024-11-15)
86
+
87
+ ### Tab
88
+
89
+ #### Bug Fixes
90
+
91
+ - `#I644385` - An issue that prevented access to the `refreshOverflow` method in the Tab has been resolved.
92
+
93
+ ### Toolbar
94
+
95
+ #### Bug Fixes
96
+
97
+ - `#I635313` - An issue with the Column Chooser in the grid, where the JAWS screen reader was reading items twice due to toolbar styles, has been resolved
98
+
99
+ ## 27.1.58 (2024-11-05)
100
+
101
+ ### Tab
102
+
103
+ #### Bug Fixes
104
+
105
+ - `#I640676` - An issue with the Tab item selection when Tab is rendered with hidden Tab items has been fixed.
106
+
107
+ ## 27.1.57 (2024-10-29)
108
+
109
+ ### ContextMenu
110
+
111
+ #### Bug Fixes
112
+
113
+ - `#I911927` - The issue with "The context menu popup does not close while scrolling when the open using `open` method" has been resolved.
114
+
115
+ ### Carousel
116
+
117
+ #### Bug Fixes
118
+
119
+ - `#I644419` - The script error that occurred in the carousel when a grid was rendered as a carousel item has been fixed.
120
+
121
+ ### TreeView
122
+
123
+ - `#I639573` - Resolved issues with selected items and the checked state of the parent node when filtering in the `DropdownTree` component.
124
+
125
+ #### Bug Fixes
126
+
127
+ - `#I642832` - An issue with TreeView component when adding child nodes using `addNodes` method without passing a target has been resolved.
128
+
129
+ ### Sidebar
130
+
131
+ #### Bug Fixes
132
+
133
+ - `#I643178` - An issue on browser resizing while setting width value in percentage in Sidebar component has been resolved.
134
+
135
+ ## 27.1.56 (2024-10-23)
136
+
137
+ ### Breadcrumb
138
+
139
+ #### Bug Fixes
140
+
141
+ - `#I916680` - The issue with "Breadcrumb menu popup not destroyed after breadcrumb element destroyed" has been resolved.
142
+
143
+ ## 27.1.55 (2024-10-22)
144
+
145
+ ### Stepper
146
+
147
+ #### Bug Fixes
148
+
149
+ - `#I592870` - Now the issue with unable to navigate to the next step when the step's disabled state is dynamically updated in linear mode has been resolved.
150
+
151
+ - `#I640774` - Now the issue with progress bar misalignment during dynamic updates of the step label has been resolved.
152
+
153
+ ### Tab
154
+
155
+ #### Bug Fixes
156
+
157
+ - `#I640676` - An issue with the arguments returned in the `selected` event of the Tab when using the `removeTab` method with hidden Tab items has been fixed.
158
+
159
+ ## 27.1.53 (2024-10-15)
160
+
161
+ ### Stepper
162
+
163
+ #### Bug Fixes
164
+
165
+ - `#F194542` - The issue with the text indicators disappearing when the disabled property is updated dynamically in the stepper component has been resolved.
166
+
167
+ ### TreeView
168
+
169
+ #### Bug Fixes
170
+
171
+ - `#I637759` - The issue with the `collapseAll` API not collapsing TreeView nodes correctly based on the specified node level in the TreeView component has been resolved.
172
+ - `#I912588` - The issue with filtered selected item in the `DropdownTree` component has been fixed.
173
+
174
+ ## 27.1.52 (2024-10-08)
175
+
176
+ ### ContextMenu
177
+
178
+ #### Bug Fixes
179
+
180
+ - `#I909790` - The issue with "When adding `submenu` item dynamically the parent menu item was returned wrongly in select event" has been resolved.
181
+
182
+ ## 27.1.51 (2024-09-30)
183
+
184
+ ### TreeView
185
+
186
+ #### Bug Fixes
187
+
188
+ - `#I636879` - Resolved the console error that occurred when dragging tree items in the TreeView component while using the Firefox browser.
189
+
190
+ ## 27.1.50 (2024-09-24)
191
+
192
+ ### TreeView
193
+
194
+ #### Bug Fixes
195
+
196
+ - `#I628962` - The issue with placing the dragged item between the nodes in the TreeView during the drag and drop action has been resolved.
197
+ - `#I635384` - Console error on initial rendering of `Dropdown Tree` when setting `checkDisabledChildren` to false with additional `htmlAttributes` has been resolved.
198
+
199
+ ### ContextMenu
200
+
201
+ #### Bug Fixes
202
+
203
+ - `#I897592` - The issue with "Context menu reopens after selecting options quickly" has been resolved.
204
+
205
+ ### Sidebar
206
+
207
+ #### Bug Fixes
208
+
209
+ - `#I629277` - The issue with the close arguments event value showing as null when performing a swipe action in the Sidebar component has been resolved.
210
+
211
+ - `#I627602` - An issue with Sidebar component while utilizing multiple sidebars with `closeOnDocumentClick` property has been resolved.
212
+
213
+ ## 27.1.48 (2024-09-18)
214
+
215
+ ### Tab
216
+
217
+ #### Bug fixes
218
+
219
+ - `#FB60693` - An issue where dynamically adding, removing, and then re-adding tabs caused an error when selecting the newly added tabs has been fixed.
220
+
221
+ ### ContextMenu
222
+
223
+ #### Bug Fixes
224
+
225
+ - `#I899285` - The issue with "Context Menu was not opened while using `animationSettings` effect as none and open method" has been resolved.
226
+
227
+ ### TreeView
228
+
229
+ #### New Features
230
+
231
+ - `#I621087` - Provided support to prevent the check action of disabled child nodes using `checkDisabledChildren` API.
232
+
233
+ #### Bug fixes
234
+
235
+ - `#I626894` - The issue where the parent state was not updated properly when dynamically changing the checked nodes has been resolved.
236
+
237
+ ## 26.2.12 (2024-09-03)
238
+
239
+ ### Stepper
240
+
241
+ #### Bug Fixes
242
+
243
+ - `#I620667` - Now the script error raised when resizing the page with the Stepper navigated between pages has been resolved.
244
+
245
+ ## 26.2.11 (2024-08-27)
246
+
247
+ ### ContextMenu
248
+
249
+ #### Bug Fixes
250
+
251
+ - `#I902438` - The issue with "Facing a flickering issue with the ContextMenu component on a Mac device" has been resolved.
252
+
253
+ ### Breadcrumb
254
+
255
+ #### Bug Fixes
256
+
257
+ - `#I898885` - The issue with "we need to prevent the popup from closing until a `multiselect` value is selected in breadcrumb component" has been resolved.
258
+
259
+ ## 26.2.8 (2024-08-06)
260
+
261
+ ### ContextMenu
262
+
263
+ #### Bug Fixes
264
+
265
+ - `#I897592` - The issue with "Context menu reopens after selecting options quickly" has been resolved.
266
+
267
+ ## 26.2.7 (2024-07-30)
268
+
269
+ ### TreeView
270
+
271
+ #### Bug fixes
272
+
273
+ - `#I611332` - The issue with the TreeView checkbox template sample with `autoCheck` property in the TreeView component has been resolved.
274
+
275
+ ## 26.1.41 (2024-07-09)
276
+
277
+ ### TreeView
278
+
279
+ #### Bug fixes
280
+
281
+ - `#I607288` - The console issue with dragging and dropping a tree node that has a 0 ID value in the TreeView component has been resolved.
282
+ - `#I607867` - The issue with the icon content in the TreeView component using the CDN style sheet link has been resolved.
283
+
284
+ ### Toolbar
285
+
286
+ #### Bug fixes
287
+
288
+ - An issue with memory leak in the Toolbar events has been resolved.
289
+
290
+ ### Stepper
291
+
292
+ #### Bug fixes
293
+
294
+ - `#I603606` - Now the issue with the stepper progress bar misalignment when minimized, and maximized the browser window has been resolved. Also, a new method `refreshProgressbar` has been added in the stepper control to programmatically update the progress bar.
295
+
296
+ ## 26.1.40 (2024-07-02)
297
+
298
+ ### TreeView
299
+
300
+ #### Bug fixes
301
+
302
+ - `#I604992` - The issue while rendering multiple checkboxes for the same tree node in the TreeView throws a script error has been resolved.
303
+
304
+ ## 26.1.39 (2024-06-25)
305
+
306
+ ### Stepper
307
+
308
+ #### Bug fixes
309
+
310
+ - `#I592870` - Prevented step interactions for non-linear steps when the linear property is enabled.
311
+
312
+ ### TreeView
313
+
314
+ #### Bug fixes
315
+
316
+ - `#I602280` - The issue where child filtering and `dataBound` event were not working for remote data has been resolved.
317
+
318
+ ## 26.1.38 (2024-06-19)
319
+
320
+ ### TreeView
321
+
322
+ #### Bug fixes
323
+
324
+ - `#I596651` - Resolved the fluent 2 theme spacing issue with the checkbox in the TreeView component.
325
+
326
+ ### Breadcrumb
327
+
328
+ #### Bug Fixes
329
+
330
+ - Provide support to prevent the breadcrumb item re-rendering action while clicking breadcrumb items through the `itemClick` event.
331
+
332
+ ## 26.1.35 (2024-06-11)
333
+
334
+ ### TreeView
335
+
336
+ #### Bug fixes
337
+
338
+ - `#FB53017` - Resolved the issue where the drop action failed while dropping on a sibling element.
339
+ - `#FB53024` - Resolved the issue where `position` value of nodeDragStop event returns improper value while change the `dropIndicator` value in `nodeDragging` event
340
+
341
+ ## 25.2.6 (2024-05-28)
342
+
343
+ ### TreeView
344
+
345
+ #### Bug Fixes
346
+
347
+ - `#I586334` - The issue where the TreeView checkbox state is read twice in the NVDA tool when using the Edge browser has been resolved.
348
+
349
+ ## 25.2.4 (2024-05-14)
350
+
351
+ ### ContextMenu
352
+
353
+ #### Bug Fixes
354
+
355
+ - `#I582079` - The issue with "context menu position issue occurs when using multilevel submenus" has been resolved.
356
+ - `#F187892` - The issue with "context menu overlapping when using a touch screen device" has been resolved.
357
+
358
+ ## 25.2.3 (2024-05-08)
359
+
360
+ ### ContextMenu
361
+
362
+ #### Bug Fixes
363
+
364
+ - `#I580119` - The issue with "context menu item text is too large causing it to override the next item" has been resolved.
365
+
366
+ ## 25.1.42 (2024-04-30)
367
+
368
+ ### Menu
369
+
370
+ #### Bug Fixes
371
+
372
+ - `#F583262` - The issue with "script error thrown in Menu component when setting target and hamburger properties" has been resolved.
373
+
374
+ ### TreeView
375
+
376
+ #### Bug fixes
377
+
378
+ - `#I581340` - Fixed the console error that occurred while clicking the node after changing `isDevice` to true.
379
+
380
+ ## 25.1.41 (2024-04-23)
381
+
382
+ ### TreeView
383
+
384
+ #### Bug Fixes
385
+
386
+ - `#I572876` - The issue with "The checkbox state are not read by the screen reader in the TreeView component with edge browser" has been resolved.
387
+
388
+ ### Carousel
389
+
390
+ #### Bug Fixes
391
+
392
+ - `#FB52446` - The issue with carousel slide changes during window resizing while the `loop` is set to false has been fixed.
393
+
394
+ ## 25.1.40 (2024-04-16)
395
+
396
+ ### Stepper
397
+
398
+ #### Bug Fixes
399
+
400
+ - `#I570244` - The issue with stepper component styles being overridden using CSS `important` has been resolved.
401
+
402
+ ### Accordion
403
+
404
+ #### Bug Fixes
405
+
406
+ - An issue where the `expandedIndices` returns empty when the HTML sanitizer is enabled has been fixed.
407
+
408
+ ## 25.1.38 (2024-04-02)
409
+
410
+ ### Menu
411
+
412
+ #### Bug Fixes
413
+
414
+ - The issue with "focusing the first element by using tab key in Menu" has been resolved.
415
+
416
+ ## 25.1.37 (2024-03-26)
417
+
418
+ ### TreeView
419
+
420
+ #### Bug Fixes
421
+
422
+ - `#I570321` - The issue with the focus on first item in TreeView if it is disabled mode has been resolved.
423
+
424
+ ### Toolbar
425
+
426
+ #### Bug Fixes
427
+
428
+ - `#I553624` - An issue with expanded toolbar items not align properly when change the mouse and touch modes has been fixed.
429
+
430
+ ## 25.1.35 (2024-03-15)
431
+
432
+ ### Menu
433
+
434
+ #### Bug Fixes
435
+
436
+ - `#F583262` - The issue with "script error thrown in Menu component when setting target and hamburger properties" has been resolved.
437
+
438
+ ### Stepper
439
+
440
+ #### Bug fixes
441
+
442
+ - `#I564429` - The issue with stepper progress bar misalignment in firefox browser has been resolved.
443
+
444
+ ### TreeView
445
+
446
+ #### Bug fixes
447
+
448
+ - `#I525899` - The issue with the React TreeView filtering operation has been resolved.
449
+
450
+ ### Tab
451
+
452
+ #### Bug fixes
453
+
454
+ - `#I523384` - The issue with the active tab background color has been resolved.
455
+
456
+ ## 23.2.5 (2023-11-23)
457
+
458
+ ### Sidebar
459
+
460
+ #### Bug Fixes
461
+
462
+ - `#I521215` - An issue with the Sidebar animation which is not working for the initial rendering has been resolved.
463
+
464
+ ## 23.2.4 (2023-11-20)
465
+
466
+ ### Menu
467
+
468
+ #### Bug Fixes
469
+
470
+ - `#F519984` - The issue with "`hideItems` method not working properly in Menu" has been resolved.
471
+
472
+ ## 23.1.44 (2023-11-07)
473
+
474
+ ### TreeView
475
+
476
+ #### Bug fixes
477
+
478
+ - `#I511195` - An issue with the TreeView component's tooltip(title) not decoded properly like tree node text has been resolved.
479
+
480
+ ## 23.1.43 (2023-10-31)
481
+
482
+ ### TreeView
483
+
484
+ #### Bug fixes
485
+
486
+ - `#F184993` - An issue with the TreeView checkbox status was not updating properly after drag and drop the node has been resolved.
487
+
488
+ ### Toolbar
489
+
490
+ #### Bug Fixes
491
+
492
+ - `#I514442` - An issue with tab index attribute set wrongly for Toolbar templated items has been fixed.
493
+
494
+ ## 23.1.41 (2023-10-17)
495
+
496
+ ### Menu
497
+
498
+ #### Bug Fixes
499
+
500
+ - `#I503763` - The issue with "sub menu closes while click on the vertical scroll of sub menu" has been resolved.
501
+ - The issue with "menu component in ribbon while switching to `arabic` localization" has been resolved
502
+
503
+ ## 23.1.40 (2023-10-10)
504
+
505
+ ### Accordion
506
+
507
+ #### Bug Fixes
508
+
509
+ - `#I506740` - An issue with the HTML element within the content of an Accordion item has been fixed.
510
+
511
+ ### TreeView
512
+
513
+ #### Bug fixes
514
+
515
+ - `#I506080` - The issue with the `ensureVisible` method for self-referential data source has been resolved.
516
+
517
+ ## 23.1.39 (2023-10-04)
518
+
519
+ ### ContextMenu
520
+
521
+ #### Bug Fixes
522
+
523
+ - The issue with "in mobile mode, script error occurred when context menu item is destroyed" has been resolved.
524
+
525
+ ## 23.1.36 (2023-09-15)
526
+
527
+ ### TreeView
528
+
529
+ #### Bug fixes
530
+
531
+ - `#I496955` - The expanded state not maintained while check the child node has been resolved.
532
+ - `#I488527` - The issue with when holding the mouse left click to select the TreeView nodes has been resolved.
533
+
534
+ ## 22.2.11 (2023-08-29)
535
+
536
+ ### Carousel
537
+
538
+ #### Bug Fixes
539
+
540
+ - `#F46021` - The issue where the current item position within the Carousel could shift off-center upon window resizing has been fixed.
541
+
542
+ ### Breadcrumb
543
+
544
+ #### Bug Fixes
545
+
546
+ - `#I474929` - The issue with "CSP template not working in breadcrumb component" has been resolved.
547
+
548
+ ## 22.2.7 (2023-08-02)
549
+
550
+ ### Menu
551
+
552
+ #### Bug Fixes
553
+
554
+ - `#I483185` - The issue with "Script error throws on destroying menu when its sub menus are still open" has been resolved.
555
+
556
+ ## 22.2.5 (2023-07-27)
557
+
558
+ ### Carousel
559
+
560
+ #### Bug Fixes
561
+
562
+ - `#I480096` - An issue with the indicators are not updated while dynamically changing the data source of the Carousel has been fixed.
563
+
564
+ ### Tab
565
+
566
+ #### Bug Fixes
567
+
568
+ - `#I45423` - The issue with where the Tab control was throwing a script error when opened in Internet Explorer 11 has been resolved.
569
+
570
+ ### ContextMenu
571
+
572
+ #### Bug Fixes
573
+
574
+ - `#I483247` - The issue with "Context Menu not working in IE 11" has been resolved.
575
+ - `#I484122` - The issue with "Context menu closed while scroll within the sub menu of context menu.
576
+
577
+ ## 22.1.39 (2023-07-18)
578
+
579
+ ### Menu
580
+
581
+ #### Bug Fixes
582
+
583
+ - `#F158513` - The issue with "hideItems method not working properly in angular menu component" has been resolved.
584
+
585
+ ## 22.1.38 (2023-07-11)
586
+
587
+ ### Toolbar
588
+
589
+ #### Bug Fixes
590
+
591
+ - `#I477752` - An issue with alignment while mobile orientation change has been fixed.
592
+
593
+ ## 22.1.36 (2023-06-28)
594
+
595
+ ### Tab
596
+
597
+ #### Bug Fixes
598
+
599
+ - `#I469389` - Provided `preventFocus` parameter in `selected` event to prevent focus on Tab header focus on selection.
600
+
601
+ ## 22.1.34 (2023-06-21)
602
+
603
+ ### Carousel
604
+
605
+ #### New Features
606
+
607
+ - `#FB36950` - Provided support to change slides using swipe or drag gestures, improving the usability and accessibility of the component on phones and tablets.
608
+ - Provided indicator customization options, such as `default`, `dynamic`, `progress` and `fraction`.
609
+
610
+ ## 21.2.9 (2023-06-06)
611
+
612
+ ### Menu
613
+
614
+ #### Bug Fixes
615
+
616
+ - `#I466216` - The issue with "hideItems and enableItems method not working properly when we placed more than one menu component in single page" has been resolved.
617
+
618
+ ### Tab
619
+
620
+ #### Bug Fixes
621
+
622
+ - `#I464872` - Resolved the issue where the Home or End key interaction was not working properly if the first and last tabs were hidden or disabled.
623
+
624
+ ### Toolbar
625
+
626
+ #### Bug Fixes
627
+
628
+ - `#I461446`, `#I468087` - An issue with toolbar items reorder issue when resize in extended and popup overflow mode has been fixed.
629
+
630
+ ## 21.2.8 (2023-05-30)
631
+
632
+ ### ContextMenu
633
+
634
+ #### Bug Fixes
635
+
636
+ - `#I829933` - The issue with "hideItems method of context menu not working properly for sub menu item" has been resolved.
637
+
638
+ ### TreeView
639
+
640
+ #### Bug fixes
641
+
642
+ - `#I457872` - Resolved the issue where customized theme styles were not correctly applied for active node text of TreeView component.
643
+
644
+ ## 21.2.6 (2023-05-23)
645
+
646
+ ### Accordion
647
+
648
+ #### Bug Fixes
649
+
650
+ - `#I461717` - An issue with the accordion old templates is not cleared after the property change has been fixed.
651
+
652
+ ## 21.2.5 (2023-05-16)
653
+
654
+ ### TreeView
655
+
656
+ #### Bug fixes
657
+
658
+ - `#I459316` - Now the nodeExpanding event triggers for addNodes method based on the value of preventExpand argument.
659
+ - `#I450146` - Provided the horizontal scroll support for the TreeView component in mobile mode.
660
+
661
+ ### Tab
662
+
663
+ #### Bug Fixes
664
+
665
+ - `#I459687` - An issue with the "Drag and drop is not working in the tab after setting `args.cancel` to true in the `dragStart` event" has been fixed.
666
+
667
+ ## 21.2.4 (2023-05-09)
668
+
669
+ ### ContextMenu
670
+
671
+ #### New Features
672
+
673
+ - `#I458989` - Provided the new parameter target to `beforeOpen` event argument of context menu component.
674
+
675
+ #### Bug Fixes
676
+
677
+ - `#I461864` - The issue with "Error is not handled gracefully in context menu enableItems method" has been resolved.
678
+
679
+ ### Tab
680
+
681
+ #### Bug Fixes
682
+
683
+ - `#I458102` - An issue where the tab header did not update with dynamic data when the tab directives were rendered as HTML elements has been fixed.
684
+ - `#I457021` - The issue where the `data-id` attribute was being removed from tab items upon property change has been fixed.
685
+
686
+ ## 21.2.3 (2023-05-03)
687
+
688
+ ### Toolbar
689
+
690
+ #### Bug Fixes
691
+
692
+ - `#I455137` - An issue with Horizontal scroll is not destroyed in RTL mode has been fixed.
693
+
694
+ ### Menu
695
+
696
+ #### Bug Fixes
697
+
698
+ - `#I455183` - The issue with "Script error thrown while using `hideMenuItems` method in menu component" has been resolved.
699
+
700
+ ### Tab
701
+
702
+ #### Bug fixes
703
+
704
+ - `#I453949` - An issue with the tab old templates is not cleared after the property change has been fixed.
705
+
706
+ ## 21.1.39 (2023-04-11)
707
+
708
+ ### Menu
709
+
710
+ #### Bug Fixes
711
+
712
+ - `#I445794` - The issue with "Context Menu keyboard navigation is not working in scrollable page" has been resolved.
713
+ - `#I446612` - The issue with "Attributes are not updated properly while directly appending the menu item" has been resolved.
714
+
715
+ ### Tab
716
+
717
+ #### Bug Fixes
718
+
719
+ - `#I434078` - An issue with the "icon for the Tab popup mode in mobile mode" has been fixed.
720
+ - `#I451561` - An issue with the "When the same selected tab is re-selected, the tab selecting event is triggered again" has been fixed.
721
+
722
+ ## 21.1.38 (2023-04-04)
723
+
724
+ ### Menu
725
+
726
+ #### Bug Fixes
727
+
728
+ - `#F181258` - The issue with "Input element is not editable when we placed inside the menu template" has been resolved.
729
+
730
+ ## 21.1.37 (2023-03-29)
731
+
732
+ ### TreeView
733
+
734
+ #### Bug fixes
735
+
736
+ - `#I449274` - Resolved the nodeSelected event not working properly issue on iPad.
737
+
738
+ ## 21.1.35 (2023-03-23)
739
+
740
+ ### Tab
741
+
742
+ #### Bug Fixes
743
+
744
+ - `#I441253` - An issue with the `aria-disabled` role accessibility has been fixed.
745
+
746
+ ### Toolbar
747
+
748
+ #### Breaking Changes
749
+
750
+ - We improved the Toolbar alignments with a flex design, which may cause slight changes to the alignment of Toolbar items.
751
+
752
+ ## 20.4.53 (2023-03-07)
753
+
754
+ ### Sidebar
755
+
756
+ #### Bug Fixes
757
+
758
+ - `#F180770` - While dynamically setting value for showBackdrop property results in creating duplicate DOM elements in Sidebar is resolved.
759
+
760
+ ### ContextMenu
761
+
762
+ #### Bug Fixes
763
+
764
+ - `#I439558` - The issue with "When removing all context menu items that contain icons using removeItems method, it thrown null reference error" has been resolved.
765
+
766
+ ### Breadcrumb
767
+
768
+ #### Bug Fixes
769
+
770
+ - `#I437629` - Issue with "Breadcrumb overflow mode menu creates a dark point for multiple click " has been resolved.
771
+
772
+ ### TreeView
773
+
774
+ #### Bug Fixes
775
+
776
+ - `#I436646`, `#I435360` - Resolved issue, while drag and drop other elements over TreeView component, then "not-allowed" cursor appears.
777
+
778
+ ### Tab
779
+
780
+ #### Bug Fixes
781
+
782
+ - `#I430159` - An issue with `ngOnDestroy` not being called when tab is closed has been resolved.
783
+
784
+ ## 20.4.52 (2023-02-28)
785
+
786
+ ## 20.4.51 (2023-02-21)
787
+
788
+ ### TreeView
789
+
790
+ #### Bug Fixes
791
+
792
+ - `#I428766` - Alignment issue in TreeView node without a sub-child in RTL mode has been resolved.
793
+ - `#I428002` - The accessibility related issues in the TreeView has been resolved.
794
+
795
+ ## 20.4.49 (2023-02-07)
796
+
797
+ ### Accordion
798
+
799
+ #### Bug Fixes
800
+
801
+ - `#I430833` - An issue with accordion active item styles override the grid pager has been fixed.
802
+
803
+ ### Menu
804
+
805
+ #### Bug Fixes
806
+
807
+ - `#I425152` - The issue with "Menu item not render properly when we use ItemTemplate with custom menu items" has been resolved.
808
+
809
+ ### Carousel
810
+
811
+ #### Bug Fixes
812
+
813
+ - `#I433179` - The issue with "changing the slides in carousel production environment" has been resolved.
814
+
815
+ ## 20.4.48 (2023-02-01)
816
+
817
+ ### Tab
818
+
819
+ #### Bug Fixes
820
+
821
+ - `#I427978` - Fixed an issue with cyclic navigation using arrow keys, where focus would shift to the first element after reaching the last element, and vice versa. Also, accessibility has been enhanced using the aria-label attributes.
822
+
823
+ ### Sidebar
824
+
825
+ #### Bug Fixes
826
+
827
+ - `#F179759` - Console error while using the showBackdrop property in the Sidebar component has been resolved.
828
+
829
+ ### TreeView
830
+
831
+ #### Bug Fixes
832
+
833
+ - `#I428488` - Included the "action" and "nodeData" values in the dataSourceChanged event.
834
+ - `#I428766` - Alignment issue in TreeView node without a sub-child has been resolved.
835
+
836
+ ## 20.4.44 (2023-01-18)
837
+
838
+ ### ContextMenu
839
+
840
+ #### Bug Fixes
841
+
842
+ - `#I425173` - The issue with "Context menu Submenus not opening properly with multiple levels " has been resolved.
843
+
844
+ ## 20.4.43 (2023-01-10)
845
+
846
+ ### ContextMenu
847
+
848
+ #### Bug Fixes
849
+
850
+ - `#I424794` - The issue with "Script error thrown in context menu when navigate using the keyboard" has been resolved.
851
+
852
+ ### TreeView
853
+
854
+ #### Bug Fixes
855
+
856
+ - `#I422672` - The expand icon not working properly in mobile mode issue has been fixed.
857
+
858
+ ## 20.4.42 (2023-01-04)
859
+
860
+ ### TreeView
861
+
862
+ #### Bug Fixes
863
+
864
+ - `#I424859` - The issue with the "TreeView isInteracted property returning false value with the NodeExpanded and NodeCollapsed event" has been fixed.
865
+
866
+ ## 20.4.40 (2022-12-28)
867
+
868
+ ### ContextMenu
869
+
870
+ #### Bug Fixes
871
+
872
+ - `#I425402` - Accessibility issue in context menu has been fixed.
873
+
874
+ ## 20.4.38 (2022-12-21)
875
+
876
+ ### Toolbar
877
+
878
+ #### New Features
879
+
880
+ - `#I348957` - Provided option to specify `tabindex` attribute to control the tab key order of the toolbar elements.
881
+
882
+ ### Tab
883
+
884
+ #### New Features
885
+
886
+ - `#I348957` - Provided option to specify `tabindex` attribute to control the tab key order of tab header elements.
887
+
888
+ #### Bug Fixes
889
+
890
+ - `#I422226` - An issue with while using underscore on tab id wrong content shown has been resolved.
891
+ - `#F179266` - Tab height does not change dynamically when `heightAdjustMode` has set as `Fill` mode has been resolved.
892
+
893
+ ### TreeView
894
+
895
+ #### Bug Fixes
896
+
897
+ - `#I415237` - The TreeView performance issue in Vue3 framework has been resolved.
898
+
899
+ ## 20.3.58 (2022-11-22)
900
+
901
+ ### Carousel
902
+
903
+ #### Bug Fixes
904
+
905
+ - `#I419341` - The Blank carousel item displayed on `autoplay` when a single item alone is rendered has been resolved.
906
+
907
+ ### TreeView
908
+
909
+ #### Bug Fixes
910
+
911
+ - `#I415849` - The issue with "Expand animation is not working for the dynamically added node on initial expanding in TreeView" has been resolved.
912
+
913
+ ## 20.3.57 (2022-11-15)
914
+
915
+ - `#I417236` - The accessibility issue mentioned in the TreeView component has been resolved.
916
+
917
+ ## 20.3.50 (2022-10-18)
918
+
919
+ ### ContextMenu
920
+
921
+ #### Bug Fixes
922
+
923
+ - `#I413061` - The issue with "Keyboard navigation not working properly when we open context menu using open method" has been resolved.
924
+
925
+ ## 20.3.49 (2022-10-11)
926
+
927
+ ### Accordion
928
+
929
+ #### Bug Fixes
930
+
931
+ - `SF-397894` - An issue with incorrect aria attributes in accordion has been fixed.
932
+
933
+ ## 20.3.47 (2022-10-11)
934
+
935
+ ### Sidebar
936
+
937
+ #### Bug Fixes
938
+
939
+ - `#I397894` - The issue with "using tab index as `0`​ on the container of Sidebar component" has been resolved.
940
+
941
+ ### ContextMenu
942
+
943
+ #### Bug Fixes
944
+
945
+ - `#I408315` - Script error thrown in `insertBefore` method While items not available in menu items has been fixed.
946
+
947
+ ## 20.3.48 (2022-10-05)
948
+
949
+ ### TreeView
950
+
951
+ #### Bug Fixes
952
+
953
+ - `#I318072` - The issue with "Checkbox is not added to dropped node, when drop target TreeView has enabled with checkboxes in the TreeView component" has been resolved.
954
+
955
+ ### Accordion
956
+
957
+ #### Bug Fixes
958
+
959
+ - `#F177760` - An issue with adding/removing multiple CSS classes to tab items `cssClass` property has been fixed.
960
+
961
+ ## 20.3.47 (2022-09-29)
962
+
963
+ ### AppBar
964
+
965
+ The AppBar displays information and actions related to the current application screen. It is used to show branding, screen titles, navigation, and actions.
966
+
967
+ - **Modes** - `Regular`, `Prominent`, and `Dense` modes that define the AppBar height.
968
+ - **Content arrangement** - Spacer and separator options can be used to align the content based on the UI requirement with minimal effort.
969
+ - **Color** - `Primary`, `Light`, `Dark`, and `Inherit` options to customize the AppBar color.
970
+ - **Position** - AppBars can be placed at the top or bottom of the screen. It can also be sticky.
971
+
972
+ ### Carousel
973
+
974
+ #### New Features
975
+
976
+ - Provided partial visible functionality to carousel which enables the active slide with partial previous/next slide.
977
+
978
+ ### Tab
979
+
980
+ #### New Features
981
+
982
+ - `#I237390` - Provided support to disable the animation while switching the tab item.
983
+
984
+ ## 20.2.49 (2022-09-13)
985
+
986
+ ### ContextMenu
987
+
988
+ #### Bug Fixes
989
+
990
+ - `#I400719` - Script error thrown when we provided remove item is not available in the menu items has been fixed.
991
+
992
+ ## 20.2.48 (2022-09-06)
993
+
994
+ ### Menu
995
+
996
+ #### Bug Fixes
997
+
998
+ - `#I396977` - The issue with "`SetItem` method not working properly for customized menu item" has been resolved.
999
+
1000
+ ## 20.2.46 (2022-08-30)
1001
+
1002
+ ### Menu
1003
+
1004
+ #### Bug Fixes
1005
+
1006
+ - `#I387276` - The issue with "Enable Scrolling not working properly when we dynamically set scroll to menu bar" has been resolved.
1007
+
1008
+ ## 20.2.44 (2022-08-16)
1009
+
1010
+ ### TreeView
1011
+
1012
+ #### Bug Fixes
1013
+
1014
+ - `#F176651` - The issue with "Checkbox state is not maintained properly for multilevel nodes in the TreeView component" has been resolved.
1015
+
1016
+ ## 20.2.39 (2022-07-19)
1017
+
1018
+ ### Tab
1019
+
1020
+ #### Bug fixes
1021
+
1022
+ - `#I388161` - An issue with "Removing the selected tab item" has been fixed.
1023
+ - `#I390262` - An issue with "Tab item dropped in wrong position" has been fixed.
1024
+
1025
+ ## 20.2.36 (2022-06-30)
1026
+
1027
+ ### Carousel
1028
+
1029
+ #### New Features
1030
+
1031
+ - Provided option to play or pause the slides when hovering the mouse pointer over the Carousel element.
1032
+
1033
+ #### Breaking Changes
1034
+
1035
+ - Removed `animation` property from Carousel component, now you can set the animation effect directly to the `animationEffect` property.
1036
+ - To apply custom animation effects, Needs to set `animationEffect` property to `custom` and specify the custom animation class in `cssClass` property.
1037
+
1038
+ **Previous**
1039
+
1040
+ ```typescript
1041
+
1042
+ const carouselObj: Carousel = new Carousel({
1043
+ animation: { customEffect: "parallax" }
1044
+ });
1045
+
1046
+ ```
1047
+
1048
+ **Now**
1049
+
1050
+ ```typescript
1051
+
1052
+ const carouselObj: Carousel = new Carousel({
1053
+ cssClass: 'parallax',
1054
+ animationEffect: 'custom'
1055
+ });
1056
+
1057
+ ```
1058
+
1059
+ - Removed `animation` property from Carousel component, now you can set the animation effect directly to the `animationEffect` property.
1060
+ - To apply custom animation effects, Needs to set `animationEffect` property to `custom` and specify the custom animation class in `cssClass` property.
1061
+
1062
+ **Previous**
1063
+
1064
+ ```typescript
1065
+
1066
+ @Component({
1067
+ template: `<ejs-carousel [animation]="carouselAnimation"></ejs-carousel>`
1068
+ })
1069
+
1070
+ export class AppComponent {
1071
+ public carouselAnimation: CarouselAnimationSettingsModel = {
1072
+ customEffect: "parallax",
1073
+ };
1074
+ }
1075
+
1076
+ ```
1077
+
1078
+ **Now**
1079
+
1080
+ ```typescript
1081
+
1082
+ @Component({
1083
+ template: `<ejs-carousel [animationEffect]="custom" [cssClass]="parallax"></ejs-carousel>`
1084
+ })
1085
+
1086
+ ```
1087
+
1088
+ ### TreeView
1089
+
1090
+ #### Bug Fixes
1091
+
1092
+ - `#I383454` - The issue with "The TreeView checked nodes state not maintained for remote data when enabling the persistence" has been resolved.
1093
+
1094
+ ## 20.1.61 (2022-06-21)
1095
+
1096
+ ### Tab
1097
+
1098
+ #### Bug Fixes
1099
+
1100
+ - `#I384728` - An issue with "Tab `data-id` attribute does not work after the initial load" has been fixed.
1101
+
1102
+ ## 20.1.60 (2022-06-14)
1103
+
1104
+ ### Sidebar
1105
+
1106
+ #### Bug Fixes
1107
+
1108
+ - `#F175215` - The issue with "Sidebar showBackdrop property is not working properly while setting the target property" has been resolved.
1109
+
1110
+ ## 20.1.58 (2022-05-31)
1111
+
1112
+ ### Tab
1113
+
1114
+ #### Bug Fixes
1115
+
1116
+ - `#I377292` - Accessibility issues in tab has been fixed.
1117
+
1118
+ ## 20.1.56 (2022-05-17)
1119
+
1120
+ ### Menu
1121
+
1122
+ #### Bug Fixes
1123
+
1124
+ - `#I373045` - An issue with "Script error occurs while using keyboard navigation in menu" has been resolved.
1125
+
1126
+ ### TreeView
1127
+
1128
+ #### Bug Fixes
1129
+
1130
+ - `#I371505` - The issue with "The TreeView checked node state doesn't update properly for nested levels when loadOnDemand is enabled" has been resolved.
1131
+
1132
+ ### Tab
1133
+
1134
+ #### Bug Fixes
1135
+
1136
+ - `#F174831` - An issue with drag not works when adding multiple tab items has been fixed.
1137
+
1138
+ ## 20.1.51 (2022-04-26)
1139
+
1140
+ ### TreeView
1141
+
1142
+ #### Bug Fixes
1143
+
1144
+ - `#I371505` - The issue with "The TreeView checked node state doesn't update properly for nested levels when loadOnDemand is enabled" has been resolved.
1145
+
1146
+ ### Tab
1147
+
1148
+ #### Bug Fixes
1149
+
1150
+ - `#F174269` - Tab throws script error while adding items with `headerTemplate` has been fixed.
1151
+
1152
+ ## 20.1.48 (2022-04-12)
1153
+
1154
+ ### Menu
1155
+
1156
+ #### Bug Fixes
1157
+
1158
+ - `#I371293` - Resolved the "Context menu not closed properly when the two separate context menu binded in the DOM" in menu component.
1159
+ - `#I369007` - An issue with "Script error throws when we remove items with hamburger mode in mobile view" has been resolved.
1160
+
1161
+ ### Toolbar
1162
+
1163
+ #### Bug Fixes
1164
+
1165
+ - `#I372768` - An issue with the toolbar scrollable buttons accessibility issue has been fixed.
1166
+
1167
+ ## 20.1.47 (2022-04-04)
1168
+
1169
+ ### Carousel
1170
+
1171
+ The Carousel component allows users to display images with content, links, etc., like a slide show. Typical uses of carousels include scrolling news headlines, featured articles on home pages, and image galleries.
1172
+
1173
+ - **Rendering** - The Carousel component can be rendered based on the items collection and data binding.
1174
+ - **Animation** - Supports animation effects for moving previous/next item of Carousel.
1175
+ - **Template Support** - The Carousel component items and buttons can also be rendered with custom templates.
1176
+ - **Keyboard Support** - By default, the Carousel allows interaction with commands by using keyboard shortcuts.
1177
+ - **Accessibility** - The Carousel provides built-in compliance with the `WAI-ARIA` specifications and it is achieved through attributes.
1178
+
1179
+ ### Tab
1180
+
1181
+ #### Bug Fixes
1182
+
1183
+ - `SF-369202, #F173364` - An issue with another tab item content is rendered in newly added tab item content has been fixed.
1184
+
1185
+ ## 19.4.55 (2022-03-08)
1186
+
1187
+ ### Menu
1188
+
1189
+ #### Bug Fixes
1190
+
1191
+ - `#I368643` - Resolved theme related issue in menu component.
1192
+
1193
+ ### Tab
1194
+
1195
+ #### Bug Fixes
1196
+
1197
+ - `SF-369303` - An issue with hiding tab item dynamically with `visible` property not working has been fixed.
1198
+
1199
+ ## 19.4.53 (2022-02-22)
1200
+
1201
+ ### Sidebar
1202
+
1203
+ #### Bug Fixes
1204
+
1205
+ - `#I363057` - The issue with "The change event is triggered twice for the first change in Sidebar component" has been resolved.
1206
+
1207
+ ## 19.4.52 (2022-02-15)
1208
+
1209
+ ### Toolbar
1210
+
1211
+ #### Bug Fixes
1212
+
1213
+ - `#SF-365188` - An issue with the toolbar item separator not being hidden in multi-row mode has been fixed.
1214
+
1215
+ ## 19.4.50 (2022-02-08)
1216
+
1217
+ ### Menu
1218
+
1219
+ #### Bug Fixes
1220
+
1221
+ - Issue with `setItem` method has been fixed.
1222
+
1223
+ ## 19.4.47 (2022-01-25)
1224
+
1225
+ ### Breadcrumb
1226
+
1227
+ #### Bug Fixes
1228
+
1229
+ - Issue with CSS validation has been fixed.
1230
+
1231
+ ### Tab
1232
+
1233
+ #### Bug Fixes
1234
+
1235
+ - `#SF-363121` - An issue with "script error occurred while adding a new tab item without content" has been fixed.
1236
+
1237
+ ## 19.4.41 (2022-01-04)
1238
+
1239
+ ### Menu
1240
+
1241
+ #### Bug Fixes
1242
+
1243
+ - Sub menu position alignment issue in menu has been resolved.
1244
+
1245
+ ### Tab
1246
+
1247
+ #### Bug Fixes
1248
+
1249
+ - `#SF-359072` - An issue with active tab selection is not highlight when render inside the `dialog` has been fixed.
1250
+
1251
+ ## 19.4.40 (2021-12-28)
1252
+
1253
+ ### Context Menu
1254
+
1255
+ #### Bug Fixes
1256
+
1257
+ - `#I346314` - Issue with `stopPropagation` not works for context menu has been resolved.
1258
+
1259
+ ## 19.4.38 (2021-12-17)
1260
+
1261
+ ### Tab
1262
+
1263
+ #### New Features
1264
+
1265
+ - `#I302394` - Provided support to maintain the active item in either tab header area or inside the popup.
1266
+ - `#F166169` - Provided support to identify the tab select event raised by user interaction or programmatic way.
1267
+
1268
+ ### TreeView
1269
+
1270
+ #### New Features
1271
+
1272
+ - `#FB27518` - Provided support to wrap the TreeView node text when its text content exceeds the TreeView node width.
1273
+
1274
+ ### Breadcrumb
1275
+
1276
+ #### New Features
1277
+
1278
+ - Provided new types of overflow mode and as follows:
1279
+
1280
+ 1. **Menu**: Shows the number of breadcrumb items that can be accommodated within the container space, and creates a sub menu with the remaining items.
1281
+ 2. **Wrap**: Wraps the items on multiple lines when the Breadcrumb’s width exceeds the container space.
1282
+ 3. **Scroll**: Shows an HTML scroll bar when the Breadcrumb’s width exceeds the container space.
1283
+ 4. **None**: Shows all the items on a single line.
1284
+
1285
+ - Provided `cancel` support in `beforeItemRender` event.
1286
+
1287
+ #### Breaking Changes
1288
+
1289
+ - Provided `disabled` property in Breadcrumb and Breadcrumb's Item instead of using CSS class `e-disabled`.
1290
+ - Removed `width` property from Breadcrumb component, you can set `width` in the style attribute of CSS to breadcrumb's element or its parent element.
1291
+
1292
+ ## 19.3.57 (2021-12-07)
1293
+
1294
+ ### Sidebar
1295
+
1296
+ #### Bug Fixes
1297
+
1298
+ - `#I347551` - The issue with "The sidebar main content margin value changes when using Sidebar type as Over and dock support" has been fixed.
1299
+
1300
+ ## 19.3.56 (2021-12-02)
1301
+
1302
+ ### TreeView
1303
+
1304
+ #### Bug Fixes
1305
+
1306
+ - `#I342745` - The performance issue that occurred when selecting a node that was rendered with a huge data source has been resolved.
1307
+
1308
+ ## 19.3.54 (2021-11-17)
1309
+
1310
+ ### Tab
1311
+
1312
+ #### Bug Fixes
1313
+
1314
+ - `#I347014` - An issue with dynamic tab item navigation if scheduler is present on a page has been fixed.
1315
+ - `#I296232` - The issue with "Script error occurs while updating the tab header text" has been resolved.
1316
+
1317
+ ## 19.3.46 (2021-10-19)
1318
+
1319
+ ### Tab
1320
+
1321
+ #### Bug Fixes
1322
+
1323
+ - `#I344626` - An issue with the tab header and content items are not updated on state change has been fixed.
1324
+
1325
+ ## 19.3.45 (2021-10-12)
1326
+
1327
+ ### Breadcrumb
1328
+
1329
+ #### Bug Fixes
1330
+
1331
+ - Disabled item get tab focus when item's URL is specified issue has been resolved.
1332
+
1333
+ ## 19.3.43 (2021-09-30)
1334
+
1335
+ ### Tab
1336
+
1337
+ #### Bug Fixes
1338
+
1339
+ - `#I341589` - An issue with the tab content not updated properly on the initial load has been fixed.
1340
+
1341
+ ### Breadcrumb
1342
+
1343
+ Breadcrumb is a graphical user interface that helps to identify or highlight the current location within a hierarchical structure of websites. The aim is to make the user aware of their current position in a hierarchy of website links.
1344
+
1345
+ - **Overflow Mode** - Used to limit the number of breadcrumb items to be displayed.
1346
+ - **Icons** - Icons can be specified in Breadcrumb items.
1347
+ - **Template** - Supports template for item and separator.
1348
+ - **Bind To Location** - Supports items to be rendered based on the URL or current location.
1349
+ - **Accessibility** - Provided with built-in accessibility support that helps to access all the Breadcrumb component features through the keyboard, screen readers, or other assistive technology devices.
1350
+
1351
+ ### Sidebar
1352
+
1353
+ #### Bug Fixes
1354
+
1355
+ - The issue with "The Sidebar background color is not correct in high-contrast theme" has been resolved.
1356
+
1357
+ ## 19.2.62 (2021-09-14)
1358
+
1359
+ ### Sidebar
1360
+
1361
+ #### Bug Fixes
1362
+
1363
+ - `#I341648` - The issue with "The resize event is not unwired after destroying the Sidebar component" has been resolved.
1364
+
1365
+ ## 19.2.59 (2021-08-31)
1366
+
1367
+ ### Tab
1368
+
1369
+ #### Bug Fixes
1370
+
1371
+ - `#I339402` - An issue with the tab `visible` property is not working on the initial load has been fixed.
1372
+
1373
+ ## 19.2.56 (2021-08-17)
1374
+
1375
+ ### Sidebar
1376
+
1377
+ #### Bug Fixes
1378
+
1379
+ - `#FB27112` - The issue with "The Sidebar flickering at initial loading" has been resolved.
1380
+
1381
+ ### Tab
1382
+
1383
+ #### Bug Fixes
1384
+
1385
+ - `#F167809` - Tab content item class white space issue is fixed.
1386
+
1387
+ ## 19.2.55 (2021-08-11)
1388
+
1389
+ ### TreeView
1390
+
1391
+ #### Bug Fixes
1392
+
1393
+ - `#I337237` - Resolved the performance issue that occurred when removing more than 500 nodes from the TreeView using multiple selection.
1394
+
1395
+ ### Tab
1396
+
1397
+ #### Bug Fixes
1398
+
1399
+ - `#I335995` - An issue with the touch event not triggering on tab content swipe has been fixed.
1400
+
1401
+ ## 19.2.51 (2021-08-03)
1402
+
1403
+ ### Tab
1404
+
1405
+ #### Bug Fixes
1406
+
1407
+ - `#F167176` - An issue with Tab item drag has been fixed.
1408
+
1409
+ ## 19.2.48 (2021-07-20)
1410
+
1411
+ ### Toolbar
1412
+
1413
+ #### Bug Fixes
1414
+
1415
+ - `#I335318` - An issue with Toolbar arrow icons when enabled RTL mode has been fixed.
1416
+
1417
+ ### Tab
1418
+
1419
+ #### Bug Fixes
1420
+
1421
+ - `#I333305` - An issue with script error thrown when rendering other components inside tab at initial load has been fixed.
1422
+
1423
+ ## 19.2.46 (2021-07-06)
1424
+
1425
+ ### Context Menu
1426
+
1427
+ #### Bug Fixes
1428
+
1429
+ - Role Attribute issue in context menu has been fixed.
1430
+
1431
+ ### Menu
1432
+
1433
+ - `#I330684` - Submenu not aligned properly while using templates issue has been fixed.
1434
+
1435
+ ### Tab
1436
+
1437
+ #### Bug Fixes
1438
+
1439
+ - `#I330332` - An issue with the tab `aria-selected` attribute not properly updated has been fixed.
1440
+
1441
+ ## 19.1.69 (2021-06-15)
1442
+
1443
+ ### Tab
1444
+
1445
+ #### Bug Fixes
1446
+
1447
+ - `#I330332` - An issue with the tab `aria-selected` attribute not properly updated has been fixed.
1448
+
1449
+ ## 19.1.67 (2021-06-08)
1450
+
1451
+ ### Toolbar
1452
+
1453
+ #### Bug Fixes
1454
+
1455
+ - `#F165830` - An issue with Toolbar template when state of component changed in functional based components has been fixed.
1456
+
1457
+ ## 19.1.66 (2021-06-01)
1458
+
1459
+ ### Menu
1460
+
1461
+ #### Bug Fixes
1462
+
1463
+ - `#I326704` - Provided an option to close the menu.
1464
+ - `#I316367` - The issue with Menu Scroll bar using template in angular has been resolved.
1465
+ - `#I328143` - The issue with Hamburger mode when changing items dynamically has been resolved.
1466
+
1467
+ ### TreeView
1468
+
1469
+ #### Bug Fixes
1470
+
1471
+ - `#I328435` - Added the `!default` flag to the dark theme definition files.
1472
+ - `#I326667` - The issue with "The getNode method returns invalid hasChildren attribute value while disabling the loadOnDemand support" has been resolved.
1473
+ - `#FB24632` - Resolved the issue with "Unable to drop a node as child node while dropping it into the template node text" in the TreeView component.
1474
+
1475
+ ## 19.1.63 (2021-05-13)
1476
+
1477
+ ### Accordion
1478
+
1479
+ #### Bug Fixes
1480
+
1481
+ - `#I324822` - Provided the accessibility support for current state of accordion items `expanded/collapsed` when using screen reader.
1482
+
1483
+ ### TreeView
1484
+
1485
+ #### Bug Fixes
1486
+
1487
+ - `#I320504` - The issue with "In IE Browser, the template TreeView throws an error when changing the data source using `useState`" has been resolved.
1488
+
1489
+ ### Menu
1490
+
1491
+ #### New Features
1492
+
1493
+ - `#315809` - Delay support on hovering the menu.
1494
+
1495
+ ## 19.1.59 (2021-05-04)
1496
+
1497
+ ### Menu
1498
+
1499
+ #### Bug Fixes
1500
+
1501
+ - The issue with "Script error occurs while calling the refresh method in angular" has been resolved.
1502
+
1503
+ ## 19.1.58 (2021-04-27)
1504
+
1505
+ ### TreeView
1506
+
1507
+ #### Bug Fixes
1508
+
1509
+ - `#I320271` - The issue with "While performing drag and drop action between two TreeView components, the `dataSourceChanged` event is not triggered for the source TreeView" has been resolved.
1510
+ - `#F158127` - The issue with "The TreeView `getAllCheckedNodes` method returns invalid data while setting invalid IDs to the `CheckedNodes` property" has been resolved.
1511
+
1512
+ ## 19.1.57 (2021-04-20)
1513
+
1514
+ ### Menu
1515
+
1516
+ #### Bug Fixes
1517
+
1518
+ - `#I316367` - Menu Scroll bar not working when window resized issue fixed.
1519
+
1520
+ ## 19.1.54 (2021-03-30)
1521
+
1522
+ ### Accordion
1523
+
1524
+ #### Breaking Changes
1525
+
1526
+ - The following properties type was changed.
1527
+
1528
+ | Property | Previous Type | Current Type |
1529
+ |----------|---------------|--------------------------------|
1530
+ | Disabled | `anonymous` | `boolean` |
1531
+ | Expanded | `anonymous` | `boolean` |
1532
+ | Visible | `anonymous` | `boolean` |
1533
+
1534
+ ## 18.4.47 (2021-03-09)
1535
+
1536
+ ### TreeView
1537
+
1538
+ #### Bug Fixes
1539
+
1540
+ - `#310875` - The issue with "The `isChecked` attribute is not working when using the `sortOrder` property in TreeView" has been resolved.
1541
+ - `#282214` - Now the `isChecked` attribute value is updated properly in the `NodeChecked` event arguments in the TreeView component.
1542
+
1543
+ ## 18.4.44 (2021-02-23)
1544
+
1545
+ ### Tab
1546
+
1547
+ #### Bug Fixes
1548
+
1549
+ - `#311688` - An issue with getting console error in tab navigation has been fixed.
1550
+
1551
+ ## 18.4.42 (2021-02-09)
1552
+
1553
+ ### Sidebar
1554
+
1555
+ #### Bug Fixes
1556
+
1557
+ - `#309065` - The issue with "The Sidebar destroy method throws error when continuously called two times" has been resolved.
1558
+
1559
+ ### Tab
1560
+
1561
+ #### Bug Fixes
1562
+
1563
+ - `#299892` - An issue with the Tab destroy method throws error has been resolved.
1564
+
1565
+ ## 18.4.41 (2021-02-02)
1566
+
1567
+ ### Menu
1568
+
1569
+ #### Bug Fixes
1570
+
1571
+ - `291781` - The issue with caret icon alignment is fixed.
1572
+
1573
+ ## 18.4.39 (2021-01-28)
1574
+
1575
+ ### Toolbar
1576
+
1577
+ #### Bug Fixes
1578
+
1579
+ - `#303821` - An issue with toolbar content is not aligned properly in IOS devices has been fixed.
1580
+
1581
+ ### TreeView
1582
+
1583
+ #### Bug Fixes
1584
+
1585
+ - `#302025` - The issue with "The TreeView template node content disappears while calling the `refreshNode` method" has been resolved.
1586
+ - `#300093` - Now, the TreeView template node custom events will be triggered after using the `refreshNode` method.
1587
+
1588
+ ## 18.4.35 (2021-01-19)
1589
+
1590
+ ### TreeView
1591
+
1592
+ #### Bug Fixes
1593
+
1594
+ - `#307712` - The issue in getting the invalid `isChecked` attribute value in the `getTreeData` method for the dynamically added nodes has been resolved.
1595
+
1596
+ ## 18.4.34 (2021-01-12)
1597
+
1598
+ ### Accordion
1599
+
1600
+ #### Bug Fixes
1601
+
1602
+ - `#309133` - Accordion item is automatically closed when the `onChange` is raised in input element has been fixed.
1603
+
1604
+ ### Tab
1605
+
1606
+ #### Bug Fixes
1607
+
1608
+ - `#301347` - An issue with `refreshActiveTab` public method has been fixed.
1609
+
1610
+ ## 18.4.33 (2021-01-05)
1611
+
1612
+ ### Context Menu
1613
+
1614
+ #### Bug Fixes
1615
+
1616
+ - `F160329` - The issue with template item focus in ContextMenu is fixed.
1617
+
1618
+ ### TreeView
1619
+
1620
+ #### Bug Fixes
1621
+
1622
+ - `#307778` - Now, the Expanded attribute value will be updated properly in the `nodeCollapsed` event.
1623
+
1624
+ ### Tab
1625
+
1626
+ #### Bug Fixes
1627
+
1628
+ - `#306302` - The original event parameter is exposed in tab selecting event.
1629
+ - `#306228` - An issue with closing the tab item clear the content of all the tab items has been fixed.
1630
+ - `F159991` - An issue with Contents of the tab content are displayed incorrectly has been fixed.
1631
+
1632
+ ## 18.4.31 (2020-12-22)
1633
+
1634
+ ### Menu
1635
+
1636
+ #### Bug Fixes
1637
+
1638
+ - An issue with menu closing has been fixed.
1639
+
1640
+ ## 18.3.50 (2020-11-17)
1641
+
1642
+ ### Tab
1643
+
1644
+ #### New Features
1645
+
1646
+ - `#298781, #159033, #301025, #299403, #301347` - Provided `refreshActiveTab` public method to refresh the active tab item.
1647
+
1648
+ ## 18.3.47 (2020-11-05)
1649
+
1650
+ ### TreeView
1651
+
1652
+ #### New Features
1653
+
1654
+ - `#295977` - Provided an option to identify the dragged node's dropping position which is relative to the dropped node.
1655
+ - `#F158142` - Now, the TreeView template node interaction is enabled.
1656
+
1657
+ ## 18.3.42 (2020-10-20)
1658
+
1659
+ ### TreeView
1660
+
1661
+ #### Bug Fixes
1662
+
1663
+ - `#286629` - The issue with "when quickly clicking on the different nodes then it is interpreted as double click" has been resolved.
1664
+
1665
+ ## 18.3.40 (2020-10-13)
1666
+
1667
+ ### Tab
1668
+
1669
+ #### Bug Fixes
1670
+
1671
+ - `#I292579` - An issue with when we set the `heightAujustMode` as Fill it makes container height too high has been resolved.
1672
+
1673
+ ## 18.3.35 (2020-10-01)
1674
+
1675
+ ### TreeView
1676
+
1677
+ #### Bug Fixes
1678
+
1679
+ - Standardized the spacing between two TreeView nodes in the Bootstrap4 theme.
1680
+
1681
+ ## 18.2.54 (2020-08-18)
1682
+
1683
+ ### TreeView
1684
+
1685
+ #### Bug Fixes
1686
+
1687
+ - `#286992` - The issue with rendering the TreeView with hierarchical data source using the offline property has been resolved
1688
+
1689
+ ## 18.2.47 (2020-07-28)
1690
+
1691
+ ### Tab
1692
+
1693
+ #### Bug Fixes
1694
+
1695
+ - `#279134` - An issue with cross side scripting validation has been fixed.
1696
+
1697
+ ## 18.2.44 (2020-07-07)
1698
+
1699
+ ### Menu
1700
+
1701
+ #### Bug Fixes
1702
+
1703
+ - An issue with menu selection has been fixed.
1704
+ - An issue with hamburger mode has been fixed.
1705
+
1706
+ ### Context Menu
1707
+
1708
+ #### Bug Fixes
1709
+
1710
+ - An issue with sub menu after preventing first sub menu has been fixed.
1711
+
1712
+ ### Accordion
1713
+
1714
+ #### Bug Fixes
1715
+
1716
+ - `#275090` - An issue with Ripple effect when destroy and rendered nested accordions has been fixed.
1717
+ - `#273054` - An issue with cross side scripting validation has been fixed.
1718
+ - `#275509` - An issue with `addItem` public method when passing multiple items has been fixed.
1719
+
1720
+ ### Tab
1721
+
1722
+ #### Bug Fixes
1723
+
1724
+ - `#273054` - An issue with cross side scripting validation has been fixed.
1725
+
1726
+ ### Toolbar
1727
+
1728
+ #### Bug Fixes
1729
+
1730
+ - `#275422` - An issue with toolbar scrolling is not working properly after perform window resize has been fixed.
1731
+
1732
+ ### TreeView
1733
+
1734
+ #### Bug Fixes
1735
+
1736
+ - `#276986` - Now, the previous state will be restored in the TreeView when the CRUD operation is failed at the server side.
1737
+
1738
+ ### Sidebar
1739
+
1740
+ #### Bug Fixes
1741
+
1742
+ - `#272991` - The issue with "Unable to use the same target for more than one Sidebar component" has been resolved.
1743
+
1744
+ ## 18.1.54 (2020-05-26)
1745
+
1746
+ ### Menu
1747
+
1748
+ #### Bug Fixes
1749
+
1750
+ - Provided 'getItemIndex' public method to get the index of the menu item.
1751
+
1752
+ ### TreeView
1753
+
1754
+ #### Bug Fixes
1755
+
1756
+ - `#269540` -The issue with `The getAllCheckedNodes method which is not returning the proper checkedNodes values in the TreeView component` has been fixed.
1757
+
1758
+ #### New Features
1759
+
1760
+ - `#274084` - Provided an option to set the drag area in TreeView component.
1761
+
1762
+ ## 18.1.45 (2020-04-21)
1763
+
1764
+ ### Menu
1765
+
1766
+ #### Bug Fixes
1767
+
1768
+ - Menu selection issue has been resolved.
1769
+
1770
+ ## 18.1.43 (2020-04-07)
1771
+
1772
+ ### ContextMenu
1773
+
1774
+ #### Bug Fixes
1775
+
1776
+ - `F152308` - Context menu popup position misaligned while using `beforeOpen` event has been resolved.
1777
+
1778
+ ### Menu
1779
+
1780
+ #### Bug Fixes
1781
+
1782
+ - Menu not working properly when collapsing the sub menu in hamburger mode has been resolved.
1783
+
1784
+ ## 18.1.36-beta (2020-03-19)
1785
+
1786
+ ### TreeView
1787
+
1788
+ #### New Features
1789
+
1790
+ - `#253508` - Now, the `actionFailure` event triggers when failure occurs while performing the CRUD operations in TreeView remote data.
1791
+
1792
+ - `#227878` - Provided an option to disable the TreeView component.
1793
+
1794
+ - `#255907, #F146305` - Provided an option to enable the entire TreeView node as navigable.
1795
+
1796
+ #### Breaking Changes
1797
+
1798
+ - Using the remote data and performing CRUD operation in TreeView requires the controller part to handle the CRUD operation at server-side. But, it doesn’t require controller part while using the offline remote data.
1799
+
1800
+ - `#227540` - Reverted the support for rendering TreeView data in single server request while disabling the loadOnDemand. But, this support can be achieved by specifying the offline as `true` in remote data.
1801
+
1802
+ ### Tab
1803
+
1804
+ #### Bug Fixes
1805
+
1806
+ - `#266275` - An issue with tab navigation is not working after removed the first tab has been fixed.
1807
+
1808
+ ### Accordion
1809
+
1810
+ #### Bug Fixes
1811
+
1812
+ - `#263853` - An issue with height is not properly set to the accordion item when perform expand or collapse has been fixed.
1813
+
1814
+ - `#259370, #259573, #253809` - An issue with `datasource` not get changed while using ng-for in template property has been fixed.
1815
+ - `#257298` - An issue with the Accordion items was resolved when we dynamically change the ng-if in the template property.
1816
+
1817
+ ## 17.4.50 (2020-02-18)
1818
+
1819
+ ### TreeView
1820
+
1821
+ #### Breaking Changes
1822
+
1823
+ - `#263334` - Standardized the right-click interaction in TreeView component. Now, the TreeView node will not be selected when you right-click it.
1824
+
1825
+ ## 17.4.49 (2020-02-11)
1826
+
1827
+ ### TreeView
1828
+
1829
+ #### Bug Fixes
1830
+
1831
+ - `#262276` - Resolved the performance issue occurred when check or uncheck the parent node in TreeView component.
1832
+
1833
+ ### Menu
1834
+
1835
+ #### Bug Fixes
1836
+
1837
+ - An issue when setting id as number in menu Item is fixed.
1838
+
1839
+ ## 17.4.46 (2020-01-30)
1840
+
1841
+ ### Tab
1842
+
1843
+ #### Bug Fixes
1844
+
1845
+ - `#260479` - An issue with selected event is triggered unnecessarily after the refresh tab has been fixed.
1846
+
1847
+ ## 17.4.44 (2021-01-21)
1848
+
1849
+ ### Menu
1850
+
1851
+ #### Bug Fixes
1852
+
1853
+ - Issue with closing sub menu is fixed.
1854
+
1855
+ ## 17.4.43 (2020-01-14)
1856
+
1857
+ ### TreeView
1858
+
1859
+ #### Bug Fixes
1860
+
1861
+ - `#258993` - Now, expand and collapse is working properly after enabling the ripple effect.
1862
+ - `#258121` - Resolved the CSS warnings in Firefox 71.0 version.
1863
+
1864
+ ## 17.4.39 (2019-12-17)
1865
+
1866
+ ### TreeView
1867
+
1868
+ #### New Features
1869
+
1870
+ - `#249238` - Provided the support for refreshing a specific node in tree view.
1871
+ - `#253508` - Now, the `actionFailure` event triggers while fetching data from the invalid path.
1872
+ - `#247333` - Support has been provided to get the disabled nodes in the tree view.
1873
+
1874
+ ### Tab
1875
+
1876
+ #### Breaking Changes
1877
+
1878
+ - An issue with duplicate Tab item id while rendering more than one Tab in same page has been fixed.
1879
+
1880
+ #### Bug Fixes
1881
+
1882
+ - An issue with bootstrap CSS file generation has been fixed.
1883
+
1884
+ ### Accordion
1885
+
1886
+ #### Bug Fixes
1887
+
1888
+ - An issue with bootstrap CSS file generation has been fixed.
1889
+
1890
+ ### Toolbar
1891
+
1892
+ #### Bug Fixes
1893
+
1894
+ - `#248406` - An issue with destroying sub control rendered inside toolbar is fixed.
1895
+
1896
+ ## 17.3.27 (2019-11-12)
1897
+
1898
+ ### Tab
1899
+
1900
+ #### Bug Fixes
1901
+
1902
+ - `#253216` - An issue with destroying Tab component in IE11 has been fixed.
1903
+
1904
+ ### TreeView
1905
+
1906
+ #### Bug Fixes
1907
+
1908
+ - #242926 - Now the drop indicator has been shown correctly while hovering the expand and collapse icon.
1909
+
1910
+ ## 17.3.17 (2019-10-15)
1911
+
1912
+ ### Tab
1913
+
1914
+ #### Bug Fixes
1915
+
1916
+ - `#250013` - An issue with nested tab rendering while `headerPlacement` is set as `Bottom` has been fixed.
1917
+
1918
+ ## 17.3.16 (2019-10-09)
1919
+
1920
+ ### Toolbar
1921
+
1922
+ #### Bug Fixes
1923
+
1924
+ - `#246126` - An issue with toolbar is not working properly in overflow as popup mode when we used input elements in it has been fixed.
1925
+
1926
+ ## 17.3.14 (2019-10-03)
1927
+
1928
+ ### Accordion
1929
+
1930
+ #### Bug Fixes
1931
+
1932
+ - #245474 - Improper rendering of other components inside the accordion content issue has been fixed.
1933
+
1934
+ - Material dark theme issue has been resolved.
1935
+
1936
+ - Accessing multiple cssClass property issue with accordion has been fixed.
1937
+
1938
+ ### Tab
1939
+
1940
+ #### New Features
1941
+
1942
+ - Provided scroll step customization support for tab header.
1943
+
1944
+ ### TreeView
1945
+
1946
+ #### Bug Fixes
1947
+
1948
+ - #246937 - The unchecking checkbox performance issue has been resolved.
1949
+
1950
+ ## 17.3.9-beta (2019-09-20)
1951
+
1952
+ ### Tab
1953
+
1954
+ #### New Features
1955
+
1956
+ - Provided template support for tab header.
1957
+
1958
+ ### Accordion
1959
+
1960
+ #### New Features
1961
+
1962
+ - Provided item template support for accorion.
1963
+
1964
+ ### TreeView
1965
+
1966
+ #### Bug Fixes
1967
+
1968
+ - #242926 - Now the drop indicator has been shown correctly while enabling the checkbox.
1969
+
1970
+ ## 17.2.49 (2019-09-04)
1971
+
1972
+ ### Menu
1973
+
1974
+ #### Bug Fixes
1975
+
1976
+ - Issue with modifying item in 'beforeOpen' event creates extra Item in Context Menu is fixed.
1977
+
1978
+ ## 17.2.48-beta (2019-08-28)
1979
+
1980
+ ### Toolbar
1981
+
1982
+ #### New Features
1983
+
1984
+ - `enableItems` public method will now support number type.
1985
+
1986
+ ### Accordion
1987
+
1988
+ #### Breaking Changes
1989
+
1990
+ - The `expanded` event type changed from `ExpandEventArgs` to `ExpandedEventArgs`.
1991
+
1992
+ ## 17.2.41 (2019-08-14)
1993
+
1994
+ ### TreeView
1995
+
1996
+ #### Bug Fixes
1997
+
1998
+ - Issue with custom icon size changed while double clicking the tree node has been fixed.
1999
+
2000
+ ## 17.2.40 (2019-08-06)
2001
+
2002
+ ### TreeView
2003
+
2004
+ #### Bug Fixes
2005
+
2006
+ - #242925 - Issue with checked and unchecked the checkbox using keyboard interaction even disable the checkbox has been fixed.
2007
+
2008
+ ## 17.2.39 (2019-07-30)
2009
+
2010
+ ### TreeView
2011
+
2012
+ #### Bug Fixes
2013
+
2014
+ - #242589 - Issue with getting checked nodes value using `checkedNodes` property has been fixed.
2015
+
2016
+ ## 17.2.34 (2019-07-11)
2017
+
2018
+ ### Accordion
2019
+
2020
+ #### Bug Fixes
2021
+
2022
+ - #239739 - An issue with addItem public method for accordion which was rendered using HTML elements has been fixed
2023
+
2024
+ ## 17.2.28-beta (2019-06-27)
2025
+
2026
+ ### Menu
2027
+
2028
+ #### Bug Fixes
2029
+
2030
+ - #237136 - Issue with Parent Menu click in mobile mode.
2031
+
2032
+ - #236458 - Issue with Menu Item hovering while a page contains multiple menus.
2033
+
2034
+ ### Sidebar
2035
+
2036
+ #### Breaking Changes
2037
+
2038
+ - Change event will trigger only after the expand or collapse transition of the Sidebar.
2039
+
2040
+ ## 17.1.49 (2019-05-29)
2041
+
2042
+ ### TreeView
2043
+
2044
+ #### Bug Fixes
2045
+
2046
+ - #234147 - Issue with getting checked nodes value using `getAllCheckedNodes` method has been fixed.
2047
+
2048
+ ## 17.1.48 (2019-05-21)
2049
+
2050
+ ### Sidebar
2051
+
2052
+ #### Bug Fixes
2053
+
2054
+ - #236219 - On initial rendering, right positioned sidebar opens and closes irrespective of type and isOpen properties has been fixed.
2055
+
2056
+ ### Tab
2057
+
2058
+ #### Bug Fixes
2059
+
2060
+ - #235397 - The cancel parameter is exposed in tab selecting event.
2061
+
2062
+ - #235274 - Incorrect selected content had been getting in tab selected event issue has been fixed.
2063
+
2064
+ ## 17.1.47 (2019-05-14)
2065
+
2066
+ ### Menu
2067
+
2068
+ #### New Features
2069
+
2070
+ - #230456 - Provided hamburger menu support for adaptive view.
2071
+
2072
+ ### TreeView
2073
+
2074
+ #### New Features
2075
+
2076
+ - #227540 - Provided the support for rendering treeview data in single server request while disabling the loadOnDemand
2077
+
2078
+ ## 17.1.43 (2019-04-30)
2079
+
2080
+ ### Toolbar
2081
+
2082
+ #### Bug Fixes
2083
+
2084
+ - #231019 - An issue with RTL mode of Toolbar scroller has not working in Firefox browser has been resolved.
2085
+
2086
+ ### TreeView
2087
+
2088
+ #### Bug Fixes
2089
+
2090
+ - #234147 - Issue with maintaining checked states while giving `id` and `parentID` value as string type in data source has been fixed.
2091
+
2092
+ ## 17.1.41 (2019-04-16)
2093
+
2094
+ ### Accordion
2095
+
2096
+ #### Bug Fixes
2097
+
2098
+ - Content value getting changed while updating header dynamically issue has been fixed.
2099
+
2100
+ ### TreeView
2101
+
2102
+ #### Bug Fixes
2103
+
2104
+ - #231497 - Now the selected node background color is removed before collapsing the parent node with out removing 'e-active' class.
2105
+
2106
+ ### Tab
2107
+
2108
+ #### Bug Fixes
2109
+
2110
+ - #231048 - An issue with tab content not rendering in IE11 when we use multiple refresh on dynamic content update is fixed.
2111
+
2112
+ ## 17.1.40 (2019-04-09)
2113
+
2114
+ ### TreeView
2115
+
2116
+ #### Bug Fixes
2117
+
2118
+ - Now the selected node background color is removed before collapsing the parent node.
2119
+
2120
+ ### Tab
2121
+
2122
+ #### Bug Fixes
2123
+
2124
+ - Support to restrict add and remove functionalities of Tab has been provided.
2125
+
2126
+ ## 17.1.38 (2019-03-29)
2127
+
2128
+ ### Menu
2129
+
2130
+ #### Bug Fixes
2131
+
2132
+ - Support provided for dynamically updating the self referential data.
2133
+
2134
+ ### Accordion
2135
+
2136
+ #### Bug Fixes
2137
+
2138
+ - An issue with the expand action of Accordion when set to single mode, with the items being rendered using content template is fixed now.
2139
+
2140
+ ## 17.1.32-beta (2019-03-13)
2141
+
2142
+ ### ContextMenu
2143
+
2144
+ #### Bug Fixes
2145
+
2146
+ - Submenu items styles are not proper in ContextMenu issue is fixed.
2147
+
2148
+ ### Sidebar
2149
+
2150
+ #### New Features
2151
+
2152
+ - `MediaQuery` property will now support both string and `MediaQueryList` object types.
2153
+
2154
+ #### Bug Fixes
2155
+
2156
+ - Multiple event bindings issue on calling show and hide methods when `closeOnDocumentClick` property is enabled has been fixed.
2157
+
2158
+ ### TreeView
2159
+
2160
+ #### New Features
2161
+
2162
+ - Provided an option for auto checking parent tree nodes based on child tree nodes checked state and vice versa.
2163
+ - 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.
2164
+
2165
+ ## 16.4.54 (2019-02-19)
2166
+
2167
+ ### Tab
2168
+
2169
+ #### Breaking Changes
2170
+
2171
+ - The initial focus set on active tab item is removed from the component on initial load.
2172
+
2173
+ #### Bug Fixes
2174
+
2175
+ - An issue with destroy method of Tab component getting called twice while using it with ng-template has been fixed.
2176
+
2177
+ ## 16.4.53 (2019-02-13)
2178
+
2179
+ ### Accordion
2180
+
2181
+ #### Bug Fixes
2182
+
2183
+ - Resolved the issue with accessing Accordion item object in clicked event arguments.
2184
+
2185
+ #### New Features
2186
+
2187
+ - Schematic samples are added by feature wise for `Accordion` component.
2188
+
2189
+ ### Tab
2190
+
2191
+ #### New Features
2192
+
2193
+ - Schematic samples are added by feature wise for `Tab` component.
2194
+
2195
+ ### TreeView
2196
+
2197
+ #### New Features
2198
+
2199
+ - Provided an option for auto checking parent tree nodes based on child tree nodes checked state and vice versa.
2200
+
2201
+ ### Toolbar
2202
+
2203
+ #### New Features
2204
+
2205
+ - Schematic samples are added by feature wise for `Toolbar` component.
2206
+
2207
+ ## 16.4.52 (2019-02-05)
2208
+
2209
+ ### Sidebar
2210
+
2211
+ #### Bug Fixes
2212
+
2213
+ - Tabindex support has been provided.
2214
+
2215
+ #### Breaking Changes
2216
+
2217
+ - Sidebar with type `Auto` will always expand on initial rendering, irrespective of `enableDock` and `isOpen` properties.
2218
+
2219
+ - 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`.
2220
+
2221
+ ## 17.1.1-beta (2019-01-29)
2222
+
2223
+ ### Menu
2224
+
2225
+ #### Bug Fixes
2226
+
2227
+ - Popup not opened properly when two menu rendered side by side issue fixed.
2228
+
2229
+ ### TreeView
2230
+
2231
+ #### Bug Fixes
2232
+
2233
+ - The issue with, “When disabling the TreeView parent nodes, the child nodes also appear in a disabled state” has been fixed.
2234
+
2235
+ ## 16.4.45 (2019-01-02)
2236
+
2237
+ ### Toolbar
2238
+
2239
+ #### Bug Fixes
2240
+
2241
+ - While resizing, Toolbar items are not moving from popup to toolbar in `extended` overflow mode issue is fixed.
2242
+
2243
+ ### Menu
2244
+
2245
+ #### Bug Fixes
2246
+
2247
+ - Getting custom properties from menu items in `beforeItemRender` event issue fixed.
2248
+
2249
+ ### Sidebar
2250
+
2251
+ #### Bug Fixes
2252
+
2253
+ - Fixed the issue with rendering the Sidebar using `isOpen` property and type `Auto`.
2254
+
2255
+ ### Accordion
2256
+
2257
+ #### Bug Fixes
2258
+
2259
+ - Accordion rendering issue with ng-template is fixed.
2260
+
2261
+ ## 16.4.44 (2018-12-24)
2262
+
2263
+ ### Accordion
2264
+
2265
+ #### Bug Fixes
2266
+
2267
+ - Parent accordion collapsing issue is fixed when Tab renders within it.
2268
+
2269
+ - Content loading issue while using ng-template and ngIf is fixed.## 16.4.40-beta (2018-12-10)
2270
+
2271
+ ### Tab
2272
+
2273
+ #### New Features
2274
+
2275
+ - Tab vertical orientation support was provided.
2276
+
2277
+ ### ContextMenu
2278
+
2279
+ #### Breaking Changes
2280
+
2281
+ - The `animationSettings` property type changed from `AnimationSettings` to `AnimationSettingsModel`
2282
+
2283
+ ### Menu
2284
+
2285
+ #### New Features
2286
+
2287
+ - Provided scrollable option in Menu for rendering large menus and submenus in an adaptive way.
2288
+
2289
+ #### Breaking Changes
2290
+
2291
+ - Type changes done for the following property.
2292
+
2293
+ Property Name | Old Type | New Type
2294
+ -----|-----|-----
2295
+ `animationSettings` | AnimationSettings | AnimationSettingsModel
2296
+ `fields` | FieldSettings | FieldSettingsModel
2297
+
2298
+ ### TreeView
2299
+
2300
+ #### New Features
2301
+
2302
+ - Provided an option to disable child nodes when load-on-demand support is enabled.
2303
+ - Provided an option to disable the load-on-demand support in TreeView control.
2304
+
2305
+ ## 16.3.33 (2018-11-20)
2306
+
2307
+ ### Sidebar
2308
+
2309
+ #### Bug Fixes
2310
+
2311
+ - Added the `event` and `isInteracted` event arguments in open and close events of Sidebar.
2312
+
2313
+ ### TreeView
2314
+
2315
+ #### Bug Fixes
2316
+
2317
+ - In TreeView, scrolling is not working smoothly for iPad device issue is resolved
2318
+
2319
+ ## 16.3.29 (2018-10-31)
2320
+
2321
+ ### TreeView
2322
+
2323
+ #### New Features
2324
+
2325
+ - Provided an option to prevent the tree node from auto checking when checked state of the parent or child tree node is modified.
2326
+ - Provided support to use hierarchical data as remote data source of the TreeView component by using offline mode of data manager plugin.
2327
+
2328
+ ## 16.3.27 (2018-10-23)
2329
+
2330
+ ### Menu
2331
+
2332
+ #### Bug Fixes
2333
+
2334
+ - Destroy method issue while using multiple menu is fixed.
2335
+
2336
+ ## 16.3.25 (2018-10-15)
2337
+
2338
+ ### Menu
2339
+
2340
+ #### Bug Fixes
2341
+
2342
+ - Issue with sub menu positioning fixed.
2343
+
2344
+ ## 16.3.23 (2018-10-03)
2345
+
2346
+ ### Sidebar
2347
+
2348
+ #### New Features
2349
+
2350
+ - Two-way binding support has been provided for `isOpen` property.
2351
+
2352
+ ### Tab
2353
+
2354
+ #### Bug Fixes
2355
+
2356
+ - The issue with tab selection after remove other tabs has been fixed.
2357
+
2358
+ ## 16.3.21 (2018-09-22)
2359
+
2360
+ ### TreeView
2361
+
2362
+ #### Bug Fixes
2363
+
2364
+ - The `nodeData` argument in `nodeSelected` event showing wrong value issue has been fixed.
2365
+
2366
+ ## 16.3.17 (2018-09-12)
2367
+
2368
+ ### Menu
2369
+
2370
+ 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.
2371
+
2372
+ - **Rendering** - Supports to render based on the items collection (array of JavaScript objects) and HTML elements.
2373
+
2374
+ - **Separator** - Supports menu items grouping by using the Separator.
2375
+
2376
+ - **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
2377
+
2378
+ - **Template and Multilevel Nesting** - Supports template and multilevel nesting in Menu.
2379
+
2380
+ - **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.
2381
+
2382
+ ### TreeView
2383
+
2384
+ #### New Features
2385
+
2386
+ - Provided an option to get updated data source of tree view after drag and drop, editing, deleting, and adding nodes in tree view.
2387
+ - Support to get custom data from tree view.
2388
+ - Support to maintain expanded nodes of tree view on page reloads.
2389
+ - Provided an option to get all the checked nodes if the tree node is expanded or collapsed.
2390
+ - Provided 'none' option in 'expandOn' property to prevent expand or collapse of tree node
2391
+ - Provided an option to prevent the parent node from expanding, while adding a node to the tree view control.
2392
+
2393
+ ## 16.2.49 (2018-08-21)
2394
+
2395
+ ### Tab
2396
+
2397
+ #### Bug Fixes
2398
+
2399
+ - The issue with updating model on enable/disable tab has fixed in `enableTab` method.
2400
+
2401
+ ### TreeView
2402
+
2403
+ #### Bug Fixes
2404
+
2405
+ - Issue with drag and drop of nodes from one tree view to another empty tree view has been fixed.
2406
+
2407
+ ## 16.2.48 (2018-08-14)
2408
+
2409
+ ### Tab
2410
+
2411
+ #### Breaking Changes
2412
+
2413
+ - Issue with triggering select events at initial load has been resolved
2414
+
2415
+ ### Toolbar
2416
+
2417
+ #### Bug Fixes
2418
+
2419
+ - Resolved the tooltip issue on display special character in toolbar items.
2420
+
2421
+ ## 16.2.47 (2018-08-07)
2422
+
2423
+ ### Tab
2424
+
2425
+ #### Bug Fixes
2426
+
2427
+ - The issue with updating model on removing tab has fixed in `removeTab` method.
2428
+ - Resolve the issue which occurs on updating item value with `hideTab` method.
2429
+
2430
+ ### Sidebar
2431
+
2432
+ #### Bug Fixes
2433
+
2434
+ - Issue with Sidebar destroyed in Angular routing is fixed.
2435
+
2436
+ ### TreeView
2437
+
2438
+ #### Bug Fixes
2439
+
2440
+ - Tree view checkbox not working properly in Firefox browser issue has been resolved.
2441
+
2442
+ ## 16.2.46 (2018-07-30)
2443
+
2444
+ ### Accordion
2445
+
2446
+ #### Bug Fixes
2447
+
2448
+ - Issue with Space and Enter key, which is not working in RTE while rendering inside the Accordion is fixed
2449
+
2450
+ ### TreeView
2451
+
2452
+ #### New Features
2453
+
2454
+ - In tree view, provided an option to prevent dropping an element in the sibling position.
2455
+
2456
+ ## 16.2.45 (2018-07-17)
2457
+
2458
+ ### Tab
2459
+
2460
+ #### Bug Fixes
2461
+
2462
+ - Issue with content animation, when switching to other tabs before previous animation complete is fixed
2463
+
2464
+ ## 16.2.44 (2018-07-10)
2465
+
2466
+ ### Sidebar
2467
+
2468
+ #### Bug Fixes
2469
+
2470
+ - `target` property is not working on lower version of Firefox browser (below 48), issue has been fixed.
2471
+
2472
+ ## 16.2.41 (2018-06-25)
2473
+
2474
+ ### Sidebar
2475
+
2476
+ #### New Features
2477
+
2478
+ - Support for setting the open/close state of the Sidebar has been provided with `isOpen` property.
2479
+
2480
+ #### Breaking Changes
2481
+
2482
+ - Target property supports both the id and class selectors to locate the target element.
2483
+ - `isOpen()` method is now removed and know about the Sidebar is whether open or close state by using `isOpen` property.
2484
+
2485
+ ### Tab
2486
+
2487
+ #### Bug Fixes
2488
+
2489
+ - Content initiated twice when using ng-template in Tab item has been fixed.
2490
+ - Solved issues on `removeItem` public method.
2491
+
2492
+ ### Toolbar
2493
+
2494
+ #### New Features
2495
+
2496
+ - Provided support for `MultiRow` options on toolbar items.
2497
+ - Inline alignment of toolbar items support is provided.
2498
+
2499
+ ## 16.1.42 (2018-05-08)
2500
+
2501
+ ### Accordion
2502
+
2503
+ #### Bug Fixes
2504
+
2505
+ - Issue with space key in text area, when placed inside Accordion is fixed.
2506
+
2507
+ ### Tab
2508
+
2509
+ #### Breaking Changes
2510
+
2511
+ - Breaking issue with dynamic loading tab content template ID is fixed.
2512
+
2513
+ ## 16.1.40 (2018-05-08)
2514
+
2515
+ ### Tab
2516
+
2517
+ #### Bug Fixes
2518
+
2519
+ - Issue with event unbinding in tab content is fixed.
2520
+
2521
+ ## 16.1.38 (2018-05-02)
2522
+
2523
+ ### TreeView
2524
+
2525
+ #### Bug Fixes
2526
+
2527
+ - TreeView is not rendering properly when you return entire data (including child nodes) on initial request issue is fixed.
2528
+
2529
+ ### Tab
2530
+
2531
+ #### Bug Fixes
2532
+
2533
+ - Issue with loading dynamic content using template ID is fixed.
2534
+
2535
+ ## 16.1.37 (2018-04-24)
2536
+
2537
+ ### TreeView
2538
+
2539
+ #### Bug Fixes
2540
+
2541
+ - Issue in triggering `nodeExpanded` event while expanding all the nodes is fixed.
2542
+
2543
+ ## 16.1.35 (2018-04-17)
2544
+
2545
+ ### TreeView
2546
+
2547
+ #### Bug Fixes
2548
+
2549
+ - Provided option to prevent expand/collapse node while double clicking the tree node.
2550
+
2551
+ ## 16.1.34 (2018-04-10)
2552
+
2553
+ ### TreeView
2554
+
2555
+ #### Bug Fixes
2556
+
2557
+ - Issue in TreeView while ‘cancel' the `nodeDragDrop` event is fixed.
2558
+
2559
+ - Issue in TreeView drag and drop function, while adding ‘e-droppable’ class in the target element is fixed.
2560
+
2561
+ ## 16.1.32 (2018-03-29)
2562
+
2563
+ ### TreeView
2564
+
2565
+ #### Bug Fixes
2566
+
2567
+ - Prevented the checkbox interactions while the corresponding node was in disabled state.
2568
+
2569
+ ## 16.1.28 (2018-03-09)
2570
+
2571
+ ### Toolbar
2572
+
2573
+ #### Bug Fixes
2574
+
2575
+ - Toolbar border hidden issue with grid in IE11 browser is fixed.
2576
+
2577
+ ## 16.1.24 (2018-02-22)
2578
+
2579
+ ### Common
2580
+
2581
+ #### Breaking Changes
2582
+
2583
+ - Changed the Angular component selector, component name prefix with `ejs` e.g: `ejs-tab`.
2584
+
2585
+ #### New Features
2586
+
2587
+ - High contrast theme support.
2588
+
2589
+ ### Sidebar
2590
+
2591
+ 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.
2592
+
2593
+ - **Target** - The Sidebar can be initialized in any HTML element other than the body element.
2594
+
2595
+ - **Types** – Supports Push, Over, Slide and Auto to expand or collapse the Sidebar.
2596
+
2597
+ - **Position** – Allows to position the Sidebar in Left or Right direction.
2598
+
2599
+ - **Auto close** - Allows to set the sidebar in an expanded or collapsed state only in certain resolutions.
2600
+
2601
+ - **Dock** - By default, supports display of short notifications about the content on docked mode.
2602
+
2603
+ - **Backdrop** – Specifies the whether to apply overlay options to main content when the Sidebar is in open state.
2604
+
2605
+ ### Tab
2606
+
2607
+ #### Breaking Changes
2608
+
2609
+ - Locale key changed from close to `closeButtonTitle`.
2610
+
2611
+ ### Toolbar
2612
+
2613
+ #### Breaking Changes
2614
+
2615
+ - Pascal casing change to `align` property values (`Left`, `Center`, `Right`).
2616
+
2617
+ ## 15.4.30-preview (2018-02-14)
2618
+
2619
+ ### TreeView
2620
+
2621
+ #### New Features
2622
+
2623
+ - Added “getNode” method in TreeView to get the node's data based on given node element or it's ID.
2624
+
2625
+ - Added “beginEdit” method in TreeView, to initiate the editing mode of the TreeView node through code.
2626
+
2627
+ #### Breaking Changes
2628
+
2629
+ - In TreeView, “replaceText” method name has been modified as “updateNode”.
2630
+
2631
+ ## 15.4.27-preview (2018-01-30)
2632
+
2633
+ ### Tab
2634
+
2635
+ #### Bug Fixes
2636
+
2637
+ - Separate item change for active content issue with Tab fixed.
2638
+
2639
+ ## 15.4.26-preview (2018-01-23)
2640
+
2641
+ ### ContextMenu
2642
+
2643
+ #### Bug Fixes
2644
+
2645
+ - Lengthy text and caret icon wraps next line issue fixed.
2646
+
2647
+ ### Accordion
2648
+
2649
+ #### Bug Fixes
2650
+
2651
+ - Accordion content class styles overriding with the other component issue fixed.
2652
+
2653
+ ### Tab
2654
+
2655
+ #### Bug Fixes
2656
+
2657
+ - Issue with changing separate items property has been fixed.
2658
+
2659
+ ### Toolbar
2660
+
2661
+ #### New Features
2662
+
2663
+ - Provided support to display Toolbar items in popup always.
2664
+
2665
+ ## 15.4.25-preview (2018-01-09)
2666
+
2667
+ ## 15.4.23-preview (2017-12-27)
2668
+
2669
+ ### Common
2670
+
2671
+ #### New Features
2672
+
2673
+ - Added typing file for ES5 global scripts (dist/global/index.d.ts)
2674
+
2675
+ #### Breaking Changes
2676
+
2677
+ - Modified the module bundle file name for ES6 bundling
2678
+
2679
+ ### Toolbar
2680
+
2681
+ #### Bug Fixes
2682
+
2683
+ - Issue with changing separate items property has been fixed.
2684
+
2685
+ - The Toolbar Popup and scrollable creation issue in non visible element is fixed.
2686
+
2687
+ - Dynamic Items updating with toolbar alignment is fixed.
2688
+
2689
+ - Removed unwanted space available in the Toolbar Popup mode initial time.
2690
+
2691
+ ## 15.4.22-preview (2017-12-14)
2692
+
2693
+ ### ContextMenu
2694
+
2695
+ #### Bug Fixes
2696
+
2697
+ - Destroy method issue in angular is fixed.
2698
+
2699
+ ## 15.4.21-preview (2017-12-08)
2700
+
2701
+ ### Tab
2702
+
2703
+ #### Bug Fixes
2704
+
2705
+ - Tab header overlapping issue with grid is fixed.
2706
+
2707
+ ## 15.4.20-preview (2017-12-01)
2708
+
2709
+ ### Common
2710
+
2711
+ #### New Features
2712
+
2713
+ - Upgraded TypeScript version to 2.6.2
2714
+
2715
+ ## 15.4.17-preview (2017-11-13)
2716
+
2717
+ ### Accordion
2718
+
2719
+ Accordion is a vertically collapsible content panel which is displaying panels, one or multiple at a time within the available space.
2720
+
2721
+ - **Rendering** - Supports to render based on the items collection and HTML elements.
2722
+
2723
+ - **Expand Mode** - Supports to define single or multiple expand mode for Accordion panels.
2724
+
2725
+ - **Animation** - Supports animation effects for expanding/collapsing the panels.
2726
+
2727
+ - **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.
2728
+
2729
+ ### ContextMenu
2730
+
2731
+ ContextMenu is a graphical user interface that appears on the user right click/touch hold action.
2732
+
2733
+ - **Separator** - Supports menu items grouping by using the Separator.
2734
+
2735
+ - **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
2736
+
2737
+ - **Template and Multilevel Nesting** - Supports template and multilevel nesting in ContextMenu.
2738
+
2739
+ - **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.
2740
+
2741
+ ### Tab
2742
+
2743
+ Tab is a content panel to show multiple contents in specific space one at a time.
2744
+
2745
+ - **Rendering** - Supports to render based on the items collection and HTML elements.
2746
+
2747
+ - **Adaptive** - Supports responsive rendering with scrollable Tabs and popup menu.
2748
+
2749
+ - **Animation** - Supports animation effects for moving previous/next contents of the Tab.
2750
+
2751
+ - **Customization** - Provides customization support for header with icons and orientation.
2752
+
2753
+ - **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.
2754
+
2755
+ ### Toolbar
2756
+
2757
+ Displays a group of command buttons arranged horizontally.
2758
+
2759
+ - **Rendering** - Supports to render based on the items collection and HTML elements.
2760
+
2761
+ - **Customization** - Supports to add buttons , separator & input components.
2762
+
2763
+ - **Adaptive** - Supports responsive rendering with scrollable Toolbar and popup menu.
2764
+
2765
+ - **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.
2766
+
2767
+ ### TreeView
2768
+
2769
+ 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.
2770
+
2771
+ - **Data Binding** - Binds the TreeView component with an array of JavaScript objects or DataManager.
2772
+
2773
+ - **CheckBox** - Allows you to select more than one node in TreeView without affecting the UI appearance.
2774
+
2775
+ - **Drag and Drop** - Allows you to drag and drop any node in TreeView.
2776
+
2777
+ - **Multi Selection** - Allows you to select more than one node in TreeView.
2778
+
2779
+ - **Node Editing** - Allows you to change the text of a node in TreeView.
2780
+
2781
+ - **Sorting** - Allows display of the TreeView nodes in an ascending or a descending order.
2782
+
2783
+ - **Template** - Allows you to customize the nodes in TreeView.
2784
+
2785
+ - **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.## 22.2.8 (2023-08-08)
2786
+
2787
+ ### Tab
2788
+
2789
+ #### Bug Fixes
2790
+
2791
+ - `#I469335` - Provided `clearTemplates` API support to control template clearing while adding, updating, and deleting items.
2792
+