@syncfusion/ej2-dropdowns 18.2.44-4568 → 18.2.44-4569

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +1524 -1524
  3. package/README.md +118 -118
  4. package/dist/ej2-dropdowns.umd.min.js +1 -1
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +99 -60
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +191 -151
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +1 -1
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/ts/auto-complete/auto-complete.ts +527 -0
  13. package/dist/ts/combo-box/combo-box.ts +957 -0
  14. package/dist/ts/common/highlight-search.ts +47 -0
  15. package/dist/ts/common/incremental-search.ts +81 -0
  16. package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
  17. package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
  18. package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
  19. package/dist/ts/list-box/list-box.ts +2317 -0
  20. package/dist/ts/multi-select/checkbox-selection.ts +528 -0
  21. package/dist/ts/multi-select/float-label.ts +155 -0
  22. package/dist/ts/multi-select/interface.ts +66 -0
  23. package/dist/ts/multi-select/multi-select.ts +4216 -0
  24. package/helpers/e2e/index.js +3 -3
  25. package/license +2 -2
  26. package/package.json +77 -78
  27. package/src/auto-complete/auto-complete-model.d.ts +179 -179
  28. package/src/auto-complete/auto-complete.js +19 -19
  29. package/src/combo-box/combo-box-model.d.ts +212 -212
  30. package/src/combo-box/combo-box.js +19 -19
  31. package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
  32. package/src/drop-down-base/drop-down-base.js +19 -19
  33. package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
  34. package/src/drop-down-list/drop-down-list.js +19 -19
  35. package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
  36. package/src/drop-down-tree/drop-down-tree.js +19 -19
  37. package/src/list-box/list-box-model.d.ts +156 -156
  38. package/src/list-box/list-box.js +19 -19
  39. package/src/multi-select/multi-select-model.d.ts +452 -452
  40. package/src/multi-select/multi-select.d.ts +2 -0
  41. package/src/multi-select/multi-select.js +73 -36
  42. package/styles/_all.scss +3 -3
  43. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  44. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  45. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  46. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  47. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  48. package/styles/bootstrap-dark.css +13 -16
  49. package/styles/bootstrap.css +12 -15
  50. package/styles/bootstrap4.css +6 -10
  51. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  52. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  53. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  54. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  55. package/styles/combo-box/_material-dark-definition.scss +2 -2
  56. package/styles/drop-down-base/_all.scss +2 -2
  57. package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
  58. package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
  59. package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
  60. package/styles/drop-down-base/_definition.scss +23 -23
  61. package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
  62. package/styles/drop-down-base/_fabric-definition.scss +66 -66
  63. package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
  64. package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
  65. package/styles/drop-down-base/_layout.scss +108 -108
  66. package/styles/drop-down-base/_material-dark-definition.scss +67 -67
  67. package/styles/drop-down-base/_material-definition.scss +65 -65
  68. package/styles/drop-down-base/_theme.scss +242 -242
  69. package/styles/drop-down-list/_all.scss +2 -2
  70. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  71. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  72. package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
  73. package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
  74. package/styles/drop-down-list/_fabric-definition.scss +122 -122
  75. package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
  76. package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
  77. package/styles/drop-down-list/_layout.scss +218 -218
  78. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  79. package/styles/drop-down-list/_material-definition.scss +166 -166
  80. package/styles/drop-down-list/_theme.scss +10 -10
  81. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  82. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  83. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  84. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  85. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  86. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  87. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  88. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  89. package/styles/drop-down-list/icons/_material.scss +14 -14
  90. package/styles/drop-down-list/material.css +9 -0
  91. package/styles/drop-down-tree/_all.scss +2 -2
  92. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +61 -61
  93. package/styles/drop-down-tree/_bootstrap-definition.scss +61 -61
  94. package/styles/drop-down-tree/_bootstrap4-definition.scss +62 -62
  95. package/styles/drop-down-tree/_fabric-dark-definition.scss +62 -62
  96. package/styles/drop-down-tree/_fabric-definition.scss +62 -62
  97. package/styles/drop-down-tree/_highcontrast-definition.scss +62 -62
  98. package/styles/drop-down-tree/_highcontrast-light-definition.scss +62 -62
  99. package/styles/drop-down-tree/_layout.scss +437 -437
  100. package/styles/drop-down-tree/_material-dark-definition.scss +60 -60
  101. package/styles/drop-down-tree/_material-definition.scss +60 -60
  102. package/styles/drop-down-tree/_theme.scss +68 -68
  103. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  104. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  105. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  106. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  107. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  108. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  109. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  110. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  111. package/styles/drop-down-tree/icons/_material.scss +11 -11
  112. package/styles/drop-down-tree/material.css +9 -0
  113. package/styles/fabric-dark.css +2 -5
  114. package/styles/fabric.css +1 -4
  115. package/styles/highcontrast-light.css +2 -5
  116. package/styles/highcontrast.css +2 -7
  117. package/styles/list-box/_all.scss +2 -2
  118. package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
  119. package/styles/list-box/_bootstrap-definition.scss +112 -112
  120. package/styles/list-box/_bootstrap4-definition.scss +118 -118
  121. package/styles/list-box/_fabric-dark-definition.scss +118 -118
  122. package/styles/list-box/_fabric-definition.scss +112 -112
  123. package/styles/list-box/_highcontrast-definition.scss +112 -112
  124. package/styles/list-box/_highcontrast-light-definition.scss +118 -118
  125. package/styles/list-box/_layout.scss +458 -458
  126. package/styles/list-box/_material-dark-definition.scss +118 -118
  127. package/styles/list-box/_material-definition.scss +112 -112
  128. package/styles/list-box/_theme.scss +273 -273
  129. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  130. package/styles/list-box/icons/_bootstrap.scss +25 -25
  131. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  132. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  133. package/styles/list-box/icons/_fabric.scss +25 -25
  134. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  135. package/styles/list-box/icons/_highcontrast.scss +25 -25
  136. package/styles/list-box/icons/_material-dark.scss +25 -25
  137. package/styles/list-box/icons/_material.scss +25 -25
  138. package/styles/material-dark.css +8 -11
  139. package/styles/material.css +34 -10
  140. package/styles/multi-select/_all.scss +2 -2
  141. package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
  142. package/styles/multi-select/_bootstrap-definition.scss +166 -166
  143. package/styles/multi-select/_bootstrap4-definition.scss +233 -233
  144. package/styles/multi-select/_fabric-dark-definition.scss +170 -170
  145. package/styles/multi-select/_fabric-definition.scss +167 -167
  146. package/styles/multi-select/_highcontrast-definition.scss +257 -259
  147. package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
  148. package/styles/multi-select/_layout.scss +1153 -1153
  149. package/styles/multi-select/_material-dark-definition.scss +186 -186
  150. package/styles/multi-select/_material-definition.scss +191 -191
  151. package/styles/multi-select/_theme.scss +384 -389
  152. package/styles/multi-select/bootstrap-dark.css +13 -16
  153. package/styles/multi-select/bootstrap.css +12 -15
  154. package/styles/multi-select/bootstrap4.css +6 -10
  155. package/styles/multi-select/fabric-dark.css +2 -5
  156. package/styles/multi-select/fabric.css +1 -4
  157. package/styles/multi-select/highcontrast-light.css +2 -5
  158. package/styles/multi-select/highcontrast.css +2 -7
  159. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  160. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  161. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  162. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  163. package/styles/multi-select/icons/_fabric.scss +26 -26
  164. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  165. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  166. package/styles/multi-select/icons/_material-dark.scss +26 -26
  167. package/styles/multi-select/icons/_material.scss +324 -324
  168. package/styles/multi-select/material-dark.css +8 -11
  169. package/styles/multi-select/material.css +16 -10
