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

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