@syncfusion/ej2-dropdowns 23.1.39 → 23.1.40-85814

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 (276) hide show
  1. package/CHANGELOG.md +2042 -2036
  2. package/{README.md → ReadMe.md} +217 -217
  3. package/dist/ej2-dropdowns.umd.min.js +0 -9
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +56 -56
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +198 -198
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +0 -9
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +0 -9
  12. package/dist/ts/auto-complete/auto-complete.ts +615 -0
  13. package/dist/ts/combo-box/combo-box.ts +1028 -0
  14. package/dist/ts/common/highlight-search.ts +57 -0
  15. package/dist/ts/common/incremental-search.ts +131 -0
  16. package/dist/ts/common/interface.ts +72 -0
  17. package/dist/ts/common/virtual-scroll.ts +354 -0
  18. package/dist/ts/drop-down-base/drop-down-base.ts +1838 -0
  19. package/dist/ts/drop-down-list/drop-down-list.ts +3889 -0
  20. package/dist/ts/drop-down-tree/drop-down-tree.ts +3750 -0
  21. package/dist/ts/list-box/list-box.ts +2736 -0
  22. package/dist/ts/mention/mention.ts +1828 -0
  23. package/dist/ts/multi-select/checkbox-selection.ts +547 -0
  24. package/dist/ts/multi-select/float-label.ts +176 -0
  25. package/dist/ts/multi-select/interface.ts +70 -0
  26. package/dist/ts/multi-select/multi-select.ts +4874 -0
  27. package/helpers/e2e/autocomplete.js +13 -13
  28. package/helpers/e2e/combobox.js +13 -13
  29. package/helpers/e2e/dropdownlist.js +13 -13
  30. package/helpers/e2e/index.js +3 -3
  31. package/helpers/e2e/listboxHelper.js +13 -13
  32. package/helpers/e2e/multiselect.js +13 -13
  33. package/license +2 -2
  34. package/package.json +79 -79
  35. package/src/auto-complete/auto-complete-model.d.ts +188 -188
  36. package/src/auto-complete/auto-complete.d.ts +12 -12
  37. package/src/auto-complete/auto-complete.js +21 -21
  38. package/src/combo-box/combo-box-model.d.ts +224 -224
  39. package/src/combo-box/combo-box.d.ts +27 -27
  40. package/src/combo-box/combo-box.js +29 -29
  41. package/src/common/virtual-scroll.js +46 -46
  42. package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
  43. package/src/drop-down-base/drop-down-base.d.ts +15 -15
  44. package/src/drop-down-base/drop-down-base.js +20 -20
  45. package/src/drop-down-list/drop-down-list-model.d.ts +202 -202
  46. package/src/drop-down-list/drop-down-list.d.ts +4 -4
  47. package/src/drop-down-list/drop-down-list.js +20 -20
  48. package/src/drop-down-tree/drop-down-tree-model.d.ts +468 -468
  49. package/src/drop-down-tree/drop-down-tree.js +19 -19
  50. package/src/list-box/list-box-model.d.ts +193 -193
  51. package/src/list-box/list-box.d.ts +2 -2
  52. package/src/list-box/list-box.js +19 -19
  53. package/src/mention/mention-model.d.ts +261 -261
  54. package/src/mention/mention.js +19 -19
  55. package/src/multi-select/multi-select-model.d.ts +512 -512
  56. package/src/multi-select/multi-select.js +19 -19
  57. package/styles/auto-complete/_all.scss +1 -1
  58. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  59. package/styles/auto-complete/_bootstrap-definition.scss +2 -2
  60. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  61. package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
  62. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  63. package/styles/auto-complete/_fabric-definition.scss +2 -2
  64. package/styles/auto-complete/_fluent-definition.scss +2 -2
  65. package/styles/auto-complete/_fusionnew-definition.scss +2 -2
  66. package/styles/auto-complete/_highcontrast-definition.scss +2 -2
  67. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  68. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  69. package/styles/auto-complete/_material-definition.scss +2 -2
  70. package/styles/auto-complete/_material3-definition.scss +2 -2
  71. package/styles/auto-complete/_tailwind-definition.scss +2 -2
  72. package/styles/auto-complete/bootstrap4.css +13 -2
  73. package/styles/auto-complete/material3-dark.scss +1 -1
  74. package/styles/auto-complete/material3.scss +1 -1
  75. package/styles/bootstrap4.css +32 -2
  76. package/styles/combo-box/_all.scss +1 -1
  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/_fabric-dark-definition.scss +2 -2
  82. package/styles/combo-box/_fabric-definition.scss +2 -2
  83. package/styles/combo-box/_fluent-definition.scss +2 -2
  84. package/styles/combo-box/_fusionnew-definition.scss +2 -2
  85. package/styles/combo-box/_highcontrast-definition.scss +2 -2
  86. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  87. package/styles/combo-box/_material-dark-definition.scss +2 -2
  88. package/styles/combo-box/_material-definition.scss +2 -2
  89. package/styles/combo-box/_material3-definition.scss +2 -2
  90. package/styles/combo-box/_tailwind-definition.scss +2 -2
  91. package/styles/combo-box/bootstrap4.css +13 -2
  92. package/styles/combo-box/material3-dark.scss +1 -1
  93. package/styles/combo-box/material3.scss +1 -1
  94. package/styles/drop-down-base/_all.scss +2 -2
  95. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
  96. package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
  97. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
  98. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
  99. package/styles/drop-down-base/_definition.scss +23 -23
  100. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
  101. package/styles/drop-down-base/_fabric-definition.scss +84 -84
  102. package/styles/drop-down-base/_fluent-definition.scss +121 -121
  103. package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
  104. package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
  105. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
  106. package/styles/drop-down-base/_layout.scss +195 -195
  107. package/styles/drop-down-base/_material-dark-definition.scss +86 -86
  108. package/styles/drop-down-base/_material-definition.scss +85 -85
  109. package/styles/drop-down-base/_material3-definition.scss +87 -87
  110. package/styles/drop-down-base/_tailwind-definition.scss +129 -129
  111. package/styles/drop-down-base/_theme.scss +391 -391
  112. package/styles/drop-down-base/material3-dark.scss +1 -1
  113. package/styles/drop-down-base/material3.scss +1 -1
  114. package/styles/drop-down-list/_all.scss +3 -3
  115. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  116. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  117. package/styles/drop-down-list/_bootstrap4-definition.scss +202 -191
  118. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
  119. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
  120. package/styles/drop-down-list/_fabric-definition.scss +124 -124
  121. package/styles/drop-down-list/_fluent-definition.scss +185 -185
  122. package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
  123. package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
  124. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
  125. package/styles/drop-down-list/_layout.scss +310 -310
  126. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  127. package/styles/drop-down-list/_material-definition.scss +167 -167
  128. package/styles/drop-down-list/_material3-definition.scss +180 -180
  129. package/styles/drop-down-list/_tailwind-definition.scss +134 -134
  130. package/styles/drop-down-list/_theme.scss +10 -10
  131. package/styles/drop-down-list/bootstrap4.css +13 -2
  132. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  133. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  134. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  135. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
  136. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  137. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  138. package/styles/drop-down-list/icons/_fluent.scss +14 -14
  139. package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
  140. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  141. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  142. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  143. package/styles/drop-down-list/icons/_material.scss +14 -14
  144. package/styles/drop-down-list/icons/_material3.scss +14 -14
  145. package/styles/drop-down-list/icons/_tailwind.scss +14 -14
  146. package/styles/drop-down-list/material3-dark.scss +1 -1
  147. package/styles/drop-down-list/material3.scss +1 -1
  148. package/styles/drop-down-tree/_all.scss +2 -2
  149. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +71 -71
  150. package/styles/drop-down-tree/_bootstrap-definition.scss +70 -70
  151. package/styles/drop-down-tree/_bootstrap4-definition.scss +71 -71
  152. package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -59
  153. package/styles/drop-down-tree/_fabric-dark-definition.scss +71 -71
  154. package/styles/drop-down-tree/_fabric-definition.scss +71 -71
  155. package/styles/drop-down-tree/_fluent-definition.scss +65 -65
  156. package/styles/drop-down-tree/_fusionnew-definition.scss +59 -59
  157. package/styles/drop-down-tree/_highcontrast-definition.scss +71 -71
  158. package/styles/drop-down-tree/_highcontrast-light-definition.scss +71 -71
  159. package/styles/drop-down-tree/_layout.scss +1418 -1412
  160. package/styles/drop-down-tree/_material-dark-definition.scss +72 -72
  161. package/styles/drop-down-tree/_material-definition.scss +72 -72
  162. package/styles/drop-down-tree/_material3-definition.scss +76 -76
  163. package/styles/drop-down-tree/_tailwind-definition.scss +61 -61
  164. package/styles/drop-down-tree/_theme.scss +132 -132
  165. package/styles/drop-down-tree/fluent-dark.css +2 -0
  166. package/styles/drop-down-tree/fluent.css +2 -0
  167. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  168. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  169. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  170. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
  171. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  172. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  173. package/styles/drop-down-tree/icons/_fluent.scss +11 -11
  174. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
  175. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  176. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  177. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  178. package/styles/drop-down-tree/icons/_material.scss +11 -11
  179. package/styles/drop-down-tree/icons/_material3.scss +11 -11
  180. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
  181. package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
  182. package/styles/drop-down-tree/material3-dark.scss +1 -1
  183. package/styles/drop-down-tree/material3.scss +1 -1
  184. package/styles/fluent-dark.css +2 -0
  185. package/styles/fluent.css +2 -0
  186. package/styles/list-box/_all.scss +2 -2
  187. package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
  188. package/styles/list-box/_bootstrap-definition.scss +119 -119
  189. package/styles/list-box/_bootstrap4-definition.scss +124 -124
  190. package/styles/list-box/_bootstrap5-definition.scss +120 -120
  191. package/styles/list-box/_fabric-dark-definition.scss +126 -126
  192. package/styles/list-box/_fabric-definition.scss +119 -119
  193. package/styles/list-box/_fluent-definition.scss +120 -120
  194. package/styles/list-box/_fusionnew-definition.scss +111 -111
  195. package/styles/list-box/_highcontrast-definition.scss +119 -119
  196. package/styles/list-box/_highcontrast-light-definition.scss +126 -126
  197. package/styles/list-box/_layout.scss +542 -542
  198. package/styles/list-box/_material-dark-definition.scss +126 -126
  199. package/styles/list-box/_material-definition.scss +119 -119
  200. package/styles/list-box/_material3-definition.scss +119 -119
  201. package/styles/list-box/_tailwind-definition.scss +119 -119
  202. package/styles/list-box/_theme.scss +382 -382
  203. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  204. package/styles/list-box/icons/_bootstrap.scss +25 -25
  205. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  206. package/styles/list-box/icons/_bootstrap5.scss +25 -25
  207. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  208. package/styles/list-box/icons/_fabric.scss +25 -25
  209. package/styles/list-box/icons/_fluent.scss +25 -25
  210. package/styles/list-box/icons/_fusionnew.scss +25 -25
  211. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  212. package/styles/list-box/icons/_highcontrast.scss +25 -25
  213. package/styles/list-box/icons/_material-dark.scss +25 -25
  214. package/styles/list-box/icons/_material.scss +25 -25
  215. package/styles/list-box/icons/_material3.scss +25 -25
  216. package/styles/list-box/icons/_tailwind-dark.scss +25 -25
  217. package/styles/list-box/icons/_tailwind.scss +25 -25
  218. package/styles/list-box/material3-dark.scss +1 -1
  219. package/styles/list-box/material3.scss +1 -1
  220. package/styles/material3-dark.scss +1 -1
  221. package/styles/material3.scss +1 -1
  222. package/styles/mention/_all.scss +1 -1
  223. package/styles/mention/_bootstrap-dark-definition.scss +3 -3
  224. package/styles/mention/_bootstrap-definition.scss +3 -3
  225. package/styles/mention/_bootstrap4-definition.scss +3 -3
  226. package/styles/mention/_bootstrap5-definition.scss +1 -1
  227. package/styles/mention/_fabric-dark-definition.scss +2 -2
  228. package/styles/mention/_fabric-definition.scss +3 -3
  229. package/styles/mention/_fluent-definition.scss +1 -1
  230. package/styles/mention/_fusionnew-definition.scss +1 -1
  231. package/styles/mention/_highcontrast-definition.scss +3 -3
  232. package/styles/mention/_highcontrast-light-definition.scss +3 -3
  233. package/styles/mention/_layout.scss +6 -6
  234. package/styles/mention/_material-dark-definition.scss +3 -3
  235. package/styles/mention/_material-definition.scss +3 -3
  236. package/styles/mention/_material3-definition.scss +1 -1
  237. package/styles/mention/_tailwind-definition.scss +1 -1
  238. package/styles/mention/material3-dark.scss +1 -1
  239. package/styles/mention/material3.scss +1 -1
  240. package/styles/multi-select/_all.scss +2 -2
  241. package/styles/multi-select/_bootstrap-dark-definition.scss +198 -198
  242. package/styles/multi-select/_bootstrap-definition.scss +192 -192
  243. package/styles/multi-select/_bootstrap4-definition.scss +278 -259
  244. package/styles/multi-select/_bootstrap5-definition.scss +229 -229
  245. package/styles/multi-select/_fabric-dark-definition.scss +187 -187
  246. package/styles/multi-select/_fabric-definition.scss +183 -183
  247. package/styles/multi-select/_fluent-definition.scss +240 -240
  248. package/styles/multi-select/_fusionnew-definition.scss +227 -227
  249. package/styles/multi-select/_highcontrast-definition.scss +298 -298
  250. package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
  251. package/styles/multi-select/_layout.scss +2199 -2199
  252. package/styles/multi-select/_material-dark-definition.scss +230 -230
  253. package/styles/multi-select/_material-definition.scss +223 -223
  254. package/styles/multi-select/_material3-definition.scss +246 -246
  255. package/styles/multi-select/_tailwind-definition.scss +234 -234
  256. package/styles/multi-select/_theme.scss +586 -586
  257. package/styles/multi-select/bootstrap4.css +19 -0
  258. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  259. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  260. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  261. package/styles/multi-select/icons/_bootstrap5.scss +26 -26
  262. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  263. package/styles/multi-select/icons/_fabric.scss +26 -26
  264. package/styles/multi-select/icons/_fluent.scss +55 -55
  265. package/styles/multi-select/icons/_fusionnew.scss +26 -26
  266. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  267. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  268. package/styles/multi-select/icons/_material-dark.scss +693 -693
  269. package/styles/multi-select/icons/_material.scss +693 -693
  270. package/styles/multi-select/icons/_material3.scss +692 -692
  271. package/styles/multi-select/icons/_tailwind.scss +26 -26
  272. package/styles/multi-select/material3-dark.scss +1 -1
  273. package/styles/multi-select/material3.scss +1 -1
  274. package/.eslintrc.json +0 -260
  275. package/dist/ej2-dropdowns.min.js +0 -10
  276. 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() {
@@ -1997,25 +1997,25 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
1997
1997
  * export all modules from current location
1998
1998
  */
1999
1999
 
2000
- var __extends$1 = (undefined && undefined.__extends) || (function () {
2001
- var extendStatics = function (d, b) {
2002
- extendStatics = Object.setPrototypeOf ||
2003
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2004
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2005
- return extendStatics(d, b);
2006
- };
2007
- return function (d, b) {
2008
- extendStatics(d, b);
2009
- function __() { this.constructor = d; }
2010
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2011
- };
2012
- })();
2013
- var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
2014
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2015
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
2016
- 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;
2017
- return c > 3 && r && Object.defineProperty(target, key, r), r;
2018
- };
2000
+ var __extends$1 = (undefined && undefined.__extends) || (function () {
2001
+ var extendStatics = function (d, b) {
2002
+ extendStatics = Object.setPrototypeOf ||
2003
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2004
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2005
+ return extendStatics(d, b);
2006
+ };
2007
+ return function (d, b) {
2008
+ extendStatics(d, b);
2009
+ function __() { this.constructor = d; }
2010
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2011
+ };
2012
+ })();
2013
+ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
2014
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2015
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
2016
+ 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;
2017
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
2018
+ };
2019
2019
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
2020
2020
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
2021
2021
  // don't use space in classnames