package/CHANGELOG.md CHANGED
@@ -1,1524 +1,1524 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ## 18.1.59 (2020-06-23)
6
-
7
- ### MultiSelect
8
-
9
- #### Bug Fixes
10
-
11
- -`#F154635` - Issue with "floating label is not floated properly while rendering with filter and outline theme appearance" has been resolved.
12
-
13
- ## 18.1.57 (2020-06-16)
14
-
15
- ### ComboBox
16
-
17
- #### Bug Fixes
18
-
19
- - `#279216` - Now, you can set empty data source dynamically.
20
-
21
- ## 18.1.56 (2020-06-09)
22
-
23
- ### ComboBox
24
-
25
- #### Bug Fixes
26
-
27
- - Issue with "select event is not triggered while doing first selection with autofill" has been resolved.
28
-
29
- ## 18.1.55 (2020-06-02)
30
-
31
- ### MultiSelect
32
-
33
- #### Bug Fixes
34
-
35
- -`#273796` - Now, e-outline class is added to the filter input
36
-
37
- ### Dropdown Tree
38
-
39
- #### Bug Fixes
40
-
41
- - `#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.
42
-
43
- - `#278072` - The issue with “The Dropdown Tree selected values are not received in the form post back” has been resolved.
44
-
45
- - `#274468` - The issue with “The Dropdown Tree popup element is incorrectly positioned when it is rendered inside the Bootstrap dialog” has been fixed.
46
-
47
- #### New Features
48
-
49
- - `#277378` - Provided the support to reset the values in the Dropdown Tree component when the form reset method is called.
50
-
51
- ## 18.1.53 (2020-05-19)
52
-
53
- ### MultiSelect
54
-
55
- #### Bug Fixes
56
-
57
- - `#273796` - Now, filtering works properly when paste the value in the input element.
58
-
59
- ### Dropdown Tree
60
-
61
- #### Bug Fixes
62
-
63
- - `#274351` - The issue with "The Dropdown Tree initialized value which is not getting it in the form post" has been resolved.
64
-
65
- ### ListBox
66
-
67
- #### New Features
68
-
69
- - Provided Placeholder support to filterbar in listbox.
70
-
71
- #### Bug Fixes
72
-
73
- - Move to and move from throws script error when listbox rendered with item template issue fixed.
74
-
75
- ## 18.1.52 (2020-05-13)
76
-
77
- ### ListBox
78
-
79
- #### Bug Fixes
80
-
81
- - Move to and move from throws script error when listbox rendered with item template issue fixed.
82
-
83
- ## 18.1.48 (2020-05-05)
84
-
85
- ### MultiSelect
86
-
87
- #### Bug Fixes
88
-
89
- - `#273796` - Issue with clear icon misalignment in the material outline has been resolved.
90
-
91
- ### ListBox
92
-
93
- #### Bug Fixes
94
-
95
- - Issue with drag and drop in empty listbox has been fixed.
96
-
97
- ## 18.1.46 (2020-04-28)
98
-
99
- ### Dropdown Tree
100
-
101
- #### Bug Fixes
102
-
103
- - The issue with `The Dropdown Tree placeholder hides while opening the popup, when enabling the checkbox support` has been fixed.
104
-
105
- ### ListBox
106
-
107
- #### Bug Fixes
108
-
109
- - Issue with 'enabled' properly when listbox have toolbar option has been fixed.
110
- - Issue with Filter element when the scrolling has enabled in listbox.
111
-
112
- ## 18.1.43 (2020-04-07)
113
-
114
- ### ListBox
115
-
116
- #### Bug Fixes
117
-
118
- - `moveTo` method is not working properly when listbox have disabled items has been fixed.
119
-
120
- ## 18.1.36-beta (2020-03-19)
121
-
122
- ### Common
123
-
124
- #### Breaking Changes
125
-
126
- 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.
127
- Update the system.js configuration while going with this version and above.
128
-
129
- ### Dropdown Tree
130
-
131
- 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
132
-
133
- - **Data binding** - Bind and access a hierarchical list of items from a local or server-side data source.
134
-
135
- - **Check boxes** - Select more than one item in the Dropdown Tree control without affecting the UI appearance.
136
-
137
- - **Multiple selection** - Select more than one item in the control.
138
-
139
- - **Sorting** - Display the Dropdown Tree items in ascending or descending order.
140
-
141
- - **Template** - Customize the Dropdown Tree items, header, footer, action failure content, and no records content.
142
-
143
- - **Accessibility** - Provide access to all the Dropdown Tree control features through keyboard interaction, on-screen readers, and other assistive technology devices.
144
-
145
- ### ListBox
146
-
147
- #### Bug Fixes
148
-
149
- - Dynamic show checkBox not working in grouping has been fixed.
150
-
151
- ## 17.4.51 (2020-02-25)
152
-
153
- ### MultiSelect
154
-
155
- #### Bug Fixes
156
-
157
- - `#263579` - Issue with "the performance issue while clear the selected items using clear button" issue has been resolved.
158
-
159
- ## 17.4.50 (2020-02-18)
160
-
161
- ### ListBox
162
-
163
- #### Bug Fixes
164
-
165
- - `#261827` - Issue when ListBox and menu component in a same page has been resolved.
166
-
167
- ## 17.4.49 (2020-02-11)
168
-
169
- ### DropDownList
170
-
171
- #### Bug Fixes
172
-
173
- - `#261901` - Issue with "cascade dropdown previous value maintained while enabled the filtering" has been resolved.
174
-
175
- ## 17.4.47 (2020-02-05)
176
-
177
- ### ListBox
178
-
179
- #### Bug Fixes
180
-
181
- - `#F151029` - Checkbox selection not updated on initial load, while rendering the ListBox with `iconCss` issue fixed.
182
- - Provided 'actionBegin' and 'actionComplete' event when moving items.
183
-
184
- ## 17.4.46 (2020-01-30)
185
-
186
- ### MultiSelect
187
-
188
- #### Bug Fixes
189
-
190
- - `#261574` - Now, `isInteracted` argument updated properly in the change event while focusout.
191
-
192
- ## 17.4.44 (2021-01-21)
193
-
194
- ### ListBox
195
-
196
- #### Bug Fixes
197
-
198
- - `#260635` - Sorted datasource not updated properly in ListBox has been fixed.
199
-
200
- ## 17.4.43 (2020-01-14)
201
-
202
- ### ListBox
203
-
204
- #### Bug Fixes
205
-
206
- - `#F150435` - Script error occurs during disabled toolbar button click has been resolved.
207
-
208
- ## 17.4.41 (2020-01-07)
209
-
210
- ### ListBox
211
-
212
- #### Bug Fixes
213
-
214
- - `#255830` - filter and grouping are not working on drag and drop and toolbar button states not updated properly has been resolved.
215
-
216
- ## 17.4.40 (2019-12-24)
217
-
218
- ### DropDownList
219
-
220
- #### Bug Fixes
221
-
222
- - `#255255` - Issue with "JAWS screen reader does not read the pre-selected value" has been resolved.
223
-
224
- ### ListBox
225
-
226
- #### Bug Fixes
227
-
228
- - Issue with Drag and Drop is fixed.
229
-
230
- ## 17.4.39 (2019-12-17)
231
-
232
- ### ComboBox
233
-
234
- #### Bug Fixes
235
-
236
- - `#256098` - The mobile device ENTER key selection issue in the focused item issue has resolved.
237
-
238
- ### MultiSelect
239
-
240
- #### Bug Fixes
241
-
242
- - `#255765` - Issue with "dynamically added item not displayed initially in box mode when control in focus state" has been resolved.
243
-
244
- ### DropDownList
245
-
246
- #### Bug Fixes
247
-
248
- - `#256908` - Issue with "script error throws while pressing the escape key after filter the items in the popup" has been resolved.
249
-
250
- ### ListBox
251
-
252
- #### New Features
253
-
254
- - Provided public methods for `toolbar` actions.
255
- - Provided `getDataByValues` method for getting array of data objects.
256
-
257
- #### Bug Fixes
258
-
259
- - `#252496` - Checkbox selection not maintained after removing filter has been fixed.
260
- - `#F147087` - script error "contains of undefined in ListBox" while rendering the ListBox and multi select in the same router page has been fixed.
261
-
262
- ## 17.3.29 (2019-11-26)
263
-
264
- ### AutoComplete
265
-
266
- #### New Features
267
-
268
- - `#254473` - Now, you can clear the selected values using `clear` method.
269
-
270
- ### ComboBox
271
-
272
- #### New Features
273
-
274
- - `#254473` - Now, you can clear the selected values using `clear` method.
275
-
276
- ### DropDownList
277
-
278
- #### New Features
279
-
280
- - `#254473` - Now, you can clear the selected values using `clear` method.
281
-
282
- ### MultiSelect
283
-
284
- #### New Features
285
-
286
- - `#254473` - Now, you can clear the selected values using `clear` method.
287
-
288
- ## 17.3.28 (2019-11-19)
289
-
290
- ### MultiSelect
291
-
292
- #### Bug Fixes
293
-
294
- - `#F148867` , `#254713` - The issue with "rendering the `itemTemplate` when value is bound to the control" has been resolved.
295
-
296
- ## 17.3.21 (2019-10-30)
297
-
298
- ### ComboBox
299
-
300
- #### Bug Fixes
301
-
302
- - `#251466` - Now, you can set width property in `em` unit.
303
-
304
- - `#251650` - Issue with 'filtered list item is not getting focused when set filter type as contains' has been resolved.
305
-
306
- - `#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.
307
-
308
- ### DropDownList
309
-
310
- #### Bug Fixes
311
-
312
- - `#251466` - Now, you can set width property in `em` unit.
313
-
314
- ### MultiSelect
315
-
316
- #### Bug Fixes
317
-
318
- - `#251466` - Now, you can set width property in `em` unit.
319
-
320
- ### ListBox
321
-
322
- #### Bug Fixes
323
-
324
- - `#F147087` - script error "class List of undefined" while grouping has been fixed.
325
- - `#F147408` - Move To toolbar button not working when loading the list box using `remote data` has been resolved.
326
- - `#249771` - script error while performing the toolbar actions in dual ListBox with `data manager` in `EJ2 MVC` has been resolved
327
-
328
- ## 17.3.19 (2019-10-22)
329
-
330
- ### ListBox
331
-
332
- - Drag Event returns null value issue is fixed
333
-
334
- ## 17.3.17 (2019-10-15)
335
-
336
- ### MultiSelect
337
-
338
- #### Bug Fixes
339
-
340
- - `#250710` - Now, you can filter the data while render the component using `select` element.
341
-
342
- ## 17.3.16 (2019-10-09)
343
-
344
- ### ListBox
345
-
346
- #### Bug Fixes
347
-
348
- - Adding common cssClass for wrapper.
349
-
350
- ### MultiSelect
351
-
352
- #### New Features
353
-
354
- - Provided `Material2 outline layout` for multiselect.
355
-
356
- ## 17.3.14 (2019-10-03)
357
-
358
- ### AutoComplete
359
-
360
- #### Bug Fixes
361
-
362
- - `#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.
363
-
364
- ### MultiSelect
365
-
366
- #### Bug Fixes
367
-
368
- - `#248288` - Issue with "console error thrown when set the openOnClick property as false in checkbox mode" has been resolved.
369
-
370
- ## 17.2.49 (2019-09-04)
371
-
372
- ### MultiSelect
373
-
374
- #### Bug Fixes
375
-
376
- - `#245849` - Issue with "Dropdown popup moves down while initial value selection on popup" has been resolved.
377
-
378
- ## 17.2.46 (2019-08-22)
379
-
380
- ### ListBox
381
-
382
- #### New Features
383
-
384
- - `#237694` - provided maximum selection limit option for ListBox.
385
-
386
- ## 17.2.41 (2019-08-14)
387
-
388
- ### MultiSelect
389
-
390
- #### Bug Fixes
391
-
392
- - `#144756`- Issue with "custom value added to the list after args.cancel is set to true in custom value section event" has been resolved.
393
-
394
- ## 17.2.40 (2019-08-06)
395
-
396
- ### MultiSelect
397
-
398
- #### Bug Fixes
399
-
400
- - `#242599` - Now, filtering work properly when enabling the custom value property.
401
-
402
- ### ComboBox
403
-
404
- #### New Features
405
-
406
- - `#F146233` - Now, you can specify type of filter using `filterType` property.
407
-
408
- ### DropDownList
409
-
410
- #### New Features
411
-
412
- - `#F146233` - Now, you can specify type of filter using `filterType` property.
413
-
414
- ### MultiSelect
415
-
416
- #### New Features
417
-
418
- - `#F146233` - Now, you can specify type of filter using `filterType` property.
419
-
420
- ## 17.2.39 (2019-07-30)
421
-
422
- ### ListBox
423
-
424
- #### Bug Fixes
425
-
426
- - `#240597` - Dual ListBox causes an error when filtering is activated and disable the checkbox selection settings issue is fixed.
427
-
428
- - `#240594` - Form submit occurs while click toolbar item issue is fixed.
429
-
430
- ## 17.2.36 (2019-07-24)
431
-
432
- ### MultiSelect
433
-
434
- #### Bug Fixes
435
-
436
- - `#241578` - Issue with “Checkbox selection is not updated properly in the popup list items when set filtering as false” has been resolved.
437
-
438
- ### AutoComplete
439
-
440
- #### Bug Fixes
441
-
442
- - `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
443
-
444
- ### DropDownList
445
-
446
- #### Bug Fixes
447
-
448
- - `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
449
-
450
- ## 17.2.34 (2019-07-11)
451
-
452
- ### ComboBox
453
-
454
- #### Bug Fixes
455
-
456
- - `#233488`, `#239802` - Issue with "throws error while set the field value as null" has been resolved.
457
-
458
- ### MultiSelect
459
-
460
- #### Bug Fixes
461
-
462
- - `#226512` - Now, SelectAll checkbox shows when more than one items present in the filtered list.
463
-
464
- ### DropDownList
465
-
466
- #### Bug Fixes
467
-
468
- - `#239351` - Now, Select event triggers when selecting the value through interaction.
469
-
470
- - `#F145367` - Issue with "filtering is not working with item template" has been resolved.
471
-
472
- ### ListBox
473
-
474
- #### Bug Fixes
475
-
476
- - `#240594` - Form submit occurs while click toolbar item issue is fixed.
477
-
478
- ## 17.2.28-beta (2019-06-27)
479
-
480
- ### ListBox
481
-
482
- #### New Features
483
-
484
- - Checkbox position support provided.
485
- - Filter support provided.
486
- - #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.
487
-
488
- #### Bug Fixes
489
-
490
- - #236715 - Drag and dropping the list item is not sorted when `sortOrder` enabled issue is fixed.
491
-
492
- #### Breaking Changes
493
-
494
- - Event `select` is removed instead `change` event is provided.
495
-
496
- ### DropDownList
497
-
498
- #### Bug Fixes
499
-
500
- - #235631 - Issue with "updating default value after form reset" has been resolved.
501
-
502
- - #239136 - Now, you can change `allowFiltering` property value dynamically.
503
-
504
- ### MultiSelect
505
-
506
- #### Bug Fixes
507
-
508
- - #235699 - Change event not happening after the control has lost focus issue has been fixed.
509
-
510
- #### New Features
511
-
512
- - `#F142089`, `#225476`, `#231094`, `#234377` - Now, you can render grouping with checkbox using enableGroupCheckBox property.
513
-
514
- ## 17.1.49 (2019-05-29)
515
-
516
- ### MultiSelect
517
-
518
- #### New Features
519
-
520
- - #236816 - Provided method for `focusIn` and `focusOut`.
521
-
522
- #### Bug Fixes
523
-
524
- - #231920 - In IE browser, script error throws when calling getItems method has been fixed.
525
-
526
- ## 17.1.48 (2019-05-21)
527
-
528
- ### ListBox
529
-
530
- #### New Features
531
-
532
- - Provided change event for ListBox.
533
-
534
- ## 17.1.44 (2019-05-07)
535
-
536
- ### MultiSelect
537
-
538
- #### Bug Fixes
539
-
540
- - #235167 - Multiselect dropdown jump down when the `showDropDownIcon` is set to true issue has been resolved.
541
-
542
- - #209393 - Change event not fired during tab key navigation issue has been resolved.
543
-
544
- ### DropDownList
545
-
546
- #### Bug Fixes
547
-
548
- - #234846 - The popup collision issue has been resolved while enable the filtering.
549
-
550
- ## 17.1.43 (2019-04-30)
551
-
552
- ### ComboBox
553
-
554
- #### Bug Fixes
555
-
556
- - #233483 - The List not generated properly while clear the value using clear button issue has been resolved.
557
-
558
- - #234100 - The search not working on enabling read only in the control initialization issue has been resolved.
559
-
560
- - #233137 - The combobox is not focused when click the tab key at single time issue has been resolved.
561
-
562
- ### DropDownList
563
-
564
- #### Bug Fixes
565
-
566
- - #231680 - The data source is observable using Async Pipe with pre select value not updated issue has been resolved.
567
-
568
- - #230651 - Eval function security issue has been resolved.
569
-
570
- ## 17.1.42 (2019-04-23)
571
-
572
- ### MultiSelect
573
-
574
- #### Bug Fixes
575
-
576
- - #232673 - Issue with prevent the first value when clear value using clear button has been fixed.
577
-
578
- - #233432 - The group template text not updated while enable the allow filtering issue has been fixed.
579
-
580
- ## 17.1.41 (2019-04-16)
581
-
582
- ### MultiSelect
583
-
584
- #### Bug Fixes
585
-
586
- - #232673 - Issue with browser freeze when clear value using clear button has been fixed.
587
-
588
- - #231997 - Issue with duplicate placeholder on multiselect issue has been fixed.
589
-
590
- - #232218 - The popup open downward when select the items after scroll the page issue has been resolved.
591
-
592
- - #231920 - The Custom value with pre select value not updated when set empty data source issue has been resolved.
593
-
594
- - F143612 - Dropdown icon disappeared when set the lengthy placeholder issue has been fixed.
595
-
596
- ### DropDownList
597
-
598
- #### Bug Fixes
599
-
600
- - #142944 - Item template not loaded, when change the datasource dynamically issue has been resolved.
601
-
602
- ### ComboBox
603
-
604
- #### Bug Fixes
605
-
606
- - #225254, #227938 - Template interpolated data not updated while filtering issue has been resolved.
607
-
608
- ## 17.1.40 (2019-04-09)
609
-
610
- ### ListBox
611
-
612
- #### Bug Fixes
613
-
614
- - Value property passed on form submit issue fixed.
615
-
616
- ### DropDownList
617
-
618
- #### Bug Fixes
619
-
620
- - Issue with value selection on disabled dropdown using incremental search has been fixed.
621
-
622
- - Clear icon shown when change the value dynamically issue has been fixed.
623
-
624
- ### MultiSelect
625
-
626
- #### Bug Fixes
627
-
628
- - Placeholder is not updated properly when unselect all the value issue has been resolved.
629
-
630
- ## 17.1.38 (2019-03-29)
631
-
632
- ### ListBox
633
-
634
- 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:
635
-
636
- - **Data binding**: Binds and accesses the list of items from local or server-side data source.
637
-
638
- - **Dual ListBox**: Allows transferring and reordering the list item between two ListBoxes.
639
-
640
- - **Drag and Drop**: Allows drag and drop the list item with the same/multiple ListBox.
641
-
642
- - **Grouping**: Groups the logically related items under a single or specific category.
643
-
644
- - **Templates**: Customizes the list items.
645
-
646
- - **Sorting**: Sorts the list items in alphabetical order (either ascending or descending).
647
-
648
- - **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.
649
-
650
- ### MultiSelect
651
-
652
- #### Bug Fixes
653
-
654
- - Placeholder is not updated properly when removed the value issue has been resolved.
655
-
656
- ## 17.1.32-beta (2019-03-13)
657
-
658
- ### DropDownList
659
-
660
- #### Bug Fixes
661
-
662
- - Issue with change event trigger multiple times when clear value using clear button has been fixed.
663
-
664
- ### MultiSelect
665
-
666
- #### New Features
667
-
668
- - Provided customized filtering support for checkbox mode also.
669
-
670
- ### AutoComplete
671
-
672
- #### Bug Fixes
673
-
674
- - Filtered value is not maintained while using model value issue has been resolved.
675
-
676
- ### ComboBox
677
-
678
- #### Bug Fixes
679
-
680
- - List's selection is not removed when remove a selected value using clear button issue has been resolved.
681
-
682
- ## 16.4.55 (2019-02-27)
683
-
684
- ### DropDownList
685
-
686
- #### Bug Fixes
687
-
688
- - Pre-select value is not selected when its not present in the list issue fixed.
689
-
690
- - Reset text based initial value in form reset action behavior has been changed.
691
-
692
- ### AutoComplete
693
-
694
- #### Bug Fixes
695
-
696
- - Reset text based initial value in form reset action behavior has been changed.
697
-
698
- ### ComboBox
699
-
700
- #### Bug Fixes
701
-
702
- - Reset text based initial value in form reset action behavior has been changed.
703
-
704
- ### MultiSelect
705
-
706
- #### Bug Fixes
707
-
708
- - List selection throws exception while using quotes within string data issue has been resolved.
709
-
710
- - Select all operation's performance issue has been resolved.
711
-
712
- ## 16.4.54 (2019-02-19)
713
-
714
- ### DropDownList
715
-
716
- #### Bug Fixes
717
-
718
- - When page scroll, grouping template is hiding issue has been resolved.
719
-
720
- - Reset the initial value in form reset action behavior has been changed.
721
-
722
- ### AutoComplete
723
-
724
- #### Bug Fixes
725
-
726
- - Reset the initial value in form reset action behavior has been changed.
727
-
728
- ### ComboBox
729
-
730
- #### Bug Fixes
731
-
732
- - Reset the initial value in form reset action behavior has been changed.
733
-
734
- ### MultiSelect
735
-
736
- #### Bug Fixes
737
-
738
- - Now, you can enter special characters inside MultiSelect using virtual keyboard.
739
-
740
- - Reset the initial value in form reset action behavior has been changed.
741
-
742
- ## 16.4.53 (2019-02-13)
743
-
744
- ### DropDownList
745
-
746
- - ItemData parameter supports `object` collection in select and change event.
747
-
748
- - Filtering is not working when rendered control by using select element issue has been resolved.
749
-
750
- ### MultiSelect
751
-
752
- #### Bug Fixes
753
-
754
- - Lengthy placeholder breaks UI issue has been resolved.
755
-
756
- - Values are not cleared in mobile devices issue has been resolved.
757
-
758
- - Values are not selected based on selected attribute in select element rendering issue has been resolved.
759
-
760
- ## 16.4.52 (2019-02-05)
761
-
762
- ### ComboBox
763
-
764
- #### Bug Fixes
765
-
766
- - The model value is not updated by selecting a value using tab key with autofill combination issue has been resolved.
767
-
768
- ### MultiSelect
769
-
770
- #### Bug Fixes
771
-
772
- - Blur event prevents other actions issue has been resolved.
773
-
774
- ## 16.4.48 (2019-01-22)
775
-
776
- ### AutoComplete
777
-
778
- #### Bug Fixes
779
-
780
- - Custom value is not maintain after reload the data issue has been resolved.
781
-
782
- ### MultiSelect
783
-
784
- #### Bug Fixes
785
-
786
- - `en-US` locale JSON file not generated issue has been resolved.
787
-
788
- ## 16.4.47 (2019-01-16)
789
-
790
- ### MultiSelect
791
-
792
- #### Bug Fixes
793
-
794
- - server side validation is not working issue has been resolved.
795
-
796
- ## 16.4.46 (2019-01-08)
797
-
798
- ### MultiSelect
799
-
800
- #### Bug Fixes
801
-
802
- - Value is updated in reverse while using select all option in checkbox selection issue has been resolved.
803
-
804
- ### ComboBox
805
-
806
- #### Bug Fixes
807
-
808
- - Change event is not trigger when focus out the control using tab key issue has been resolved.
809
-
810
- ## 16.4.44 (2018-12-24)
811
-
812
- ### MultiSelect
813
-
814
- #### Bug Fixes
815
-
816
- - Item template with checkbox combination is not working issue has been resolved.
817
-
818
- - Value update with checkbox selection issue in reactive form has been resolved.
819
-
820
- ## 16.3.34 (2018-11-21)
821
-
822
- ### MultiSelect
823
-
824
- #### Bug Fixes
825
-
826
- - Checkbox's selection is not removed when uncheck the `selectAll` checkbox issue has been resolved.
827
-
828
- ## 16.3.33 (2018-11-20)
829
-
830
- ### DropDownList
831
-
832
- #### Bug Fixes
833
-
834
- - DropDownList locale added in `config Json` file.
835
-
836
- ## 16.3.32 (2018-11-13)
837
-
838
- ### DropDownList
839
-
840
- #### Bug Fixes
841
-
842
- - Data related attributes are added to input element instead of select element has been fixed.
843
-
844
- - Console error thrown as maximum call stack when set the empty `dataSource` that issue has been fixed.
845
-
846
- ### MultiSelect
847
-
848
- #### Bug Fixes
849
-
850
- - Original event argument does not get in `selectedAll` event argument that issue has been fixed.
851
-
852
- ### ComboBox
853
-
854
- #### Bug Fixes
855
-
856
- - ComboBox `focus` event argument issue has been resolved.
857
-
858
- ## 16.3.29 (2018-10-31)
859
-
860
- ### MultiSelect
861
-
862
- #### Bug Fixes
863
-
864
- - MultiSelect filtering is shown incorrect result when using remote datasource issue has been resolved.
865
-
866
- ### AutoComplete
867
-
868
- #### Bug Fixes
869
-
870
- - AutoComplete `minLength` property is not perform when use custom filtering event has been resolved.
871
-
872
- ## 16.3.27 (2018-10-23)
873
-
874
- ### MultiSelect
875
-
876
- #### Bug Fixes
877
-
878
- - ngModel is not updated when select all value using SelectAll option has been fixed.
879
-
880
- ### DropDownList
881
-
882
- #### Bug Fixes
883
-
884
- - null exception handled in getItems method.
885
-
886
- ## 16.3.25 (2018-10-15)
887
-
888
- ### MultiSelect
889
-
890
- #### Bug Fixes
891
-
892
- - Duplicate values are listed while fetching data with UrlAdaptor when `allowCustom` value is set to true, that issue has been fixed.
893
-
894
- ### DropDownList
895
-
896
- #### Bug Fixes
897
-
898
- - DropDownList `valueTemplate` selected value is changed now, while changing data source.
899
-
900
- ### ComboBox
901
-
902
- #### Bug Fixes
903
-
904
- - ComboBox `readonly` enabled clear button is shown issue has been resolved.
905
-
906
- ## 16.3.23 (2018-10-03)
907
-
908
- ### MultiSelect
909
-
910
- #### Bug Fixes
911
-
912
- - MultiSelect values are cleared after performing add operation in Grid, that issue has been fixed.
913
-
914
- - Item disappears from popup list after pressing the backspace key, that issue has been fixed.
915
-
916
- ### DropDownList
917
-
918
- #### Bug Fixes
919
-
920
- - DropDownList `ItemTemplate` with `addItem` method template issue has been resolved.
921
-
922
- ## 16.3.17 (2018-09-12)
923
-
924
- ### DropDownList
925
-
926
- #### Bug Fixes
927
-
928
- - Restricted multiple request when no data returned from server issue has been resolved.
929
-
930
- ### MultiSelect
931
-
932
- #### Bug Fixes
933
-
934
- - Change event is now triggered for MultiSelect components, when focused out.
935
-
936
- #### Breaking Changes
937
-
938
- - Renamed the `selectAll` event argument `IsChecked` to `isChecked`.
939
- - Renamed the `selectAll` event argument `e` to `event`.
940
-
941
- ## 16.2.49 (2018-08-21)
942
-
943
- ### MultiSelect
944
-
945
- #### Bug Fixes
946
-
947
- - View encapsulation support given for checkbox selection.
948
- - Cleared values are not added back to MultiSelect popup issue has been resolved.
949
- - View encapsulation support given for spinner element.
950
-
951
- ### DropDownList
952
-
953
- #### Bug Fixes
954
-
955
- - View encapsulation support given for spinner element.
956
-
957
- ### ComboBox
958
-
959
- #### Bug Fixes
960
-
961
- - View encapsulation support given for spinner element.
962
-
963
- ## 16.2.48 (2018-08-14)
964
-
965
- ### MultiSelect
966
-
967
- #### Bug Fixes
968
-
969
- - Improved the MultiSelect performance in IE11 browser.
970
-
971
- ### DropDownList
972
-
973
- #### Bug Fixes
974
-
975
- - DropDownList `cssClass` updated dynamically changes issue has been resolved.
976
- - create input method addition argument added.
977
-
978
- ### AutoComplete
979
-
980
- #### Bug Fixes
981
-
982
- - create input method addition argument added.
983
-
984
- ### ComboBox
985
-
986
- #### Bug Fixes
987
-
988
- - create input method addition argument added.
989
-
990
- ### MultiSelect
991
-
992
- #### Bug Fixes
993
-
994
- - create input method addition argument added.
995
-
996
- ## 16.2.47 (2018-08-07)
997
-
998
- ### DropDownList
999
-
1000
- #### Bug Fixes
1001
-
1002
- - Provided view encapsulation support.
1003
-
1004
- ### MultiSelect
1005
-
1006
- #### Bug Fixes
1007
-
1008
- - Provided view encapsulation support.
1009
-
1010
- ### AutoComplete
1011
-
1012
- #### Bug Fixes
1013
-
1014
- - Provided view encapsulation support.
1015
-
1016
- ### ComboBox
1017
-
1018
- #### Bug Fixes
1019
-
1020
- - Provided view encapsulation support.
1021
-
1022
- ## 16.2.46 (2018-07-30)
1023
-
1024
- ### DropDownList
1025
-
1026
- #### Bug Fixes
1027
-
1028
- - We have provided public methods spinner show and hides.
1029
-
1030
- ### MultiSelect
1031
-
1032
- #### Bug Fixes
1033
-
1034
- - Pre-selected item disappears from popup list when removed selected items in clear button issue has been resolved.
1035
- - We have provided public methods spinner show and hides.
1036
-
1037
- ### AutoComplete
1038
-
1039
- - We have provided public methods spinner show and hides.
1040
-
1041
- ### ComboBox
1042
-
1043
- - ComboBox filtering update data method field argument issue has been resolved.
1044
- - We have provided public methods spinner show and hides.
1045
-
1046
- ## 16.2.45 (2018-07-17)
1047
-
1048
- ### DropDownList
1049
-
1050
- #### Bug Fixes
1051
-
1052
- - DropDownList same value selection, value not cleared issue has been resolved.
1053
- - DropDownList `scss` variable override issue has been resolved.
1054
-
1055
- ### MultiSelect
1056
-
1057
- #### Bug Fixes
1058
-
1059
- - Multiselect clear button issue has been resolved.
1060
- - Multiselect restore value not maintained in `IE` issue has been resolved.
1061
- - Multiselect popup not open when update a data via update data.
1062
-
1063
- ## 16.2.43 (2018-07-03)
1064
-
1065
- ### MultiSelect
1066
-
1067
- #### Bug Fixes
1068
-
1069
- - Multiselect pre selected value not updated issue has been resolved.
1070
-
1071
- ## 16.2.42 (2018-06-27)
1072
-
1073
- ### Multiselect
1074
-
1075
- #### Bug Fixes
1076
-
1077
- - Provided support for selected all event.
1078
- - Value is not selected when ending with space.
1079
-
1080
- ## 16.2.41 (2018-06-25)
1081
-
1082
- ### AutoComplete
1083
-
1084
- #### Bug Fixes
1085
-
1086
- - Html elements are shown during filtering when highlight property is set to true.
1087
-
1088
- ### DropDownList
1089
-
1090
- #### Bug Fixes
1091
-
1092
- - Provided support for before open event.
1093
-
1094
- ### ComboBox
1095
-
1096
- #### Bug Fixes
1097
-
1098
- - Popup items is not same as initially after filtering in combobox.
1099
-
1100
- ### MultiSelect
1101
-
1102
- #### Bug Fixes
1103
-
1104
- - Data is not repopulated when selecting and removing all items from Multiselect.
1105
- - Multiselect is not focused when tab key is pressed if it already focused in the filterbar.
1106
-
1107
- ## 16.1.46 (2018-05-29)
1108
-
1109
- ### MultiSelect
1110
-
1111
- #### Bug Fixes
1112
-
1113
- - Changed control height for MultiSelect component in Material theme to match other dropdown components.
1114
-
1115
- ## 16.1.45 (2018-05-23)
1116
-
1117
- ### MultiSelect
1118
-
1119
- #### Bug Fixes
1120
-
1121
- - Allow to set the value in MultiSelect when it is re-rendered.
1122
-
1123
- ## 16.1.42 (2018-05-15)
1124
-
1125
- ### AutoComplete
1126
-
1127
- #### Bug Fixes
1128
-
1129
- - The getDataByValue method is not working properly in Autocomplete's issue has been fixed.
1130
-
1131
- ### DropDownList
1132
-
1133
- #### Bug Fixes
1134
-
1135
- - Value property set through the model is now maintained, even after changing the data.
1136
- - Change event is now triggered for DropDown components, when `showClearButton` is clicked.
1137
-
1138
- ## 16.1.40 (2018-05-08)
1139
-
1140
- ### ComboBox
1141
-
1142
- #### Bug Fixes
1143
-
1144
- - Prevented the native HTML select and change events in angular.
1145
-
1146
- ### DropDownList
1147
-
1148
- #### Bug Fixes
1149
-
1150
- - Prevented the validation message from triggering on components initial render.
1151
- - Added support for HTML autofocus attribute in DropDown components.
1152
-
1153
- ### MultiSelect
1154
-
1155
- #### Bug Fixes
1156
-
1157
- - MultiSelect component's varying selection behaviour for keyboard and mouse event, has been fixed.
1158
-
1159
- ## 16.1.38 (2018-05-02)
1160
-
1161
- ### AutoComplete
1162
-
1163
- #### Bug Fixes
1164
-
1165
- - The issue, Value property in Autocomplete is not properly updated in two way binding after the initial load has been fixed.
1166
- - The issue, Autocomplete displays the suggestions list even if the focus is lost for related component, has been fixed.
1167
-
1168
- ### MultiSelect
1169
-
1170
- #### Bug Fixes
1171
-
1172
- - The issue, MultiSelect component is not updating the popup correctly during the initial time, has been fixed.
1173
-
1174
- ## 16.1.35 (2018-04-17)
1175
-
1176
- ### AutoComplete
1177
-
1178
- #### Bug Fixes
1179
-
1180
- - The issue, Value is not updated correctly when the words in the suggestion list contains white spaces has been fixed.
1181
-
1182
- ### MultiSelect
1183
-
1184
- #### New Features
1185
-
1186
- - Float Label support has been given for MultiSelect
1187
-
1188
- #### Bug Fixes
1189
-
1190
- - custom value support has been given in MultiSelect when the filtering is enabled instead of 'no records found' template.
1191
-
1192
- - The issue, 'Input is rendered again on typing while resetting value from null with remote data and custom value as true.' has been fixed.
1193
-
1194
- - The issue, 'Enable persistence is not working properly when all the items in the list are selected.' has been fixed.
1195
-
1196
- ## 16.1.34 (2018-04-10)
1197
-
1198
- ### AutoComplete
1199
-
1200
- #### Bug Fixes
1201
-
1202
- - The issue, Value is not updated correctly when diacritics words are used in AutoComplete has been fixed.
1203
-
1204
- ## 16.1.33 (2018-04-03)
1205
-
1206
- ### MultiSelect
1207
-
1208
- #### Bug Fixes
1209
-
1210
- - Chip width is longer than the input wrapper when the custom longer text selected, issue has been fixed.
1211
-
1212
- ## 16.1.30 (2018-03-20)
1213
-
1214
- ### MultiSelect
1215
-
1216
- #### Bug Fixes
1217
-
1218
- - custom value maintained while disabled `closePopupOnSelect`, this issue has been fixed.
1219
-
1220
- ### DropDownList
1221
-
1222
- #### Bug Fixes
1223
-
1224
- - Dynamic value change support for `showClearButton`.
1225
-
1226
- ## 16.1.29 (2018-03-13)
1227
-
1228
- ### MultiSelect
1229
-
1230
- #### Bug Fixes
1231
-
1232
- - Change event not trigger while remove chip in keyboard, this issue has been fixed.
1233
-
1234
- ### AutoComplete
1235
-
1236
- #### Bug Fixes
1237
-
1238
- - Initial value not set while using remote data in autocomplete issue has been fixed.
1239
-
1240
- ## 16.1.28 (2018-03-09)
1241
-
1242
- ### MultiSelect
1243
-
1244
- #### Bug Fixes
1245
-
1246
- - Text property not working properly while selected text, this issue has been fixed.
1247
-
1248
- ### DropDownList
1249
-
1250
- #### Bug Fixes
1251
-
1252
- - Filtering with Template issue has been fixed in DropDownList and ComboBox.
1253
-
1254
- ### ComboBox
1255
-
1256
- #### Bug Fixes
1257
-
1258
- - Filtering with Template issue has been fixed in DropDownList and ComboBox.
1259
-
1260
- ## 16.1.24 (2018-02-22)
1261
-
1262
- ### AutoComplete
1263
-
1264
- #### Breaking Changes
1265
-
1266
- - Changed the filtering event argument types to `FilteringEventArgs`.
1267
-
1268
- ### Common
1269
-
1270
- #### Breaking Changes
1271
-
1272
- - Locale key changed from `dropdownlist` to `dropdowns`.
1273
-
1274
- - Changed the fields property type as `FieldSettingsModel`.
1275
-
1276
- - Changed the Angular component selector, component name prefix with `ejs` e.g : `ejs-dropdownlist`.
1277
-
1278
- #### New Features
1279
-
1280
- - Given in-built filtering support without using `filtering` event.
1281
-
1282
- - Diacritics filtering works on enabling the `ignoreAccent`.
1283
-
1284
- - Provided the `zIndex` property to set custom `zIndex` value.
1285
-
1286
- - High contrast theme support.
1287
-
1288
- ### MultiSelect
1289
-
1290
- #### New Features
1291
-
1292
- - CheckBox support.
1293
-
1294
- - Prevent the Popup open on component click while `openOnClick` property set as false.
1295
-
1296
- - Provided `chipSelect` event for chip selection action.
1297
-
1298
- #### Breaking Changes
1299
-
1300
- - Pascal casing change to mode property values (`Default`, `Box`, `Delimiter`, `CheckBox`).
1301
-
1302
- - Changed the `maximumSelectionLength` behaviour.
1303
-
1304
- #### Bug Fixes
1305
-
1306
- - Value preselect not working in remote data, this issue has been fixed.
1307
-
1308
- ### DropDownList
1309
-
1310
- #### Bug Fixes
1311
-
1312
- - Console error thrown while navigating the angular routing in DropDownList change event, this issue has been fixed.
1313
-
1314
- ## 15.4.27-preview (2018-01-30)
1315
-
1316
- ### DropDownList
1317
-
1318
- #### Bug Fixes
1319
-
1320
- - DropDownList value property gets as an object if selected value as 0, this issue has been fixed.
1321
-
1322
- ## 15.4.26-preview (2018-01-23)
1323
-
1324
- ### AutoComplete
1325
-
1326
- #### Bug Fixes
1327
-
1328
- - The Change event argument `isInteraction` is returned properly when clear button is clicked.
1329
-
1330
- ### DropDownList
1331
-
1332
- #### Bug Fixes
1333
-
1334
- - Clear button is not visible, this issue has been fixed.
1335
-
1336
- - Angular reactive form resetting not worked in DropDownList component, this issue has been fixed.
1337
-
1338
- ### MultiSelect
1339
-
1340
- #### Bug Fixes
1341
-
1342
- - Popup does not open while component render with empty data source, this issue has been fixed.
1343
-
1344
- ## 15.4.24-preview (2018-01-10)
1345
-
1346
- ### MultiSelect
1347
-
1348
- #### Breaking Changes
1349
-
1350
- - Changed the default value of `hideSelectedItems` property as true.
1351
-
1352
- #### Bug Fixes
1353
-
1354
- - Custom value dose not allow while component render with empty data source, this issue has been fixed.
1355
-
1356
- ## 15.4.23-preview (2017-12-27)
1357
-
1358
- ### Common
1359
-
1360
- #### New Features
1361
-
1362
- - Added typing file for ES5 global scripts (`dist/global/index.d.ts`).
1363
-
1364
- #### Breaking Changes
1365
-
1366
- - Modified the module bundle file name for ES6 bundling.
1367
-
1368
- ### DropDownList
1369
-
1370
- #### Bug Fixes
1371
-
1372
- - Space key not allowed in DropDownList filtering, this issue has been fixed.
1373
-
1374
- ### MultiSelect
1375
-
1376
- #### Bug Fixes
1377
-
1378
- - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1379
-
1380
- ### DropDownList
1381
-
1382
- #### Bug Fixes
1383
-
1384
- - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1385
-
1386
- ### ComboBox
1387
-
1388
- #### Bug Fixes
1389
-
1390
- - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1391
-
1392
- ### AutoComplete
1393
-
1394
- #### Bug Fixes
1395
-
1396
- - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1397
-
1398
- ## 15.4.21-preview (2017-12-08)
1399
-
1400
- ### MultiSelect
1401
-
1402
- #### Breaking Changes
1403
-
1404
- - Home and End key behaviour changes.
1405
-
1406
- ### AutoComplete
1407
-
1408
- #### Breaking Changes
1409
-
1410
- - Home and End key behaviour changes.
1411
-
1412
- ### ComboBox
1413
-
1414
- #### Breaking Changes
1415
-
1416
- - Home and End key behaviour changes.
1417
-
1418
- ### MultiSelect
1419
-
1420
- #### Bug Fixes
1421
-
1422
- - Popup left and right collision issue fixed.
1423
-
1424
- - MultiSelect custom value with template issue fixed.
1425
-
1426
- ## 15.4.20-preview (2017-12-01)
1427
-
1428
- ### Common
1429
-
1430
- #### New Features
1431
-
1432
- - Upgraded TypeScript version to 2.6.2.
1433
-
1434
- ### DropDownList
1435
-
1436
- #### Bug Fixes
1437
-
1438
- - DropDownList component value cleared while change the value through react setState method issue fixed.
1439
-
1440
- - Empty string value not selected in DropDownList issue fixed.
1441
-
1442
- ## 15.4.19-preview (2017-11-23)
1443
-
1444
- ### AutoComplete
1445
-
1446
- #### Bug Fixes
1447
-
1448
- - When we Change the data source the value is empty issue fixed.
1449
-
1450
- ### DropDownList
1451
-
1452
- #### Bug Fixes
1453
-
1454
- - Expected is 'Object' instead of 'object' issue fixed.
1455
-
1456
- ## 15.4.17-preview (2017-11-13)
1457
-
1458
- ### MultiSelect
1459
-
1460
- 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
1461
-
1462
- - **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
1463
-
1464
- - **Grouping** - Supports grouping the logically related items under single or specific category.
1465
-
1466
- - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
1467
-
1468
- - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1469
-
1470
- - **Filtering** - Allow filtering the list items based on a character typed in component.
1471
-
1472
- - **Custom Value** - Allows user to select a new custom value.
1473
-
1474
- - **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.
1475
-
1476
- ### ComboBox
1477
-
1478
- 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
1479
-
1480
- - **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
1481
-
1482
- - **Custom values** - Allows setting user-defined values that is not in the popup list.
1483
-
1484
- - **Grouping** - Supports grouping of logically related items under a single or specific category.
1485
-
1486
- - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1487
-
1488
- - **Filtering** - Allows filtering of list items based on a character typed in the component.
1489
-
1490
- - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
1491
-
1492
- - **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.
1493
-
1494
- ### AutoComplete
1495
-
1496
- AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one. The available key features are
1497
-
1498
- - **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
1499
-
1500
- - **Grouping** - Supports grouping of logically related items under a single or specific category.
1501
-
1502
- - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1503
-
1504
- - **Highlight search** - Supports highlighting the typed text in the suggestion list.
1505
-
1506
- - **Templates** - Allows customizing the list item, header, footer, category group header, no records and action failure content.
1507
-
1508
- - **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.
1509
-
1510
- ### DropDownList
1511
-
1512
- 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
1513
-
1514
- - **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
1515
-
1516
- - **Grouping** - Supports grouping the logically related items under single or specific category.
1517
-
1518
- - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1519
-
1520
- - **Filtering** - Allow filtering the list items based on a character typed onto the search box.
1521
-
1522
- - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
1523
-
1524
- - **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.
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## 18.1.59 (2020-06-23)
6
+
7
+ ### MultiSelect
8
+
9
+ #### Bug Fixes
10
+
11
+ -`#F154635` - Issue with "floating label is not floated properly while rendering with filter and outline theme appearance" has been resolved.
12
+
13
+ ## 18.1.57 (2020-06-16)
14
+
15
+ ### ComboBox
16
+
17
+ #### Bug Fixes
18
+
19
+ - `#279216` - Now, you can set empty data source dynamically.
20
+
21
+ ## 18.1.56 (2020-06-09)
22
+
23
+ ### ComboBox
24
+
25
+ #### Bug Fixes
26
+
27
+ - Issue with "select event is not triggered while doing first selection with autofill" has been resolved.
28
+
29
+ ## 18.1.55 (2020-06-02)
30
+
31
+ ### MultiSelect
32
+
33
+ #### Bug Fixes
34
+
35
+ -`#273796` - Now, e-outline class is added to the filter input
36
+
37
+ ### Dropdown Tree
38
+
39
+ #### Bug Fixes
40
+
41
+ - `#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.
42
+
43
+ - `#278072` - The issue with “The Dropdown Tree selected values are not received in the form post back” has been resolved.
44
+
45
+ - `#274468` - The issue with “The Dropdown Tree popup element is incorrectly positioned when it is rendered inside the Bootstrap dialog” has been fixed.
46
+
47
+ #### New Features
48
+
49
+ - `#277378` - Provided the support to reset the values in the Dropdown Tree component when the form reset method is called.
50
+
51
+ ## 18.1.53 (2020-05-19)
52
+
53
+ ### MultiSelect
54
+
55
+ #### Bug Fixes
56
+
57
+ - `#273796` - Now, filtering works properly when paste the value in the input element.
58
+
59
+ ### Dropdown Tree
60
+
61
+ #### Bug Fixes
62
+
63
+ - `#274351` - The issue with "The Dropdown Tree initialized value which is not getting it in the form post" has been resolved.
64
+
65
+ ### ListBox
66
+
67
+ #### New Features
68
+
69
+ - Provided Placeholder support to filterbar in listbox.
70
+
71
+ #### Bug Fixes
72
+
73
+ - Move to and move from throws script error when listbox rendered with item template issue fixed.
74
+
75
+ ## 18.1.52 (2020-05-13)
76
+
77
+ ### ListBox
78
+
79
+ #### Bug Fixes
80
+
81
+ - Move to and move from throws script error when listbox rendered with item template issue fixed.
82
+
83
+ ## 18.1.48 (2020-05-05)
84
+
85
+ ### MultiSelect
86
+
87
+ #### Bug Fixes
88
+
89
+ - `#273796` - Issue with clear icon misalignment in the material outline has been resolved.
90
+
91
+ ### ListBox
92
+
93
+ #### Bug Fixes
94
+
95
+ - Issue with drag and drop in empty listbox has been fixed.
96
+
97
+ ## 18.1.46 (2020-04-28)
98
+
99
+ ### Dropdown Tree
100
+
101
+ #### Bug Fixes
102
+
103
+ - The issue with `The Dropdown Tree placeholder hides while opening the popup, when enabling the checkbox support` has been fixed.
104
+
105
+ ### ListBox
106
+
107
+ #### Bug Fixes
108
+
109
+ - Issue with 'enabled' properly when listbox have toolbar option has been fixed.
110
+ - Issue with Filter element when the scrolling has enabled in listbox.
111
+
112
+ ## 18.1.43 (2020-04-07)
113
+
114
+ ### ListBox
115
+
116
+ #### Bug Fixes
117
+
118
+ - `moveTo` method is not working properly when listbox have disabled items has been fixed.
119
+
120
+ ## 18.1.36-beta (2020-03-19)
121
+
122
+ ### Common
123
+
124
+ #### Breaking Changes
125
+
126
+ 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.
127
+ Update the system.js configuration while going with this version and above.
128
+
129
+ ### Dropdown Tree
130
+
131
+ 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
132
+
133
+ - **Data binding** - Bind and access a hierarchical list of items from a local or server-side data source.
134
+
135
+ - **Check boxes** - Select more than one item in the Dropdown Tree control without affecting the UI appearance.
136
+
137
+ - **Multiple selection** - Select more than one item in the control.
138
+
139
+ - **Sorting** - Display the Dropdown Tree items in ascending or descending order.
140
+
141
+ - **Template** - Customize the Dropdown Tree items, header, footer, action failure content, and no records content.
142
+
143
+ - **Accessibility** - Provide access to all the Dropdown Tree control features through keyboard interaction, on-screen readers, and other assistive technology devices.
144
+
145
+ ### ListBox
146
+
147
+ #### Bug Fixes
148
+
149
+ - Dynamic show checkBox not working in grouping has been fixed.
150
+
151
+ ## 17.4.51 (2020-02-25)
152
+
153
+ ### MultiSelect
154
+
155
+ #### Bug Fixes
156
+
157
+ - `#263579` - Issue with "the performance issue while clear the selected items using clear button" issue has been resolved.
158
+
159
+ ## 17.4.50 (2020-02-18)
160
+
161
+ ### ListBox
162
+
163
+ #### Bug Fixes
164
+
165
+ - `#261827` - Issue when ListBox and menu component in a same page has been resolved.
166
+
167
+ ## 17.4.49 (2020-02-11)
168
+
169
+ ### DropDownList
170
+
171
+ #### Bug Fixes
172
+
173
+ - `#261901` - Issue with "cascade dropdown previous value maintained while enabled the filtering" has been resolved.
174
+
175
+ ## 17.4.47 (2020-02-05)
176
+
177
+ ### ListBox
178
+
179
+ #### Bug Fixes
180
+
181
+ - `#F151029` - Checkbox selection not updated on initial load, while rendering the ListBox with `iconCss` issue fixed.
182
+ - Provided 'actionBegin' and 'actionComplete' event when moving items.
183
+
184
+ ## 17.4.46 (2020-01-30)
185
+
186
+ ### MultiSelect
187
+
188
+ #### Bug Fixes
189
+
190
+ - `#261574` - Now, `isInteracted` argument updated properly in the change event while focusout.
191
+
192
+ ## 17.4.44 (2021-01-21)
193
+
194
+ ### ListBox
195
+
196
+ #### Bug Fixes
197
+
198
+ - `#260635` - Sorted datasource not updated properly in ListBox has been fixed.
199
+
200
+ ## 17.4.43 (2020-01-14)
201
+
202
+ ### ListBox
203
+
204
+ #### Bug Fixes
205
+
206
+ - `#F150435` - Script error occurs during disabled toolbar button click has been resolved.
207
+
208
+ ## 17.4.41 (2020-01-07)
209
+
210
+ ### ListBox
211
+
212
+ #### Bug Fixes
213
+
214
+ - `#255830` - filter and grouping are not working on drag and drop and toolbar button states not updated properly has been resolved.
215
+
216
+ ## 17.4.40 (2019-12-24)
217
+
218
+ ### DropDownList
219
+
220
+ #### Bug Fixes
221
+
222
+ - `#255255` - Issue with "JAWS screen reader does not read the pre-selected value" has been resolved.
223
+
224
+ ### ListBox
225
+
226
+ #### Bug Fixes
227
+
228
+ - Issue with Drag and Drop is fixed.
229
+
230
+ ## 17.4.39 (2019-12-17)
231
+
232
+ ### ComboBox
233
+
234
+ #### Bug Fixes
235
+
236
+ - `#256098` - The mobile device ENTER key selection issue in the focused item issue has resolved.
237
+
238
+ ### MultiSelect
239
+
240
+ #### Bug Fixes
241
+
242
+ - `#255765` - Issue with "dynamically added item not displayed initially in box mode when control in focus state" has been resolved.
243
+
244
+ ### DropDownList
245
+
246
+ #### Bug Fixes
247
+
248
+ - `#256908` - Issue with "script error throws while pressing the escape key after filter the items in the popup" has been resolved.
249
+
250
+ ### ListBox
251
+
252
+ #### New Features
253
+
254
+ - Provided public methods for `toolbar` actions.
255
+ - Provided `getDataByValues` method for getting array of data objects.
256
+
257
+ #### Bug Fixes
258
+
259
+ - `#252496` - Checkbox selection not maintained after removing filter has been fixed.
260
+ - `#F147087` - script error "contains of undefined in ListBox" while rendering the ListBox and multi select in the same router page has been fixed.
261
+
262
+ ## 17.3.29 (2019-11-26)
263
+
264
+ ### AutoComplete
265
+
266
+ #### New Features
267
+
268
+ - `#254473` - Now, you can clear the selected values using `clear` method.
269
+
270
+ ### ComboBox
271
+
272
+ #### New Features
273
+
274
+ - `#254473` - Now, you can clear the selected values using `clear` method.
275
+
276
+ ### DropDownList
277
+
278
+ #### New Features
279
+
280
+ - `#254473` - Now, you can clear the selected values using `clear` method.
281
+
282
+ ### MultiSelect
283
+
284
+ #### New Features
285
+
286
+ - `#254473` - Now, you can clear the selected values using `clear` method.
287
+
288
+ ## 17.3.28 (2019-11-19)
289
+
290
+ ### MultiSelect
291
+
292
+ #### Bug Fixes
293
+
294
+ - `#F148867` , `#254713` - The issue with "rendering the `itemTemplate` when value is bound to the control" has been resolved.
295
+
296
+ ## 17.3.21 (2019-10-30)
297
+
298
+ ### ComboBox
299
+
300
+ #### Bug Fixes
301
+
302
+ - `#251466` - Now, you can set width property in `em` unit.
303
+
304
+ - `#251650` - Issue with 'filtered list item is not getting focused when set filter type as contains' has been resolved.
305
+
306
+ - `#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.
307
+
308
+ ### DropDownList
309
+
310
+ #### Bug Fixes
311
+
312
+ - `#251466` - Now, you can set width property in `em` unit.
313
+
314
+ ### MultiSelect
315
+
316
+ #### Bug Fixes
317
+
318
+ - `#251466` - Now, you can set width property in `em` unit.
319
+
320
+ ### ListBox
321
+
322
+ #### Bug Fixes
323
+
324
+ - `#F147087` - script error "class List of undefined" while grouping has been fixed.
325
+ - `#F147408` - Move To toolbar button not working when loading the list box using `remote data` has been resolved.
326
+ - `#249771` - script error while performing the toolbar actions in dual ListBox with `data manager` in `EJ2 MVC` has been resolved
327
+
328
+ ## 17.3.19 (2019-10-22)
329
+
330
+ ### ListBox
331
+
332
+ - Drag Event returns null value issue is fixed
333
+
334
+ ## 17.3.17 (2019-10-15)
335
+
336
+ ### MultiSelect
337
+
338
+ #### Bug Fixes
339
+
340
+ - `#250710` - Now, you can filter the data while render the component using `select` element.
341
+
342
+ ## 17.3.16 (2019-10-09)
343
+
344
+ ### ListBox
345
+
346
+ #### Bug Fixes
347
+
348
+ - Adding common cssClass for wrapper.
349
+
350
+ ### MultiSelect
351
+
352
+ #### New Features
353
+
354
+ - Provided `Material2 outline layout` for multiselect.
355
+
356
+ ## 17.3.14 (2019-10-03)
357
+
358
+ ### AutoComplete
359
+
360
+ #### Bug Fixes
361
+
362
+ - `#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.
363
+
364
+ ### MultiSelect
365
+
366
+ #### Bug Fixes
367
+
368
+ - `#248288` - Issue with "console error thrown when set the openOnClick property as false in checkbox mode" has been resolved.
369
+
370
+ ## 17.2.49 (2019-09-04)
371
+
372
+ ### MultiSelect
373
+
374
+ #### Bug Fixes
375
+
376
+ - `#245849` - Issue with "Dropdown popup moves down while initial value selection on popup" has been resolved.
377
+
378
+ ## 17.2.46 (2019-08-22)
379
+
380
+ ### ListBox
381
+
382
+ #### New Features
383
+
384
+ - `#237694` - provided maximum selection limit option for ListBox.
385
+
386
+ ## 17.2.41 (2019-08-14)
387
+
388
+ ### MultiSelect
389
+
390
+ #### Bug Fixes
391
+
392
+ - `#144756`- Issue with "custom value added to the list after args.cancel is set to true in custom value section event" has been resolved.
393
+
394
+ ## 17.2.40 (2019-08-06)
395
+
396
+ ### MultiSelect
397
+
398
+ #### Bug Fixes
399
+
400
+ - `#242599` - Now, filtering work properly when enabling the custom value property.
401
+
402
+ ### ComboBox
403
+
404
+ #### New Features
405
+
406
+ - `#F146233` - Now, you can specify type of filter using `filterType` property.
407
+
408
+ ### DropDownList
409
+
410
+ #### New Features
411
+
412
+ - `#F146233` - Now, you can specify type of filter using `filterType` property.
413
+
414
+ ### MultiSelect
415
+
416
+ #### New Features
417
+
418
+ - `#F146233` - Now, you can specify type of filter using `filterType` property.
419
+
420
+ ## 17.2.39 (2019-07-30)
421
+
422
+ ### ListBox
423
+
424
+ #### Bug Fixes
425
+
426
+ - `#240597` - Dual ListBox causes an error when filtering is activated and disable the checkbox selection settings issue is fixed.
427
+
428
+ - `#240594` - Form submit occurs while click toolbar item issue is fixed.
429
+
430
+ ## 17.2.36 (2019-07-24)
431
+
432
+ ### MultiSelect
433
+
434
+ #### Bug Fixes
435
+
436
+ - `#241578` - Issue with “Checkbox selection is not updated properly in the popup list items when set filtering as false” has been resolved.
437
+
438
+ ### AutoComplete
439
+
440
+ #### Bug Fixes
441
+
442
+ - `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
443
+
444
+ ### DropDownList
445
+
446
+ #### Bug Fixes
447
+
448
+ - `#F146110` - Now, Resolved the console error thrown when first character is type using `MinLength` property.
449
+
450
+ ## 17.2.34 (2019-07-11)
451
+
452
+ ### ComboBox
453
+
454
+ #### Bug Fixes
455
+
456
+ - `#233488`, `#239802` - Issue with "throws error while set the field value as null" has been resolved.
457
+
458
+ ### MultiSelect
459
+
460
+ #### Bug Fixes
461
+
462
+ - `#226512` - Now, SelectAll checkbox shows when more than one items present in the filtered list.
463
+
464
+ ### DropDownList
465
+
466
+ #### Bug Fixes
467
+
468
+ - `#239351` - Now, Select event triggers when selecting the value through interaction.
469
+
470
+ - `#F145367` - Issue with "filtering is not working with item template" has been resolved.
471
+
472
+ ### ListBox
473
+
474
+ #### Bug Fixes
475
+
476
+ - `#240594` - Form submit occurs while click toolbar item issue is fixed.
477
+
478
+ ## 17.2.28-beta (2019-06-27)
479
+
480
+ ### ListBox
481
+
482
+ #### New Features
483
+
484
+ - Checkbox position support provided.
485
+ - Filter support provided.
486
+ - #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.
487
+
488
+ #### Bug Fixes
489
+
490
+ - #236715 - Drag and dropping the list item is not sorted when `sortOrder` enabled issue is fixed.
491
+
492
+ #### Breaking Changes
493
+
494
+ - Event `select` is removed instead `change` event is provided.
495
+
496
+ ### DropDownList
497
+
498
+ #### Bug Fixes
499
+
500
+ - #235631 - Issue with "updating default value after form reset" has been resolved.
501
+
502
+ - #239136 - Now, you can change `allowFiltering` property value dynamically.
503
+
504
+ ### MultiSelect
505
+
506
+ #### Bug Fixes
507
+
508
+ - #235699 - Change event not happening after the control has lost focus issue has been fixed.
509
+
510
+ #### New Features
511
+
512
+ - `#F142089`, `#225476`, `#231094`, `#234377` - Now, you can render grouping with checkbox using enableGroupCheckBox property.
513
+
514
+ ## 17.1.49 (2019-05-29)
515
+
516
+ ### MultiSelect
517
+
518
+ #### New Features
519
+
520
+ - #236816 - Provided method for `focusIn` and `focusOut`.
521
+
522
+ #### Bug Fixes
523
+
524
+ - #231920 - In IE browser, script error throws when calling getItems method has been fixed.
525
+
526
+ ## 17.1.48 (2019-05-21)
527
+
528
+ ### ListBox
529
+
530
+ #### New Features
531
+
532
+ - Provided change event for ListBox.
533
+
534
+ ## 17.1.44 (2019-05-07)
535
+
536
+ ### MultiSelect
537
+
538
+ #### Bug Fixes
539
+
540
+ - #235167 - Multiselect dropdown jump down when the `showDropDownIcon` is set to true issue has been resolved.
541
+
542
+ - #209393 - Change event not fired during tab key navigation issue has been resolved.
543
+
544
+ ### DropDownList
545
+
546
+ #### Bug Fixes
547
+
548
+ - #234846 - The popup collision issue has been resolved while enable the filtering.
549
+
550
+ ## 17.1.43 (2019-04-30)
551
+
552
+ ### ComboBox
553
+
554
+ #### Bug Fixes
555
+
556
+ - #233483 - The List not generated properly while clear the value using clear button issue has been resolved.
557
+
558
+ - #234100 - The search not working on enabling read only in the control initialization issue has been resolved.
559
+
560
+ - #233137 - The combobox is not focused when click the tab key at single time issue has been resolved.
561
+
562
+ ### DropDownList
563
+
564
+ #### Bug Fixes
565
+
566
+ - #231680 - The data source is observable using Async Pipe with pre select value not updated issue has been resolved.
567
+
568
+ - #230651 - Eval function security issue has been resolved.
569
+
570
+ ## 17.1.42 (2019-04-23)
571
+
572
+ ### MultiSelect
573
+
574
+ #### Bug Fixes
575
+
576
+ - #232673 - Issue with prevent the first value when clear value using clear button has been fixed.
577
+
578
+ - #233432 - The group template text not updated while enable the allow filtering issue has been fixed.
579
+
580
+ ## 17.1.41 (2019-04-16)
581
+
582
+ ### MultiSelect
583
+
584
+ #### Bug Fixes
585
+
586
+ - #232673 - Issue with browser freeze when clear value using clear button has been fixed.
587
+
588
+ - #231997 - Issue with duplicate placeholder on multiselect issue has been fixed.
589
+
590
+ - #232218 - The popup open downward when select the items after scroll the page issue has been resolved.
591
+
592
+ - #231920 - The Custom value with pre select value not updated when set empty data source issue has been resolved.
593
+
594
+ - F143612 - Dropdown icon disappeared when set the lengthy placeholder issue has been fixed.
595
+
596
+ ### DropDownList
597
+
598
+ #### Bug Fixes
599
+
600
+ - #142944 - Item template not loaded, when change the datasource dynamically issue has been resolved.
601
+
602
+ ### ComboBox
603
+
604
+ #### Bug Fixes
605
+
606
+ - #225254, #227938 - Template interpolated data not updated while filtering issue has been resolved.
607
+
608
+ ## 17.1.40 (2019-04-09)
609
+
610
+ ### ListBox
611
+
612
+ #### Bug Fixes
613
+
614
+ - Value property passed on form submit issue fixed.
615
+
616
+ ### DropDownList
617
+
618
+ #### Bug Fixes
619
+
620
+ - Issue with value selection on disabled dropdown using incremental search has been fixed.
621
+
622
+ - Clear icon shown when change the value dynamically issue has been fixed.
623
+
624
+ ### MultiSelect
625
+
626
+ #### Bug Fixes
627
+
628
+ - Placeholder is not updated properly when unselect all the value issue has been resolved.
629
+
630
+ ## 17.1.38 (2019-03-29)
631
+
632
+ ### ListBox
633
+
634
+ 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:
635
+
636
+ - **Data binding**: Binds and accesses the list of items from local or server-side data source.
637
+
638
+ - **Dual ListBox**: Allows transferring and reordering the list item between two ListBoxes.
639
+
640
+ - **Drag and Drop**: Allows drag and drop the list item with the same/multiple ListBox.
641
+
642
+ - **Grouping**: Groups the logically related items under a single or specific category.
643
+
644
+ - **Templates**: Customizes the list items.
645
+
646
+ - **Sorting**: Sorts the list items in alphabetical order (either ascending or descending).
647
+
648
+ - **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.
649
+
650
+ ### MultiSelect
651
+
652
+ #### Bug Fixes
653
+
654
+ - Placeholder is not updated properly when removed the value issue has been resolved.
655
+
656
+ ## 17.1.32-beta (2019-03-13)
657
+
658
+ ### DropDownList
659
+
660
+ #### Bug Fixes
661
+
662
+ - Issue with change event trigger multiple times when clear value using clear button has been fixed.
663
+
664
+ ### MultiSelect
665
+
666
+ #### New Features
667
+
668
+ - Provided customized filtering support for checkbox mode also.
669
+
670
+ ### AutoComplete
671
+
672
+ #### Bug Fixes
673
+
674
+ - Filtered value is not maintained while using model value issue has been resolved.
675
+
676
+ ### ComboBox
677
+
678
+ #### Bug Fixes
679
+
680
+ - List's selection is not removed when remove a selected value using clear button issue has been resolved.
681
+
682
+ ## 16.4.55 (2019-02-27)
683
+
684
+ ### DropDownList
685
+
686
+ #### Bug Fixes
687
+
688
+ - Pre-select value is not selected when its not present in the list issue fixed.
689
+
690
+ - Reset text based initial value in form reset action behavior has been changed.
691
+
692
+ ### AutoComplete
693
+
694
+ #### Bug Fixes
695
+
696
+ - Reset text based initial value in form reset action behavior has been changed.
697
+
698
+ ### ComboBox
699
+
700
+ #### Bug Fixes
701
+
702
+ - Reset text based initial value in form reset action behavior has been changed.
703
+
704
+ ### MultiSelect
705
+
706
+ #### Bug Fixes
707
+
708
+ - List selection throws exception while using quotes within string data issue has been resolved.
709
+
710
+ - Select all operation's performance issue has been resolved.
711
+
712
+ ## 16.4.54 (2019-02-19)
713
+
714
+ ### DropDownList
715
+
716
+ #### Bug Fixes
717
+
718
+ - When page scroll, grouping template is hiding issue has been resolved.
719
+
720
+ - Reset the initial value in form reset action behavior has been changed.
721
+
722
+ ### AutoComplete
723
+
724
+ #### Bug Fixes
725
+
726
+ - Reset the initial value in form reset action behavior has been changed.
727
+
728
+ ### ComboBox
729
+
730
+ #### Bug Fixes
731
+
732
+ - Reset the initial value in form reset action behavior has been changed.
733
+
734
+ ### MultiSelect
735
+
736
+ #### Bug Fixes
737
+
738
+ - Now, you can enter special characters inside MultiSelect using virtual keyboard.
739
+
740
+ - Reset the initial value in form reset action behavior has been changed.
741
+
742
+ ## 16.4.53 (2019-02-13)
743
+
744
+ ### DropDownList
745
+
746
+ - ItemData parameter supports `object` collection in select and change event.
747
+
748
+ - Filtering is not working when rendered control by using select element issue has been resolved.
749
+
750
+ ### MultiSelect
751
+
752
+ #### Bug Fixes
753
+
754
+ - Lengthy placeholder breaks UI issue has been resolved.
755
+
756
+ - Values are not cleared in mobile devices issue has been resolved.
757
+
758
+ - Values are not selected based on selected attribute in select element rendering issue has been resolved.
759
+
760
+ ## 16.4.52 (2019-02-05)
761
+
762
+ ### ComboBox
763
+
764
+ #### Bug Fixes
765
+
766
+ - The model value is not updated by selecting a value using tab key with autofill combination issue has been resolved.
767
+
768
+ ### MultiSelect
769
+
770
+ #### Bug Fixes
771
+
772
+ - Blur event prevents other actions issue has been resolved.
773
+
774
+ ## 16.4.48 (2019-01-22)
775
+
776
+ ### AutoComplete
777
+
778
+ #### Bug Fixes
779
+
780
+ - Custom value is not maintain after reload the data issue has been resolved.
781
+
782
+ ### MultiSelect
783
+
784
+ #### Bug Fixes
785
+
786
+ - `en-US` locale JSON file not generated issue has been resolved.
787
+
788
+ ## 16.4.47 (2019-01-16)
789
+
790
+ ### MultiSelect
791
+
792
+ #### Bug Fixes
793
+
794
+ - server side validation is not working issue has been resolved.
795
+
796
+ ## 16.4.46 (2019-01-08)
797
+
798
+ ### MultiSelect
799
+
800
+ #### Bug Fixes
801
+
802
+ - Value is updated in reverse while using select all option in checkbox selection issue has been resolved.
803
+
804
+ ### ComboBox
805
+
806
+ #### Bug Fixes
807
+
808
+ - Change event is not trigger when focus out the control using tab key issue has been resolved.
809
+
810
+ ## 16.4.44 (2018-12-24)
811
+
812
+ ### MultiSelect
813
+
814
+ #### Bug Fixes
815
+
816
+ - Item template with checkbox combination is not working issue has been resolved.
817
+
818
+ - Value update with checkbox selection issue in reactive form has been resolved.
819
+
820
+ ## 16.3.34 (2018-11-21)
821
+
822
+ ### MultiSelect
823
+
824
+ #### Bug Fixes
825
+
826
+ - Checkbox's selection is not removed when uncheck the `selectAll` checkbox issue has been resolved.
827
+
828
+ ## 16.3.33 (2018-11-20)
829
+
830
+ ### DropDownList
831
+
832
+ #### Bug Fixes
833
+
834
+ - DropDownList locale added in `config Json` file.
835
+
836
+ ## 16.3.32 (2018-11-13)
837
+
838
+ ### DropDownList
839
+
840
+ #### Bug Fixes
841
+
842
+ - Data related attributes are added to input element instead of select element has been fixed.
843
+
844
+ - Console error thrown as maximum call stack when set the empty `dataSource` that issue has been fixed.
845
+
846
+ ### MultiSelect
847
+
848
+ #### Bug Fixes
849
+
850
+ - Original event argument does not get in `selectedAll` event argument that issue has been fixed.
851
+
852
+ ### ComboBox
853
+
854
+ #### Bug Fixes
855
+
856
+ - ComboBox `focus` event argument issue has been resolved.
857
+
858
+ ## 16.3.29 (2018-10-31)
859
+
860
+ ### MultiSelect
861
+
862
+ #### Bug Fixes
863
+
864
+ - MultiSelect filtering is shown incorrect result when using remote datasource issue has been resolved.
865
+
866
+ ### AutoComplete
867
+
868
+ #### Bug Fixes
869
+
870
+ - AutoComplete `minLength` property is not perform when use custom filtering event has been resolved.
871
+
872
+ ## 16.3.27 (2018-10-23)
873
+
874
+ ### MultiSelect
875
+
876
+ #### Bug Fixes
877
+
878
+ - ngModel is not updated when select all value using SelectAll option has been fixed.
879
+
880
+ ### DropDownList
881
+
882
+ #### Bug Fixes
883
+
884
+ - null exception handled in getItems method.
885
+
886
+ ## 16.3.25 (2018-10-15)
887
+
888
+ ### MultiSelect
889
+
890
+ #### Bug Fixes
891
+
892
+ - Duplicate values are listed while fetching data with UrlAdaptor when `allowCustom` value is set to true, that issue has been fixed.
893
+
894
+ ### DropDownList
895
+
896
+ #### Bug Fixes
897
+
898
+ - DropDownList `valueTemplate` selected value is changed now, while changing data source.
899
+
900
+ ### ComboBox
901
+
902
+ #### Bug Fixes
903
+
904
+ - ComboBox `readonly` enabled clear button is shown issue has been resolved.
905
+
906
+ ## 16.3.23 (2018-10-03)
907
+
908
+ ### MultiSelect
909
+
910
+ #### Bug Fixes
911
+
912
+ - MultiSelect values are cleared after performing add operation in Grid, that issue has been fixed.
913
+
914
+ - Item disappears from popup list after pressing the backspace key, that issue has been fixed.
915
+
916
+ ### DropDownList
917
+
918
+ #### Bug Fixes
919
+
920
+ - DropDownList `ItemTemplate` with `addItem` method template issue has been resolved.
921
+
922
+ ## 16.3.17 (2018-09-12)
923
+
924
+ ### DropDownList
925
+
926
+ #### Bug Fixes
927
+
928
+ - Restricted multiple request when no data returned from server issue has been resolved.
929
+
930
+ ### MultiSelect
931
+
932
+ #### Bug Fixes
933
+
934
+ - Change event is now triggered for MultiSelect components, when focused out.
935
+
936
+ #### Breaking Changes
937
+
938
+ - Renamed the `selectAll` event argument `IsChecked` to `isChecked`.
939
+ - Renamed the `selectAll` event argument `e` to `event`.
940
+
941
+ ## 16.2.49 (2018-08-21)
942
+
943
+ ### MultiSelect
944
+
945
+ #### Bug Fixes
946
+
947
+ - View encapsulation support given for checkbox selection.
948
+ - Cleared values are not added back to MultiSelect popup issue has been resolved.
949
+ - View encapsulation support given for spinner element.
950
+
951
+ ### DropDownList
952
+
953
+ #### Bug Fixes
954
+
955
+ - View encapsulation support given for spinner element.
956
+
957
+ ### ComboBox
958
+
959
+ #### Bug Fixes
960
+
961
+ - View encapsulation support given for spinner element.
962
+
963
+ ## 16.2.48 (2018-08-14)
964
+
965
+ ### MultiSelect
966
+
967
+ #### Bug Fixes
968
+
969
+ - Improved the MultiSelect performance in IE11 browser.
970
+
971
+ ### DropDownList
972
+
973
+ #### Bug Fixes
974
+
975
+ - DropDownList `cssClass` updated dynamically changes issue has been resolved.
976
+ - create input method addition argument added.
977
+
978
+ ### AutoComplete
979
+
980
+ #### Bug Fixes
981
+
982
+ - create input method addition argument added.
983
+
984
+ ### ComboBox
985
+
986
+ #### Bug Fixes
987
+
988
+ - create input method addition argument added.
989
+
990
+ ### MultiSelect
991
+
992
+ #### Bug Fixes
993
+
994
+ - create input method addition argument added.
995
+
996
+ ## 16.2.47 (2018-08-07)
997
+
998
+ ### DropDownList
999
+
1000
+ #### Bug Fixes
1001
+
1002
+ - Provided view encapsulation support.
1003
+
1004
+ ### MultiSelect
1005
+
1006
+ #### Bug Fixes
1007
+
1008
+ - Provided view encapsulation support.
1009
+
1010
+ ### AutoComplete
1011
+
1012
+ #### Bug Fixes
1013
+
1014
+ - Provided view encapsulation support.
1015
+
1016
+ ### ComboBox
1017
+
1018
+ #### Bug Fixes
1019
+
1020
+ - Provided view encapsulation support.
1021
+
1022
+ ## 16.2.46 (2018-07-30)
1023
+
1024
+ ### DropDownList
1025
+
1026
+ #### Bug Fixes
1027
+
1028
+ - We have provided public methods spinner show and hides.
1029
+
1030
+ ### MultiSelect
1031
+
1032
+ #### Bug Fixes
1033
+
1034
+ - Pre-selected item disappears from popup list when removed selected items in clear button issue has been resolved.
1035
+ - We have provided public methods spinner show and hides.
1036
+
1037
+ ### AutoComplete
1038
+
1039
+ - We have provided public methods spinner show and hides.
1040
+
1041
+ ### ComboBox
1042
+
1043
+ - ComboBox filtering update data method field argument issue has been resolved.
1044
+ - We have provided public methods spinner show and hides.
1045
+
1046
+ ## 16.2.45 (2018-07-17)
1047
+
1048
+ ### DropDownList
1049
+
1050
+ #### Bug Fixes
1051
+
1052
+ - DropDownList same value selection, value not cleared issue has been resolved.
1053
+ - DropDownList `scss` variable override issue has been resolved.
1054
+
1055
+ ### MultiSelect
1056
+
1057
+ #### Bug Fixes
1058
+
1059
+ - Multiselect clear button issue has been resolved.
1060
+ - Multiselect restore value not maintained in `IE` issue has been resolved.
1061
+ - Multiselect popup not open when update a data via update data.
1062
+
1063
+ ## 16.2.43 (2018-07-03)
1064
+
1065
+ ### MultiSelect
1066
+
1067
+ #### Bug Fixes
1068
+
1069
+ - Multiselect pre selected value not updated issue has been resolved.
1070
+
1071
+ ## 16.2.42 (2018-06-27)
1072
+
1073
+ ### Multiselect
1074
+
1075
+ #### Bug Fixes
1076
+
1077
+ - Provided support for selected all event.
1078
+ - Value is not selected when ending with space.
1079
+
1080
+ ## 16.2.41 (2018-06-25)
1081
+
1082
+ ### AutoComplete
1083
+
1084
+ #### Bug Fixes
1085
+
1086
+ - Html elements are shown during filtering when highlight property is set to true.
1087
+
1088
+ ### DropDownList
1089
+
1090
+ #### Bug Fixes
1091
+
1092
+ - Provided support for before open event.
1093
+
1094
+ ### ComboBox
1095
+
1096
+ #### Bug Fixes
1097
+
1098
+ - Popup items is not same as initially after filtering in combobox.
1099
+
1100
+ ### MultiSelect
1101
+
1102
+ #### Bug Fixes
1103
+
1104
+ - Data is not repopulated when selecting and removing all items from Multiselect.
1105
+ - Multiselect is not focused when tab key is pressed if it already focused in the filterbar.
1106
+
1107
+ ## 16.1.46 (2018-05-29)
1108
+
1109
+ ### MultiSelect
1110
+
1111
+ #### Bug Fixes
1112
+
1113
+ - Changed control height for MultiSelect component in Material theme to match other dropdown components.
1114
+
1115
+ ## 16.1.45 (2018-05-23)
1116
+
1117
+ ### MultiSelect
1118
+
1119
+ #### Bug Fixes
1120
+
1121
+ - Allow to set the value in MultiSelect when it is re-rendered.
1122
+
1123
+ ## 16.1.42 (2018-05-15)
1124
+
1125
+ ### AutoComplete
1126
+
1127
+ #### Bug Fixes
1128
+
1129
+ - The getDataByValue method is not working properly in Autocomplete's issue has been fixed.
1130
+
1131
+ ### DropDownList
1132
+
1133
+ #### Bug Fixes
1134
+
1135
+ - Value property set through the model is now maintained, even after changing the data.
1136
+ - Change event is now triggered for DropDown components, when `showClearButton` is clicked.
1137
+
1138
+ ## 16.1.40 (2018-05-08)
1139
+
1140
+ ### ComboBox
1141
+
1142
+ #### Bug Fixes
1143
+
1144
+ - Prevented the native HTML select and change events in angular.
1145
+
1146
+ ### DropDownList
1147
+
1148
+ #### Bug Fixes
1149
+
1150
+ - Prevented the validation message from triggering on components initial render.
1151
+ - Added support for HTML autofocus attribute in DropDown components.
1152
+
1153
+ ### MultiSelect
1154
+
1155
+ #### Bug Fixes
1156
+
1157
+ - MultiSelect component's varying selection behaviour for keyboard and mouse event, has been fixed.
1158
+
1159
+ ## 16.1.38 (2018-05-02)
1160
+
1161
+ ### AutoComplete
1162
+
1163
+ #### Bug Fixes
1164
+
1165
+ - The issue, Value property in Autocomplete is not properly updated in two way binding after the initial load has been fixed.
1166
+ - The issue, Autocomplete displays the suggestions list even if the focus is lost for related component, has been fixed.
1167
+
1168
+ ### MultiSelect
1169
+
1170
+ #### Bug Fixes
1171
+
1172
+ - The issue, MultiSelect component is not updating the popup correctly during the initial time, has been fixed.
1173
+
1174
+ ## 16.1.35 (2018-04-17)
1175
+
1176
+ ### AutoComplete
1177
+
1178
+ #### Bug Fixes
1179
+
1180
+ - The issue, Value is not updated correctly when the words in the suggestion list contains white spaces has been fixed.
1181
+
1182
+ ### MultiSelect
1183
+
1184
+ #### New Features
1185
+
1186
+ - Float Label support has been given for MultiSelect
1187
+
1188
+ #### Bug Fixes
1189
+
1190
+ - custom value support has been given in MultiSelect when the filtering is enabled instead of 'no records found' template.
1191
+
1192
+ - The issue, 'Input is rendered again on typing while resetting value from null with remote data and custom value as true.' has been fixed.
1193
+
1194
+ - The issue, 'Enable persistence is not working properly when all the items in the list are selected.' has been fixed.
1195
+
1196
+ ## 16.1.34 (2018-04-10)
1197
+
1198
+ ### AutoComplete
1199
+
1200
+ #### Bug Fixes
1201
+
1202
+ - The issue, Value is not updated correctly when diacritics words are used in AutoComplete has been fixed.
1203
+
1204
+ ## 16.1.33 (2018-04-03)
1205
+
1206
+ ### MultiSelect
1207
+
1208
+ #### Bug Fixes
1209
+
1210
+ - Chip width is longer than the input wrapper when the custom longer text selected, issue has been fixed.
1211
+
1212
+ ## 16.1.30 (2018-03-20)
1213
+
1214
+ ### MultiSelect
1215
+
1216
+ #### Bug Fixes
1217
+
1218
+ - custom value maintained while disabled `closePopupOnSelect`, this issue has been fixed.
1219
+
1220
+ ### DropDownList
1221
+
1222
+ #### Bug Fixes
1223
+
1224
+ - Dynamic value change support for `showClearButton`.
1225
+
1226
+ ## 16.1.29 (2018-03-13)
1227
+
1228
+ ### MultiSelect
1229
+
1230
+ #### Bug Fixes
1231
+
1232
+ - Change event not trigger while remove chip in keyboard, this issue has been fixed.
1233
+
1234
+ ### AutoComplete
1235
+
1236
+ #### Bug Fixes
1237
+
1238
+ - Initial value not set while using remote data in autocomplete issue has been fixed.
1239
+
1240
+ ## 16.1.28 (2018-03-09)
1241
+
1242
+ ### MultiSelect
1243
+
1244
+ #### Bug Fixes
1245
+
1246
+ - Text property not working properly while selected text, this issue has been fixed.
1247
+
1248
+ ### DropDownList
1249
+
1250
+ #### Bug Fixes
1251
+
1252
+ - Filtering with Template issue has been fixed in DropDownList and ComboBox.
1253
+
1254
+ ### ComboBox
1255
+
1256
+ #### Bug Fixes
1257
+
1258
+ - Filtering with Template issue has been fixed in DropDownList and ComboBox.
1259
+
1260
+ ## 16.1.24 (2018-02-22)
1261
+
1262
+ ### AutoComplete
1263
+
1264
+ #### Breaking Changes
1265
+
1266
+ - Changed the filtering event argument types to `FilteringEventArgs`.
1267
+
1268
+ ### Common
1269
+
1270
+ #### Breaking Changes
1271
+
1272
+ - Locale key changed from `dropdownlist` to `dropdowns`.
1273
+
1274
+ - Changed the fields property type as `FieldSettingsModel`.
1275
+
1276
+ - Changed the Angular component selector, component name prefix with `ejs` e.g : `ejs-dropdownlist`.
1277
+
1278
+ #### New Features
1279
+
1280
+ - Given in-built filtering support without using `filtering` event.
1281
+
1282
+ - Diacritics filtering works on enabling the `ignoreAccent`.
1283
+
1284
+ - Provided the `zIndex` property to set custom `zIndex` value.
1285
+
1286
+ - High contrast theme support.
1287
+
1288
+ ### MultiSelect
1289
+
1290
+ #### New Features
1291
+
1292
+ - CheckBox support.
1293
+
1294
+ - Prevent the Popup open on component click while `openOnClick` property set as false.
1295
+
1296
+ - Provided `chipSelect` event for chip selection action.
1297
+
1298
+ #### Breaking Changes
1299
+
1300
+ - Pascal casing change to mode property values (`Default`, `Box`, `Delimiter`, `CheckBox`).
1301
+
1302
+ - Changed the `maximumSelectionLength` behaviour.
1303
+
1304
+ #### Bug Fixes
1305
+
1306
+ - Value preselect not working in remote data, this issue has been fixed.
1307
+
1308
+ ### DropDownList
1309
+
1310
+ #### Bug Fixes
1311
+
1312
+ - Console error thrown while navigating the angular routing in DropDownList change event, this issue has been fixed.
1313
+
1314
+ ## 15.4.27-preview (2018-01-30)
1315
+
1316
+ ### DropDownList
1317
+
1318
+ #### Bug Fixes
1319
+
1320
+ - DropDownList value property gets as an object if selected value as 0, this issue has been fixed.
1321
+
1322
+ ## 15.4.26-preview (2018-01-23)
1323
+
1324
+ ### AutoComplete
1325
+
1326
+ #### Bug Fixes
1327
+
1328
+ - The Change event argument `isInteraction` is returned properly when clear button is clicked.
1329
+
1330
+ ### DropDownList
1331
+
1332
+ #### Bug Fixes
1333
+
1334
+ - Clear button is not visible, this issue has been fixed.
1335
+
1336
+ - Angular reactive form resetting not worked in DropDownList component, this issue has been fixed.
1337
+
1338
+ ### MultiSelect
1339
+
1340
+ #### Bug Fixes
1341
+
1342
+ - Popup does not open while component render with empty data source, this issue has been fixed.
1343
+
1344
+ ## 15.4.24-preview (2018-01-10)
1345
+
1346
+ ### MultiSelect
1347
+
1348
+ #### Breaking Changes
1349
+
1350
+ - Changed the default value of `hideSelectedItems` property as true.
1351
+
1352
+ #### Bug Fixes
1353
+
1354
+ - Custom value dose not allow while component render with empty data source, this issue has been fixed.
1355
+
1356
+ ## 15.4.23-preview (2017-12-27)
1357
+
1358
+ ### Common
1359
+
1360
+ #### New Features
1361
+
1362
+ - Added typing file for ES5 global scripts (`dist/global/index.d.ts`).
1363
+
1364
+ #### Breaking Changes
1365
+
1366
+ - Modified the module bundle file name for ES6 bundling.
1367
+
1368
+ ### DropDownList
1369
+
1370
+ #### Bug Fixes
1371
+
1372
+ - Space key not allowed in DropDownList filtering, this issue has been fixed.
1373
+
1374
+ ### MultiSelect
1375
+
1376
+ #### Bug Fixes
1377
+
1378
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1379
+
1380
+ ### DropDownList
1381
+
1382
+ #### Bug Fixes
1383
+
1384
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1385
+
1386
+ ### ComboBox
1387
+
1388
+ #### Bug Fixes
1389
+
1390
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1391
+
1392
+ ### AutoComplete
1393
+
1394
+ #### Bug Fixes
1395
+
1396
+ - Popup repositions not worked while scroll on the fixed element, this has been fixed.
1397
+
1398
+ ## 15.4.21-preview (2017-12-08)
1399
+
1400
+ ### MultiSelect
1401
+
1402
+ #### Breaking Changes
1403
+
1404
+ - Home and End key behaviour changes.
1405
+
1406
+ ### AutoComplete
1407
+
1408
+ #### Breaking Changes
1409
+
1410
+ - Home and End key behaviour changes.
1411
+
1412
+ ### ComboBox
1413
+
1414
+ #### Breaking Changes
1415
+
1416
+ - Home and End key behaviour changes.
1417
+
1418
+ ### MultiSelect
1419
+
1420
+ #### Bug Fixes
1421
+
1422
+ - Popup left and right collision issue fixed.
1423
+
1424
+ - MultiSelect custom value with template issue fixed.
1425
+
1426
+ ## 15.4.20-preview (2017-12-01)
1427
+
1428
+ ### Common
1429
+
1430
+ #### New Features
1431
+
1432
+ - Upgraded TypeScript version to 2.6.2.
1433
+
1434
+ ### DropDownList
1435
+
1436
+ #### Bug Fixes
1437
+
1438
+ - DropDownList component value cleared while change the value through react setState method issue fixed.
1439
+
1440
+ - Empty string value not selected in DropDownList issue fixed.
1441
+
1442
+ ## 15.4.19-preview (2017-11-23)
1443
+
1444
+ ### AutoComplete
1445
+
1446
+ #### Bug Fixes
1447
+
1448
+ - When we Change the data source the value is empty issue fixed.
1449
+
1450
+ ### DropDownList
1451
+
1452
+ #### Bug Fixes
1453
+
1454
+ - Expected is 'Object' instead of 'object' issue fixed.
1455
+
1456
+ ## 15.4.17-preview (2017-11-13)
1457
+
1458
+ ### MultiSelect
1459
+
1460
+ 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
1461
+
1462
+ - **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
1463
+
1464
+ - **Grouping** - Supports grouping the logically related items under single or specific category.
1465
+
1466
+ - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
1467
+
1468
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1469
+
1470
+ - **Filtering** - Allow filtering the list items based on a character typed in component.
1471
+
1472
+ - **Custom Value** - Allows user to select a new custom value.
1473
+
1474
+ - **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.
1475
+
1476
+ ### ComboBox
1477
+
1478
+ 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
1479
+
1480
+ - **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
1481
+
1482
+ - **Custom values** - Allows setting user-defined values that is not in the popup list.
1483
+
1484
+ - **Grouping** - Supports grouping of logically related items under a single or specific category.
1485
+
1486
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1487
+
1488
+ - **Filtering** - Allows filtering of list items based on a character typed in the component.
1489
+
1490
+ - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
1491
+
1492
+ - **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.
1493
+
1494
+ ### AutoComplete
1495
+
1496
+ AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one. The available key features are
1497
+
1498
+ - **Data binding** - Allows binding and accessing the list of items from local or server-side data source.
1499
+
1500
+ - **Grouping** - Supports grouping of logically related items under a single or specific category.
1501
+
1502
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1503
+
1504
+ - **Highlight search** - Supports highlighting the typed text in the suggestion list.
1505
+
1506
+ - **Templates** - Allows customizing the list item, header, footer, category group header, no records and action failure content.
1507
+
1508
+ - **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.
1509
+
1510
+ ### DropDownList
1511
+
1512
+ 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
1513
+
1514
+ - **Data binding** - Allows to bind and access the list of items from the local or server-side data source.
1515
+
1516
+ - **Grouping** - Supports grouping the logically related items under single or specific category.
1517
+
1518
+ - **Sorting** - Supports sorting of list items in an alphabetical order (either ascending or descending).
1519
+
1520
+ - **Filtering** - Allow filtering the list items based on a character typed onto the search box.
1521
+
1522
+ - **Templates** - Allows customizing the list items, selected value, header, footer, category group header, and no records content.
1523
+
1524
+ - **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.