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