@syncfusion/ej2-dropdowns 25.2.4 → 25.2.5-30068

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 (417) hide show
  1. package/CHANGELOG.md +2186 -2164
  2. package/{README.md → ReadMe.md} +217 -217
  3. package/dist/ej2-dropdowns.umd.min.js +1 -10
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +113 -80
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +270 -237
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/helpers/e2e/autocomplete.js +13 -13
  10. package/helpers/e2e/combobox.js +13 -13
  11. package/helpers/e2e/dropdownlist.js +13 -13
  12. package/helpers/e2e/index.js +3 -3
  13. package/helpers/e2e/listboxHelper.js +13 -13
  14. package/helpers/e2e/multiselect.js +13 -13
  15. package/license +2 -2
  16. package/package.json +80 -80
  17. package/src/auto-complete/auto-complete-model.d.ts +190 -190
  18. package/src/auto-complete/auto-complete.d.ts +12 -12
  19. package/src/auto-complete/auto-complete.js +21 -21
  20. package/src/combo-box/combo-box-model.d.ts +233 -233
  21. package/src/combo-box/combo-box.d.ts +27 -27
  22. package/src/combo-box/combo-box.js +29 -29
  23. package/src/common/virtual-scroll.js +46 -46
  24. package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
  25. package/src/drop-down-base/drop-down-base.d.ts +17 -18
  26. package/src/drop-down-base/drop-down-base.js +42 -32
  27. package/src/drop-down-list/drop-down-list-model.d.ts +209 -209
  28. package/src/drop-down-list/drop-down-list.d.ts +5 -5
  29. package/src/drop-down-list/drop-down-list.js +51 -29
  30. package/src/drop-down-tree/drop-down-tree-model.d.ts +473 -473
  31. package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
  32. package/src/drop-down-tree/drop-down-tree.js +21 -21
  33. package/src/list-box/list-box-model.d.ts +237 -237
  34. package/src/list-box/list-box.d.ts +2 -2
  35. package/src/list-box/list-box.js +19 -19
  36. package/src/mention/mention-model.d.ts +261 -261
  37. package/src/mention/mention.js +19 -19
  38. package/src/multi-select/float-label.js +1 -0
  39. package/src/multi-select/multi-select-model.d.ts +526 -526
  40. package/src/multi-select/multi-select.js +20 -20
  41. package/styles/auto-complete/_all.scss +1 -1
  42. package/styles/auto-complete/_bds-definition.scss +2 -2
  43. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  44. package/styles/auto-complete/_bootstrap-definition.scss +2 -2
  45. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  46. package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
  47. package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -0
  48. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  49. package/styles/auto-complete/_fabric-definition.scss +2 -2
  50. package/styles/auto-complete/_fluent-definition.scss +2 -2
  51. package/styles/auto-complete/_fluent2-definition.scss +2 -0
  52. package/styles/auto-complete/_fusionnew-definition.scss +2 -2
  53. package/styles/auto-complete/_highcontrast-definition.scss +2 -2
  54. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  55. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  56. package/styles/auto-complete/_material-definition.scss +2 -2
  57. package/styles/auto-complete/_material3-definition.scss +2 -2
  58. package/styles/auto-complete/_tailwind-definition.scss +2 -2
  59. package/styles/auto-complete/fluent2.css +1129 -0
  60. package/styles/auto-complete/fluent2.scss +4 -0
  61. package/styles/auto-complete/material3-dark.css +1 -1
  62. package/styles/auto-complete/material3-dark.scss +1 -1
  63. package/styles/auto-complete/material3.css +1 -1
  64. package/styles/auto-complete/material3.scss +1 -1
  65. package/styles/bootstrap-dark.css +72 -300
  66. package/styles/bootstrap-dark.scss +28 -8
  67. package/styles/bootstrap.css +72 -306
  68. package/styles/bootstrap.scss +28 -8
  69. package/styles/bootstrap4.css +72 -350
  70. package/styles/bootstrap4.scss +28 -8
  71. package/styles/bootstrap5-dark.css +72 -301
  72. package/styles/bootstrap5-dark.scss +28 -8
  73. package/styles/bootstrap5.css +72 -301
  74. package/styles/bootstrap5.scss +28 -8
  75. package/styles/combo-box/_all.scss +1 -1
  76. package/styles/combo-box/_bds-definition.scss +2 -2
  77. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  78. package/styles/combo-box/_bootstrap-definition.scss +2 -2
  79. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  80. package/styles/combo-box/_bootstrap5-definition.scss +2 -2
  81. package/styles/combo-box/_bootstrap5.3-definition.scss +2 -0
  82. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  83. package/styles/combo-box/_fabric-definition.scss +2 -2
  84. package/styles/combo-box/_fluent-definition.scss +2 -2
  85. package/styles/combo-box/_fluent2-definition.scss +2 -0
  86. package/styles/combo-box/_fusionnew-definition.scss +2 -2
  87. package/styles/combo-box/_highcontrast-definition.scss +2 -2
  88. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  89. package/styles/combo-box/_material-dark-definition.scss +2 -2
  90. package/styles/combo-box/_material-definition.scss +2 -2
  91. package/styles/combo-box/_material3-definition.scss +2 -2
  92. package/styles/combo-box/_tailwind-definition.scss +2 -2
  93. package/styles/combo-box/fluent2.css +1129 -0
  94. package/styles/combo-box/fluent2.scss +4 -0
  95. package/styles/combo-box/material3-dark.css +1 -1
  96. package/styles/combo-box/material3-dark.scss +1 -1
  97. package/styles/combo-box/material3.css +1 -1
  98. package/styles/combo-box/material3.scss +1 -1
  99. package/styles/drop-down-base/_all.scss +2 -2
  100. package/styles/drop-down-base/_bds-definition.scss +134 -134
  101. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
  102. package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
  103. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
  104. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
  105. package/styles/drop-down-base/_bootstrap5.3-definition.scss +117 -0
  106. package/styles/drop-down-base/_definition.scss +23 -23
  107. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
  108. package/styles/drop-down-base/_fabric-definition.scss +84 -84
  109. package/styles/drop-down-base/_fluent-definition.scss +121 -121
  110. package/styles/drop-down-base/_fluent2-definition.scss +134 -0
  111. package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
  112. package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
  113. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
  114. package/styles/drop-down-base/_layout.scss +197 -187
  115. package/styles/drop-down-base/_material-dark-definition.scss +86 -86
  116. package/styles/drop-down-base/_material-definition.scss +85 -85
  117. package/styles/drop-down-base/_material3-definition.scss +76 -87
  118. package/styles/drop-down-base/_tailwind-definition.scss +129 -129
  119. package/styles/drop-down-base/_theme.scss +382 -391
  120. package/styles/drop-down-base/fluent2.css +1446 -0
  121. package/styles/drop-down-base/fluent2.scss +3 -0
  122. package/styles/drop-down-base/material3-dark.css +1 -1
  123. package/styles/drop-down-base/material3-dark.scss +1 -1
  124. package/styles/drop-down-base/material3.css +1 -1
  125. package/styles/drop-down-base/material3.scss +1 -1
  126. package/styles/drop-down-list/_all.scss +3 -3
  127. package/styles/drop-down-list/_bds-definition.scss +134 -134
  128. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  129. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  130. package/styles/drop-down-list/_bootstrap4-definition.scss +202 -202
  131. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
  132. package/styles/drop-down-list/_bootstrap5.3-definition.scss +201 -0
  133. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
  134. package/styles/drop-down-list/_fabric-definition.scss +124 -124
  135. package/styles/drop-down-list/_fluent-definition.scss +185 -185
  136. package/styles/drop-down-list/_fluent2-definition.scss +134 -0
  137. package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
  138. package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
  139. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
  140. package/styles/drop-down-list/_layout.scss +317 -315
  141. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  142. package/styles/drop-down-list/_material-definition.scss +167 -167
  143. package/styles/drop-down-list/_material3-definition.scss +172 -180
  144. package/styles/drop-down-list/_tailwind-definition.scss +134 -134
  145. package/styles/drop-down-list/_theme.scss +10 -10
  146. package/styles/drop-down-list/bootstrap-dark.css +5 -0
  147. package/styles/drop-down-list/bootstrap.css +5 -0
  148. package/styles/drop-down-list/bootstrap4.css +5 -0
  149. package/styles/drop-down-list/bootstrap5-dark.css +5 -0
  150. package/styles/drop-down-list/bootstrap5.css +5 -0
  151. package/styles/drop-down-list/fabric-dark.css +5 -0
  152. package/styles/drop-down-list/fabric.css +5 -0
  153. package/styles/drop-down-list/fluent-dark.css +5 -0
  154. package/styles/drop-down-list/fluent.css +5 -0
  155. package/styles/drop-down-list/fluent2.css +1617 -0
  156. package/styles/drop-down-list/fluent2.scss +9 -0
  157. package/styles/drop-down-list/highcontrast-light.css +5 -0
  158. package/styles/drop-down-list/highcontrast.css +5 -0
  159. package/styles/drop-down-list/icons/_bds.scss +14 -14
  160. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  161. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  162. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  163. package/styles/drop-down-list/icons/_bootstrap5.3.scss +14 -0
  164. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
  165. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  166. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  167. package/styles/drop-down-list/icons/_fluent.scss +14 -14
  168. package/styles/drop-down-list/icons/_fluent2.scss +14 -0
  169. package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
  170. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  171. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  172. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  173. package/styles/drop-down-list/icons/_material.scss +14 -14
  174. package/styles/drop-down-list/icons/_material3.scss +14 -14
  175. package/styles/drop-down-list/icons/_tailwind.scss +14 -14
  176. package/styles/drop-down-list/material-dark.css +5 -0
  177. package/styles/drop-down-list/material.css +5 -0
  178. package/styles/drop-down-list/material3-dark.css +6 -1
  179. package/styles/drop-down-list/material3-dark.scss +1 -1
  180. package/styles/drop-down-list/material3.css +6 -1
  181. package/styles/drop-down-list/material3.scss +1 -1
  182. package/styles/drop-down-list/tailwind-dark.css +5 -0
  183. package/styles/drop-down-list/tailwind.css +5 -0
  184. package/styles/drop-down-tree/_all.scss +2 -2
  185. package/styles/drop-down-tree/_bds-definition.scss +67 -61
  186. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +73 -72
  187. package/styles/drop-down-tree/_bootstrap-definition.scss +72 -71
  188. package/styles/drop-down-tree/_bootstrap4-definition.scss +74 -72
  189. package/styles/drop-down-tree/_bootstrap5-definition.scss +66 -60
  190. package/styles/drop-down-tree/_bootstrap5.3-definition.scss +66 -0
  191. package/styles/drop-down-tree/_fabric-dark-definition.scss +73 -72
  192. package/styles/drop-down-tree/_fabric-definition.scss +73 -72
  193. package/styles/drop-down-tree/_fluent-definition.scss +71 -66
  194. package/styles/drop-down-tree/_fluent2-definition.scss +76 -0
  195. package/styles/drop-down-tree/_fusionnew-definition.scss +61 -60
  196. package/styles/drop-down-tree/_highcontrast-definition.scss +73 -72
  197. package/styles/drop-down-tree/_highcontrast-light-definition.scss +73 -72
  198. package/styles/drop-down-tree/_layout.scss +1389 -1423
  199. package/styles/drop-down-tree/_material-dark-definition.scss +74 -73
  200. package/styles/drop-down-tree/_material-definition.scss +74 -73
  201. package/styles/drop-down-tree/_material3-definition.scss +75 -76
  202. package/styles/drop-down-tree/_tailwind-definition.scss +67 -61
  203. package/styles/drop-down-tree/_theme.scss +130 -132
  204. package/styles/drop-down-tree/bootstrap-dark.css +20 -21
  205. package/styles/drop-down-tree/bootstrap.css +20 -21
  206. package/styles/drop-down-tree/bootstrap4.css +21 -22
  207. package/styles/drop-down-tree/bootstrap5-dark.css +20 -19
  208. package/styles/drop-down-tree/bootstrap5.css +20 -19
  209. package/styles/drop-down-tree/fabric-dark.css +20 -21
  210. package/styles/drop-down-tree/fabric.css +20 -21
  211. package/styles/drop-down-tree/fluent-dark.css +28 -27
  212. package/styles/drop-down-tree/fluent.css +28 -27
  213. package/styles/drop-down-tree/fluent2.css +1671 -0
  214. package/styles/drop-down-tree/fluent2.scss +9 -0
  215. package/styles/drop-down-tree/highcontrast-light.css +20 -21
  216. package/styles/drop-down-tree/highcontrast.css +20 -15
  217. package/styles/drop-down-tree/icons/_bds.scss +11 -11
  218. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  219. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  220. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  221. package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -0
  222. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
  223. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  224. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  225. package/styles/drop-down-tree/icons/_fluent.scss +11 -11
  226. package/styles/drop-down-tree/icons/_fluent2.scss +14 -0
  227. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
  228. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  229. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  230. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  231. package/styles/drop-down-tree/icons/_material.scss +11 -11
  232. package/styles/drop-down-tree/icons/_material3.scss +11 -11
  233. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
  234. package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
  235. package/styles/drop-down-tree/material-dark.css +28 -34
  236. package/styles/drop-down-tree/material.css +31 -40
  237. package/styles/drop-down-tree/material3-dark.css +17 -21
  238. package/styles/drop-down-tree/material3-dark.scss +1 -1
  239. package/styles/drop-down-tree/material3.css +17 -21
  240. package/styles/drop-down-tree/material3.scss +1 -1
  241. package/styles/drop-down-tree/tailwind-dark.css +29 -20
  242. package/styles/drop-down-tree/tailwind.css +29 -20
  243. package/styles/fabric-dark.css +72 -300
  244. package/styles/fabric-dark.scss +28 -8
  245. package/styles/fabric.css +72 -306
  246. package/styles/fabric.scss +28 -8
  247. package/styles/fluent-dark.css +80 -315
  248. package/styles/fluent-dark.scss +28 -8
  249. package/styles/fluent.css +80 -315
  250. package/styles/fluent.scss +28 -8
  251. package/styles/fluent2.css +4541 -0
  252. package/styles/fluent2.scss +28 -0
  253. package/styles/highcontrast-light.css +72 -300
  254. package/styles/highcontrast-light.scss +28 -8
  255. package/styles/highcontrast.css +72 -300
  256. package/styles/highcontrast.scss +28 -8
  257. package/styles/list-box/_all.scss +2 -2
  258. package/styles/list-box/_bds-definition.scss +136 -136
  259. package/styles/list-box/_bigger.scss +164 -0
  260. package/styles/list-box/_bootstrap-dark-definition.scss +124 -126
  261. package/styles/list-box/_bootstrap-definition.scss +119 -119
  262. package/styles/list-box/_bootstrap4-definition.scss +124 -124
  263. package/styles/list-box/_bootstrap5-definition.scss +121 -120
  264. package/styles/list-box/_bootstrap5.3-definition.scss +121 -0
  265. package/styles/list-box/_fabric-dark-definition.scss +124 -126
  266. package/styles/list-box/_fabric-definition.scss +119 -119
  267. package/styles/list-box/_fluent-definition.scss +120 -120
  268. package/styles/list-box/_fluent2-definition.scss +119 -0
  269. package/styles/list-box/_fusionnew-definition.scss +111 -111
  270. package/styles/list-box/_highcontrast-definition.scss +119 -119
  271. package/styles/list-box/_highcontrast-light-definition.scss +124 -126
  272. package/styles/list-box/_layout.scss +455 -546
  273. package/styles/list-box/_material-dark-definition.scss +124 -126
  274. package/styles/list-box/_material-definition.scss +119 -119
  275. package/styles/list-box/_material3-definition.scss +119 -119
  276. package/styles/list-box/_tailwind-definition.scss +119 -119
  277. package/styles/list-box/_theme.scss +314 -382
  278. package/styles/list-box/bootstrap-dark.css +43 -215
  279. package/styles/list-box/bootstrap.css +43 -221
  280. package/styles/list-box/bootstrap4.css +42 -264
  281. package/styles/list-box/bootstrap5-dark.css +43 -215
  282. package/styles/list-box/bootstrap5.css +43 -215
  283. package/styles/list-box/fabric-dark.css +43 -215
  284. package/styles/list-box/fabric.css +43 -221
  285. package/styles/list-box/fluent-dark.css +43 -221
  286. package/styles/list-box/fluent.css +43 -221
  287. package/styles/list-box/fluent2.css +1896 -0
  288. package/styles/list-box/fluent2.scss +5 -0
  289. package/styles/list-box/highcontrast-light.css +43 -215
  290. package/styles/list-box/highcontrast.css +43 -221
  291. package/styles/list-box/icons/_bds.scss +25 -25
  292. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  293. package/styles/list-box/icons/_bootstrap.scss +25 -25
  294. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  295. package/styles/list-box/icons/_bootstrap5.3.scss +25 -0
  296. package/styles/list-box/icons/_bootstrap5.scss +25 -25
  297. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  298. package/styles/list-box/icons/_fabric.scss +25 -25
  299. package/styles/list-box/icons/_fluent.scss +25 -25
  300. package/styles/list-box/icons/_fluent2.scss +25 -0
  301. package/styles/list-box/icons/_fusionnew.scss +25 -25
  302. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  303. package/styles/list-box/icons/_highcontrast.scss +25 -25
  304. package/styles/list-box/icons/_material-dark.scss +25 -25
  305. package/styles/list-box/icons/_material.scss +25 -25
  306. package/styles/list-box/icons/_material3.scss +25 -25
  307. package/styles/list-box/icons/_tailwind-dark.scss +25 -25
  308. package/styles/list-box/icons/_tailwind.scss +25 -25
  309. package/styles/list-box/material-dark.css +43 -215
  310. package/styles/list-box/material.css +43 -221
  311. package/styles/list-box/material3-dark.css +44 -216
  312. package/styles/list-box/material3-dark.scss +1 -1
  313. package/styles/list-box/material3.css +44 -216
  314. package/styles/list-box/material3.scss +1 -1
  315. package/styles/list-box/tailwind-dark.css +45 -233
  316. package/styles/list-box/tailwind.css +45 -233
  317. package/styles/material-dark.css +80 -325
  318. package/styles/material-dark.scss +28 -8
  319. package/styles/material.css +84 -354
  320. package/styles/material.scss +28 -8
  321. package/styles/material3-dark.css +79 -337
  322. package/styles/material3-dark.scss +28 -8
  323. package/styles/material3.css +79 -337
  324. package/styles/material3.scss +28 -8
  325. package/styles/mention/_all.scss +1 -1
  326. package/styles/mention/_bds-definition.scss +1 -1
  327. package/styles/mention/_bootstrap-dark-definition.scss +3 -3
  328. package/styles/mention/_bootstrap-definition.scss +3 -3
  329. package/styles/mention/_bootstrap4-definition.scss +3 -3
  330. package/styles/mention/_bootstrap5-definition.scss +1 -1
  331. package/styles/mention/_bootstrap5.3-definition.scss +1 -0
  332. package/styles/mention/_fabric-dark-definition.scss +2 -2
  333. package/styles/mention/_fabric-definition.scss +3 -3
  334. package/styles/mention/_fluent-definition.scss +1 -1
  335. package/styles/mention/_fluent2-definition.scss +1 -0
  336. package/styles/mention/_fusionnew-definition.scss +1 -1
  337. package/styles/mention/_highcontrast-definition.scss +3 -3
  338. package/styles/mention/_highcontrast-light-definition.scss +3 -3
  339. package/styles/mention/_layout.scss +6 -6
  340. package/styles/mention/_material-dark-definition.scss +3 -3
  341. package/styles/mention/_material-definition.scss +3 -3
  342. package/styles/mention/_material3-definition.scss +1 -1
  343. package/styles/mention/_tailwind-definition.scss +1 -1
  344. package/styles/mention/fluent2.css +1106 -0
  345. package/styles/mention/fluent2.scss +6 -0
  346. package/styles/mention/material3-dark.css +1 -1
  347. package/styles/mention/material3-dark.scss +1 -1
  348. package/styles/mention/material3.css +1 -1
  349. package/styles/mention/material3.scss +1 -1
  350. package/styles/multi-select/_all.scss +2 -2
  351. package/styles/multi-select/_bds-definition.scss +235 -235
  352. package/styles/multi-select/_bootstrap-dark-definition.scss +207 -207
  353. package/styles/multi-select/_bootstrap-definition.scss +196 -196
  354. package/styles/multi-select/_bootstrap4-definition.scss +278 -278
  355. package/styles/multi-select/_bootstrap5-definition.scss +230 -230
  356. package/styles/multi-select/_bootstrap5.3-definition.scss +230 -0
  357. package/styles/multi-select/_fabric-dark-definition.scss +192 -192
  358. package/styles/multi-select/_fabric-definition.scss +183 -183
  359. package/styles/multi-select/_fluent-definition.scss +246 -246
  360. package/styles/multi-select/_fluent2-definition.scss +237 -0
  361. package/styles/multi-select/_fusionnew-definition.scss +227 -227
  362. package/styles/multi-select/_highcontrast-definition.scss +303 -303
  363. package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
  364. package/styles/multi-select/_layout.scss +2200 -2206
  365. package/styles/multi-select/_material-dark-definition.scss +241 -241
  366. package/styles/multi-select/_material-definition.scss +234 -234
  367. package/styles/multi-select/_material3-definition.scss +231 -246
  368. package/styles/multi-select/_tailwind-definition.scss +235 -235
  369. package/styles/multi-select/_theme.scss +585 -586
  370. package/styles/multi-select/bootstrap-dark.css +4 -10
  371. package/styles/multi-select/bootstrap.css +4 -10
  372. package/styles/multi-select/bootstrap4.css +4 -10
  373. package/styles/multi-select/bootstrap5-dark.css +4 -11
  374. package/styles/multi-select/bootstrap5.css +4 -11
  375. package/styles/multi-select/fabric-dark.css +4 -10
  376. package/styles/multi-select/fabric.css +4 -10
  377. package/styles/multi-select/fluent-dark.css +4 -11
  378. package/styles/multi-select/fluent.css +4 -11
  379. package/styles/multi-select/fluent2.css +2590 -0
  380. package/styles/multi-select/fluent2.scss +9 -0
  381. package/styles/multi-select/highcontrast-light.css +4 -10
  382. package/styles/multi-select/highcontrast.css +4 -10
  383. package/styles/multi-select/icons/_bds.scss +26 -26
  384. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  385. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  386. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  387. package/styles/multi-select/icons/_bootstrap5.3.scss +26 -0
  388. package/styles/multi-select/icons/_bootstrap5.scss +26 -26
  389. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  390. package/styles/multi-select/icons/_fabric.scss +26 -26
  391. package/styles/multi-select/icons/_fluent.scss +55 -55
  392. package/styles/multi-select/icons/_fluent2.scss +692 -0
  393. package/styles/multi-select/icons/_fusionnew.scss +26 -26
  394. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  395. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  396. package/styles/multi-select/icons/_material-dark.scss +693 -693
  397. package/styles/multi-select/icons/_material.scss +693 -693
  398. package/styles/multi-select/icons/_material3.scss +695 -692
  399. package/styles/multi-select/icons/_tailwind.scss +26 -26
  400. package/styles/multi-select/material-dark.css +4 -10
  401. package/styles/multi-select/material.css +5 -11
  402. package/styles/multi-select/material3-dark.css +15 -18
  403. package/styles/multi-select/material3-dark.scss +1 -1
  404. package/styles/multi-select/material3.css +15 -18
  405. package/styles/multi-select/material3.scss +1 -1
  406. package/styles/multi-select/tailwind-dark.css +4 -10
  407. package/styles/multi-select/tailwind.css +4 -10
  408. package/styles/tailwind-dark.css +83 -319
  409. package/styles/tailwind-dark.scss +28 -8
  410. package/styles/tailwind.css +83 -319
  411. package/styles/tailwind.scss +28 -8
  412. package/.eslintrc.json +0 -260
  413. package/dist/ej2-dropdowns.min.js +0 -10
  414. package/dist/global/ej2-dropdowns.min.js +0 -11
  415. package/dist/global/ej2-dropdowns.min.js.map +0 -1
  416. package/dist/global/index.d.ts +0 -14
  417. package/tslint.json +0 -111
