@syncfusion/ej2-dropdowns 23.1.44 → 23.2.4-13895

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 (288) hide show
  1. package/CHANGELOG.md +2114 -2092
  2. package/{README.md → ReadMe.md} +217 -217
  3. package/dist/ej2-dropdowns.min.js +1 -10
  4. package/dist/ej2-dropdowns.umd.min.js +1 -10
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +79 -68
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +221 -209
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +1 -10
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/auto-complete/auto-complete.ts +615 -0
  14. package/dist/ts/combo-box/combo-box.ts +1028 -0
  15. package/dist/ts/common/highlight-search.ts +57 -0
  16. package/dist/ts/common/incremental-search.ts +131 -0
  17. package/dist/ts/common/interface.ts +72 -0
  18. package/dist/ts/common/virtual-scroll.ts +354 -0
  19. package/dist/ts/drop-down-base/drop-down-base.ts +1864 -0
  20. package/dist/ts/drop-down-list/drop-down-list.ts +3954 -0
  21. package/dist/ts/drop-down-tree/drop-down-tree.ts +3741 -0
  22. package/dist/ts/list-box/list-box.ts +2753 -0
  23. package/dist/ts/mention/mention.ts +1857 -0
  24. package/dist/ts/multi-select/checkbox-selection.ts +547 -0
  25. package/dist/ts/multi-select/float-label.ts +176 -0
  26. package/dist/ts/multi-select/interface.ts +70 -0
  27. package/dist/ts/multi-select/multi-select.ts +4880 -0
  28. package/helpers/e2e/autocomplete.js +13 -13
  29. package/helpers/e2e/combobox.js +13 -13
  30. package/helpers/e2e/dropdownlist.js +13 -13
  31. package/helpers/e2e/index.js +3 -3
  32. package/helpers/e2e/listboxHelper.js +13 -13
  33. package/helpers/e2e/multiselect.js +13 -13
  34. package/license +2 -2
  35. package/package.json +80 -80
  36. package/src/auto-complete/auto-complete-model.d.ts +188 -188
  37. package/src/auto-complete/auto-complete.d.ts +12 -12
  38. package/src/auto-complete/auto-complete.js +21 -21
  39. package/src/combo-box/combo-box-model.d.ts +224 -224
  40. package/src/combo-box/combo-box.d.ts +27 -27
  41. package/src/combo-box/combo-box.js +29 -29
  42. package/src/common/virtual-scroll.js +46 -46
  43. package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
  44. package/src/drop-down-base/drop-down-base.d.ts +15 -15
  45. package/src/drop-down-base/drop-down-base.js +20 -20
  46. package/src/drop-down-list/drop-down-list-model.d.ts +202 -202
  47. package/src/drop-down-list/drop-down-list.d.ts +4 -4
  48. package/src/drop-down-list/drop-down-list.js +24 -21
  49. package/src/drop-down-tree/drop-down-tree-model.d.ts +468 -468
  50. package/src/drop-down-tree/drop-down-tree.d.ts +0 -1
  51. package/src/drop-down-tree/drop-down-tree.js +19 -27
  52. package/src/list-box/list-box-model.d.ts +193 -193
  53. package/src/list-box/list-box.d.ts +5 -2
  54. package/src/list-box/list-box.js +38 -21
  55. package/src/mention/mention-model.d.ts +261 -261
  56. package/src/mention/mention.js +19 -19
  57. package/src/multi-select/multi-select-model.d.ts +512 -512
  58. package/src/multi-select/multi-select.js +19 -19
  59. package/styles/auto-complete/_all.scss +1 -1
  60. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  61. package/styles/auto-complete/_bootstrap-definition.scss +2 -2
  62. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  63. package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
  64. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  65. package/styles/auto-complete/_fabric-definition.scss +2 -2
  66. package/styles/auto-complete/_fluent-definition.scss +2 -2
  67. package/styles/auto-complete/_fusionnew-definition.scss +2 -2
  68. package/styles/auto-complete/_highcontrast-definition.scss +2 -2
  69. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  70. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  71. package/styles/auto-complete/_material-definition.scss +2 -2
  72. package/styles/auto-complete/_material3-definition.scss +2 -2
  73. package/styles/auto-complete/_tailwind-definition.scss +2 -2
  74. package/styles/auto-complete/material3-dark.scss +1 -1
  75. package/styles/auto-complete/material3.scss +1 -1
  76. package/styles/bootstrap-dark.css +5 -0
  77. package/styles/bootstrap5-dark.css +2 -1
  78. package/styles/bootstrap5.css +2 -1
  79. package/styles/combo-box/_all.scss +1 -1
  80. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  81. package/styles/combo-box/_bootstrap-definition.scss +2 -2
  82. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  83. package/styles/combo-box/_bootstrap5-definition.scss +2 -2
  84. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  85. package/styles/combo-box/_fabric-definition.scss +2 -2
  86. package/styles/combo-box/_fluent-definition.scss +2 -2
  87. package/styles/combo-box/_fusionnew-definition.scss +2 -2
  88. package/styles/combo-box/_highcontrast-definition.scss +2 -2
  89. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  90. package/styles/combo-box/_material-dark-definition.scss +2 -2
  91. package/styles/combo-box/_material-definition.scss +2 -2
  92. package/styles/combo-box/_material3-definition.scss +2 -2
  93. package/styles/combo-box/_tailwind-definition.scss +2 -2
  94. package/styles/combo-box/material3-dark.scss +1 -1
  95. package/styles/combo-box/material3.scss +1 -1
  96. package/styles/drop-down-base/_all.scss +2 -2
  97. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
  98. package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
  99. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
  100. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
  101. package/styles/drop-down-base/_definition.scss +23 -23
  102. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
  103. package/styles/drop-down-base/_fabric-definition.scss +84 -84
  104. package/styles/drop-down-base/_fluent-definition.scss +121 -121
  105. package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
  106. package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
  107. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
  108. package/styles/drop-down-base/_layout.scss +195 -195
  109. package/styles/drop-down-base/_material-dark-definition.scss +86 -86
  110. package/styles/drop-down-base/_material-definition.scss +85 -85
  111. package/styles/drop-down-base/_material3-definition.scss +87 -87
  112. package/styles/drop-down-base/_tailwind-definition.scss +129 -129
  113. package/styles/drop-down-base/_theme.scss +391 -391
  114. package/styles/drop-down-base/material3-dark.scss +1 -1
  115. package/styles/drop-down-base/material3.scss +1 -1
  116. package/styles/drop-down-list/_all.scss +3 -3
  117. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  118. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  119. package/styles/drop-down-list/_bootstrap4-definition.scss +202 -202
  120. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
  121. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
  122. package/styles/drop-down-list/_fabric-definition.scss +124 -124
  123. package/styles/drop-down-list/_fluent-definition.scss +185 -185
  124. package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
  125. package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
  126. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
  127. package/styles/drop-down-list/_layout.scss +310 -310
  128. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  129. package/styles/drop-down-list/_material-definition.scss +167 -167
  130. package/styles/drop-down-list/_material3-definition.scss +180 -180
  131. package/styles/drop-down-list/_tailwind-definition.scss +134 -134
  132. package/styles/drop-down-list/_theme.scss +10 -10
  133. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  134. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  135. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  136. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
  137. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  138. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  139. package/styles/drop-down-list/icons/_fluent.scss +14 -14
  140. package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
  141. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  142. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  143. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  144. package/styles/drop-down-list/icons/_material.scss +14 -14
  145. package/styles/drop-down-list/icons/_material3.scss +14 -14
  146. package/styles/drop-down-list/icons/_tailwind.scss +14 -14
  147. package/styles/drop-down-list/material3-dark.scss +1 -1
  148. package/styles/drop-down-list/material3.scss +1 -1
  149. package/styles/drop-down-tree/_all.scss +2 -2
  150. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +71 -71
  151. package/styles/drop-down-tree/_bootstrap-definition.scss +70 -70
  152. package/styles/drop-down-tree/_bootstrap4-definition.scss +71 -71
  153. package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -59
  154. package/styles/drop-down-tree/_fabric-dark-definition.scss +71 -71
  155. package/styles/drop-down-tree/_fabric-definition.scss +71 -71
  156. package/styles/drop-down-tree/_fluent-definition.scss +65 -65
  157. package/styles/drop-down-tree/_fusionnew-definition.scss +59 -59
  158. package/styles/drop-down-tree/_highcontrast-definition.scss +71 -71
  159. package/styles/drop-down-tree/_highcontrast-light-definition.scss +71 -71
  160. package/styles/drop-down-tree/_layout.scss +1418 -1412
  161. package/styles/drop-down-tree/_material-dark-definition.scss +72 -72
  162. package/styles/drop-down-tree/_material-definition.scss +72 -72
  163. package/styles/drop-down-tree/_material3-definition.scss +76 -76
  164. package/styles/drop-down-tree/_tailwind-definition.scss +61 -61
  165. package/styles/drop-down-tree/_theme.scss +132 -132
  166. package/styles/drop-down-tree/fluent-dark.css +2 -0
  167. package/styles/drop-down-tree/fluent.css +2 -0
  168. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  169. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  170. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  171. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
  172. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  173. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  174. package/styles/drop-down-tree/icons/_fluent.scss +11 -11
  175. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
  176. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  177. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  178. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  179. package/styles/drop-down-tree/icons/_material.scss +11 -11
  180. package/styles/drop-down-tree/icons/_material3.scss +11 -11
  181. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
  182. package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
  183. package/styles/drop-down-tree/material3-dark.scss +1 -1
  184. package/styles/drop-down-tree/material3.scss +1 -1
  185. package/styles/fabric-dark.css +5 -0
  186. package/styles/fluent-dark.css +4 -1
  187. package/styles/fluent.css +4 -1
  188. package/styles/highcontrast.css +5 -0
  189. package/styles/list-box/_all.scss +2 -2
  190. package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
  191. package/styles/list-box/_bootstrap-definition.scss +119 -119
  192. package/styles/list-box/_bootstrap4-definition.scss +124 -124
  193. package/styles/list-box/_bootstrap5-definition.scss +120 -120
  194. package/styles/list-box/_fabric-dark-definition.scss +126 -126
  195. package/styles/list-box/_fabric-definition.scss +119 -119
  196. package/styles/list-box/_fluent-definition.scss +120 -120
  197. package/styles/list-box/_fusionnew-definition.scss +111 -111
  198. package/styles/list-box/_highcontrast-definition.scss +119 -119
  199. package/styles/list-box/_highcontrast-light-definition.scss +126 -126
  200. package/styles/list-box/_layout.scss +542 -542
  201. package/styles/list-box/_material-dark-definition.scss +126 -126
  202. package/styles/list-box/_material-definition.scss +119 -119
  203. package/styles/list-box/_material3-definition.scss +119 -119
  204. package/styles/list-box/_tailwind-definition.scss +119 -119
  205. package/styles/list-box/_theme.scss +382 -382
  206. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  207. package/styles/list-box/icons/_bootstrap.scss +25 -25
  208. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  209. package/styles/list-box/icons/_bootstrap5.scss +25 -25
  210. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  211. package/styles/list-box/icons/_fabric.scss +25 -25
  212. package/styles/list-box/icons/_fluent.scss +25 -25
  213. package/styles/list-box/icons/_fusionnew.scss +25 -25
  214. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  215. package/styles/list-box/icons/_highcontrast.scss +25 -25
  216. package/styles/list-box/icons/_material-dark.scss +25 -25
  217. package/styles/list-box/icons/_material.scss +25 -25
  218. package/styles/list-box/icons/_material3.scss +25 -25
  219. package/styles/list-box/icons/_tailwind-dark.scss +25 -25
  220. package/styles/list-box/icons/_tailwind.scss +25 -25
  221. package/styles/list-box/material3-dark.scss +1 -1
  222. package/styles/list-box/material3.scss +1 -1
  223. package/styles/material3-dark.scss +1 -1
  224. package/styles/material3.scss +1 -1
  225. package/styles/mention/_all.scss +1 -1
  226. package/styles/mention/_bootstrap-dark-definition.scss +3 -3
  227. package/styles/mention/_bootstrap-definition.scss +3 -3
  228. package/styles/mention/_bootstrap4-definition.scss +3 -3
  229. package/styles/mention/_bootstrap5-definition.scss +1 -1
  230. package/styles/mention/_fabric-dark-definition.scss +2 -2
  231. package/styles/mention/_fabric-definition.scss +3 -3
  232. package/styles/mention/_fluent-definition.scss +1 -1
  233. package/styles/mention/_fusionnew-definition.scss +1 -1
  234. package/styles/mention/_highcontrast-definition.scss +3 -3
  235. package/styles/mention/_highcontrast-light-definition.scss +3 -3
  236. package/styles/mention/_layout.scss +6 -6
  237. package/styles/mention/_material-dark-definition.scss +3 -3
  238. package/styles/mention/_material-definition.scss +3 -3
  239. package/styles/mention/_material3-definition.scss +1 -1
  240. package/styles/mention/_tailwind-definition.scss +1 -1
  241. package/styles/mention/material3-dark.scss +1 -1
  242. package/styles/mention/material3.scss +1 -1
  243. package/styles/multi-select/_all.scss +2 -2
  244. package/styles/multi-select/_bootstrap-dark-definition.scss +203 -198
  245. package/styles/multi-select/_bootstrap-definition.scss +192 -192
  246. package/styles/multi-select/_bootstrap4-definition.scss +278 -278
  247. package/styles/multi-select/_bootstrap5-definition.scss +230 -229
  248. package/styles/multi-select/_fabric-dark-definition.scss +192 -187
  249. package/styles/multi-select/_fabric-definition.scss +183 -183
  250. package/styles/multi-select/_fluent-definition.scss +241 -240
  251. package/styles/multi-select/_fusionnew-definition.scss +227 -227
  252. package/styles/multi-select/_highcontrast-definition.scss +303 -298
  253. package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
  254. package/styles/multi-select/_layout.scss +2199 -2199
  255. package/styles/multi-select/_material-dark-definition.scss +230 -230
  256. package/styles/multi-select/_material-definition.scss +223 -223
  257. package/styles/multi-select/_material3-definition.scss +246 -246
  258. package/styles/multi-select/_tailwind-definition.scss +235 -234
  259. package/styles/multi-select/_theme.scss +586 -586
  260. package/styles/multi-select/bootstrap-dark.css +5 -0
  261. package/styles/multi-select/bootstrap5-dark.css +2 -1
  262. package/styles/multi-select/bootstrap5.css +2 -1
  263. package/styles/multi-select/fabric-dark.css +5 -0
  264. package/styles/multi-select/fluent-dark.css +2 -1
  265. package/styles/multi-select/fluent.css +2 -1
  266. package/styles/multi-select/highcontrast.css +5 -0
  267. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  268. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  269. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  270. package/styles/multi-select/icons/_bootstrap5.scss +26 -26
  271. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  272. package/styles/multi-select/icons/_fabric.scss +26 -26
  273. package/styles/multi-select/icons/_fluent.scss +55 -55
  274. package/styles/multi-select/icons/_fusionnew.scss +26 -26
  275. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  276. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  277. package/styles/multi-select/icons/_material-dark.scss +693 -693
  278. package/styles/multi-select/icons/_material.scss +693 -693
  279. package/styles/multi-select/icons/_material3.scss +692 -692
  280. package/styles/multi-select/icons/_tailwind.scss +26 -26
  281. package/styles/multi-select/material3-dark.scss +1 -1
  282. package/styles/multi-select/material3.scss +1 -1
  283. package/styles/multi-select/tailwind-dark.css +2 -1
  284. package/styles/multi-select/tailwind.css +2 -1
  285. package/styles/tailwind-dark.css +2 -1
  286. package/styles/tailwind.css +2 -1
  287. package/.eslintrc.json +0 -260
  288. package/tslint.json +0 -111