@@ -5562,25 +5562,25 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5562
5562
  * export all modules from current location
5563
5563
  */
5564
5564
 
5565
- var __extends$2 = (undefined && undefined.__extends) || (function () {
5566
- var extendStatics = function (d, b) {
5567
- extendStatics = Object.setPrototypeOf ||
5568
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5569
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5570
- return extendStatics(d, b);
5571
- };
5572
- return function (d, b) {
5573
- extendStatics(d, b);
5574
- function __() { this.constructor = d; }
5575
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
5576
- };
5577
- })();
5578
- var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
5579
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
5580
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5581
- 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;
5582
- return c > 3 && r && Object.defineProperty(target, key, r), r;
5583
- };
5565
+ var __extends$2 = (undefined && undefined.__extends) || (function () {
5566
+ var extendStatics = function (d, b) {
5567
+ extendStatics = Object.setPrototypeOf ||
5568
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5569
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5570
+ return extendStatics(d, b);
5571
+ };
5572
+ return function (d, b) {
5573
+ extendStatics(d, b);
5574
+ function __() { this.constructor = d; }
5575
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
5576
+ };
5577
+ })();
5578
+ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
5579
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
5580
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5581
+ 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;
5582
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
5583
+ };
5584
5584
  var RTL = 'e-rtl';
