@syncfusion/ej2-angular-dropdowns 29.1.37-ngcc → 29.1.37

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 (63) hide show
  1. package/CHANGELOG.md +2702 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/auto-complete/autocomplete-all.module.mjs +23 -0
  4. package/esm2020/src/auto-complete/autocomplete.component.mjs +129 -0
  5. package/esm2020/src/auto-complete/autocomplete.module.mjs +25 -0
  6. package/esm2020/src/combo-box/combobox-all.module.mjs +23 -0
  7. package/esm2020/src/combo-box/combobox.component.mjs +129 -0
  8. package/esm2020/src/combo-box/combobox.module.mjs +25 -0
  9. package/esm2020/src/drop-down-list/dropdownlist-all.module.mjs +29 -0
  10. package/esm2020/src/drop-down-list/dropdownlist.component.mjs +135 -0
  11. package/esm2020/src/drop-down-list/dropdownlist.module.mjs +25 -0
  12. package/esm2020/src/drop-down-tree/dropdowntree-all.module.mjs +23 -0
  13. package/esm2020/src/drop-down-tree/dropdowntree.component.mjs +122 -0
  14. package/esm2020/src/drop-down-tree/dropdowntree.module.mjs +25 -0
  15. package/esm2020/src/index.mjs +23 -0
  16. package/esm2020/src/list-box/listbox-all.module.mjs +23 -0
  17. package/esm2020/src/list-box/listbox.component.mjs +104 -0
  18. package/esm2020/src/list-box/listbox.module.mjs +25 -0
  19. package/esm2020/src/mention/mention-all.module.mjs +23 -0
  20. package/esm2020/src/mention/mention.component.mjs +84 -0
  21. package/esm2020/src/mention/mention.module.mjs +25 -0
  22. package/esm2020/src/multi-select/multiselect-all.module.mjs +29 -0
  23. package/esm2020/src/multi-select/multiselect.component.mjs +142 -0
  24. package/esm2020/src/multi-select/multiselect.module.mjs +25 -0
  25. package/esm2020/syncfusion-ej2-angular-dropdowns.mjs +5 -0
  26. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs +1095 -0
  27. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  28. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +1095 -0
  29. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  30. package/package.json +24 -11
  31. package/src/auto-complete/autocomplete-all.module.d.ts +6 -0
  32. package/src/auto-complete/autocomplete.component.d.ts +7 -4
  33. package/src/auto-complete/autocomplete.module.d.ts +6 -0
  34. package/src/combo-box/combobox-all.module.d.ts +6 -0
  35. package/src/combo-box/combobox.component.d.ts +7 -4
  36. package/src/combo-box/combobox.module.d.ts +6 -0
  37. package/src/drop-down-list/dropdownlist-all.module.d.ts +6 -0
  38. package/src/drop-down-list/dropdownlist.component.d.ts +5 -2
  39. package/src/drop-down-list/dropdownlist.module.d.ts +6 -0
  40. package/src/drop-down-tree/dropdowntree-all.module.d.ts +6 -0
  41. package/src/drop-down-tree/dropdowntree.component.d.ts +3 -0
  42. package/src/drop-down-tree/dropdowntree.module.d.ts +6 -0
  43. package/src/list-box/listbox-all.module.d.ts +6 -0
  44. package/src/list-box/listbox.component.d.ts +4 -1
  45. package/src/list-box/listbox.module.d.ts +6 -0
  46. package/src/mention/mention-all.module.d.ts +6 -0
  47. package/src/mention/mention.component.d.ts +3 -0
  48. package/src/mention/mention.module.d.ts +6 -0
  49. package/src/multi-select/multiselect-all.module.d.ts +6 -0
  50. package/src/multi-select/multiselect.component.d.ts +3 -0
  51. package/src/multi-select/multiselect.module.d.ts +6 -0
  52. package/syncfusion-ej2-angular-dropdowns.d.ts +5 -0
  53. package/@syncfusion/ej2-angular-dropdowns.es5.js +0 -1487
  54. package/@syncfusion/ej2-angular-dropdowns.es5.js.map +0 -1
  55. package/@syncfusion/ej2-angular-dropdowns.js +0 -1402
  56. package/@syncfusion/ej2-angular-dropdowns.js.map +0 -1
  57. package/dist/ej2-angular-dropdowns.umd.js +0 -1557
  58. package/dist/ej2-angular-dropdowns.umd.js.map +0 -1
  59. package/dist/ej2-angular-dropdowns.umd.min.js +0 -11
  60. package/dist/ej2-angular-dropdowns.umd.min.js.map +0 -1
  61. package/ej2-angular-dropdowns.d.ts +0 -11
  62. package/ej2-angular-dropdowns.metadata.json +0 -1
  63. package/license +0 -10