@@ -242,53 +242,53 @@ function revertHighlightSearch(content) {
242
242
  }
243
243
  }
244
244
 
245
- var __assign = (undefined && undefined.__assign) || function () {
246
- __assign = Object.assign || function(t) {
247
- for (var s, i = 1, n = arguments.length; i < n; i++) {
248
- s = arguments[i];
249
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
250
- t[p] = s[p];
251
- }
252
- return t;
253
- };
254
- return __assign.apply(this, arguments);
255
- };
256
- var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
257
- return new (P || (P = Promise))(function (resolve, reject) {
258
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
259
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
260
- function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
261
- step((generator = generator.apply(thisArg, _arguments || [])).next());
262
- });
263
- };
264
- var __generator = (undefined && undefined.__generator) || function (thisArg, body) {
265
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
266
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
267
- function verb(n) { return function (v) { return step([n, v]); }; }
268
- function step(op) {
269
- if (f) throw new TypeError("Generator is already executing.");
270
- while (_) try {
271
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
272
- if (y = 0, t) op = [op[0] & 2, t.value];
273
- switch (op[0]) {
274
- case 0: case 1: t = op; break;
275
- case 4: _.label++; return { value: op[1], done: false };
276
- case 5: _.label++; y = op[1]; op = [0]; continue;
277
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
278
- default:
279
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
280
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
281
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
282
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
283
- if (t[2]) _.ops.pop();
284
- _.trys.pop(); continue;
285
- }
286
- op = body.call(thisArg, _);
287
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
288
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
289
- }
290
- };
291
- var VirtualScroll = /** @__PURE__ @class */ (function () {
245
+ var __assign = (undefined && undefined.__assign) || function () {
246
+ __assign = Object.assign || function(t) {
247
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
248
+ s = arguments[i];
249
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
250
+ t[p] = s[p];
251
+ }
252
+ return t;
253
+ };
254
+ return __assign.apply(this, arguments);
255
+ };
256
+ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
257
+ return new (P || (P = Promise))(function (resolve, reject) {
258
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
259
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
260
+ function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
261
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
262
+ });
263
+ };
264
+ var __generator = (undefined && undefined.__generator) || function (thisArg, body) {
265
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
266
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
267
+ function verb(n) { return function (v) { return step([n, v]); }; }
268
+ function step(op) {
269
+ if (f) throw new TypeError("Generator is already executing.");
270
+ while (_) try {
271
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
272
+ if (y = 0, t) op = [op[0] & 2, t.value];
273
+ switch (op[0]) {
274
+ case 0: case 1: t = op; break;
275
+ case 4: _.label++; return { value: op[1], done: false };
276
+ case 5: _.label++; y = op[1]; op = [0]; continue;
277
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
278
+ default:
279
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
280
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
281
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
282
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
283
+ if (t[2]) _.ops.pop();
284
+ _.trys.pop(); continue;
285
+ }
286
+ op = body.call(thisArg, _);
287
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
288
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
289
+ }
290
+ };
291
+ var VirtualScroll = /** @class */ (function () {
292
292
  function VirtualScroll(parent) {
293
293
  var _this = this;
294
294
  this.sentinelInfo = {
@@ -794,26 +794,26 @@ var VirtualScroll = /** @__PURE__ @class */ (function () {
794
794
  * Common source
795
795
  */
796
796
 
797
- var __extends = (undefined && undefined.__extends) || (function () {
798
- var extendStatics = function (d, b) {
799
- extendStatics = Object.setPrototypeOf ||
800
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
801
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
802
- return extendStatics(d, b);
803
- };
804
- return function (d, b) {
805
- extendStatics(d, b);
806
- function __() { this.constructor = d; }
807
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
808
- };
809
- })();
810
- var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
811
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
812
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
813
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
814
- return c > 3 && r && Object.defineProperty(target, key, r), r;
815
- };
816
- var FieldSettings = /** @__PURE__ @class */ (function (_super) {
797
+ var __extends = (undefined && undefined.__extends) || (function () {
798
+ var extendStatics = function (d, b) {
799
+ extendStatics = Object.setPrototypeOf ||
800
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
801
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
802
+ return extendStatics(d, b);
803
+ };
804
+ return function (d, b) {
805
+ extendStatics(d, b);
806
+ function __() { this.constructor = d; }
807
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
808
+ };
809
+ })();
810
+ var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
811
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
812
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
813
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
814
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
815
+ };
816
+ var FieldSettings = /** @class */ (function (_super) {
817
817
  __extends(FieldSettings, _super);
818
818
  function FieldSettings() {
819
819
  return _super !== null && _super.apply(this, arguments) || this;
@@ -863,7 +863,7 @@ var HIDE_GROUPLIST = 'e-hide-group-header';
863
863
  /**
864
864
  * DropDownBase component will generate the list items based on given data and act as base class to drop-down related components
865
865
  */
866
- var DropDownBase = /** @__PURE__ @class */ (function (_super) {
866
+ var DropDownBase = /** @class */ (function (_super) {
867
867
  __extends(DropDownBase, _super);
868
868
  /**
869
869
  * * Constructor for DropDownBase class
@@ -875,7 +875,6 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
875
875
  function DropDownBase(options, element) {
876
876
  var _this = _super.call(this, options, element) || this;
877
877
  _this.preventChange = false;
878
- _this.isAngular = false;
879
878
  _this.isPreventChange = false;
880
879
  _this.isDynamicDataChange = false;
881
880
  _this.addedNewItem = false;
@@ -1940,10 +1939,14 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
1940
1939
  }
1941
1940
  };
1942
1941
  DropDownBase.prototype.updateGroupFixedHeader = function (element, target) {
1943
- this.fixedHeaderElement.innerHTML = element.innerHTML;
1944
- this.fixedHeaderElement.style.position = 'fixed';
1945
- this.fixedHeaderElement.style.top = this.list.parentElement.offsetTop + this.list.offsetTop + 'px';
1946
- this.fixedHeaderElement.style.display = 'block';
1942
+ if (this.fixedHeaderElement) {
1943
+ if (!isNullOrUndefined(element.innerHTML)) {
1944
+ this.fixedHeaderElement.innerHTML = element.innerHTML;
1945
+ }
1946
+ this.fixedHeaderElement.style.position = 'fixed';
1947
+ this.fixedHeaderElement.style.top = (this.list.parentElement.offsetTop + this.list.offsetTop) - window.scrollY + 'px';
1948
+ this.fixedHeaderElement.style.display = 'block';
1949
+ }
1947
1950
  };
1948
1951
  DropDownBase.prototype.getValidLi = function () {
1949
1952
  if (this.isVirtualizationEnabled) {
@@ -2134,9 +2137,12 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2134
2137
  * @param {string | number | boolean} value - Specifies given value.
2135
2138
  * @returns {number} Returns the index of the item.
2136
2139
  */
2137
- DropDownBase.prototype.getIndexByValueFilter = function (value) {
2140
+ DropDownBase.prototype.getIndexByValueFilter = function (value, ulElement) {
2138
2141
  var index;
2139
- var listItems = this.renderItems(this.dataSource, this.fields).querySelectorAll('li' + ':not(.e-list-group-item)');
2142
+ if (!ulElement) {
2143
+ return null;
2144
+ }
2145
+ var listItems = ulElement.querySelectorAll('li' + ':not(.e-list-group-item)');
2140
2146
  if (listItems) {
2141
2147
  for (var i = 0; i < listItems.length; i++) {
2142
2148
  if (!isNullOrUndefined(value) && listItems[i].getAttribute('data-value') === value.toString()) {
@@ -2301,6 +2307,7 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2301
2307
  var group = this.element.querySelector('select>optgroup');
2302
2308
  if ((this.fields.groupBy || !isNullOrUndefined(group)) && !this.isGroupChecking) {
2303
2309
  EventHandler.add(this.list, 'scroll', this.setFloatingHeader, this);
2310
+ EventHandler.add(document, 'scroll', this.updateGroupFixedHeader, this);
2304
2311
  }
2305
2312
  if (this.getModuleName() === 'dropdownbase') {
2306
2313
  if (this.element.getAttribute('tabindex')) {
@@ -2554,12 +2561,15 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2554
2561
  * @returns {void}
2555
2562
  */
2556
2563
  DropDownBase.prototype.destroy = function () {
2557
- if (document.body.contains(this.list)) {
2558
- EventHandler.remove(this.list, 'scroll', this.setFloatingHeader);
2559
- if (!isNullOrUndefined(this.rippleFun)) {
2560
- this.rippleFun();
2564
+ if (document) {
2565
+ EventHandler.remove(document, 'scroll', this.updateGroupFixedHeader);
2566
+ if (document.body.contains(this.list)) {
2567
+ EventHandler.remove(this.list, 'scroll', this.setFloatingHeader);
2568
+ if (!isNullOrUndefined(this.rippleFun)) {
2569
+ this.rippleFun();
2570
+ }
2571
+ detach(this.list);
2561
2572
  }
2562
- detach(this.list);
2563
2573
  }
2564
2574
  this.liCollections = null;
2565
2575
  this.ulElement = null;
@@ -2638,25 +2648,25 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2638
2648
  * export all modules from current location
2639
2649
  */
2640
2650
 
2641
- var __extends$1 = (undefined && undefined.__extends) || (function () {
2642
- var extendStatics = function (d, b) {
2643
- extendStatics = Object.setPrototypeOf ||
2644
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2645
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2646
- return extendStatics(d, b);
2647
- };
2648
- return function (d, b) {
2649
- extendStatics(d, b);
2650
- function __() { this.constructor = d; }
2651
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2652
- };
2653
- })();
2654
- var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
2655
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2656
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
2657
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
2658
- return c > 3 && r && Object.defineProperty(target, key, r), r;
2659
- };
2651
+ var __extends$1 = (undefined && undefined.__extends) || (function () {
2652
+ var extendStatics = function (d, b) {
2653
+ extendStatics = Object.setPrototypeOf ||
2654
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2655
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2656
+ return extendStatics(d, b);
2657
+ };
2658
+ return function (d, b) {
2659
+ extendStatics(d, b);
2660
+ function __() { this.constructor = d; }
2661
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2662
+ };
2663
+ })();
2664
+ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
2665
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2666
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
2667
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
2668
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
2669
+ };
2660
2670
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
2661
2671
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
2662
2672
  // don't use space in classnames
@@ -2705,7 +2715,7 @@ var inputObject = {
2705
2715
  * dropDownListObj.appendTo("#list");
2706
2716
  * ```
2707
2717
  */
2708
- var DropDownList = /** @__PURE__ @class */ (function (_super) {
2718
+ var DropDownList = /** @class */ (function (_super) {
2709
2719
  __extends$1(DropDownList, _super);
2710
2720
  /**
2711
2721
  * * Constructor for creating the DropDownList component.
@@ -2718,11 +2728,16 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
2718
2728
  var _this = _super.call(this, options, element) || this;
2719
2729
  _this.isListSearched = false;
2720
2730
  _this.preventChange = false;
2721
- _this.isAngular = false;
2722
2731
  _this.isTouched = false;
2723
2732
  _this.IsScrollerAtEnd = function () {
2724
2733
  return this.list && this.list.scrollTop + this.list.clientHeight >= this.list.scrollHeight;
2725
2734
  };
2735
+ _this.removeAllChildren = function (element) {
2736
+ while (element.children[0]) {
2737
+ this.removeAllChildren(element.children[0]);
2738
+ element.removeChild(element.children[0]);
2739
+ }
2740
+ };
2726
2741
  return _this;
2727
2742
  }
2728
2743
  /**
@@ -3612,7 +3627,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
3612
3627
  }
3613
3628
  if (this.allowFiltering && !this.enableVirtualization && this.getModuleName() !== 'autocomplete') {
3614
3629
  var value_4 = this.getItemData().value;
3615
- var filterIndex = this.getIndexByValueFilter(value_4);
3630
+ var filterIndex = this.getIndexByValueFilter(value_4, this.actionCompleteData.ulElement);
3616
3631
  if (!isNullOrUndefined(filterIndex)) {
3617
3632
  this.activeIndex = filterIndex;
3618
3633
  }
@@ -3955,7 +3970,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
3955
3970
  value = 'null';
3956
3971
  }
3957
3972
  if (this.allowFiltering && !this.enableVirtualization && this.getModuleName() !== 'autocomplete') {
3958
- var filterIndex = this.getIndexByValueFilter(value);
3973
+ var filterIndex = this.getIndexByValueFilter(value, this.actionCompleteData.ulElement);
3959
3974
  if (!isNullOrUndefined(filterIndex)) {
3960
3975
  this.activeIndex = filterIndex;
3961
3976
  }
@@ -3997,7 +4012,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
3997
4012
  this.inputElement.style.display = 'block';
3998
4013
  }
3999
4014
  if (!isNullOrUndefined(dataItem.value) && !this.enableVirtualization && this.allowFiltering) {
4000
- this.activeIndex = this.getIndexByValueFilter(dataItem.value);
4015
+ this.activeIndex = this.getIndexByValueFilter(dataItem.value, this.actionCompleteData.ulElement);
4001
4016
  }
4002
4017
  var clearIcon = dropDownListClasses.clearIcon;
4003
4018
  var isFilterElement = this.isFiltering() && this.filterInput && (this.getModuleName() === 'combobox');
@@ -5465,6 +5480,14 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5465
5480
  this.keyboardEvent = null;
5466
5481
  EventHandler.remove(document, 'mousedown', this.onDocumentClick);
5467
5482
  this.isActive = false;
5483
+ if (this.getModuleName() === 'dropdownlist') {
5484
+ Input.destroy({
5485
+ element: this.filterInput,
5486
+ floatLabelType: this.floatLabelType,
5487
+ properties: { placeholder: this.filterBarPlaceholder },
5488
+ buttons: this.clearIconElement,
5489
+ }, this.clearIconElement);
5490
+ }
5468
5491
  this.filterInputObj = null;
5469
5492
  this.isDropDownClick = false;
5470
5493
  this.preventAutoFill = false;
@@ -5496,6 +5519,11 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5496
5519
  }
5497
5520
  if (this.allowFiltering && this.getModuleName() === 'dropdownlist') {
5498
5521
  this.filterInput.removeAttribute('aria-activedescendant');
5522
+ this.filterInput.removeAttribute('aria-disabled');
5523
+ this.filterInput.removeAttribute('role');
5524
+ this.filterInput.removeAttribute('autocomplete');
5525
+ this.filterInput.removeAttribute('autocapitalize');
5526
+ this.filterInput.removeAttribute('spellcheck');
5499
5527
  }
5500
5528
  this.filterInput = null;
5501
5529
  }
@@ -5923,8 +5951,8 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5923
5951
  DropDownList.prototype.onPropertyChanged = function (newProp, oldProp) {
5924
5952
  var _this = this;
5925
5953
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
5926
- if (!isNullOrUndefined(newProp.dataSource) && !this.isTouched && (isNullOrUndefined(newProp.value) && isNullOrUndefined(newProp.index)) && !isNullOrUndefined(this.preselectedIndex)) {
5927
- newProp.index = this.preselectedIndex;
5954
+ if (!isNullOrUndefined(newProp.dataSource) && !this.isTouched && (isNullOrUndefined(newProp.value) && isNullOrUndefined(newProp.index)) && !isNullOrUndefined(this.preselectedIndex) && !isNullOrUndefined(this.index)) {
5955
+ newProp.index = this.index;
5928
5956
  }
5929
5957
  if (!isNullOrUndefined(newProp.value) || !isNullOrUndefined(newProp.index)) {
5930
5958
  this.isTouched = true;
@@ -6445,10 +6473,12 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
6445
6473
  this.inputWrapper.container.parentElement.insertBefore(this.element, this.inputWrapper.container);
6446
6474
  detach(this.inputWrapper.container);
6447
6475
  }
6448
- this.hiddenElement = null;
6476
+ delete this.hiddenElement;
6449
6477
  this.filterInput = null;
6450
- this.inputWrapper = null;
6451
6478
  this.keyboardModule = null;
6479
+ if (!isNullOrUndefined(this.ulElement)) {
6480
+ this.removeAllChildren(this.ulElement);
6481
+ }
6452
6482
  this.ulElement = null;
6453
6483
  this.list = null;
6454
6484
  this.clearIconElement = null;
@@ -6472,10 +6502,12 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
6472
6502
  Input.destroy({
6473
6503
  element: this.inputElement,
6474
6504
  floatLabelType: this.floatLabelType,
6475
- properties: this.properties
6505
+ properties: this.properties,
6506
+ buttons: this.inputWrapper.container.querySelectorAll('.e-input-group-icon')[0],
6476
6507
  }, this.clearButton);
6477
6508
  this.clearButton = null;
6478
6509
  this.inputElement = null;
6510
+ this.inputWrapper = null;
6479
6511
  _super.prototype.destroy.call(this);
6480
6512
  };
6481
6513
  /* eslint-disable valid-jsdoc, jsdoc/require-returns-description */
@@ -6608,25 +6640,25 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
6608
6640
  * export all modules from current location
6609
6641
  */
6610
6642
 
6611
- var __extends$2 = (undefined && undefined.__extends) || (function () {
6612
- var extendStatics = function (d, b) {
6613
- extendStatics = Object.setPrototypeOf ||
6614
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6615
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6616
- return extendStatics(d, b);
6617
- };
6618
- return function (d, b) {
6619
- extendStatics(d, b);
6620
- function __() { this.constructor = d; }
6621
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
6622
- };
6623
- })();
6624
- var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
6625
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
6626
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
6627
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6628
- return c > 3 && r && Object.defineProperty(target, key, r), r;
6629
- };
6643
+ var __extends$2 = (undefined && undefined.__extends) || (function () {
6644
+ var extendStatics = function (d, b) {
6645
+ extendStatics = Object.setPrototypeOf ||
6646
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6647
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6648
+ return extendStatics(d, b);
6649
+ };
6650
+ return function (d, b) {
6651
+ extendStatics(d, b);
6652
+ function __() { this.constructor = d; }
6653
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
6654
+ };
6655
+ })();
6656
+ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
6657
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
6658
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
6659
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6660
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6661
+ };
6630
6662
  var RTL = 'e-rtl';
6631
6663
  var DROPDOWNTREE = 'e-ddt';
6632
6664
  var HIDDENELEMENT = 'e-ddt-hidden';
@@ -6676,7 +6708,7 @@ var OVERFLOW_VIEW = 'e-overflow';
6676
6708
  var SHOW_TEXT = 'e-show-text';
6677
6709
  var TOTAL_COUNT_WRAPPER = 'e-total-count';
6678
6710
  var REMAIN_COUNT = 'e-wrap-count';
6679
- var Fields = /** @__PURE__ @class */ (function (_super) {
6711
+ var Fields = /** @class */ (function (_super) {
6680
6712
  __extends$2(Fields, _super);
6681
6713
  function Fields() {
6682
6714
  return _super !== null && _super.apply(this, arguments) || this;
@@ -6728,7 +6760,7 @@ var Fields = /** @__PURE__ @class */ (function (_super) {
6728
6760
  ], Fields.prototype, "value", void 0);
6729
6761
  return Fields;
6730
6762
  }(ChildProperty));
6731
- var TreeSettings = /** @__PURE__ @class */ (function (_super) {
6763
+ var TreeSettings = /** @class */ (function (_super) {
6732
6764
  __extends$2(TreeSettings, _super);
6733
6765
  function TreeSettings() {
6734
6766
  return _super !== null && _super.apply(this, arguments) || this;
@@ -6756,7 +6788,7 @@ var TreeSettings = /** @__PURE__ @class */ (function (_super) {
6756
6788
  * ddtObj.appendTo("#tree");
6757
6789
  * ```
6758
6790
  */
6759
- var DropDownTree = /** @__PURE__ @class */ (function (_super) {
6791
+ var DropDownTree = /** @class */ (function (_super) {
6760
6792
  __extends$2(DropDownTree, _super);
6761
6793
  function DropDownTree(options, element) {
6762
6794
  var _this = _super.call(this, options, element) || this;
@@ -8571,6 +8603,8 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8571
8603
  if (this.showCheckBox) {
8572
8604
  return;
8573
8605
  }
8606
+ var eventArgs = this.getEventArgs(args);
8607
+ this.trigger('select', eventArgs);
8574
8608
  var selectedText;
8575
8609
  if (args.isInteracted) {
8576
8610
  var id = getValue('id', args.nodeData).toString();
@@ -8598,8 +8632,6 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8598
8632
  this.setMultiSelect();
8599
8633
  }
8600
8634
  }
8601
- var eventArgs = this.getEventArgs(args);
8602
- this.trigger('select', eventArgs);
8603
8635
  if (this.isValueChange && !this.changeOnBlur) {
8604
8636
  this.triggerChangeEvent(this.keyEventArgs);
8605
8637
  this.isValueChange = false;
@@ -9917,25 +9949,25 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
9917
9949
  * export all modules from current location
9918
9950
  */
9919
9951
 
9920
- var __extends$3 = (undefined && undefined.__extends) || (function () {
9921
- var extendStatics = function (d, b) {
9922
- extendStatics = Object.setPrototypeOf ||
9923
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9924
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9925
- return extendStatics(d, b);
9926
- };
9927
- return function (d, b) {
9928
- extendStatics(d, b);
9929
- function __() { this.constructor = d; }
9930
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9931
- };
9932
- })();
9933
- var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
9934
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
9935
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9936
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
9937
- return c > 3 && r && Object.defineProperty(target, key, r), r;
9938
- };
9952
+ var __extends$3 = (undefined && undefined.__extends) || (function () {
9953
+ var extendStatics = function (d, b) {
9954
+ extendStatics = Object.setPrototypeOf ||
9955
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9956
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9957
+ return extendStatics(d, b);
9958
+ };
9959
+ return function (d, b) {
9960
+ extendStatics(d, b);
9961
+ function __() { this.constructor = d; }
9962
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9963
+ };
9964
+ })();
9965
+ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
9966
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
9967
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9968
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
9969
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
9970
+ };
9939
9971
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
9940
9972
  /// <reference path='../drop-down-list/drop-down-list-model.d.ts'/>
9941
9973
  var SPINNER_CLASS = 'e-atc-spinner-icon';
@@ -9960,7 +9992,7 @@ var inputObject$1 = {
9960
9992
  * games.appendTo("#list");
9961
9993
  * ```
9962
9994
  */
9963
- var ComboBox = /** @__PURE__ @class */ (function (_super) {
9995
+ var ComboBox = /** @class */ (function (_super) {
9964
9996
  __extends$3(ComboBox, _super);
9965
9997
  /**
9966
9998
  * *Constructor for creating the component
@@ -10912,25 +10944,25 @@ var ComboBox = /** @__PURE__ @class */ (function (_super) {
10912
10944
  * export all modules from current location
10913
10945
  */
10914
10946
 
10915
- var __extends$4 = (undefined && undefined.__extends) || (function () {
10916
- var extendStatics = function (d, b) {
10917
- extendStatics = Object.setPrototypeOf ||
10918
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10919
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
10920
- return extendStatics(d, b);
10921
- };
10922
- return function (d, b) {
10923
- extendStatics(d, b);
10924
- function __() { this.constructor = d; }
10925
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
10926
- };
10927
- })();
10928
- var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
10929
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
10930
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
10931
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
10932
- return c > 3 && r && Object.defineProperty(target, key, r), r;
10933
- };
10947
+ var __extends$4 = (undefined && undefined.__extends) || (function () {
10948
+ var extendStatics = function (d, b) {
10949
+ extendStatics = Object.setPrototypeOf ||
10950
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10951
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
10952
+ return extendStatics(d, b);
10953
+ };
10954
+ return function (d, b) {
10955
+ extendStatics(d, b);
10956
+ function __() { this.constructor = d; }
10957
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
10958
+ };
10959
+ })();
10960
+ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
10961
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
10962
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
10963
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
10964
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
10965
+ };
10934
10966
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
10935
10967
  /// <reference path='../combo-box/combo-box-model.d.ts'/>
10936
10968
  dropDownListClasses.root = 'e-autocomplete';
@@ -10946,7 +10978,7 @@ dropDownListClasses.icon = 'e-input-group-icon e-ddl-icon e-search-icon';
10946
10978
  * atcObj.appendTo("#list");
10947
10979
  * ```
10948
10980
  */
10949
- var AutoComplete = /** @__PURE__ @class */ (function (_super) {
10981
+ var AutoComplete = /** @class */ (function (_super) {
10950
10982
  __extends$4(AutoComplete, _super);
10951
10983
  /**
10952
10984
  * * Constructor for creating the widget
@@ -11474,6 +11506,7 @@ function createFloatLabel(overAllWrapper, searchWrapper, element, inputElement,
11474
11506
  element.id = id;
11475
11507
  if (!isNullOrUndefined(element.id) && element.id !== '') {
11476
11508
  floatLabelElement.id = 'label_' + element.id.replace(/ /g, '_');
11509
+ floatLabelElement.setAttribute('for', element.id);
11477
11510
  attributes(inputElement, { 'aria-labelledby': floatLabelElement.id });
11478
11511
  }
11479
11512
  if (!isNullOrUndefined(inputElement.placeholder) && inputElement.placeholder !== '') {
@@ -11601,25 +11634,25 @@ function encodePlaceholder(placeholder) {
11601
11634
  }
11602
11635
  /* eslint-enable valid-jsdoc */
11603
11636
 
11604
- var __extends$5 = (undefined && undefined.__extends) || (function () {
11605
- var extendStatics = function (d, b) {
11606
- extendStatics = Object.setPrototypeOf ||
11607
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
11608
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11609
- return extendStatics(d, b);
11610
- };
11611
- return function (d, b) {
11612
- extendStatics(d, b);
11613
- function __() { this.constructor = d; }
11614
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
11615
- };
11616
- })();
11617
- var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
11618
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
11619
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
11620
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
11621
- return c > 3 && r && Object.defineProperty(target, key, r), r;
11622
- };
11637
+ var __extends$5 = (undefined && undefined.__extends) || (function () {
11638
+ var extendStatics = function (d, b) {
11639
+ extendStatics = Object.setPrototypeOf ||
11640
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
11641
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11642
+ return extendStatics(d, b);
11643
+ };
11644
+ return function (d, b) {
11645
+ extendStatics(d, b);
11646
+ function __() { this.constructor = d; }
11647
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
11648
+ };
11649
+ })();
11650
+ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
11651
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
11652
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
11653
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
11654
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
11655
+ };
11623
11656
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
11624
11657
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
11625
11658
  var FOCUS = 'e-input-focus';
@@ -11676,7 +11709,7 @@ var FILTERINPUT = 'e-input-filter';
11676
11709
  * </script>
11677
11710
  * ```
11678
11711
  */
11679
- var MultiSelect = /** @__PURE__ @class */ (function (_super) {
11712
+ var MultiSelect = /** @class */ (function (_super) {
11680
11713
  __extends$5(MultiSelect, _super);
11681
11714
  /**
11682
11715
  * Constructor for creating the DropDownList widget.
@@ -16189,7 +16222,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
16189
16222
  }
16190
16223
  if (this.mode === 'CheckBox') {
16191
16224
  this.updateDelimView();
16192
- if (!(isRemoveAll || this.isSelectAll) && this.isSelectAllTarget) {
16225
+ if ((!(isRemoveAll || this.isSelectAll) && this.isSelectAllTarget) || (this.isSelectAll && this.isSelectAllTarget)) {
16193
16226
  this.updateDelimeter(this.delimiterChar, event);
16194
16227
  }
16195
16228
  this.refreshInputHight();
@@ -17331,7 +17364,7 @@ var FOCUS$1 = 'e-input-focus';
17331
17364
  /**
17332
17365
  * The Multiselect enable CheckBoxSelection call this inject module.
17333
17366
  */
17334
- var CheckBoxSelection = /** @__PURE__ @class */ (function () {
17367
+ var CheckBoxSelection = /** @class */ (function () {
17335
17368
  function CheckBoxSelection(parent) {
17336
17369
  this.activeLi = [];
17337
17370
  this.activeEle = [];
@@ -17843,31 +17876,31 @@ var CheckBoxSelection = /** @__PURE__ @class */ (function () {
17843
17876
  * export all modules from current location
17844
17877
  */
17845
17878
 
17846
- var __extends$6 = (undefined && undefined.__extends) || (function () {
17847
- var extendStatics = function (d, b) {
17848
- extendStatics = Object.setPrototypeOf ||
17849
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17850
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17851
- return extendStatics(d, b);
17852
- };
17853
- return function (d, b) {
17854
- extendStatics(d, b);
17855
- function __() { this.constructor = d; }
17856
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17857
- };
17858
- })();
17859
- var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17860
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17861
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17862
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17863
- return c > 3 && r && Object.defineProperty(target, key, r), r;
17864
- };
17879
+ var __extends$6 = (undefined && undefined.__extends) || (function () {
17880
+ var extendStatics = function (d, b) {
17881
+ extendStatics = Object.setPrototypeOf ||
17882
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17883
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17884
+ return extendStatics(d, b);
17885
+ };
17886
+ return function (d, b) {
17887
+ extendStatics(d, b);
17888
+ function __() { this.constructor = d; }
17889
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17890
+ };
17891
+ })();
17892
+ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17893
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17894
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17895
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17896
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
17897
+ };
17865
17898
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
17866
17899
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
17867
17900
  /**
17868
17901
  * Defines the Selection settings of List Box.
17869
17902
  */
17870
- var SelectionSettings = /** @__PURE__ @class */ (function (_super) {
17903
+ var SelectionSettings = /** @class */ (function (_super) {
17871
17904
  __extends$6(SelectionSettings, _super);
17872
17905
  function SelectionSettings() {
17873
17906
  return _super !== null && _super.apply(this, arguments) || this;
@@ -17889,7 +17922,7 @@ var SelectionSettings = /** @__PURE__ @class */ (function (_super) {
17889
17922
  /**
17890
17923
  * Defines the toolbar settings of List Box.
17891
17924
  */
17892
- var ToolbarSettings = /** @__PURE__ @class */ (function (_super) {
17925
+ var ToolbarSettings = /** @class */ (function (_super) {
17893
17926
  __extends$6(ToolbarSettings, _super);
17894
17927
  function ToolbarSettings() {
17895
17928
  return _super !== null && _super.apply(this, arguments) || this;
@@ -17922,7 +17955,7 @@ var ToolbarSettings = /** @__PURE__ @class */ (function (_super) {
17922
17955
  * </script>
17923
17956
  * ```
17924
17957
  */
17925
- var ListBox = /** @__PURE__ @class */ (function (_super) {
17958
+ var ListBox = /** @class */ (function (_super) {
17926
17959
  __extends$6(ListBox, _super);
17927
17960
  /**
17928
17961
  * Constructor for creating the ListBox component.
@@ -20377,30 +20410,30 @@ var listBoxClasses = {
20377
20410
  * export all modules from current location
20378
20411
  */
20379
20412
 
20380
- var __extends$7 = (undefined && undefined.__extends) || (function () {
20381
- var extendStatics = function (d, b) {
20382
- extendStatics = Object.setPrototypeOf ||
20383
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
20384
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20385
- return extendStatics(d, b);
20386
- };
20387
- return function (d, b) {
20388
- extendStatics(d, b);
20389
- function __() { this.constructor = d; }
20390
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
20391
- };
20392
- })();
20393
- var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
20394
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
20395
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
20396
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
20397
- return c > 3 && r && Object.defineProperty(target, key, r), r;
20398
- };
20413
+ var __extends$7 = (undefined && undefined.__extends) || (function () {
20414
+ var extendStatics = function (d, b) {
20415
+ extendStatics = Object.setPrototypeOf ||
20416
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
20417
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20418
+ return extendStatics(d, b);
20419
+ };
20420
+ return function (d, b) {
20421
+ extendStatics(d, b);
20422
+ function __() { this.constructor = d; }
20423
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
20424
+ };
20425
+ })();
20426
+ var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
20427
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
20428
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
20429
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
20430
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
20431
+ };
20399
20432
  /**
20400
20433
  * The Mention component is used to list someone or something based on user input in textarea, input,
20401
20434
  * or any other editable element from which the user can select.
20402
20435
  */
20403
- var Mention = /** @__PURE__ @class */ (function (_super) {
20436
+ var Mention = /** @class */ (function (_super) {
20404
20437
  __extends$7(Mention, _super);
20405
20438
  /**
20406
20439
  * * Constructor for creating the widget