5585
5585
  var DROPDOWNTREE = 'e-ddt';
5586
5586
  var HIDDENELEMENT = 'e-ddt-hidden';
@@ -8783,25 +8783,25 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8783
8783
  * export all modules from current location
8784
8784
  */
8785
8785
 
8786
- var __extends$3 = (undefined && undefined.__extends) || (function () {
8787
- var extendStatics = function (d, b) {
8788
- extendStatics = Object.setPrototypeOf ||
8789
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8790
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8791
- return extendStatics(d, b);
8792
- };
8793
- return function (d, b) {
8794
- extendStatics(d, b);
8795
- function __() { this.constructor = d; }
8796
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8797
- };
8798
- })();
8799
- var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
8800
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
8801
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
8802
- 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;
8803
- return c > 3 && r && Object.defineProperty(target, key, r), r;
8804
- };
8786
+ var __extends$3 = (undefined && undefined.__extends) || (function () {
8787
+ var extendStatics = function (d, b) {
8788
+ extendStatics = Object.setPrototypeOf ||
8789
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8790
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8791
+ return extendStatics(d, b);
8792
+ };
8793
+ return function (d, b) {
8794
+ extendStatics(d, b);
8795
+ function __() { this.constructor = d; }
8796
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8797
+ };
8798
+ })();
8799
+ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
8800
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
8801
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
8802
+ 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;
8803
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
8804
+ };
8805
8805
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
8806
8806
  /// <reference path='../drop-down-list/drop-down-list-model.d.ts'/>