package/CHANGELOG.md ADDED
@@ -0,0 +1,2702 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### ListBox
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#F196369` - Issue with "Script error thrown while setting the values with a new line (\n) in the list item text of the list box" has been resolved.
10
+
11
+ ### ComboBox
12
+
13
+ #### Bug Fixes
14
+
15
+ - `#I6988657` - Fixed the issue where an itemTemplate element not render while opens ComboBox popup twice when filtering enabled.
16
+
17
+ - `#I697381` - Fixed an issue where the selected value would disappear when the item template was enabled.
18
+
19
+ ### MultiSelect
20
+
21
+ #### Bug Fixes
22
+
23
+ - `#I697553` - Fixed an issue where using the Chip icon removed all selected values instead of removing a specific chip.
24
+
25
+ ### DropDownTree
26
+
27
+ #### Bug Fixes
28
+
29
+ - `#I702413` - An issue getting empty tree data after performing the filtering and reopening the popup, when both the itemTemplate and filtering support are enabled in the Dropdown Tree component has been resolved.
30
+
31
+ ## 29.1.33 (2025-03-25)
32
+
33
+ ### DropDownTree
34
+
35
+ #### Bug Fixes
36
+
37
+ - `#I694965` - Resolved an issue where the parent node check state was not maintained in nested data after filtering when Select All was used in the Dropdown Tree component.
38
+
39
+ - `#I693819` - An issue with the select All checkbox in Dropdown Tree component when filtering is enabled and the tree contains disabled items has been resolved.
40
+
41
+ ### Mention
42
+
43
+ #### New Features
44
+
45
+ - `#I645793` - Now, the Mention component supports triggering the suggestion popup without requiring a leading space. When `requireLeadingSpace` is set to false, the popup appears as the mention character is typed continuously, enhancing flexibility in user input. By default, the suggestion popup appears only when there is a leading space before typing the mention character.
46
+
47
+ ## 28.2.9 (2025-03-04)
48
+
49
+ ### ComboBox
50
+
51
+ #### Bug Fixes
52
+
53
+ - `#I683160` - Fixed the issue where an itemTemplate element not render while opens ComboBox popup twice when filtering enabled.
54
+
55
+ ### ListBox
56
+
57
+ #### Bug Fixes
58
+
59
+ - `#I687522` - Issue with "Filtering data not properly displayed while filter with diacritic characters in Listbox" has been resolved.
60
+
61
+ ### MultiSelect
62
+
63
+ #### Bug Fixes
64
+
65
+ - `#I694022` - Fixed an issue where the `ValueTemplate` was not functioning correctly for the preselected value when virtualization was enabled.
66
+
67
+ - `#I688364` - Fixed an issue with the positioning issue of the Multi select component popup while enabling the RTL mode.
68
+
69
+ ## 28.2.7 (2025-02-25)
70
+
71
+ ### Mention
72
+
73
+ #### Bug Fixes
74
+
75
+ - `#I688683` - Fixed an issue where the search method was not functioning correctly.
76
+
77
+ ### DropDownTree
78
+
79
+ #### Bug Fixes
80
+
81
+ - `#I689744` - The issue with chip item removal in the Dropdown Tree Component has been resolved.
82
+
83
+ - `#I689346` - Resolved alignment and font size theme issues within the Dropdown Tree component.
84
+
85
+ - `#I682703` - The issue where focus remained highlighted when reopening the Dropdown Tree multiple times has been resolved.
86
+
87
+ ## 28.2.6 (2025-02-18)
88
+
89
+ ### ComboBox
90
+
91
+ #### Bug Fixes
92
+
93
+ - `#I683160` - Fixed the issue where an ComboBox makes the page unresponsive after filtering with no result.
94
+
95
+ ### DropDownTree
96
+
97
+ #### Bug Fixes
98
+
99
+ - `#I682127` - Resolved an issue where the checkbox state was not maintained properly during custom filtering operations in the Dropdown Tree component.
100
+
101
+ - `#I682703`, `#I691872` - An Focusing issues in Dropdown Tree component when `showSelectAll` property is true has been resolved.
102
+
103
+ ## 28.2.5 (2025-02-11)
104
+
105
+ ### ComboBox
106
+
107
+ #### Bug Fixes
108
+
109
+ - `#I685229` - Fixed the issue where an extra space appears when using the allowResize with height properties.
110
+
111
+ ### DropDownTree
112
+
113
+ #### Bug Fixes
114
+
115
+ - `#I684184` - An issue when using value property as two way binding and selecting a filtered node has been resolved.
116
+
117
+ - `#I681976` - An issue with value property when updating a data source dynamically in Dropdown Tree component has been resolved.
118
+
119
+ - `#I682748` - An issue Tab focus occurs when navigating a disabled Dropdown Tree component has been resolved.
120
+
121
+ - `#I682703` - An Focusing issues in Dropdown Tree component when `showSelectAll` property is true has been resolved.
122
+
123
+ ## 28.2.4 (2025-02-04)
124
+
125
+ ### DropDownTree
126
+
127
+ #### Bug Fixes
128
+
129
+ - `#I679000` - An issue with react Dropdown Tree `CustomTemplate` when the state updates in the change event has been resolved.
130
+
131
+ - `#I681727` - An issue with selection and `CustomTemplate` not updating after filtering in Dropdown Tree component has been resolved.
132
+
133
+ ### MultiSelect
134
+
135
+ #### Bug Fixes
136
+
137
+ - `#I681861` - Fixed an issue where the popup would detach from the control when virtualization was enabled during filtering.
138
+
139
+ ## 28.2.3 (2025-01-29)
140
+
141
+ ### ListBox
142
+
143
+ #### Bug Fixes
144
+
145
+ - `#I933368` - Issue with "Filter input loss focus if the last letter is removed using backspace in listbox" has been resolved.
146
+
147
+ ### MultiSelect
148
+
149
+ #### Bug Fixes
150
+
151
+ - `#I679387` - Fixed an issue where no records were found in the popup after selecting all items.
152
+
153
+ ## 28.1.41 (2025-01-21)
154
+
155
+ ### ComboBox
156
+
157
+ #### Bug Fixes
158
+
159
+ - `#I679101` - Fixed the issue where an error was encountered when filtering in the ComboBox with custom values disabled and virtualization enabled.
160
+
161
+ ### DropDownTree
162
+
163
+ #### Bug Fixes
164
+
165
+ - `#I678070` - The issue change event is not triggered when checking SelectAll checkbox after dynamically selecting any node in the Dropdown Tree component has been resolved.
166
+
167
+ ### MultiSelect
168
+
169
+ #### Bug Fixes
170
+
171
+ - `#I662148` - Fixed an issue where the value was not bound to the Multiselect component.
172
+
173
+ ## 28.1.39 (2024-01-14)
174
+
175
+ ### ListBox
176
+
177
+ #### Bug Fixes
178
+
179
+ - `#I933368` - Issue with "Filter input loss focus if the last letter is removed using backspace in listbox" has been resolved.
180
+
181
+ ### Mention
182
+
183
+ #### Bug Fixes
184
+
185
+ - `#FB64462` - Resolved an issue where the `readonly` feature was not functioning correctly when integrating the Rich Text Editor with the mention functionality.
186
+
187
+ ## 28.1.38 (2025-01-07)
188
+
189
+ ### DropDownTree
190
+
191
+ #### Bug Fixes
192
+
193
+ - `#I668573` - The issue pop-up does not stick to the target after filtering is performed in the Dropdown Tree component has been resolved.
194
+
195
+ ## 28.1.37 (2024-12-31)
196
+
197
+ ### Mention
198
+
199
+ #### Bug Fixes
200
+
201
+ - `#I666283` - Fixed an issue where the `Select` event did not trigger when using the `Tab` key for selection.
202
+
203
+ ### ComboBox
204
+
205
+ #### Bug Fixes
206
+
207
+ - `#I664927` - Fixed a console error that occurred when attempting to filter data using pasted text.
208
+
209
+ ### MultiSelect
210
+
211
+ #### Bug Fixes
212
+
213
+ - `#I584660` - Fixed a console error that occurred when using the `getTextByValue` method without a dataset.
214
+
215
+ - `#I661577` - Fixed the issue where the placeholder was not displayed after clearing the value.
216
+
217
+ ### DropDownTree
218
+
219
+ #### Bug Fixes
220
+
221
+ - `#I662775` - Resolved the empty chip element creation when setting empty string for value property in Dropdown Tree component.
222
+
223
+ ## 28.1.36 (2024-12-24)
224
+
225
+ ### MultiSelect
226
+
227
+ #### Bug Fixes
228
+
229
+ - `#I663752` - The issue where the "No records found" template was displayed when closing and opening the popup has been resolved.
230
+
231
+ ### ListBox
232
+
233
+ #### Bug Fixes
234
+
235
+ - `#I929759` - Issue with "Correction in Ctrl + A key down action for single mode selection of listbox component" has been resolved.
236
+ - `#I664408` - Changing the type of value property of ListboxChangeEvents arguments from (number | string | boolean) to (number[] | string[] | boolean[]) in listbox.
237
+
238
+ ### DropDownTree
239
+
240
+ #### Bug Fixes
241
+
242
+ - `#I665182` - The issue with skipping last child items in tree navigation in Dropdown Tree when custom filtering is applied has been resolved.
243
+ - `#I659157`, `#I659195` - Resolved the change event incorrect argument value issue during the node selection in Dropdown Tree component.
244
+
245
+ ## 28.1.35 (2024-12-18)
246
+
247
+ ### DropDownTree
248
+
249
+ #### Bug Fixes
250
+
251
+ - `#I660279` - The issue of being unable to close the parent Dropdown Tree using the document click action after dynamically removing the child Dropdown Tree component has been resolved.
252
+ - `#I662309` - Issue with inconsistent selection behavior when using `selectAll` API on Dropdown Tree component initial render has been resolved.
253
+
254
+ ### ComboBox
255
+
256
+ #### Bug Fixes
257
+
258
+ - `#I660915` - Fixed an issue where an empty popup was displayed when opening the popup manually.
259
+
260
+ ## 28.1.33 (2024-12-12)
261
+
262
+ ### ListBox
263
+
264
+ #### Bug Fixes
265
+
266
+ - `#F43705` - Issue with "Dropping selected items does not work correctly while enabling the checkbox in listbox component." has been resolved.
267
+
268
+ ### DropDownTree
269
+
270
+ #### Bug Fixes
271
+
272
+ - `#I591637` - The close event is now triggered when the popup begins closing, and a cancel option is provided to prevent the close action if needed.
273
+
274
+ ### MultiSelect
275
+
276
+ #### Bug Fixes
277
+
278
+ - `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
279
+
280
+ ### DropdownList
281
+
282
+ #### Bug Fixes
283
+
284
+ - `#I472623` - Resolved an issue when the window is resizing the popup position is misaligned
285
+
286
+ ## 21.2.5 (2023-05-16)
287
+
288
+ ### ListBox
289
+
290
+ #### Bug Fixes
291
+
292
+ - `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template in angular platform" has been resolved.
293
+ - `#F181131` - Issue with "No Record Found text disappears while hovering the drag item on list box without drop" has been resolved.
294
+ - `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template" has been resolved.
295
+ - `#I445397` - Issue with "Script error thrown when navigate the listbox item in grouping listbox through keyboard navigation" has been resolved.
296
+ - `#I442262` - Issue with "Script error thrown while using destroy method in change event of list box" has been resolved.
297
+ - `#F38636` - Issue with "`selectItems` function doesn't work in listbox when values contain backslashes" has been resolved.
298
+ - `#F424252` - Issue with "Data source not update properly when we filtering and clicking move All button in listbox toolbar sample" has been resolved.
299
+ - `#I423072` - Issue with "`actionBegin` event argument not passes the filtered item properly while filtering and clicking move All button in listbox toolbar sample" has been resolved.
300
+ - `#F37860` - Issue with "Command button not working properly for multiselect in ListBox in Mac" has been resolved.
301
+
302
+ ### DropDownList
303
+
304
+ #### Bug Fixes
305
+
306
+ - `#I397894` - The issue "aria-label added on input element instead of wrapper element while adding the aria-label by using Html Attribute property" has been resolved.
307
+
308
+ ## 20.3.47 (2022-09-29)
309
+
310
+ ### Mention
311
+
312
+ - The `@Mention` component can be used to display a pop-up suggestion list whenever the designated mention key character is entered into a text box, rich text editor, or other editable element.
313
+
314
+ **Key features**:
315
+
316
+ - **Data binding**: Binds the list of items from local and remote data sources such as JSON, OData, WCF, and RESTful web services.
317
+
318
+ - **Grouping**: Groups the logically related items under a single or specific category.
319
+
320
+ - **Filtering**: Filters the list items based on a character typed in the component.
321
+
322
+ - **Sorting**: Sorts the list items in alphabetical order (either ascending or descending).
323
+
324
+ - **Highlight search**: Highlights the typed text in the suggestion list.
325
+
326
+ - **Templates**: Customize the list item, display value, no records, and spinner loading content.
327
+
328
+ - **Accessibility**: Built-in accessibility support that helps to access all the Mention component features using the keyboard, on-screen readers, or other assistive technology devices.
329
+
330
+ ### ListBox
331
+
332
+ #### Bug Fixes
333
+
334
+ - `#I383114` - Issue with "Drop event argument not passes the selected item properly, while drag and drop the multiple item of listbox" has been resolved.
335
+
336
+ ### MultiSelect
337
+
338
+ #### Bug Fixes
339
+
340
+ - `#FB31100` - Issue with "popup is not opened while changing the `popupHeight` dynamically in the `beforeOpen` event" has been resolved.
341
+
342
+ ### DropDownList
343
+
344
+ #### Bug fixes
345
+
346
+ - `#I382870` - Issue with "NVDA reader does not read the selected value in the component" has been resolved.
347
+
348
+ ## 19.3.56 (2021-12-02)
349
+
350
+ ### MultiSelect
351
+
352
+ #### Bug Fixes
353
+
354
+ - `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
355
+
356
+ ### Dropdown Tree
357
+
358
+ #### Bug Fixes
359
+
360
+ - `#I342745` - The performance issue that occurred when selecting a node that was rendered with a huge data source has been resolved.
361
+
362
+ ## 19.3.55 (2021-11-23)
363
+
364
+ ### AutoComplete
365
+
366
+ #### Bug Fixes
367
+
368
+ - `#I343913` - Issue with "exception throws while preventing the request to the server in the `actionBegin` event" has been resolved.
369
+
370
+ ## 19.3.53 (2021-11-12)
371
+
372
+ ### Dropdown Tree
373
+
374
+ #### Bug Fixes
375
+
376
+ - `#I345378` - The issue with "The interaction value is not updated properly in the select event while selecting via Select All checkbox" has been resolved.
377
+
378
+ ### MultiSelect
379
+
380
+ #### New Features
381
+
382
+ - `#F158756` - Now, you can convert the typed value as chip or update as value of the component while focusing out the component by enabling the `addTagOnBlur` property.
383
+
384
+ - `#I346387` - Issue with "select all checkbox is not displayed properly while selecting an item from the list" has been resolved.
385
+
386
+ ## 19.3.48 (2021-11-02)
387
+
388
+ ### Dropdown Tree
389
+
390
+ #### Bug Fixes
391
+
392
+ - `#I344723` - The issue with "The selected value is not removed from the Dropdown Tree while using the value property as two-way binding" has been resolved.
393
+
394
+ ### MultiSelect
395
+
396
+ #### Bug Fixes
397
+
398
+ - `#I342517` - Issue with "Content Security Policy violation exception throws on initial rendering" has been resolved.
399
+
400
+ ## 19.3.47 (2021-10-26)
401
+
402
+ ### Dropdown Tree
403
+
404
+ #### Bug Fixes
405
+
406
+ - `#I343096` - The issue with "The Dropdown Tree item getting unselected when clicking the text content of the input element" has been fixed.
407
+
408
+ ## 19.3.46 (2021-10-19)
409
+
410
+ ### Dropdown Tree
411
+
412
+ #### Bug Fixes
413
+
414
+ - `#F169190` - The issue with "The Dropdown tree is not focused while pressing single tab key" has been resolved.
415
+
416
+ - `#I341135` - The issue with "The Dropdown Tree selected items are misaligned while adding the `e-outline` and `e-filled` CSS classes" has been resolved.
417
+
418
+ ### MultiSelect
419
+
420
+ #### Bug Fixes
421
+
422
+ - `#I329545` - Issue with "clear icon is not working while rendering the component with custom value as preselected value" has been resolved.
423
+
424
+ ## 19.3.45 (2021-10-12)
425
+
426
+ ### ComboBox
427
+
428
+ #### Bug Fixes
429
+
430
+ - `#I343666` - Issue with "data list is not updated to the popup while changing the query property on dynamically with filtering mode" has been resolved.
431
+
432
+ ## 19.3.44 (2021-10-05)
433
+
434
+ ### Dropdown Tree
435
+
436
+ #### New Features
437
+
438
+ - `#I301222` - Provided support to display custom selected values template in the Dropdown Tree component.
439
+
440
+ #### Bug Fixes
441
+
442
+ - `#I342360`, `#I342351` - The issue with "The Dropdown Tree component is not rendered when providing an id that starts with an integer type" has been resolved.
443
+
444
+ - `I341114` - Issue with "When listbox is selected with checkbox, drag and drop is not working properly" has been resolved.
445
+
446
+ ## 19.2.62 (2021-09-14)
447
+
448
+ ### DropDownList
449
+
450
+ #### Bug Fixes
451
+
452
+ - `#I341137` - Issue with "fixed grouping headers are not updated while scrolling the popup after set the grouping dynamically" has been resolved.
453
+
454
+ ## 19.2.55 (2021-08-11)
455
+
456
+ ### ListBox
457
+
458
+ #### New Features
459
+
460
+ - Provided No Record Template support.
461
+
462
+ ### DropDownList
463
+
464
+ #### Bug Fixes
465
+
466
+ - Issue with "incremental search is not working properly while destroying and rendering the component again" has been resolved.
467
+
468
+ ### AutoComplete
469
+
470
+ #### Bug Fixes
471
+
472
+ - `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
473
+
474
+ ### Dropdown Tree
475
+
476
+ #### Bug Fixes
477
+
478
+ - `#F167371` - The performance issue that occurred when destroying the Dropdown Tree with a huge data source and CheckBox support has been resolved.
479
+
480
+ ### MultiSelect
481
+
482
+ #### Bug Fixes
483
+
484
+ - `#I338231` - Issue with "empty popup is shown while removing the custom value from the input" has been resolved.
485
+
486
+ ## 19.2.51 (2021-08-03)
487
+
488
+ ### ListBox
489
+
490
+ #### Bug Fixes
491
+
492
+ - `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
493
+
494
+ ### Dropdown Tree
495
+
496
+ #### Bug Fixes
497
+
498
+ - `#FB25687` - The issue with "The popup is not opened for the second time in the Dropdown Tree component when it is rendered inside the Accordion" has been resolved.
499
+
500
+ ## 19.2.49 (2021-07-27)
501
+
502
+ ### MultiSelect
503
+
504
+ #### Bug Fixes
505
+
506
+ - `#FB26653` - Issue with "placeholder is not updated properly while updating the placeholder value with special characters" has been resolved.
507
+
508
+ ## 19.2.48 (2021-07-20)
509
+
510
+ ### ListBox
511
+
512
+ #### Bug Fixes
513
+
514
+ - `#I333351` - The issue with item template not works while using drag and drop issue has been fixed.
515
+
516
+ ### MultiSelect
517
+
518
+ #### Bug Fixes
519
+
520
+ - `#I331063`, `#I335590` - Issue with "popup is not opened while rendering the component with HTML select tag and `dataSource` property" has been resolved.
521
+
522
+ - `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
523
+
524
+ ### Dropdown Tree
525
+
526
+ #### Bug Fixes
527
+
528
+ - `#I333505` - The issue with "When placing the button in the header and footer templates of the Dropdown Tree, the button's click event is not triggered" has been resolved.
529
+ - `#I304231` - Improved the item selection performance with large items in the Dropdown Tree component.
530
+
531
+ ## 19.2.47 (2021-07-13)
532
+
533
+ ### MultiSelect
534
+
535
+ #### Bug Fixes
536
+
537
+ - `#I331063` - Issue with "popup is not opened while rendering component with HTML select tag and dynamically changing the data source" has been resolved.
538
+
539
+ - `#F166677` - Issue with "incorrect selected count is displayed in the multiselect while choosing multiple items" has been resolved.
540
+
541
+ ## 19.1.65 (2021-05-25)
542
+
543
+ ### DropDownList
544
+
545
+ #### Bug Fixes
546
+
547
+ - Issue with "Improper data source values are loaded in the popup while modifying query property" has been resolved.
548
+
549
+ ## 19.1.59 (2021-05-04)
550
+
551
+ ### ListBox
552
+
553
+ #### Bug Fixes
554
+
555
+ - `#317293` - Listbox event properties descriptions added.
556
+
557
+ ### MultiSelect
558
+
559
+ #### Bug Fixes
560
+
561
+ - `#I323182` - Issue with "grouping headers are duplicated and overlapped with popup items while scrolling the popup after selecting the first popup item" has been resolved.
562
+
563
+ ## 19.1.57 (2021-04-20)
564
+
565
+ ### ListBox
566
+
567
+ #### Bug Fixes
568
+
569
+ - `#311323` - Issue with 'No Records Found' text occurred twice has been resolved.
570
+
571
+ ### MultiSelect
572
+
573
+ #### Bug Fixes
574
+
575
+ - `#I320251` - Issue with "previously selected value is shown in the popup while removing the value using backspace rapidly in the custom value enabled component" has been resolved.
576
+
577
+ ## 19.1.56 (2021-04-13)
578
+
579
+ ### ListBox
580
+
581
+ #### Bug Fixes
582
+
583
+ - `#316046` - Action complete event not triggered when sort order property is given issue is fixed.
584
+
585
+ - `#311323` - DataSource missing while filtering is applied issue has been resolved.
586
+
587
+ - `#163935` - Previous index is wrong in drag and drop event has been fixed.
588
+
589
+ ## 19.1.54 (2021-03-30)
590
+
591
+ ### Dropdown Tree
592
+
593
+ #### Bug Fixes
594
+
595
+ `#317088` - The issue with "The popup is not opened for the second time in the Dropdown Tree component when it is rendered inside the Dialog" has been resolved.
596
+
597
+ ## 18.4.47 (2021-03-09)
598
+
599
+ ### MultiSelect
600
+
601
+ #### Bug Fixes
602
+
603
+ `#317598` - Issue with "selected values are not posted properly while clicking on the select all option with predefined value" has been resolved.
604
+
605
+ ## 18.4.44 (2021-02-23)
606
+
607
+ ### MultiSelect
608
+
609
+ #### New Features
610
+
611
+ - `#283275`, `#289148`, `#296652` - Now, selection and deselection performance is improved while providing the large data to the component.
612
+
613
+ ## 18.4.43 (2021-02-16)
614
+
615
+ ### Dropdown Tree
616
+
617
+ #### Bug Fixes
618
+
619
+ - `#310244` - The issue on changing the `treeSettings.autoCheck` property dynamically in the `Box` mode has been resolved in the Dropdown Tree component.
620
+
621
+ ### MultiSelect
622
+
623
+ #### Bug Fixes
624
+
625
+ - `#310590` - Now, chip will create in focused multiselect component while updating the value property on dynamically.
626
+
627
+ ## 18.4.35 (2021-01-19)
628
+
629
+ ### DropDownList
630
+
631
+ #### Bug Fixes
632
+
633
+ - `#310665` - Issue with "`select` event is triggered twice while preventing the value selection" has been resolved.
634
+
635
+ ## 18.4.34 (2021-01-12)
636
+
637
+ ### ListBox
638
+
639
+ #### Bug Fixes
640
+
641
+ - Issue with remote data has been fixed.
642
+
643
+ ### ComboBox
644
+
645
+ #### Bug Fixes
646
+
647
+ - `#F159036` - Issue with "popup doesn't show the entire data source when render component with item template and clearing the filtered value" has been resolved.
648
+
649
+ ## 18.4.32 (2020-12-29)
650
+
651
+ ### AutoComplete
652
+
653
+ #### Bug Fixes
654
+
655
+ - `#308003` - Issue with 'highlight search is not working while rendering component along with `iconCss` property' has been resolved.
656
+
657
+ ### DropDownList
658
+
659
+ #### Bug Fixes
660
+
661
+ - `#304837` - Issue with "value property is not updated properly while rendering dropdown with select tag and list has empty string as field value" has been resolved.
662
+
663
+ ## 18.4.31 (2020-12-22)
664
+
665
+ ### ListBox
666
+
667
+ #### Bug Fixes
668
+
669
+ - Issue with 'drag and drop' has been fixed.
670
+ - Issue with toolbar option has been fixed.
671
+
672
+ ### DropDownList
673
+
674
+ #### Bug Fixes
675
+
676
+ - `#305245` - Now, popup values reset back to full data while clicking on the clear icon in the filter input.
677
+
678
+ - `#305962` - Now, `sortOrder` property works for data source with `Array` type.
679
+
680
+ - `#304595` - Issue with "dynamic value changes is not updated to the component after performing the filtering action" has been resolved.
681
+
682
+ - `#305983` - Issue with "unable to select dropdown items after calling `refresh` method" has been resolved.
683
+
684
+ ### MultiSelect
685
+
686
+ #### Bug Fixes
687
+
688
+ - `#305461` - Issue with "popup is not closed when render multiple multiselect dropdown with checkbox mode" has been resolved.
689
+
690
+ - `#302393` - Issue with "the focus class is maintained in the previous multiselect after move the focus to another multiselect component" has been resolved.
691
+
692
+ ## 18.3.52 (2020-12-01)
693
+
694
+ ### DropDownList
695
+
696
+ #### Bug Fixes
697
+
698
+ - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
699
+
700
+ ### MultiSelect
701
+
702
+ #### Bug Fixes
703
+
704
+ - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
705
+
706
+ ### ComboBox
707
+
708
+ #### Bug Fixes
709
+
710
+ - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
711
+
712
+ ### AutoComplete
713
+
714
+ #### Bug Fixes
715
+
716
+ - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
717
+
718
+ ### ListBox
719
+
720
+ #### Bug Fixes
721
+
722
+ - Issue with 'removeItem' method has been fixed.
723
+
724
+ ## 18.3.44 (2020-10-27)
725
+
726
+ ### MultiSelect
727
+
728
+ #### Bug Fixes
729
+
730
+ - `#292479` - Issue with "beforeOpen event is triggered while rendering the component with initial value" has been resolved.
731
+
732
+ ### DropDownList
733
+
734
+ #### Bug Fixes
735
+
736
+ - `#F158340` - Issue with "popup is not getting refreshed after filtering while updating the remote data dynamically " has been resolved.
737
+
738
+ ## 18.3.42 (2020-10-20)
739
+
740
+ ### Dropdown Tree
741
+
742
+ #### Bug Fixes
743
+
744
+ - `F155642` - The issue with "the two-way binding is not working while enabling checkbox support in the Dropdown Tree component" has been resolved.
745
+
746
+ ### ListBox
747
+
748
+ #### Bug Fixes
749
+
750
+ - Issue with 'dragStart' event has been fixed.
751
+
752
+ ### MultiSelect
753
+
754
+ #### Bug Fixes
755
+
756
+ - `#289874` - Issue with "invalid predefined value is added to the control while disabling the custom value" has been resolved.
757
+
758
+ - `#291608` - Issue with "spinner icon is overlapped with clear icon while fetching data from server" has been resolved.
759
+
760
+ ## 18.3.40 (2020-10-13)
761
+
762
+ ### MultiSelect
763
+
764
+ #### Bug Fixes
765
+
766
+ - `#291884` - Issue with "clear icon overlaps the selected value" has been resolved.
767
+
768
+ - `#F158089` - Issue with "misplacement of footer template for checkbox mode" has been resolved.
769
+
770
+ - `#F157575` - Issue with "value selection by using the space key at the popup opening on second time" has been resolved.
771
+
772
+ ## 18.3.35 (2020-10-01)
773
+
774
+ ### ListBox
775
+
776
+ #### Bug Fixes
777
+
778
+ - compatibility issues with EJ1 has been fixed.
779
+
780
+ ## 18.2.58 (2020-09-15)
781
+
782
+ ### ListBox
783
+
784
+ #### Bug Fixes
785
+
786
+ - 'moveAll' is not working after applied grouping has been fixed.
787
+
788
+ ### MultiSelect
789
+
790
+ #### Bug Fixes
791
+
792
+ - `#289874` - Issue with "invalid value is added to the control while providing the invalid value to the value property" has been resolved.
793
+
794
+ ## 18.2.54 (2020-08-18)
795
+
796
+ ### Dropdown Tree
797
+
798
+ #### Breaking Changes
799
+
800
+ - `#273325` - Provided the option to customize the Dropdown Tree’s input height when the content is increased.
801
+
802
+ ### MultiSelect
803
+
804
+ #### Bug Fixes
805
+
806
+ - `#275308` - Performance issue will no longer occurs when render the multiselect with checkbox.
807
+
808
+ ### DropDownList
809
+
810
+ #### Bug Fixes
811
+
812
+ - `#285069` - Issue with "popup is not opened when focus out the component before loading the remote data" has been resolved.
813
+
814
+ ## 18.2.48 (2020-08-04)
815
+
816
+ ### ListBox
817
+
818
+ #### New Features
819
+
820
+ - `#285392` - Enable / disable list items based on unique value support provided.
821
+
822
+ ### Dropdown Tree
823
+
824
+ #### Bug Fixes
825
+
826
+ - The accessibility issue with “The Dropdown Tree text is not reading properly when enabling the multi-selection support” has been resolved.
827
+
828
+ ### MultiSelect
829
+
830
+ #### Bug Fixes
831
+
832
+ - `#282905`, `#273055` - Now, Cross-Site Scripting issues will no longer occurs.
833
+
834
+ - `#285164`, `#277294` - Issue with "First list item got selected while pressing space key in the MultiSelect along with checkbox mode and remote data" has been resolved.
835
+
836
+ ## 18.2.47 (2020-07-28)
837
+
838
+ ### DropDownList
839
+
840
+ #### Bug Fixes
841
+
842
+ - `#277503` - Issue with "sort order is not working for filtering dropdown after adding new item using addItem method" has been resolved.
843
+
844
+ ### ListBox
845
+
846
+ #### Bug Fixes
847
+
848
+ - Filtering is not working in IE browser has been fixed.
849
+
850
+ ### AutoComplete
851
+
852
+ #### Bug Fixes
853
+
854
+ - `#276842` - Issue with "list data is not updated properly while pressing alt+down key in auto filling autocomplete" has been resolved.
855
+
856
+ ## 18.1.59 (2020-06-23)
857
+
858
+ ### MultiSelect
859
+
860
+ #### Bug Fixes
861
+
862
+ -`#F154635` - Issue with "floating label is not floated properly while rendering with filter and outline theme appearance" has been resolved.
863
+
864
+ - `#278902` - Issue with "incorrect count displayed in the multiselect input field when selecting the multiple items" has been resolved.
865
+
866
+ ### DropDownList
867
+
868
+ #### Bug Fixes
869
+
870
+ -`#278736` -Now, search action is performed properly while rendering multiple dropdown and selecting the value using keyboard.
871
+
872
+ ## 18.1.57 (2020-06-16)
873
+
874
+ ### ComboBox
875
+
876
+ #### Bug Fixes
877
+
878
+ - `#279216` - Now, you can set empty data source dynamically.
879
+
880
+ ### MultiSelect
881
+
882
+ #### Bug Fixes
883
+
884
+ - `#277467`- Issue with "some items in the dropdown hides when using the header template in the mobile mode" has been resolved.
885
+
886
+ - `#278201`- Issue with "multiSelect component in mobile mode with initial value page not scrolled" has been resolved.
887
+
888
+ ## 18.1.56 (2020-06-09)
889
+
890
+ ### ComboBox
891
+
892
+ #### Bug Fixes
893
+
894
+ - Issue with "select event is not triggered while doing first selection with autofill" has been resolved.
895
+
896
+ -`#278135`- Issue with "Item data is not loaded with asynchronous data when allowCustom is set to false" has been resolved.
897
+
898
+ ### DropDownList
899
+
900
+ #### Bug Fixes
901
+
902
+ - `#280052`- Issue with "localization is not working for dropdown components" has been resolved.
903
+
904
+ ## 18.1.55 (2020-06-02)
905
+
906
+ ### MultiSelect
907
+
908
+ #### Bug Fixes
909
+
910
+ -`#273796` - Now, e-outline class is added to the filter input
911
+
912
+ ### Dropdown Tree
913
+
914
+ #### Bug Fixes
915
+
916
+ - `#276800` - The issue with “The selected item is maintained in DOM after clearing the item using clear icon in the Dropdown Tree component” has been resolved.
917
+
918
+ - `#278072` - The issue with “The Dropdown Tree selected values are not received in the form post back” has been resolved.
919
+
920
+ - `#274468` - The issue with “The Dropdown Tree popup element is incorrectly positioned when it is rendered inside the Bootstrap dialog” has been fixed.
921
+
922
+ #### New Features
923
+
924
+ - `#277378` - Provided the support to reset the values in the Dropdown Tree component when the form reset method is called.
925
+
926
+ ### DropDownList
927
+
928
+ #### Bug Fixes
929
+
930
+ -`#277821` - Now, changed the no record template hint message.
931
+
932
+ ## 18.1.53 (2020-05-19)
933
+
934
+ ### MultiSelect
935
+
936
+ #### Bug Fixes
937
+
938
+ - `#273796` - Now, filtering works properly when paste the value in the input element.
939
+
940
+ ### Dropdown Tree
941
+
942
+ #### Bug Fixes
943
+
944
+ - `#274351` - The issue with "The Dropdown Tree initialized value which is not getting it in the form post" has been resolved.
945
+
946
+ ### ListBox
947
+
948
+ #### New Features
949
+
950
+ - Provided Placeholder support to filterbar in listbox.
951
+
952
+ #### Bug Fixes
953
+
954
+ - Move to and move from throws script error when listbox rendered with item template issue fixed.
955
+
956
+ ## 18.1.52 (2020-05-13)
957
+
958
+ ### ListBox
959
+
960
+ #### Bug Fixes
961
+
962
+ - Move to and move from throws script error when listbox rendered with item template issue fixed.
963
+
964
+ ## 18.1.48 (2020-05-05)
965
+
966
+ ### MultiSelect
967
+
968
+ #### Bug Fixes
969
+
970
+ - `#273796` - Issue with clear icon misalignment in the material outline has been resolved.
971
+
972
+ ### ListBox
973
+
974
+ #### Bug Fixes
975
+
976
+ - Issue with drag and drop in empty listbox has been fixed.
977
+
978
+ ## 18.1.46 (2020-04-28)
979
+
980
+ ### Dropdown Tree
981
+
982
+ #### Bug Fixes
983
+
984
+ - The issue with `The Dropdown Tree placeholder hides while opening the popup, when enabling the checkbox support` has been fixed.
985
+
986
+ ### ListBox
987
+
988
+ #### Bug Fixes
989
+
990
+ - Issue with 'enabled' properly when listbox have toolbar option has been fixed.
991
+ - Issue with Filter element when the scrolling has enabled in listbox.
992
+
993
+ ## 18.1.43 (2020-04-07)
994
+
995
+ ### ListBox
996
+
997
+ #### Bug Fixes
998
+
999
+ - `moveTo` method is not working properly when listbox have disabled items has been fixed.
1000
+
1001
+ ## 18.1.36-beta (2020-03-19)
1002
+
1003
+ ### Common
1004
+
1005
+ #### Breaking Changes
1006
+
1007
+ The newly added `Dropdown Tree` component in dropdowns package requires `Navigations` dependency, so now it is mandatory to include the `ej2-navigations.umd.min.js` in `system.js` configuration if you are using the system.js module loader.
1008
+ Update the system.js configuration while going with this version and above.
1009
+
1010
+ ### Dropdown Tree
1011
+
1012
+ The Dropdown Tree control allows you to select single or multiple values from hierarchical data in a tree-like structure. It has several out-of-the-box features, such as data binding, check boxes, templates, UI customization, accessibility, and preselected values. The available key features are
1013
+
1014
+ - **Data binding** - Bind and access a hierarchical list of items from a local or server-side data source.
1015
+
1016
+ - **Check boxes** - Select more than one item in the Dropdown Tree control without affecting the UI appearance.
1017
+
1018
+ - **Multiple selection** - Select more than one item in the control.
1019
+
1020
+ - **Sorting** - Display the Dropdown Tree items in ascending or descending order.
1021
+
1022
+ - **Template** - Customize the Dropdown Tree items, header, footer, action failure content, and no records content.
1023
+
1024
+ - **Accessibility** - Provide access to all the Dropdown Tree control features through keyboard interaction, on-screen readers, and other assistive technology devices.
1025
+
1026
+ ### ListBox
1027
+
1028
+ #### Bug Fixes
1029
+
1030
+ - Dynamic show checkBox not working in grouping has been fixed.
1031
+
1032
+ ## 17.4.51 (2020-02-25)
1033
+
1034
+ ### MultiSelect
1035
+
1036
+ #### Bug Fixes
1037
+
1038
+ - `#263579` - Issue with "the performance issue while clear the selected items using clear button" issue has been resolved.
1039
+
1040
+ ## 17.4.50 (2020-02-18)
1041
+
1042
+ ### ListBox
1043
+
1044
+ #### Bug Fixes
1045
+
1046
+ - `#261827` - Issue when ListBox and menu component in a same page has been resolved.
1047
+
1048
+ ### ComboBox
1049
+
1050
+ #### Bug Fixes
1051
+
1052
+ - `#261005` - Now, `isInteracted` argument updated properly in the change event while entering the `autofill` value.
1053
+
1054
+ ## 17.4.49 (2020-02-11)
1055
+
1056
+ ### DropDownList
1057
+
1058
+ #### Bug Fixes
1059
+
1060
+ - `#261901` - Issue with "cascade dropdown previous value maintained while enabled the filtering" has been resolved.
1061
+
1062
+ ### ComboBox
1063
+
1064
+ #### Bug Fixes
1065
+
1066
+ - `#261005` - Now, `isInteracted` argument is updated properly after manually deleting all characters followed by focus out the control.
1067
+
1068
+ ### MultiSelect
1069
+
1070
+ #### Bug Fixes
1071
+
1072
+ - `#263399` - Issue with "change event is not triggered while enabling `checkbox` selection in IE11 browser" has been resolved.
1073
+
1074
+ ## 17.4.47 (2020-02-05)
1075
+
1076
+ ### ListBox
1077
+
1078
+ #### Bug Fixes
1079
+
1080
+ - `#F151029` - Checkbox selection not updated on initial load, while rendering the ListBox with `iconCss` issue fixed.
1081
+ - Provided 'actionBegin' and 'actionComplete' event when moving items.
1082
+
1083
+ ## 17.4.46 (2020-01-30)
1084
+
1085
+ ### MultiSelect
1086
+
1087
+ #### Bug Fixes
1088
+
1089
+ - `#261574` - Now, `isInteracted` argument updated properly in the change event while focusout.
1090
+
1091
+ - `#258514` - Issue with "addItem method is not working while binding empty data source" has been resolved.
1092
+
1093
+ - `#259861` - Issue with "filtering not working after selecting the item in the popup" has been resolved.
1094
+
1095
+ ### ComboBox
1096
+
1097
+ #### Bug Fixes
1098
+
1099
+ - `#261005` - Now, `isInteracted` argument updated properly in the change event while entering the custom value.
1100
+
1101
+ ## 17.4.44 (2021-01-21)
1102
+
1103
+ ### ListBox
1104
+
1105
+ #### Bug Fixes
1106
+
1107
+ - `#260635` - Sorted datasource not updated properly in ListBox has been fixed.
1108
+
1109
+ ## 17.4.43 (2020-01-14)
1110
+
1111
+ ### ListBox
1112
+
1113
+ #### Bug Fixes
1114
+
1115
+ - `#F150435` - Script error occurs during disabled toolbar button click has been resolved.
1116
+
1117
+ ## 17.4.41 (2020-01-07)
1118
+
1119
+ ### ListBox
1120
+
1121
+ #### Bug Fixes
1122
+
1123
+ - `#255830` - filter and grouping are not working on drag and drop and toolbar button states not updated properly has been resolved.
1124
+
1125
+ ## 17.4.40 (2019-12-24)
1126
+
1127
+ ### DropDownList
1128
+
1129
+ #### Bug Fixes
1130
+
1131
+ - `#255255` - Issue with "JAWS screen reader does not read the pre-selected value" has been resolved.
1132
+
1133
+ - `#257336` - Issue with "fixed header shown twice while scrolling the items in the popup and reopen the popup again" has been resolved.
1134
+
1135
+ ### ListBox
1136
+
1137
+ #### Bug Fixes
1138
+
1139
+ - Issue with Drag and Drop is fixed.
1140
+
1141
+ ## 17.4.39 (2019-12-17)
1142
+
1143
+ ### ComboBox
1144
+
1145
+ #### Bug Fixes
1146
+
1147
+ - `#256098` - The mobile device ENTER key selection issue in the focused item issue has resolved.
1148
+
1149
+ ### MultiSelect
1150
+
1151
+ #### Bug Fixes
1152
+
1153
+ - `#255765` - Issue with "dynamically added item not displayed initially in box mode when control in focus state" has been resolved.
1154
+
1155
+ ### DropDownList
1156
+
1157
+ #### Bug Fixes
1158
+
1159
+ - `#256908` - Issue with "script error throws while pressing the escape key after filter the items in the popup" has been resolved.
1160
+
1161
+ ### ListBox
1162
+
1163
+ #### New Features
1164
+
1165
+ - Provided public methods for `toolbar` actions.
1166
+ - Provided `getDataByValues` method for getting array of data objects.
1167
+
1168
+ #### Bug Fixes
1169
+
1170
+ - `#252496` - Checkbox selection not maintained after removing filter has been fixed.
1171
+ - `#F147087` - script error "contains of undefined in ListBox" while rendering the ListBox and multi select in the same router page has been fixed.
1172
+
1173
+ ### AutoComplete
1174
+
1175
+ #### Bug Fixes
1176
+
1177
+ - `#236361` - Now, filtering works properly in mobile Firefox.
1178
+
1179
+ ## 17.3.29 (2019-11-26)
1180
+
1181
+ ### AutoComplete
1182
+
1183
+ #### New Features
1184
+
1185
+ - `#254473` - Now, you can clear the selected values using `clear` method.
1186
+
1187
+ ### ComboBox
1188
+
1189
+ #### New Features
1190
+
1191
+ - `#254473` - Now, you can clear the selected values using `clear` method.
1192
+
1193
+ ### DropDownList
1194
+
1195
+ #### New Features
1196
+
1197
+ - `#254473` - Now, you can clear the selected values using `clear` method.
1198
+
1199
+ ### MultiSelect
1200
+
1201
+ #### New Features
1202
+
1203
+ - `#254473` - Now, you can clear the selected values using `clear` method.
1204
+
1205
+ #### Bug Fixes
1206
+
1207
+ - `#F149046` - Issue with "popup not opened after clearing the all selected values" has been resolved.
1208
+
1209
+ ## 17.3.28 (2019-11-19)
1210
+
1211
+ ### MultiSelect
1212
+
1213
+ #### Bug Fixes
1214
+
1215
+ - `#F148867` , `#254713` - The issue with "rendering the `itemTemplate` when value is bound to the control" has been resolved.
1216
+
1217
+ - `#251564` - Issue with "new item is not added to respective group while adding items using addItem method" has been resolved.
1218
+
1219
+ ## 17.3.21 (2019-10-30)
1220
+
1221
+ ### ComboBox
1222
+
1223
+ #### Bug Fixes
1224
+
1225
+ - `#251466` - Now, you can set width property in `em` unit.
1226
+
1227
+ - `#251650` - Issue with 'filtered list item is not getting focused when set filter type as contains' has been resolved.
1228
+
1229
+ - `#251325` - Issue with "once combobox popup open is prevented by setting args.cancel as true in open event then you can't remove the prevent a popup opening using open event" has been resolved.
1230
+
1231
+ ### DropDownList
1232
+
1233
+ #### Bug Fixes
1234
+
1235
+ - `#251466` - Now, you can set width property in `em` unit.
1236
+
1237
+ ### MultiSelect
1238
+
1239
+ #### Bug Fixes
1240
+
1241
+ - `#251466` - Now, you can set width property in `em` unit.
1242
+
1243
+ - `#252117` , `#248511` - Issue with "floating label not positioned properly when set floatLabelType value as Always" has been resolved.
1244
+
1245
+ ### ListBox
1246
+
1247
+ #### Bug Fixes
1248
+
1249
+ - `#F147087` - script error "class List of undefined" while grouping has been fixed.
1250
+ - `#F147408` - Move To toolbar button not working when loading the list box using `remote data` has been resolved.
1251
+ - `#249771` - script error while performing the toolbar actions in dual ListBox with `data manager` in `EJ2 MVC` has been resolved
1252
+
1253
+ ## 17.3.19 (2019-10-22)
1254
+
1255
+ ### ListBox
1256
+
1257
+ - Drag Event returns null value issue is fixed
1258
+
1259
+ ### DropDownList
1260
+
1261
+ #### Bug Fixes
1262
+
1263
+ - `#246853` - Now, popup will close when input element is hidden from viewport.
1264
+
1265
+ ## 17.3.17 (2019-10-15)
1266
+
1267
+ ### MultiSelect
1268
+
1269
+ #### Bug Fixes
1270
+
1271
+ - `#250710` - Now, you can filter the data while render the component using `select` element.
1272
+
1273
+ - `#246802` - Now, the change event fires on value selection and remove while disabled the `changeOnBlur` property.
1274
+ - `#F147650` - Now SelectAll method works properly when set `enableGroupCheckBox` as true.
1275
+ - `#251276`- Now, the change event fires on click the clear icon and updates the model value.
1276
+
1277
+ ## 17.3.16 (2019-10-09)
1278
+
1279
+ ### ListBox
1280
+
1281
+ #### Bug Fixes
1282
+
1283
+ - Adding common cssClass for wrapper.
1284
+
1285
+ ### MultiSelect
1286
+
1287
+ #### New Features
1288
+
1289
+ - Provided `Material2 outline layout` for multiselect.
1290
+
1291
+ #### Bug Fixes
1292
+
1293
+ - `#248395`, `#F148059` - Now SelectAll works properly when limit the selection using `maximumSelectionLength` property.
1294
+
1295
+ ## 17.3.14 (2019-10-03)
1296
+
1297
+ ### AutoComplete
1298
+
1299
+ #### Bug Fixes
1300
+
1301
+ - `#248193` - Issue with "once autocomplete popup open is prevented by setting args.cancel as true in beforeOpen event then you can't remove the prevent a popup opening using beforeOpen event" has been resolved.
1302
+
1303
+ ### MultiSelect
1304
+
1305
+ #### Bug Fixes
1306
+
1307
+ - `#248288` - Issue with "console error thrown when set the openOnClick property as false in checkbox mode" has been resolved.
1308
+
1309
+ - `#247340` - Issue with "list items not loaded while change the data source dynamically in checkbox mode" has been resolved.
1310
+
1311
+ - `#247922` - Issue with "group header is not changed as fixed element when reopening the popup" has been fixed.
1312
+
1313
+ ### DropDownList
1314
+
1315
+ #### Bug Fixes
1316
+
1317
+ - `#248511` - Issue with floating label misalignment in the outline mode has been resolved.
1318
+
1319
+ - `#F147708` - Issue with "template data not populated in filtering dropdownlist when open the dropdown popup on second time" has been resolved.
1320
+
1321
+ ## 17.2.49 (2019-09-04)
1322
+
1323
+ ### MultiSelect
1324
+
1325
+ #### Bug Fixes
1326
+
1327
+ - `#245849` - Issue with "Dropdown popup moves down while initial value selection on popup" has been resolved.
1328
+
1329
+ ## 17.2.46 (2019-08-22)
1330
+
1331
+ ### ListBox
1332
+
1333
+ #### New Features
1334
+
1335
+ - `#237694` - provided maximum selection limit option for ListBox.
1336
+
1337
+ ## 17.2.41 (2019-08-14)
1338
+
1339
+ ### MultiSelect
1340
+
1341
+ #### Bug Fixes
1342
+
1343
+ - `#144756`- Issue with "custom value added to the list after args.cancel is set to true in custom value section event" has been resolved.
1344
+
1345
+ ### DropDownList
1346
+
1347
+ #### Bug Fixes
1348
+
1349
+ - `#244335` - Issue with "clear icon shown in read-only dropdown list" has been resolved.
1350
+
1351
+ ## 17.2.40 (2019-08-06)
1352
+
1353
+ ### MultiSelect
1354
+
1355
+ #### New Features
1356
+
1357
+ - `#F146233` - Now, you can specify type of filter using `filterType` property.
1358
+
1359
+ ### ComboBox
1360
+
1361
+ #### New Features
1362
+
1363
+ - `#F146233` - Now, you can specify type of filter using `filterType` property.
1364
+
1365
+ ### DropDownList
1366
+
1367
+ #### New Features
1368
+
1369
+ - `#F146233` - Now, you can specify type of filter using `filterType` property.
1370
+
1371
+ ## 17.2.39 (2019-07-30)
1372
+
1373
+ ### ListBox
1374
+
1375
+ #### Bug Fixes
1376
+
1377
+ - `#240597` - Dual ListBox causes an error when filtering is activated and disable the checkbox selection settings issue is fixed.
1378
+
1379
+ - `#240594` - Form submit occurs while click toolbar item issue is fixed.
1380
+
1381
+ ## 17.2.36 (2019-07-24)
1382
+
1383
+ ### MultiSelect
1384
+
1385
+ #### Bug Fixes
1386
+
1387
+ - `#241578` - Issue with “Checkbox selection is not updated properly in the popup list items when set filtering as false” has been resolved.
1388
+
1389
+ ### AutoComplete
1390
+
1391
+ #### Bug Fixes
1392
+
1393
+ - `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
1394
+
1395
+ ### DropDownList
1396
+
1397
+ #### Bug Fixes
1398
+
1399
+ - `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
1400
+
1401
+ ## 17.2.34 (2019-07-11)
1402
+
1403
+ ### ComboBox
1404
+
1405
+ #### Bug Fixes
1406
+
1407
+ - `#233488`, `#239802` - Issue with "throws error while set the field value as null" has been resolved.
1408
+
1409
+ ### MultiSelect
1410
+
1411
+ #### Bug Fixes
1412
+
1413
+ - `#226512` - Now, SelectAll checkbox shows when more than one items present in the filtered list.
1414
+
1415
+ ### DropDownList
1416
+
1417
+ #### Bug Fixes
1418
+
1419
+ - `#239351` - Now, Select event triggers when selecting the value through interaction.
1420
+
1421
+ - `#F145367` - Issue with "filtering is not working with item template" has been resolved.
1422
+
1423
+ ### ListBox
1424
+
1425
+ #### Bug Fixes
1426
+
1427
+ - `#240594` - Form submit occurs while click toolbar item issue is fixed.
1428
+
1429
+ ## 17.2.28-beta (2019-06-27)
1430
+
1431
+ ### ListBox
1432
+
1433
+ #### New Features
1434
+
1435
+ - Checkbox position support provided.
1436
+ - Filter support provided.
1437
+ - #234507 - Provided support for drag and dropping the single list item when more than one list item is selected by setting `false` to `dragSelected` argument in `dragStart` event.
1438
+
1439
+ #### Bug Fixes
1440
+
1441
+ - #236715 - Drag and dropping the list item is not sorted when `sortOrder` enabled issue is fixed.
1442
+
1443
+ #### Breaking Changes
1444
+
1445
+ - Event `select` is removed instead `change` event is provided.
1446
+
1447
+ ### DropDownList
1448
+
1449
+ #### Bug Fixes
1450
+
1451
+ - #235631 - Issue with "updating default value after form reset" has been resolved.
1452
+
1453
+ - #239136 - Now, you can change `allowFiltering` property value dynamically.
1454
+
1455
+ ### MultiSelect
1456
+
1457
+ #### Bug Fixes
1458
+
1459
+ - #235699 - Change event not happening after the control has lost focus issue has been fixed.
1460
+
1461
+ #### New Features
1462
+
1463
+ - `#F142089`, `#225476`, `#231094`, `#234377` - Now, you can render grouping with checkbox using enableGroupCheckBox property.
1464
+
1465
+ ## 17.1.49 (2019-05-29)
1466
+
1467
+ ### MultiSelect
1468
+
1469
+ #### New Features
1470
+
1471
+ - #236816 - Provided method for `focusIn` and `focusOut`.
1472
+
1473
+ #### Bug Fixes
1474
+
1475
+ - #231920 - In IE browser, script error throws when calling getItems method has been fixed.
1476
+
1477
+ ## 17.1.48 (2019-05-21)
1478
+
1479
+ ### ListBox
1480
+
1481
+ #### New Features
1482
+
1483
+ - Provided change event for ListBox.
1484
+
1485
+ ## 17.1.44 (2019-05-07)
1486
+
1487
+ ### MultiSelect
1488
+
1489
+ #### Bug Fixes
1490
+
1491
+ - #235167 - Multiselect dropdown jump down when the `showDropDownIcon` is set to true issue has been resolved.
1492
+
1493
+ - #209393 - Change event not fired during tab key navigation issue has been resolved.
1494
+
1495
+ ### DropDownList
1496
+
1497
+ #### Bug Fixes
1498
+
1499
+ - #234846 - The popup collision issue has been resolved while enable the filtering.
1500
+
1501
+ ### ListBox
1502
+
1503
+ #### Bug Fixes
1504
+
1505
+ - #234350 - SelectAll checkbox not displayed with dynamic data issue fixed.
1506
+
1507
+ ## 17.1.43 (2019-04-30)
1508
+
1509
+ ### ComboBox
1510
+
1511
+ #### Bug Fixes
1512
+
1513
+ - #233483 - The List not generated properly while clear the value using clear button issue has been resolved.
1514
+
1515
+ - #234100 - The search not working on enabling read only in the control initialization issue has been resolved.
1516
+
1517
+ - #233137 - The combobox is not focused when click the tab key at single time issue has been resolved.
1518
+
1519
+ ### DropDownList
1520
+
1521
+ #### Bug Fixes
1522
+
1523
+ - #231680 - The data source is observable using Async Pipe with pre select value not updated issue has been resolved.
1524
+
1525
+ - #230651 - Eval function security issue has been resolved.
1526
+
1527
+ ## 17.1.42 (2019-04-23)
1528
+
1529
+ ### MultiSelect
1530
+
1531
+ #### Bug Fixes
1532
+
1533
+ - #232673 - Issue with prevent the first value when clear value using clear button has been fixed.
1534
+
1535
+ - #233432 - The group template text not updated while enable the allow filtering issue has been fixed.
1536
+
1537
+ ## 17.1.41 (2019-04-16)
1538
+
1539
+ ### MultiSelect
1540
+
1541
+ #### Bug Fixes
1542
+
1543
+ - #232673 - Issue with browser freeze when clear value using clear button has been fixed.
1544
+
1545
+ - #231997 - Issue with duplicate placeholder on multiselect issue has been fixed.
1546
+
1547
+ - #232218 - The popup open downward when select the items after scroll the page issue has been resolved.
1548
+
1549
+ - #231920 - The Custom value with pre select value not updated when set empty data source issue has been resolved.
1550
+
1551
+ - F143612 - Dropdown icon disappeared when set the lengthy placeholder issue has been fixed.
1552
+
1553
+ ### DropDownList
1554
+
1555
+ #### Bug Fixes
1556
+
1557
+ - #142944 - Item template not loaded, when change the datasource dynamically issue has been resolved.
1558
+
1559
+ ### ComboBox
1560
+
1561
+ #### Bug Fixes
1562
+
1563
+ - #225254, #227938 - Template interpolated data not updated while filtering issue has been resolved.
1564
+
1565
+ ### ListBox
1566
+
1567
+ #### Bug Fixes
1568
+
1569
+ - Value type changed from `number` to `string` on selecting items in reactive form control issue fixed.
1570
+
1571
+ ## 17.1.40 (2019-04-09)
1572
+
1573
+ ### ListBox
1574
+
1575
+ #### Bug Fixes
1576
+
1577
+ - Value property passed on form submit issue fixed.
1578
+
1579
+ ### DropDownList
1580
+
1581
+ #### Bug Fixes
1582
+
1583
+ - Issue with value selection on disabled dropdown using incremental search has been fixed.
1584
+
1585
+ - Clear icon shown when change the value dynamically issue has been fixed.
1586
+
1587
+ ### MultiSelect
1588
+
1589
+ #### Bug Fixes
1590
+
1591
+ - Placeholder is not updated properly when unselect all the value issue has been resolved.
1592
+
1593
+ ## 17.1.38 (2019-03-29)
1594
+
1595
+ ### ListBox
1596
+
1597
+ The ListBox is a graphical user interface component used to display a list of items. Users can select one or more items in the list using a checkbox or by keyboard selection. It supports sorting, grouping, reordering, and drag and drop of items. The available key features are:
1598
+
1599
+ - **Data binding**: Binds and accesses the list of items from local or server-side data source.
1600
+
1601
+ - **Dual ListBox**: Allows transferring and reordering the list item between two ListBoxes.
1602
+
1603
+ - **Drag and Drop**: Allows drag and drop the list item with the same/multiple ListBox.
1604
+
1605
+ - **Grouping**: Groups the logically related items under a single or specific category.
1606
+
1607
+ - **Templates**: Customizes the list items.
1608
+
1609
+ - **Sorting**: Sorts the list items in alphabetical order (either ascending or descending).
1610
+
1611
+ - **Accessibility**: Provided with built-in accessibility support that helps to access all the ListBox component features using the keyboard, screen readers, or other assistive technology devices.
1612
+
1613
+ ### MultiSelect
1614
+
1615
+ #### Bug Fixes
1616
+
1617
+ - Placeholder is not updated properly when removed the value issue has been resolved.
1618
+
1619
+ ## 17.1.32-beta (2019-03-13)
1620
+
1621
+ ### DropDownList
1622
+
1623
+ #### Bug Fixes
1624
+
1625
+ - Issue with change event trigger multiple times when clear value using clear button has been fixed.
1626
+
1627
+ ### MultiSelect
1628
+
1629
+ #### New Features
1630
+
1631
+ - Provided customized filtering support for checkbox mode also.
1632
+
1633
+ ### AutoComplete
1634
+
1635
+ #### Bug Fixes
1636
+
1637
+ - Filtered value is not maintained while using model value issue has been resolved.
1638
+
1639
+ ### ComboBox
1640
+
1641
+ #### Bug Fixes
1642
+
1643
+ - List's selection is not removed when remove a selected value using clear button issue has been resolved.
1644
+
1645
+ ## 16.4.55 (2019-02-27)
1646
+
1647
+ ### DropDownList
1648
+
1649
+ #### Bug Fixes
1650
+
1651
+ - Pre-select value is not selected when its not present in the list issue fixed.
1652
+
1653
+ - Reset text based initial value in form reset action behavior has been changed.
1654
+
1655
+ ### AutoComplete
1656
+
1657
+ #### Bug Fixes
1658
+
1659
+ - Reset text based initial value in form reset action behavior has been changed.
1660
+
1661
+ ### ComboBox
1662
+
1663
+ #### Bug Fixes
1664
+
1665
+ - Reset text based initial value in form reset action behavior has been changed.
1666
+
1667
+ ### MultiSelect
1668
+
1669
+ #### Bug Fixes
1670
+
1671
+ - List selection throws exception while using quotes within string data issue has been resolved.
1672
+
1673
+ - Select all operation's performance issue has been resolved.
1674
+
1675
+ ## 16.4.54 (2019-02-19)
1676
+
1677
+ ### DropDownList
1678
+
1679
+ #### Bug Fixes
1680
+
1681
+ - When page scroll, grouping template is hiding issue has been resolved.
1682
+
1683
+ - Reset the initial value in form reset action behavior has been changed.
1684
+
1685
+ ### AutoComplete
1686
+
1687
+ #### Bug Fixes
1688
+
1689
+ - Reset the initial value in form reset action behavior has been changed.
1690
+
1691
+ ### ComboBox
1692
+
1693
+ #### Bug Fixes
1694
+
1695
+ - Reset the initial value in form reset action behavior has been changed.
1696
+
1697
+ ### MultiSelect
1698
+
1699
+ #### Bug Fixes
1700
+
1701
+ - Now, you can enter special characters inside MultiSelect using virtual keyboard.
1702
+
1703
+ - Reset the initial value in form reset action behavior has been changed.
1704
+
1705
+ ## 16.4.53 (2019-02-13)
1706
+
1707
+ ### DropDownList
1708
+
1709
+ - ItemData parameter supports `object` collection in select and change event.
1710
+
1711
+ - Filtering is not working when rendered control by using select element issue has been resolved.
1712
+
1713
+ ### MultiSelect
1714
+
1715
+ #### Bug Fixes
1716
+
1717
+ - Lengthy placeholder breaks UI issue has been resolved.
1718
+
1719
+ - Values are not cleared in mobile devices issue has been resolved.
1720
+
1721
+ - Values are not selected based on selected attribute in select element rendering issue has been resolved.
1722
+
1723
+ ## 16.4.52 (2019-02-05)
1724
+
1725
+ ### ComboBox
1726
+
1727
+ #### Bug Fixes
1728
+
1729
+ - The model value is not updated by selecting a value using tab key with autofill combination issue has been resolved.
1730
+
1731
+ ### MultiSelect
1732
+
1733
+ #### Bug Fixes
1734
+
1735
+ - Blur event prevents other actions issue has been resolved.
1736
+
1737
+ ## 16.4.48 (2019-01-22)
1738
+
1739
+ ### AutoComplete
1740
+
1741
+ #### Bug Fixes
1742
+
1743
+ - Custom value is not maintain after reload the data issue has been resolved.
1744
+
1745
+ ### MultiSelect
1746
+
1747
+ #### Bug Fixes
1748
+
1749
+ - `en-US` locale JSON file not generated issue has been resolved.
1750
+
1751
+ ## 16.4.47 (2019-01-16)
1752
+
1753
+ ### MultiSelect
1754
+
1755
+ #### Bug Fixes
1756
+
1757
+ - server side validation is not working issue has been resolved.
1758
+
1759
+ ## 16.4.46 (2019-01-08)
1760
+
1761
+ ### MultiSelect
1762
+
1763
+ #### Bug Fixes
1764
+
1765
+ - Value is updated in reverse while using select all option in checkbox selection issue has been resolved.
1766
+
1767
+ ### ComboBox
1768
+
1769
+ #### Bug Fixes
1770
+
1771
+ - Change event is not trigger when focus out the control using tab key issue has been resolved.
1772
+
1773
+ ## 16.4.44 (2018-12-24)
1774
+
1775
+ ### MultiSelect
1776
+
1777
+ #### Bug Fixes
1778
+
1779
+ - Item template with checkbox combination is not working issue has been resolved.
1780
+
1781
+ - Value update with checkbox selection issue in reactive form has been resolved.
1782
+
1783
+ ## 16.3.34 (2018-11-21)
1784
+
1785
+ ### MultiSelect
1786
+
1787
+ #### Bug Fixes
1788
+
1789
+ - Checkbox's selection is not removed when uncheck the `selectAll` checkbox issue has been resolved.
1790
+
1791
+ ## 16.3.33 (2018-11-20)
1792
+
1793
+ ### DropDownList
1794
+
1795
+ #### Bug Fixes
1796
+
1797
+ - DropDownList locale added in `config Json` file.
1798
+
1799
+ ## 16.3.32 (2018-11-13)
1800
+
1801
+ ### DropDownList
1802
+
1803
+ #### Bug Fixes
1804
+
1805
+ - Data related attributes are added to input element instead of select element has been fixed.
1806
+
1807
+ - Console error thrown as maximum call stack when set the empty `dataSource` that issue has been fixed.
1808
+
1809
+ ### MultiSelect
1810
+
1811
+ #### Bug Fixes
1812
+
1813
+ - Original event argument does not get in `selectedAll` event argument that issue has been fixed.
1814
+
1815
+ ### ComboBox
1816
+
1817
+ #### Bug Fixes
1818
+
1819
+ - ComboBox `focus` event argument issue has been resolved.
1820
+
1821
+ ## 16.3.29 (2018-10-31)
1822
+
1823
+ ### MultiSelect
1824
+
1825
+ #### Bug Fixes
1826
+
1827
+ - MultiSelect filtering is shown incorrect result when using remote datasource issue has been resolved.
1828
+
1829
+ ### AutoComplete
1830
+
1831
+ #### Bug Fixes
1832
+
1833
+ - AutoComplete `minLength` property is not perform when use custom filtering event has been resolved.
1834
+
1835
+ ## 16.3.27 (2018-10-23)
1836
+
1837
+ ### MultiSelect
1838
+
1839
+ #### Bug Fixes
1840
+
1841
+ - ngModel is not updated when select all value using SelectAll option has been fixed.
1842
+
1843
+ ### DropDownList
1844
+
1845
+ #### Bug Fixes
1846
+
1847
+ - null exception handled in getItems method.
1848
+
1849
+ ## 16.3.25 (2018-10-15)
1850
+
1851
+ ### MultiSelect
1852
+
1853
+ #### Bug Fixes
1854
+
1855
+ - Duplicate values are listed while fetching data with UrlAdaptor when `allowCustom` value is set to true, that issue has been fixed.
1856
+
1857
+ ### DropDownList
1858
+
1859
+ #### Bug Fixes
1860
+
1861
+ - DropDownList `valueTemplate` selected value is changed now, while changing data source.
1862
+
1863
+ ### ComboBox
1864
+
1865
+ #### Bug Fixes
1866
+
1867
+ - ComboBox `readonly` enabled clear button is shown issue has been resolved.
1868
+
1869
+ ## 16.3.23 (2018-10-03)
1870
+
1871
+ ### MultiSelect
1872
+
1873
+ #### Bug Fixes
1874
+
1875
+ - MultiSelect values are cleared after performing add operation in Grid, that issue has been fixed.
1876
+
1877
+ - Item disappears from popup list after pressing the backspace key, that issue has been fixed.
1878
+
1879
+ ### DropDownList
1880
+
1881
+ #### Bug Fixes
1882
+
1883
+ - DropDownList `ItemTemplate` with `addItem` method template issue has been resolved.
1884
+
1885
+ ## 16.3.17 (2018-09-12)
1886
+
1887
+ ### DropDownList
1888
+
1889
+ #### Bug Fixes
1890
+
1891
+ - Restricted multiple request when no data returned from server issue has been resolved.
1892
+
1893
+ ### MultiSelect
1894
+
1895
+ #### Bug Fixes
1896
+
1897
+ - Change event is now triggered for MultiSelect components, when focused out.
1898
+
1899
+ #### Breaking Changes
1900
+
1901
+ - Renamed the `selectAll` event argument `IsChecked` to `isChecked`.
1902
+ - Renamed the `selectAll` event argument `e` to `event`.
1903
+
1904
+ ## 16.2.49 (2018-08-21)
1905
+
1906
+ ### MultiSelect
1907
+
1908
+ #### Bug Fixes
1909
+
1910
+ - View encapsulation support given for checkbox selection.
1911
+ - Cleared values are not added back to MultiSelect popup issue has been resolved.
1912
+ - View encapsulation support given for spinner element.
1913
+
1914
+ ### DropDownList
1915
+
1916
+ #### Bug Fixes
1917
+
1918
+ - View encapsulation support given for spinner element.
1919
+
1920
+ ### ComboBox
1921
+
1922
+ #### Bug Fixes
1923
+
1924
+ - View encapsulation support given for spinner element.
1925
+
1926
+ ## 16.2.48 (2018-08-14)
1927
+
1928
+ ### MultiSelect
1929
+
1930
+ #### Bug Fixes
1931
+
1932
+ - create input method addition argument added.
1933
+
1934
+ ### DropDownList
1935
+
1936
+ #### Bug Fixes
1937
+
1938
+ - DropDownList `cssClass` updated dynamically changes issue has been resolved.
1939
+ - create input method addition argument added.
1940
+
1941
+ ### AutoComplete
1942
+
1943
+ #### Bug Fixes
1944
+
1945
+ - create input method addition argument added.
1946
+
1947
+ ### ComboBox
1948
+
1949
+ #### Bug Fixes
1950
+
1951
+ - create input method addition argument added.
1952
+
1953
+ ## 16.2.47 (2018-08-07)
1954
+
1955
+ ### DropDownList
1956
+
1957
+ #### Bug Fixes
1958
+
1959
+ - Provided view encapsulation support.
1960
+
1961
+ ### MultiSelect
1962
+
1963
+ #### Bug Fixes
1964
+
1965
+ - Provided view encapsulation support.
1966
+
1967
+ ### AutoComplete
1968
+
1969
+ #### Bug Fixes
1970
+
1971
+ - Provided view encapsulation support.
1972
+
1973
+ ### ComboBox
1974
+
1975
+ #### Bug Fixes
1976
+
1977
+ - Provided view encapsulation support.
1978
+
1979
+ ## 16.2.46 (2018-07-30)
1980
+
1981
+ ### DropDownList
1982
+
1983
+ #### Bug Fixes
1984
+
1985
+ - We have provided public methods spinner show and hides.
1986
+
1987
+ ### MultiSelect
1988
+
1989
+ #### Bug Fixes
1990
+
1991
+ - Pre-selected item disappears from popup list when removed selected items in clear button issue has been resolved.
1992
+ - We have provided public methods spinner show and hides.
1993
+
1994
+ ### AutoComplete
1995
+
1996
+ - We have provided public methods spinner show and hides.
1997
+
1998
+ ### ComboBox
1999
+
2000
+ - ComboBox filtering update data method field argument issue has been resolved.
2001
+ - We have provided public methods spinner show and hides.
2002
+
2003
+ ## 16.2.45 (2018-07-17)
2004
+
2005
+ ### DropDownList
2006
+
2007
+ #### Bug Fixes
2008
+
2009
+ - DropDownList same value selection, value not cleared issue has been resolved.
2010
+ - DropDownList `scss` variable override issue has been resolved.
2011
+
2012
+ ### MultiSelect
2013
+
2014
+ #### Bug Fixes
2015
+
2016
+ - Multiselect clear button issue has been resolved.
2017
+ - Multiselect restore value not maintained in `IE` issue has been resolved.
2018
+ - Multiselect popup not open when update a data via update data.
2019
+
2020
+ ## 16.2.43 (2018-07-03)
2021
+
2022
+ ### MultiSelect
2023
+
2024
+ #### Bug Fixes
2025
+
2026
+ - Multiselect pre selected value not updated issue has been resolved.
2027
+
2028
+ ## 16.2.42 (2018-06-27)
2029
+
2030
+ ### Multiselect
2031
+
2032
+ #### Bug Fixes
2033
+
2034
+ - Provided support for selected all event.
2035
+ - Value is not selected when ending with space.
2036
+
2037
+ ## 16.2.41 (2018-06-25)
2038
+
2039
+ ### AutoComplete
2040
+
2041
+ #### Bug Fixes
2042
+
2043
+ - Html elements are shown during filtering when highlight property is set to true.
2044
+
2045
+ - Value typed in the autocomplete gets removed when data source is bound in the filtering event.### DropDownList
2046
+
2047
+ #### Bug Fixes
2048
+
2049
+ - Provided support for before open event.
2050
+
2051
+ ### ComboBox
2052
+
2053
+ #### Bug Fixes
2054
+
2055
+ - Popup items is not same as initially after filtering in combobox.
2056
+
2057
+ ### MultiSelect
2058
+
2059
+ #### Bug Fixes
2060
+
2061
+ - Data is not repopulated when selecting and removing all items from Multiselect.
2062
+ - Multiselect is not focused when tab key is pressed if it already focused in the filterbar.
2063
+
2064
+ ## 16.1.46 (2018-05-29)
2065
+
2066
+ ### MultiSelect
2067
+
2068
+ #### Bug Fixes
2069
+
2070
+ - Changed control height for MultiSelect component in Material theme to match other dropdown components.
2071
+
2072
+ ## 16.1.45 (2018-05-23)
2073
+
2074
+ ### MultiSelect
2075
+
2076
+ #### Bug Fixes
2077
+
2078
+ - Allow to set the value in MultiSelect when it is re-rendered.
2079
+
2080
+ ## 16.1.42 (2018-05-15)
2081
+
2082
+ ### AutoComplete
2083
+
2084
+ #### Bug Fixes
2085
+
2086
+ - The getDataByValue method is not working properly in Autocomplete's issue has been fixed.
2087
+
2088
+ ### DropDownList
2089
+
2090
+ #### Bug Fixes
2091
+
2092
+ - Value property set through the model is now maintained, even after changing the data.
2093
+ - Change event is now triggered for DropDown components, when `showClearButton` is clicked.
2094
+
2095
+ ## 16.1.40 (2018-05-08)
2096
+
2097
+ ### ComboBox
2098
+
2099
+ #### Bug Fixes
2100
+
2101
+ - Prevented the native HTML select and change events in angular.
2102
+
2103
+ ### DropDownList
2104
+
2105
+ #### Bug Fixes
2106
+
2107
+ - Prevented the validation message from triggering on components initial render.
2108
+ - Added support for HTML autofocus attribute in DropDown components.
2109
+
2110
+ ### MultiSelect
2111
+
2112
+ #### Bug Fixes
2113
+
2114
+ - MultiSelect component's varying selection behaviour for keyboard and mouse event, has been fixed.
2115
+
2116
+ ## 16.1.38 (2018-05-02)
2117
+
2118
+ ### AutoComplete
2119
+
2120
+ #### Bug Fixes
2121
+
2122
+ - The issue, Value property in Autocomplete is not properly updated in two way binding after the initial load has been fixed.
2123
+ - The issue, Autocomplete displays the suggestions list even if the focus is lost for related component, has been fixed.
2124
+
2125
+ ### MultiSelect
2126
+
2127
+ #### Bug Fixes
2128
+
2129
+ - The issue, MultiSelect component is not updating the popup correctly during the initial time, has been fixed.
2130
+
2131
+ ## 16.1.35 (2018-04-17)
2132
+
2133
+ ### AutoComplete
2134
+
2135
+ #### Bug Fixes
2136
+
2137
+ - The issue, Value is not updated correctly when the words in the suggestion list contains white spaces has been fixed.
2138
+
2139
+ ### MultiSelect
2140
+
2141
+ #### New Features
2142
+
2143
+ - Float Label support has been given for MultiSelect
2144
+
2145
+ #### Bug Fixes
2146
+
2147
+ - custom value support has been given in MultiSelect when the filtering is enabled instead of 'no records found' template.
2148
+
2149
+ - The issue, 'Input is rendered again on typing while resetting value from null with remote data and custom value as true.' has been fixed.
2150
+
2151
+ - The issue, 'Enable persistence is not working properly when all the items in the list are selected.' has been fixed.
2152
+
2153
+ ## 16.1.34 (2018-04-10)
2154
+
2155
+ ### AutoComplete
2156
+
2157
+ #### Bug Fixes
2158
+
2159
+ - The issue, Value is not updated correctly when diacritics words are used in AutoComplete has been fixed.
2160
+
2161
+ ## 16.1.33 (2018-04-03)
2162
+
2163
+ ### MultiSelect
2164
+
2165
+ #### Bug Fixes
2166
+
2167
+ - Chip width is longer than the input wrapper when the custom longer text selected, issue has been fixed.
2168
+
2169
+ ## 16.1.30 (2018-03-20)
2170
+
2171
+ ### MultiSelect
2172
+
2173
+ #### Bug Fixes
2174
+
2175
+ - custom value maintained while disabled `closePopupOnSelect`, this issue has been fixed.
2176
+
2177
+ ### DropDownList
2178
+
2179
+ #### Bug Fixes
2180
+
2181
+ - Dynamic value change support for `showClearButton`.
2182
+
2183
+ ## 16.1.29 (2018-03-13)
2184
+
2185
+ ### MultiSelect
2186
+
2187
+ #### Bug Fixes
2188
+
2189
+ - Change event not trigger while remove chip in keyboard, this issue has been fixed.
2190
+
2191
+ ### AutoComplete
2192
+
2193
+ #### Bug Fixes
2194
+
2195
+ - Initial value not set while using remote data in autocomplete issue has been fixed.
2196
+
2197
+ ## 16.1.28 (2018-03-09)
2198
+
2199
+ ### MultiSelect
2200
+
2201
+ #### Bug Fixes
2202
+
2203
+ - Text property not working properly while selected text, this issue has been fixed.
2204
+
2205
+ ### DropDownList
2206
+
2207
+ #### Bug Fixes
2208
+
2209
+ - Filtering with Template issue has been fixed in DropDownList and ComboBox.
2210
+
2211
+ ### ComboBox
2212
+
2213
+ #### Bug Fixes
2214
+
2215
+ - Filtering with Template issue has been fixed in DropDownList and ComboBox.
2216
+
2217
+ ## 16.1.24 (2018-02-22)
2218
+
2219
+ ### AutoComplete
2220
+
2221
+ #### Breaking Changes
2222
+
2223
+ - Changed the filtering event argument types to `FilteringEventArgs`.
2224
+
2225
+ ### Common
2226
+
2227
+ #### Breaking Changes
2228
+
2229
+ - Locale key changed from `dropdownlist` to `dropdowns`.
2230
+
2231
+ - Changed the fields property type as `FieldSettingsModel`.
2232
+
2233
+ - Changed the Angular component selector, component name prefix with `ejs` e.g : `ejs-dropdownlist`.
2234
+
2235
+ #### New Features
2236
+
2237
+ - Given in-built filtering support without using `filtering` event.
2238
+
2239
+ - Diacritics filtering works on enabling the `ignoreAccent`.
2240
+
2241
+ - Provided the `zIndex` property to set custom `zIndex` value.
2242
+
2243
+ - High contrast theme support.
2244
+
2245
+ ### MultiSelect
2246
+
2247
+ #### New Features
2248
+
2249
+ - CheckBox support.
2250
+
2251
+ - Prevent the Popup open on component click while `openOnClick` property set as false.
2252
+
2253
+ - Provided `chipSelect` event for chip selection action.
2254
+
2255
+ #### Breaking Changes
2256
+
2257
+ - Pascal casing change to mode property values (`Default`, `Box`, `Delimiter`, `CheckBox`).
2258
+
2259
+ - Changed the `maximumSelectionLength` behaviour.
2260
+
2261
+ #### Bug Fixes
2262
+
2263
+ - Value preselect not working in remote data, this issue has been fixed.
2264
+
2265
+ ### DropDownList
2266
+
2267
+ #### Bug Fixes
2268
+
2269
+ - Console error thrown while navigating the angular routing in DropDownList change event, this issue has been fixed.
2270
+
2271
+ ## 15.4.27-preview (2018-01-30)
2272
+
2273
+ ### DropDownList
2274
+
2275
+ #### Bug Fixes
2276
+
2277
+ - DropDownList value property gets as an object if selected value as 0, this issue has been fixed.
2278
+
2279
+ ## 15.4.26-preview (2018-01-23)
2280
+
2281
+ ### AutoComplete
2282
+
2283
+ #### Bug Fixes
2284
+
2285
+ - The Change event argument `isInteraction` is returned properly when clear button is clicked.
2286
+
2287
+ ### DropDownList
2288
+
2289
+ #### Bug Fixes
2290
+
2291
+ - Clear button is not visible, this issue has been fixed.
2292
+
2293
+ - Angular reactive form resetting not worked in DropDownList component, this issue has been fixed.
2294
+
2295
+ ### MultiSelect
2296
+
2297
+ #### Bug Fixes
2298
+
2299
+ - Popup does not open while component render with empty data source, this issue has been fixed.
2300
+
2301
+ ## 15.4.24-preview (2018-01-10)
2302
+
2303
+ ### MultiSelect
2304
+
2305
+ #### Breaking Changes
2306
+
2307
+ - Changed the default value of `hideSelectedItems` property as true.
2308
+
2309
+ #### Bug Fixes
2310
+
2311
+ - Custom value dose not allow while component render with empty data source, this issue has been fixed.
2312
+
2313
+ ## 15.4.23-preview (2017-12-27)
2314
+
2315
+ ### Common
2316
+
2317
+ #### New Features
2318
+
2319
+ - Added typing file for ES5 global scripts (`dist/global/index.d.ts`).
2320
+
2321
+ #### Breaking Changes
2322
+
2323
+ - Modified the module bundle file name for ES6 bundling.
2324
+
2325
+ ### DropDownList
2326
+
2327
+ #### Bug Fixes
2328
+
2329
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
2330
+
2331
+ ### MultiSelect
2332
+
2333
+ #### Bug Fixes
2334
+
2335
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
2336
+
2337
+ ### ComboBox
2338
+
2339
+ #### Bug Fixes
2340
+
2341
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
2342
+
2343
+ ### AutoComplete
2344
+
2345
+ #### Bug Fixes
2346
+
2347
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
2348
+
2349
+ ## 15.4.21-preview (2017-12-08)
2350
+
2351
+ ### MultiSelect
2352
+
2353
+ #### Bug Fixes
2354
+
2355
+ - Popup left and right collision issue fixed.
2356
+
2357
+ - MultiSelect custom value with template issue fixed.
2358
+
2359
+ ### AutoComplete
2360
+
2361
+ #### Breaking Changes
2362
+
2363
+ - Home and End key behaviour changes.
2364
+
2365
+ ### ComboBox
2366
+
2367
+ #### Breaking Changes
2368
+
2369
+ - Home and End key behaviour changes.
2370
+
2371
+ ## 15.4.20-preview (2017-12-01)
2372
+
2373
+ ### Common
2374
+
2375
+ #### New Features
2376
+
2377
+ - Upgraded TypeScript version to 2.6.2.
2378
+
2379
+ ### DropDownList
2380
+
2381
+ #### Bug Fixes
2382
+
2383
+ - DropDownList component value cleared while change the value through react setState method issue fixed.
2384
+
2385
+ - Empty string value not selected in DropDownList issue fixed.
2386
+
2387
+ ## 15.4.19-preview (2017-11-23)
2388
+
2389
+ ### AutoComplete
2390
+
2391
+ #### Bug Fixes
2392
+
2393
+ - When we Change the data source the value is empty issue fixed.
2394
+
2395
+ ### DropDownList
2396
+
2397
+ #### Bug Fixes
2398
+
2399
+ - Expected is 'Object' instead of 'object' issue fixed.
2400
+
2401
+ ## 15.4.17-preview (2017-11-13)
2402
+
2403
+ ### MultiSelect
2404
+
2405
+ MultiSelect component contains a list of predefined values from which a multiple value can be chosen. The functionality of MultiSelect resembles the SELECT form element of HTML. The available key features are
2406
+
2407
+ - **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
2408
+
2409
+ - **Grouping** - Supports grouping the logically related items under single or specific category.
2410
+
2411
+ - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
2412
+
2413
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
2414
+
2415
+ - **Filtering** - Allow filtering the list items based on a character typed in component.
2416
+
2417
+ - **Custom Value** - Allows user to select a new custom value.
2418
+
2419
+ - **Accessibility** - Provided with built-in accessibility support which helps to access all the MultiSelect component features through the keyboard, screen readers, or other assistive technology devices.
2420
+
2421
+ ### ComboBox
2422
+
2423
+ ComboBox component allows the user to type a value or choose an option from the list of predefined options. When an arrow icon accompanied with this component is pressed, the dropdown displays a list of values, from which the user can select one. The available key features are
2424
+
2425
+ - **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
2426
+
2427
+ - **Custom values** - Allows setting user-defined values that is not in the popup list.
2428
+
2429
+ - **Grouping** - Supports grouping of logically related items under a single or specific category.
2430
+
2431
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
2432
+
2433
+ - **Filtering** - Allows filtering of list items based on a character typed in the component.
2434
+
2435
+ - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
2436
+
2437
+ - **Accessibility** - Provided with built-in accessibility support that helps to access all the ComboBox component features through the keyboard, screen readers, or other assistive technology devices.
2438
+
2439
+ ### AutoComplete
2440
+
2441
+ AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one. The available key features are
2442
+
2443
+ - **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
2444
+
2445
+ - **Grouping** - Supports grouping of logically related items under a single or specific category.
2446
+
2447
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
2448
+
2449
+ - **Highlight search** - Supports highlighting the typed text in the suggestion list.
2450
+
2451
+ - **Templates** - Allows customizing the list item, header, footer, category group header, no records and action failure content.
2452
+
2453
+ - **Accessibility** - Provided with built-in accessibility support that helps to access all the AutoComplete component features through keyboard, on-screen readers, or other assistive technology devices.
2454
+
2455
+ ### DropDownList
2456
+
2457
+ DropDownList component contains a list of predefined values from which a single value can be chosen. The functionality of DropDownList resembles the SELECT form element of HTML. When an arrow icon accompanied with this component is pressed, the dropdown displays a list of values from which you can select one. The available key features are
2458
+
2459
+ - **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
2460
+
2461
+ - **Grouping** - Supports grouping the logically related items under single or specific category.
2462
+
2463
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
2464
+
2465
+ - **Filtering** - Allow filtering the list items based on a character typed onto the search box.
2466
+
2467
+ - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
2468
+
2469
+ - **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.## 19.4.38 (2021-12-17)
2470
+
2471
+ ### ComboBox
2472
+
2473
+ #### Bug Fixes
2474
+
2475
+ - `#I347955` - Issue with "custom value is not updated to the input while typing the custom value and pressing the enter key" has been resolved.
2476
+
2477
+ ## 19.2.57 (2021-08-24)
2478
+
2479
+ ### MultiSelect
2480
+
2481
+ #### Bug Fixes
2482
+
2483
+ - `#I338226` - Issue with "popup does not shows the list items when click on the input before data gets fetch" has been resolved.
2484
+
2485
+ ## 19.2.46 (2021-07-06)
2486
+
2487
+ ### DropDownList
2488
+
2489
+ #### Bug Fixes
2490
+
2491
+ - `#I332596` - Issue with "incremental search not working when searching same key value multiple time" has been resolved.
2492
+
2493
+ ### MultiSelect
2494
+
2495
+ #### Bug Fixes
2496
+
2497
+ - `#F165832` - Issue with "dynamically updated value is not cleared while clearing the value using clear icon" has been resolved.
2498
+
2499
+ ## 19.1.67 (2021-06-08)
2500
+
2501
+ ### MultiSelect
2502
+
2503
+ #### Bug Fixes
2504
+
2505
+ - `#I329663` - Issue with "width is not applied to the fixed header element while scrolling the popup items" has been resolved.
2506
+
2507
+ ## 19.1.64 (2021-05-19)
2508
+
2509
+ ### DropDownList
2510
+
2511
+ #### Bug Fixes
2512
+
2513
+ - `#I323861` - Issue with "popup does not shows the proper list items on filtering dropdown while closing the popup before data gets fetched and open the popup again" has been resolved.
2514
+
2515
+ ## 19.1.58 (2021-04-27)
2516
+
2517
+ ### MultiSelect
2518
+
2519
+ #### Bug Fixes
2520
+
2521
+ - `#I323805` - Issue with "pasted content is partially visible in the input element while pasting long text content" has been resolved.
2522
+
2523
+ ## 19.1.55 (2021-04-06)
2524
+
2525
+ ### ComboBox
2526
+
2527
+ #### Bug Fixes
2528
+
2529
+ - `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
2530
+
2531
+ ## 18.4.42 (2021-02-09)
2532
+
2533
+ ### ComboBox
2534
+
2535
+ #### Bug Fixes
2536
+
2537
+ - `#311416` - Issue with "form value is not updated while clicking clear icon after patching the value" has been resolved.
2538
+
2539
+ ## 18.4.41 (2021-02-02)
2540
+
2541
+ ### MultiSelect
2542
+
2543
+ #### Bug Fixes
2544
+
2545
+ - `#311499` - Issue with "console error is thrown in the filtering and custom value multiselect while choosing existing value" has been resolved.
2546
+
2547
+ ## 18.4.30 (2020-12-17)
2548
+
2549
+ ### DropDownList
2550
+
2551
+ #### Bug Fixes
2552
+
2553
+ - `#304890`, `#304801` - Issue with "`model value` is not updated inside form while changing the value at first time" has been resolved.
2554
+
2555
+ ### MultiSelect
2556
+
2557
+ #### Bug Fixes
2558
+
2559
+ - `#304890`, `#304801` - Issue with "`model value` is not updated inside form while changing the value at first time" has been resolved.
2560
+
2561
+ ## 18.3.53 (2020-12-08)
2562
+
2563
+ ### DropDownList
2564
+
2565
+ #### Bug Fixes
2566
+
2567
+ - `#F159477` - Issue with "highlight search is not working properly when using item template with filter type as `StartsWith` and `EndsWith` in dropdownlist" has been resolved.
2568
+
2569
+ ### MultiSelect
2570
+
2571
+ #### Bug Fixes
2572
+
2573
+ - `#F159477` - Issue with "highlight search is not working properly when using item template with filter type as `StartsWith` and `EndsWith` in multiselect" has been resolved.
2574
+
2575
+ - `#304185` - Issue with "SelectAll checkbox is not displayed while changing the data source dynamically" has been resolved.
2576
+
2577
+ - `#303760` - Issue with "popup is displayed with two scrollbar in the bootstrap theme while resizing the browser window" has been resolved.
2578
+
2579
+ ### AutoComplete
2580
+
2581
+ #### Bug Fixes
2582
+
2583
+ - `#F159477` - Issue with "highlight search is not working properly when using item template with filter type as `StartsWith` and `EndsWith` in autocomplete" has been resolved.
2584
+
2585
+ ### ComboBox
2586
+
2587
+ #### Bug Fixes
2588
+
2589
+ - `#F159477` - Issue with "highlight search is not working properly when using item template with filter type as `StartsWith` and `EndsWith` in combobox" has been resolved.
2590
+
2591
+ ## 18.3.51 (2020-11-24)
2592
+
2593
+ ### AutoComplete
2594
+
2595
+ #### Bug Fixes
2596
+
2597
+ - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
2598
+
2599
+ #### Breaking Changes
2600
+
2601
+ - While setting the autocomplete value programmatically, the `change` event will not trigger.
2602
+
2603
+ ### ComboBox
2604
+
2605
+ #### Bug Fixes
2606
+
2607
+ - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
2608
+
2609
+ #### Breaking Changes
2610
+
2611
+ - While setting the combobox value programmatically, the `change` event will not trigger.
2612
+
2613
+ ### DropDownList
2614
+
2615
+ #### Bug Fixes
2616
+
2617
+ - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
2618
+
2619
+ #### Breaking Changes
2620
+
2621
+ - While setting the dropdownlist value programmatically, the `change` event will not trigger.
2622
+
2623
+ ### MultiSelect
2624
+
2625
+ #### Bug Fixes
2626
+
2627
+ - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
2628
+
2629
+ #### Breaking Changes
2630
+
2631
+ - While setting the multiselect value programmatically, the `change` event will not trigger.
2632
+
2633
+ ## 18.3.48 (2020-11-11)
2634
+
2635
+ ### MultiSelect
2636
+
2637
+ #### Bug Fixes
2638
+
2639
+ - `#298297` - Now, proper selected item count is updated in the remaining template.
2640
+
2641
+ ## 18.2.57 (2020-09-08)
2642
+
2643
+ ### ComboBox
2644
+
2645
+ #### Bug Fixes
2646
+
2647
+ - `#288033` - Issue with "value is not set to the component when assign the respective ID to the value property" has been resolved.
2648
+
2649
+ ## 18.2.55 (2020-08-25)
2650
+
2651
+ ### Multiselect
2652
+
2653
+ #### Bug Fixes
2654
+
2655
+ - `#285661` - Issue with "maximum call stack size exceeded issue raised when enable filtering and custom value in the Multiselect" has been resolved.
2656
+
2657
+ ## 18.2.45 (2020-07-14)
2658
+
2659
+ ### MultiSelect
2660
+
2661
+ #### Bug Fixes
2662
+
2663
+ - `#283346` - Issue with "chip content is not displayed in bootstrap4 theme when disable the control" has been resolved.
2664
+
2665
+ ## 18.1.54 (2020-05-26)
2666
+
2667
+ ### MultiSelect
2668
+
2669
+ #### Bug Fixes
2670
+
2671
+ - `#274970` - Issue with "popup values are not updated when change the query dynamically" has been resolved.
2672
+
2673
+ ## 18.1.45 (2020-04-21)
2674
+
2675
+ ### AutoComplete
2676
+
2677
+ #### Bug Fixes
2678
+
2679
+ - `#269229` - Now, you can use highlight API along with ng-template.
2680
+
2681
+ ## 18.1.44 (2020-04-14)
2682
+
2683
+ ### MultiSelect
2684
+
2685
+ #### Bug Fixes
2686
+
2687
+ - Now, getDataByValue method return the valid items in the change event.
2688
+
2689
+ ## 17.3.27 (2019-11-12)
2690
+
2691
+ ### ComboBox
2692
+
2693
+ #### Bug Fixes
2694
+
2695
+ - `#227938` - Now, item template works properly when enable the filtering.
2696
+
2697
+ ### MultiSelect
2698
+
2699
+ #### Bug Fixes
2700
+
2701
+ - `#F148696` - Issue with "`return arrow button` doesn't appear at the top in mobile mode" has been resolved.
2702
+