@syncfusion/ej2-angular-navigations 26.1.41-ngcc → 26.1.41

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