8807
8807
  var SPINNER_CLASS = 'e-atc-spinner-icon';
@@ -9651,25 +9651,25 @@ var ComboBox = /** @__PURE__ @class */ (function (_super) {
9651
9651
  * export all modules from current location
9652
9652
  */
9653
9653
 
9654
- var __extends$4 = (undefined && undefined.__extends) || (function () {
9655
- var extendStatics = function (d, b) {
9656
- extendStatics = Object.setPrototypeOf ||
9657
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9658
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9659
- return extendStatics(d, b);
9660
- };
9661
- return function (d, b) {
9662
- extendStatics(d, b);
9663
- function __() { this.constructor = d; }
9664
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9665
- };
9666
- })();
9667
- var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
9668
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
9669
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9670
- 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;
9671
- return c > 3 && r && Object.defineProperty(target, key, r), r;
9672
- };
9654
+ var __extends$4 = (undefined && undefined.__extends) || (function () {
9655
+ var extendStatics = function (d, b) {
9656
+ extendStatics = Object.setPrototypeOf ||
9657
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9658
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9659
+ return extendStatics(d, b);
9660
+ };
9661
+ return function (d, b) {
9662
+ extendStatics(d, b);
9663
+ function __() { this.constructor = d; }
9664
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9665
+ };
9666
+ })();
9667
+ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
9668
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
9669
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9670
+ 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;
9671
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
9672
+ };
9673
9673
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
9674
9674
  /// <reference path='../combo-box/combo-box-model.d.ts'/>