@@ -195,52 +195,52 @@ function revertHighlightSearch(content) {
195
195
  }
196
196
  }
197
197
 
198
- var __assign = (undefined && undefined.__assign) || function () {
199
- __assign = Object.assign || function(t) {
200
- for (var s, i = 1, n = arguments.length; i < n; i++) {
201
- s = arguments[i];
202
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
203
- t[p] = s[p];
204
- }
205
- return t;
206
- };
207
- return __assign.apply(this, arguments);
208
- };
209
- var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
210
- return new (P || (P = Promise))(function (resolve, reject) {
211
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
212
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
213
- function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
214
- step((generator = generator.apply(thisArg, _arguments || [])).next());
215
- });
216
- };
217
- var __generator = (undefined && undefined.__generator) || function (thisArg, body) {
218
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
219
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
220
- function verb(n) { return function (v) { return step([n, v]); }; }
221
- function step(op) {
222
- if (f) throw new TypeError("Generator is already executing.");
223
- while (_) try {
224
- 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;
225
- if (y = 0, t) op = [op[0] & 2, t.value];
226
- switch (op[0]) {
227
- case 0: case 1: t = op; break;
228
- case 4: _.label++; return { value: op[1], done: false };
229
- case 5: _.label++; y = op[1]; op = [0]; continue;
230
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
231
- default:
232
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
233
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
234
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
235
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
236
- if (t[2]) _.ops.pop();
237
- _.trys.pop(); continue;
238
- }
239
- op = body.call(thisArg, _);
240
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
241
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
242
- }
243
- };
198
+ var __assign = (undefined && undefined.__assign) || function () {
199
+ __assign = Object.assign || function(t) {
200
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
201
+ s = arguments[i];
202
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
203
+ t[p] = s[p];
204
+ }
205
+ return t;
206
+ };
207
+ return __assign.apply(this, arguments);
208
+ };
209
+ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
210
+ return new (P || (P = Promise))(function (resolve, reject) {
211
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
212
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
213
+ function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
214
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
215
+ });
216
+ };
217
+ var __generator = (undefined && undefined.__generator) || function (thisArg, body) {
218
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
219
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
220
+ function verb(n) { return function (v) { return step([n, v]); }; }
221
+ function step(op) {
222
+ if (f) throw new TypeError("Generator is already executing.");
223
+ while (_) try {
224
+ 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;
225
+ if (y = 0, t) op = [op[0] & 2, t.value];
226
+ switch (op[0]) {
227
+ case 0: case 1: t = op; break;
228
+ case 4: _.label++; return { value: op[1], done: false };
229
+ case 5: _.label++; y = op[1]; op = [0]; continue;
230
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
231
+ default:
232
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
233
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
234
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
235
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
236
+ if (t[2]) _.ops.pop();
237
+ _.trys.pop(); continue;
238
+ }
239
+ op = body.call(thisArg, _);
240
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
241
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
242
+ }
243
+ };
244
244
  var VirtualScroll = /** @__PURE__ @class */ (function () {
245
245
  function VirtualScroll(parent) {
246
246
  var _this = this;
@@ -575,25 +575,25 @@ var VirtualScroll = /** @__PURE__ @class */ (function () {
575
575
  * Common source
576
576
  */
577
577
 
578
- var __extends = (undefined && undefined.__extends) || (function () {
579
- var extendStatics = function (d, b) {
580
- extendStatics = Object.setPrototypeOf ||
581
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
582
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
583
- return extendStatics(d, b);
584
- };
585
- return function (d, b) {
586
- extendStatics(d, b);
587
- function __() { this.constructor = d; }
588
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
589
- };
590
- })();
591
- var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
592
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
593
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
594
- 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;
595
- return c > 3 && r && Object.defineProperty(target, key, r), r;
596
- };
578
+ var __extends = (undefined && undefined.__extends) || (function () {
579
+ var extendStatics = function (d, b) {
580
+ extendStatics = Object.setPrototypeOf ||
581
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
582
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
583
+ return extendStatics(d, b);
584
+ };
585
+ return function (d, b) {
586
+ extendStatics(d, b);
587
+ function __() { this.constructor = d; }
588
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
589
+ };
590
+ })();
591
+ var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
592
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
593
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
594
+ 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;
595
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
596
+ };
597
597
  var FieldSettings = /** @__PURE__ @class */ (function (_super) {
598
598
  __extends(FieldSettings, _super);
599
599
  function FieldSettings() {
@@ -2021,25 +2021,25 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2021
2021
  * export all modules from current location
2022
2022
  */
2023
2023
 
2024
- var __extends$1 = (undefined && undefined.__extends) || (function () {
2025
- var extendStatics = function (d, b) {
2026
- extendStatics = Object.setPrototypeOf ||
2027
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2028
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2029
- return extendStatics(d, b);
2030
- };
2031
- return function (d, b) {
2032
- extendStatics(d, b);
2033
- function __() { this.constructor = d; }
2034
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2035
- };
2036
- })();
2037
- var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
2038
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2039
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
2040
- 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;
2041
- return c > 3 && r && Object.defineProperty(target, key, r), r;
2042
- };
2024
+ var __extends$1 = (undefined && undefined.__extends) || (function () {
2025
+ var extendStatics = function (d, b) {
2026
+ extendStatics = Object.setPrototypeOf ||
2027
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2028
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2029
+ return extendStatics(d, b);
2030
+ };
2031
+ return function (d, b) {
2032
+ extendStatics(d, b);
2033
+ function __() { this.constructor = d; }
2034
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2035
+ };
2036
+ })();
2037
+ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
2038
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2039
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
2040
+ 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;
2041
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
2042
+ };
2043
2043
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
2044
2044
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
2045
2045
  // don't use space in classnames
@@ -2819,6 +2819,9 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
2819
2819
  DropDownList.prototype.updateUpDownAction = function (e, isVirtualKeyAction) {
2820
2820
  if (this.allowFiltering && !this.enableVirtualization && this.getModuleName() !== 'autocomplete') {
2821
2821
  var value_1 = this.getItemData().value;
2822
+ if (isNullOrUndefined(value_1)) {
2823
+ value_1 = 'null';
2824
+ }
2822
2825
  var filterIndex = this.getIndexByValue(value_1);
2823
2826
  if (!isNullOrUndefined(filterIndex)) {
2824
2827
  this.activeIndex = filterIndex;
@@ -3047,7 +3050,6 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
3047
3050
  if (this.inputWrapper.container.classList.contains(dropDownListClasses.inputFocus) || this.isPopupOpen) {
3048
3051
  this.isDocumentClick = true;
3049
3052
  var isActive = this.isRequested;
3050
- this.isInteracted = false;
3051
3053
  this.hidePopup(e);
3052
3054
  if (!isActive) {
3053
3055
  this.onFocusOut();
@@ -5403,6 +5405,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5403
5405
  this.isSelectCustom = false;
5404
5406
  this.clearAll(e);
5405
5407
  }
5408
+ this.isInteracted = false;
5406
5409
  };
5407
5410
  /* eslint-disable valid-jsdoc, jsdoc/require-param */
5408
5411
  /**
@@ -5647,25 +5650,25 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5647
5650
  * export all modules from current location
5648
5651
  */
5649
5652
 
5650
- var __extends$2 = (undefined && undefined.__extends) || (function () {
5651
- var extendStatics = function (d, b) {
5652
- extendStatics = Object.setPrototypeOf ||
5653
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5654
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5655
- return extendStatics(d, b);
5656
- };
5657
- return function (d, b) {
5658
- extendStatics(d, b);
5659
- function __() { this.constructor = d; }
5660
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
5661
- };
5662
- })();
5663
- var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
5664
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
5665
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5666
- 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;
5667
- return c > 3 && r && Object.defineProperty(target, key, r), r;
5668
- };
5653
+ var __extends$2 = (undefined && undefined.__extends) || (function () {
5654
+ var extendStatics = function (d, b) {
5655
+ extendStatics = Object.setPrototypeOf ||
5656
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5657
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5658
+ return extendStatics(d, b);
5659
+ };
5660
+ return function (d, b) {
5661
+ extendStatics(d, b);
5662
+ function __() { this.constructor = d; }
5663
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
5664
+ };
5665
+ })();
5666
+ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
5667
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
5668
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5669
+ 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;
5670
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
5671
+ };
5669
5672
  var RTL = 'e-rtl';
5670
5673
  var DROPDOWNTREE = 'e-ddt';
5671
5674
  var HIDDENELEMENT = 'e-ddt-hidden';
@@ -5894,7 +5897,6 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
5894
5897
  var popupDiv = select('#' + this.element.id + '_popup', document);
5895
5898
  detach(popupDiv ? popupDiv : isTree.parentElement);
5896
5899
  }
5897
- this.ensureAutoCheck();
5898
5900
  if (this.element.tagName === 'INPUT') {
5899
5901
  this.inputEle = this.element;
5900
5902
  if (isNullOrUndefined(this.inputEle.getAttribute('role'))) {
@@ -5978,11 +5980,6 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
5978
5980
  || this.noRecordsTemplate || this.customTemplate;
5979
5981
  this.renderComplete();
5980
5982
  };
5981
- DropDownTree.prototype.ensureAutoCheck = function () {
5982
- if (this.allowFiltering && this.treeSettings.autoCheck) {
5983
- this.setProperties({ treeSettings: { autoCheck: false } }, true);
5984
- }
5985
- };
5986
5983
  DropDownTree.prototype.hideCheckAll = function (flag) {
5987
5984
  var checkAllEle = !isNullOrUndefined(this.popupEle) ? this.popupEle.querySelector('.' + CHECKALLPARENT) : null;
5988
5985
  if (!isNullOrUndefined(checkAllEle)) {
@@ -8172,7 +8169,6 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8172
8169
  DropDownTree.prototype.updateTreeSettings = function (prop) {
8173
8170
  var value = Object.keys(prop.treeSettings)[0];
8174
8171
  if (value === 'autoCheck') {
8175
- this.ensureAutoCheck();
8176
8172
  this.treeObj.autoCheck = this.treeSettings.autoCheck;
8177
8173
  }
8178
8174
  else if (value === 'loadOnDemand') {
@@ -8293,7 +8289,6 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8293
8289
  this.destroyFilter();
8294
8290
  }
8295
8291
  }
8296
- this.ensureAutoCheck();
8297
8292
  };
8298
8293
  DropDownTree.prototype.updateFilterPlaceHolder = function () {
8299
8294
  if (this.filterObj) {
@@ -8868,25 +8863,25 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8868
8863
  * export all modules from current location
8869
8864
  */
8870
8865
 
8871
- var __extends$3 = (undefined && undefined.__extends) || (function () {
8872
- var extendStatics = function (d, b) {
8873
- extendStatics = Object.setPrototypeOf ||
8874
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8875
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8876
- return extendStatics(d, b);
8877
- };
8878
- return function (d, b) {
8879
- extendStatics(d, b);
8880
- function __() { this.constructor = d; }
8881
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8882
- };
8883
- })();
8884
- var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
8885
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
8886
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
8887
- 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;
8888
- return c > 3 && r && Object.defineProperty(target, key, r), r;
8889
- };
8866
+ var __extends$3 = (undefined && undefined.__extends) || (function () {
8867
+ var extendStatics = function (d, b) {
8868
+ extendStatics = Object.setPrototypeOf ||
8869
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8870
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8871
+ return extendStatics(d, b);
8872
+ };
8873
+ return function (d, b) {
8874
+ extendStatics(d, b);
8875
+ function __() { this.constructor = d; }
8876
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8877
+ };
8878
+ })();
8879
+ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
8880
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
8881
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
8882
+ 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;
8883
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
8884
+ };
8890
8885
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
8891
8886
  /// <reference path='../drop-down-list/drop-down-list-model.d.ts'/>
8892
8887
  var SPINNER_CLASS = 'e-atc-spinner-icon';
@@ -9736,25 +9731,25 @@ var ComboBox = /** @__PURE__ @class */ (function (_super) {
9736
9731
  * export all modules from current location
9737
9732
  */
9738
9733
 
9739
- var __extends$4 = (undefined && undefined.__extends) || (function () {
9740
- var extendStatics = function (d, b) {
9741
- extendStatics = Object.setPrototypeOf ||
9742
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9743
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9744
- return extendStatics(d, b);
9745
- };
9746
- return function (d, b) {
9747
- extendStatics(d, b);
9748
- function __() { this.constructor = d; }
9749
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9750
- };
9751
- })();
9752
- var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
9753
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
9754
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9755
- 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;
9756
- return c > 3 && r && Object.defineProperty(target, key, r), r;
9757
- };
9734
+ var __extends$4 = (undefined && undefined.__extends) || (function () {
9735
+ var extendStatics = function (d, b) {
9736
+ extendStatics = Object.setPrototypeOf ||
9737
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9738
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9739
+ return extendStatics(d, b);
9740
+ };
9741
+ return function (d, b) {
9742
+ extendStatics(d, b);
9743
+ function __() { this.constructor = d; }
9744
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9745
+ };
9746
+ })();
9747
+ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
9748
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
9749
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9750
+ 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;
9751
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
9752
+ };
9758
9753
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
9759
9754
  /// <reference path='../combo-box/combo-box-model.d.ts'/>
9760
9755
  dropDownListClasses.root = 'e-autocomplete';
@@ -10363,25 +10358,25 @@ function encodePlaceholder(placeholder) {
10363
10358
  }
10364
10359
  /* eslint-enable valid-jsdoc */
10365
10360
 
10366
- var __extends$5 = (undefined && undefined.__extends) || (function () {
10367
- var extendStatics = function (d, b) {
10368
- extendStatics = Object.setPrototypeOf ||
10369
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10370
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
10371
- return extendStatics(d, b);
10372
- };
10373
- return function (d, b) {
10374
- extendStatics(d, b);
10375
- function __() { this.constructor = d; }
10376
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
10377
- };
10378
- })();
10379
- var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
10380
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
10381
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
10382
- 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;
10383
- return c > 3 && r && Object.defineProperty(target, key, r), r;
10384
- };
10361
+ var __extends$5 = (undefined && undefined.__extends) || (function () {
10362
+ var extendStatics = function (d, b) {
10363
+ extendStatics = Object.setPrototypeOf ||
10364
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10365
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
10366
+ return extendStatics(d, b);
10367
+ };
10368
+ return function (d, b) {
10369
+ extendStatics(d, b);
10370
+ function __() { this.constructor = d; }
10371
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
10372
+ };
10373
+ })();
10374
+ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
10375
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
10376
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
10377
+ 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;
10378
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
10379
+ };
10385
10380
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
10386
10381
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
10387
10382
  var FOCUS = 'e-input-focus';
@@ -15258,25 +15253,25 @@ var CheckBoxSelection = /** @__PURE__ @class */ (function () {
15258
15253
  * export all modules from current location
15259
15254
  */
15260
15255
 
15261
- var __extends$6 = (undefined && undefined.__extends) || (function () {
15262
- var extendStatics = function (d, b) {
15263
- extendStatics = Object.setPrototypeOf ||
15264
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15265
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15266
- return extendStatics(d, b);
15267
- };
15268
- return function (d, b) {
15269
- extendStatics(d, b);
15270
- function __() { this.constructor = d; }
15271
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15272
- };
15273
- })();
15274
- var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15275
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15276
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15277
- 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;
15278
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15279
- };
15256
+ var __extends$6 = (undefined && undefined.__extends) || (function () {
15257
+ var extendStatics = function (d, b) {
15258
+ extendStatics = Object.setPrototypeOf ||
15259
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15260
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15261
+ return extendStatics(d, b);
15262
+ };
15263
+ return function (d, b) {
15264
+ extendStatics(d, b);
15265
+ function __() { this.constructor = d; }
15266
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15267
+ };
15268
+ })();
15269
+ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15270
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15271
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15272
+ 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;
15273
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15274
+ };
15280
15275
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
15281
15276
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
15282
15277
  /**
@@ -15669,6 +15664,7 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
15669
15664
  });
15670
15665
  };
15671
15666
  ListBox.prototype.triggerDrag = function (args) {
15667
+ var _this = this;
15672
15668
  var scrollParent;
15673
15669
  var boundRect;
15674
15670
  var scrollMoved = 36;
@@ -15688,6 +15684,7 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
15688
15684
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
15689
15685
  var event = args.event;
15690
15686
  var wrapper;
15687
+ this.stopTimer();
15691
15688
  if (args.target && (args.target.classList.contains('e-listbox-wrapper') || args.target.classList.contains('e-list-item')
15692
15689
  || args.target.classList.contains('e-filter-parent') || args.target.classList.contains('e-input-group')
15693
15690
  || args.target.closest('.e-list-item'))) {
@@ -15707,10 +15704,10 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
15707
15704
  }
15708
15705
  boundRect = scrollParent.getBoundingClientRect();
15709
15706
  if ((boundRect.y + scrollParent.offsetHeight) - (event.clientY + scrollMoved) < 1) {
15710
- scrollParent.scrollTop = scrollParent.scrollTop + scrollHeight;
15707
+ this.timer = window.setInterval(function () { _this.setScrollDown(scrollParent, scrollHeight, true); }, 70);
15711
15708
  }
15712
15709
  else if ((event.clientY - scrollMoved) - boundRect.y < 1) {
15713
- scrollParent.scrollTop = scrollParent.scrollTop - scrollHeight;
15710
+ this.timer = window.setInterval(function () { _this.setScrollDown(scrollParent, scrollHeight, false); }, 70);
15714
15711
  }
15715
15712
  }
15716
15713
  if (args.target === null) {
@@ -15718,7 +15715,19 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
15718
15715
  }
15719
15716
  this.trigger('drag', this.getDragArgs(args));
15720
15717
  };
15718
+ ListBox.prototype.setScrollDown = function (scrollElem, scrollPixel, isScrollDown) {
15719
+ if (isScrollDown) {
15720
+ scrollElem.scrollTop = scrollElem.scrollTop + scrollPixel;
15721
+ }
15722
+ else {
15723
+ scrollElem.scrollTop = scrollElem.scrollTop - scrollPixel;
15724
+ }
15725
+ };
15726
+ ListBox.prototype.stopTimer = function () {
15727
+ window.clearInterval(this.timer);
15728
+ };
15721
15729
  ListBox.prototype.beforeDragEnd = function (args) {
15730
+ this.stopTimer();
15722
15731
  var items = [];
15723
15732
  this.dragValue = this.getFormattedValue(args.droppedElement.getAttribute('data-value'));
15724
15733
  if (this.value.indexOf(this.dragValue) > -1) {
@@ -17169,6 +17178,9 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
17169
17178
  var list = this.mainList.cloneNode ? this.mainList.cloneNode(true) : this.mainList;
17170
17179
  if (backCommand) {
17171
17180
  this.remoteCustomValue = false;
17181
+ if (this.isAngular && this.itemTemplate) {
17182
+ list = this.renderItems(this.listData, fields);
17183
+ }
17172
17184
  this.onActionComplete(list, this.jsonData);
17173
17185
  this.notify('reOrder', { module: 'CheckBoxSelection', enable: this.selectionSettings.showCheckbox, e: this });
17174
17186
  }
@@ -17694,25 +17706,25 @@ var listBoxClasses = {
17694
17706
  * export all modules from current location
17695
17707
  */
17696
17708
 
17697
- var __extends$7 = (undefined && undefined.__extends) || (function () {
17698
- var extendStatics = function (d, b) {
17699
- extendStatics = Object.setPrototypeOf ||
17700
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17701
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17702
- return extendStatics(d, b);
17703
- };
17704
- return function (d, b) {
17705
- extendStatics(d, b);
17706
- function __() { this.constructor = d; }
17707
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17708
- };
17709
- })();
17710
- var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17711
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17712
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17713
- 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;
17714
- return c > 3 && r && Object.defineProperty(target, key, r), r;
17715
- };
17709
+ var __extends$7 = (undefined && undefined.__extends) || (function () {
17710
+ var extendStatics = function (d, b) {
17711
+ extendStatics = Object.setPrototypeOf ||
17712
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17713
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17714
+ return extendStatics(d, b);
17715
+ };
17716
+ return function (d, b) {
17717
+ extendStatics(d, b);
17718
+ function __() { this.constructor = d; }
17719
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17720
+ };
17721
+ })();
17722
+ var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17723
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17724
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17725
+ 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;
17726
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
17727
+ };
17716
17728
  /**
17717
17729
  * The Mention component is used to list someone or something based on user input in textarea, input,
17718
17730
  * or any other editable element from which the user can select.