9675
9675
  dropDownListClasses.root = 'e-autocomplete';
@@ -10278,25 +10278,25 @@ function encodePlaceholder(placeholder) {
10278
10278
  }
10279
10279
  /* eslint-enable valid-jsdoc */
10280
10280
 
10281
- var __extends$5 = (undefined && undefined.__extends) || (function () {
10282
- var extendStatics = function (d, b) {
10283
- extendStatics = Object.setPrototypeOf ||
10284
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10285
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
10286
- return extendStatics(d, b);
10287
- };
10288
- return function (d, b) {
10289
- extendStatics(d, b);
10290
- function __() { this.constructor = d; }
10291
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
10292
- };
10293
- })();
10294
- var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
10295
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
10296
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
10297
- 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;
10298
- return c > 3 && r && Object.defineProperty(target, key, r), r;
10299
- };
10281
+ var __extends$5 = (undefined && undefined.__extends) || (function () {
10282
+ var extendStatics = function (d, b) {
10283
+ extendStatics = Object.setPrototypeOf ||
10284
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10285
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
10286
+ return extendStatics(d, b);
10287
+ };
10288
+ return function (d, b) {
10289
+ extendStatics(d, b);
10290
+ function __() { this.constructor = d; }
10291
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
10292
+ };
10293
+ })();
10294
+ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
10295
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
10296
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
10297
+ 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;
10298
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
10299
+ };
10300
10300
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
10301
10301
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
10302
10302
  var FOCUS = 'e-input-focus';
@@ -15168,25 +15168,25 @@ var CheckBoxSelection = /** @__PURE__ @class */ (function () {
15168
15168
  * export all modules from current location
15169
15169
  */
15170
15170
 
15171
- var __extends$6 = (undefined && undefined.__extends) || (function () {
15172
- var extendStatics = function (d, b) {
15173
- extendStatics = Object.setPrototypeOf ||
15174
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15175
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15176
- return extendStatics(d, b);
15177
- };
15178
- return function (d, b) {
15179
- extendStatics(d, b);
15180
- function __() { this.constructor = d; }
15181
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15182
- };
15183
- })();
15184
- var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15185
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15186
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15187
- 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;
15188
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15189
- };
15171
+ var __extends$6 = (undefined && undefined.__extends) || (function () {
15172
+ var extendStatics = function (d, b) {
15173
+ extendStatics = Object.setPrototypeOf ||
15174
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15175
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15176
+ return extendStatics(d, b);
15177
+ };
15178
+ return function (d, b) {
15179
+ extendStatics(d, b);
15180
+ function __() { this.constructor = d; }
15181
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15182
+ };
15183
+ })();
15184
+ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15185
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15186
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15187
+ 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;
15188
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15189
+ };
15190
15190
  // eslint-disable-next-line @typescript-eslint/triple-slash-reference
15191
15191
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
15192
15192
  /**
@@ -17604,25 +17604,25 @@ var listBoxClasses = {
17604
17604
  * export all modules from current location
17605
17605
  */
17606
17606
 
17607
- var __extends$7 = (undefined && undefined.__extends) || (function () {
17608
- var extendStatics = function (d, b) {
17609
- extendStatics = Object.setPrototypeOf ||
17610
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17611
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17612
- return extendStatics(d, b);
17613
- };
17614
- return function (d, b) {
17615
- extendStatics(d, b);
17616
- function __() { this.constructor = d; }
17617
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17618
- };
17619
- })();
17620
- var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17621
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17622
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17623
- 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;
17624
- return c > 3 && r && Object.defineProperty(target, key, r), r;
17625
- };
17607
+ var __extends$7 = (undefined && undefined.__extends) || (function () {
17608
+ var extendStatics = function (d, b) {
17609
+ extendStatics = Object.setPrototypeOf ||
17610
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17611
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17612
+ return extendStatics(d, b);
17613
+ };
17614
+ return function (d, b) {
17615
+ extendStatics(d, b);
17616
+ function __() { this.constructor = d; }
17617
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17618
+ };
17619
+ })();
17620
+ var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17621
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17622
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17623
+ 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;
17624
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
17625
+ };
17626
17626
  /**
17627
17627
  * The Mention component is used to list someone or something based on user input in textarea, input,
17628
17628
  * or any other editable element from which the user can select.