@syncfusion/ej2-dropdowns 23.1.38 → 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.
- package/CHANGELOG.md +2042 -2034
- package/{README.md → ReadMe.md} +217 -217
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +60 -57
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +202 -199
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/auto-complete/auto-complete.ts +615 -0
- package/dist/ts/combo-box/combo-box.ts +1028 -0
- package/dist/ts/common/highlight-search.ts +57 -0
- package/dist/ts/common/incremental-search.ts +131 -0
- package/dist/ts/common/interface.ts +72 -0
- package/dist/ts/common/virtual-scroll.ts +354 -0
- package/dist/ts/drop-down-base/drop-down-base.ts +1838 -0
- package/dist/ts/drop-down-list/drop-down-list.ts +3889 -0
- package/dist/ts/drop-down-tree/drop-down-tree.ts +3750 -0
- package/dist/ts/list-box/list-box.ts +2736 -0
- package/dist/ts/mention/mention.ts +1828 -0
- package/dist/ts/multi-select/checkbox-selection.ts +547 -0
- package/dist/ts/multi-select/float-label.ts +176 -0
- package/dist/ts/multi-select/interface.ts +70 -0
- package/dist/ts/multi-select/multi-select.ts +4874 -0
- package/helpers/e2e/autocomplete.js +13 -13
- package/helpers/e2e/combobox.js +13 -13
- package/helpers/e2e/dropdownlist.js +13 -13
- package/helpers/e2e/index.js +3 -3
- package/helpers/e2e/listboxHelper.js +13 -13
- package/helpers/e2e/multiselect.js +13 -13
- package/license +2 -2
- package/package.json +79 -79
- package/src/auto-complete/auto-complete-model.d.ts +188 -188
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +21 -21
- package/src/combo-box/combo-box-model.d.ts +224 -224
- package/src/combo-box/combo-box.d.ts +27 -27
- package/src/combo-box/combo-box.js +29 -29
- package/src/common/virtual-scroll.js +46 -46
- package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
- package/src/drop-down-base/drop-down-base.d.ts +15 -15
- package/src/drop-down-base/drop-down-base.js +20 -20
- package/src/drop-down-list/drop-down-list-model.d.ts +202 -202
- package/src/drop-down-list/drop-down-list.d.ts +4 -4
- package/src/drop-down-list/drop-down-list.js +24 -21
- package/src/drop-down-tree/drop-down-tree-model.d.ts +468 -468
- package/src/drop-down-tree/drop-down-tree.js +19 -19
- package/src/list-box/list-box-model.d.ts +193 -193
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +19 -19
- package/src/mention/mention-model.d.ts +261 -261
- package/src/mention/mention.js +19 -19
- package/src/multi-select/multi-select-model.d.ts +512 -512
- package/src/multi-select/multi-select.js +19 -19
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_fabric-definition.scss +2 -2
- package/styles/auto-complete/_fluent-definition.scss +2 -2
- package/styles/auto-complete/_fusionnew-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/auto-complete/_material-definition.scss +2 -2
- package/styles/auto-complete/_material3-definition.scss +2 -2
- package/styles/auto-complete/_tailwind-definition.scss +2 -2
- package/styles/auto-complete/bootstrap4.css +13 -2
- package/styles/auto-complete/material3-dark.scss +1 -1
- package/styles/auto-complete/material3.scss +1 -1
- package/styles/bootstrap-dark.css +12 -1
- package/styles/bootstrap.css +12 -1
- package/styles/bootstrap4.css +44 -3
- package/styles/bootstrap5-dark.css +12 -1
- package/styles/bootstrap5.css +12 -1
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_bootstrap5-definition.scss +2 -2
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_fabric-definition.scss +2 -2
- package/styles/combo-box/_fluent-definition.scss +2 -2
- package/styles/combo-box/_fusionnew-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/combo-box/_material-definition.scss +2 -2
- package/styles/combo-box/_material3-definition.scss +2 -2
- package/styles/combo-box/_tailwind-definition.scss +2 -2
- package/styles/combo-box/bootstrap4.css +13 -2
- package/styles/combo-box/material3-dark.scss +1 -1
- package/styles/combo-box/material3.scss +1 -1
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
- package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
- package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
- package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
- package/styles/drop-down-base/_fabric-definition.scss +84 -84
- package/styles/drop-down-base/_fluent-definition.scss +121 -121
- package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
- package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
- package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
- package/styles/drop-down-base/_layout.scss +195 -195
- package/styles/drop-down-base/_material-dark-definition.scss +86 -86
- package/styles/drop-down-base/_material-definition.scss +85 -85
- package/styles/drop-down-base/_material3-definition.scss +87 -87
- package/styles/drop-down-base/_tailwind-definition.scss +129 -129
- package/styles/drop-down-base/_theme.scss +391 -391
- package/styles/drop-down-base/material3-dark.scss +1 -1
- package/styles/drop-down-base/material3.scss +1 -1
- package/styles/drop-down-list/_all.scss +3 -3
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +202 -191
- package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
- package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
- package/styles/drop-down-list/_fabric-definition.scss +124 -124
- package/styles/drop-down-list/_fluent-definition.scss +185 -185
- package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
- package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
- package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
- package/styles/drop-down-list/_layout.scss +310 -310
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +167 -167
- package/styles/drop-down-list/_material3-definition.scss +180 -180
- package/styles/drop-down-list/_tailwind-definition.scss +134 -134
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/bootstrap4.css +13 -2
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_fluent.scss +14 -14
- package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/icons/_material3.scss +14 -14
- package/styles/drop-down-list/icons/_tailwind.scss +14 -14
- package/styles/drop-down-list/material3-dark.scss +1 -1
- package/styles/drop-down-list/material3.scss +1 -1
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +71 -71
- package/styles/drop-down-tree/_bootstrap-definition.scss +70 -70
- package/styles/drop-down-tree/_bootstrap4-definition.scss +71 -71
- package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -59
- package/styles/drop-down-tree/_fabric-dark-definition.scss +71 -71
- package/styles/drop-down-tree/_fabric-definition.scss +71 -71
- package/styles/drop-down-tree/_fluent-definition.scss +65 -65
- package/styles/drop-down-tree/_fusionnew-definition.scss +59 -59
- package/styles/drop-down-tree/_highcontrast-definition.scss +71 -71
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +71 -71
- package/styles/drop-down-tree/_layout.scss +1418 -1412
- package/styles/drop-down-tree/_material-dark-definition.scss +72 -72
- package/styles/drop-down-tree/_material-definition.scss +72 -72
- package/styles/drop-down-tree/_material3-definition.scss +76 -76
- package/styles/drop-down-tree/_tailwind-definition.scss +61 -61
- package/styles/drop-down-tree/_theme.scss +132 -132
- package/styles/drop-down-tree/fluent-dark.css +2 -0
- package/styles/drop-down-tree/fluent.css +2 -0
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_fluent.scss +11 -11
- package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/icons/_material3.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
- package/styles/drop-down-tree/material3-dark.scss +1 -1
- package/styles/drop-down-tree/material3.scss +1 -1
- package/styles/fabric-dark.css +13 -2
- package/styles/fabric.css +13 -2
- package/styles/fluent-dark.css +14 -1
- package/styles/fluent.css +14 -1
- package/styles/highcontrast-light.css +12 -1
- package/styles/highcontrast.css +12 -1
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
- package/styles/list-box/_bootstrap-definition.scss +119 -119
- package/styles/list-box/_bootstrap4-definition.scss +124 -124
- package/styles/list-box/_bootstrap5-definition.scss +120 -120
- package/styles/list-box/_fabric-dark-definition.scss +126 -126
- package/styles/list-box/_fabric-definition.scss +119 -119
- package/styles/list-box/_fluent-definition.scss +120 -120
- package/styles/list-box/_fusionnew-definition.scss +111 -111
- package/styles/list-box/_highcontrast-definition.scss +119 -119
- package/styles/list-box/_highcontrast-light-definition.scss +126 -126
- package/styles/list-box/_layout.scss +542 -542
- package/styles/list-box/_material-dark-definition.scss +126 -126
- package/styles/list-box/_material-definition.scss +119 -119
- package/styles/list-box/_material3-definition.scss +119 -119
- package/styles/list-box/_tailwind-definition.scss +119 -119
- package/styles/list-box/_theme.scss +382 -382
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_bootstrap5.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_fluent.scss +25 -25
- package/styles/list-box/icons/_fusionnew.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/list-box/icons/_material3.scss +25 -25
- package/styles/list-box/icons/_tailwind-dark.scss +25 -25
- package/styles/list-box/icons/_tailwind.scss +25 -25
- package/styles/list-box/material3-dark.scss +1 -1
- package/styles/list-box/material3.scss +1 -1
- package/styles/material-dark.css +12 -1
- package/styles/material.css +12 -1
- package/styles/material3-dark.css +10 -0
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +10 -0
- package/styles/material3.scss +1 -1
- package/styles/mention/_all.scss +1 -1
- package/styles/mention/_bootstrap-dark-definition.scss +3 -3
- package/styles/mention/_bootstrap-definition.scss +3 -3
- package/styles/mention/_bootstrap4-definition.scss +3 -3
- package/styles/mention/_bootstrap5-definition.scss +1 -1
- package/styles/mention/_fabric-dark-definition.scss +2 -2
- package/styles/mention/_fabric-definition.scss +3 -3
- package/styles/mention/_fluent-definition.scss +1 -1
- package/styles/mention/_fusionnew-definition.scss +1 -1
- package/styles/mention/_highcontrast-definition.scss +3 -3
- package/styles/mention/_highcontrast-light-definition.scss +3 -3
- package/styles/mention/_layout.scss +6 -6
- package/styles/mention/_material-dark-definition.scss +3 -3
- package/styles/mention/_material-definition.scss +3 -3
- package/styles/mention/_material3-definition.scss +1 -1
- package/styles/mention/_tailwind-definition.scss +1 -1
- package/styles/mention/material3-dark.scss +1 -1
- package/styles/mention/material3.scss +1 -1
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +198 -196
- package/styles/multi-select/_bootstrap-definition.scss +192 -190
- package/styles/multi-select/_bootstrap4-definition.scss +278 -257
- package/styles/multi-select/_bootstrap5-definition.scss +229 -227
- package/styles/multi-select/_fabric-dark-definition.scss +187 -185
- package/styles/multi-select/_fabric-definition.scss +183 -181
- package/styles/multi-select/_fluent-definition.scss +240 -238
- package/styles/multi-select/_fusionnew-definition.scss +227 -227
- package/styles/multi-select/_highcontrast-definition.scss +298 -296
- package/styles/multi-select/_highcontrast-light-definition.scss +297 -295
- package/styles/multi-select/_layout.scss +2199 -2188
- package/styles/multi-select/_material-dark-definition.scss +230 -228
- package/styles/multi-select/_material-definition.scss +223 -221
- package/styles/multi-select/_material3-definition.scss +246 -246
- package/styles/multi-select/_tailwind-definition.scss +234 -232
- package/styles/multi-select/_theme.scss +586 -586
- package/styles/multi-select/bootstrap-dark.css +12 -1
- package/styles/multi-select/bootstrap.css +12 -1
- package/styles/multi-select/bootstrap4.css +31 -1
- package/styles/multi-select/bootstrap5-dark.css +12 -1
- package/styles/multi-select/bootstrap5.css +12 -1
- package/styles/multi-select/fabric-dark.css +13 -2
- package/styles/multi-select/fabric.css +13 -2
- package/styles/multi-select/fluent-dark.css +12 -1
- package/styles/multi-select/fluent.css +12 -1
- package/styles/multi-select/highcontrast-light.css +12 -1
- package/styles/multi-select/highcontrast.css +12 -1
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_bootstrap5.scss +26 -26
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_fluent.scss +55 -55
- package/styles/multi-select/icons/_fusionnew.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +693 -693
- package/styles/multi-select/icons/_material.scss +693 -693
- package/styles/multi-select/icons/_material3.scss +692 -692
- package/styles/multi-select/icons/_tailwind.scss +26 -26
- package/styles/multi-select/material-dark.css +12 -1
- package/styles/multi-select/material.css +12 -1
- package/styles/multi-select/material3-dark.css +10 -0
- package/styles/multi-select/material3-dark.scss +1 -1
- package/styles/multi-select/material3.css +10 -0
- package/styles/multi-select/material3.scss +1 -1
- package/styles/multi-select/tailwind-dark.css +12 -1
- package/styles/multi-select/tailwind.css +12 -1
- package/styles/tailwind-dark.css +12 -1
- package/styles/tailwind.css +12 -1
- package/.eslintrc.json +0 -260
- package/dist/ej2-dropdowns.min.js +0 -10
- 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
|
|
@@ -3134,6 +3134,9 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
3134
3134
|
removeClass([focusedItem], dropDownBaseClasses.focus);
|
|
3135
3135
|
}
|
|
3136
3136
|
li.setAttribute('aria-selected', 'true');
|
|
3137
|
+
if (isNullOrUndefined(value)) {
|
|
3138
|
+
value = 'null';
|
|
3139
|
+
}
|
|
3137
3140
|
this.activeIndex = this.getIndexByValue(value);
|
|
3138
3141
|
};
|
|
3139
3142
|
DropDownList.prototype.activeItem = function (li) {
|
|
@@ -4703,7 +4706,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
4703
4706
|
this.inputElement.parentElement.insertBefore(this.element, this.inputElement);
|
|
4704
4707
|
}
|
|
4705
4708
|
this.hiddenElement = this.createElement('select', {
|
|
4706
|
-
attrs: { 'aria-hidden': 'true', 'tabindex': '-1', 'class': dropDownListClasses.hiddenElement }
|
|
4709
|
+
attrs: { 'aria-hidden': 'true', 'aria-label': this.getModuleName(), 'tabindex': '-1', 'class': dropDownListClasses.hiddenElement }
|
|
4707
4710
|
});
|
|
4708
4711
|
prepend([this.hiddenElement], this.inputWrapper.container);
|
|
4709
4712
|
this.validationAttribute(this.element, this.hiddenElement);
|
|
@@ -5559,25 +5562,25 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
5559
5562
|
* export all modules from current location
|
|
5560
5563
|
*/
|
|
5561
5564
|
|
|
5562
|
-
var __extends$2 = (undefined && undefined.__extends) || (function () {
|
|
5563
|
-
var extendStatics = function (d, b) {
|
|
5564
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5565
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5566
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
5567
|
-
return extendStatics(d, b);
|
|
5568
|
-
};
|
|
5569
|
-
return function (d, b) {
|
|
5570
|
-
extendStatics(d, b);
|
|
5571
|
-
function __() { this.constructor = d; }
|
|
5572
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5573
|
-
};
|
|
5574
|
-
})();
|
|
5575
|
-
var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
5576
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
5577
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5578
|
-
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;
|
|
5579
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
5580
|
-
};
|
|
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
|
+
};
|
|
5581
5584
|
var RTL = 'e-rtl';
|
|
5582
5585
|
var DROPDOWNTREE = 'e-ddt';
|
|
5583
5586
|
var HIDDENELEMENT = 'e-ddt-hidden';
|
|
@@ -8780,25 +8783,25 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
|
|
|
8780
8783
|
* export all modules from current location
|
|
8781
8784
|
*/
|
|
8782
8785
|
|
|
8783
|
-
var __extends$3 = (undefined && undefined.__extends) || (function () {
|
|
8784
|
-
var extendStatics = function (d, b) {
|
|
8785
|
-
extendStatics = Object.setPrototypeOf ||
|
|
8786
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
8787
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
8788
|
-
return extendStatics(d, b);
|
|
8789
|
-
};
|
|
8790
|
-
return function (d, b) {
|
|
8791
|
-
extendStatics(d, b);
|
|
8792
|
-
function __() { this.constructor = d; }
|
|
8793
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
8794
|
-
};
|
|
8795
|
-
})();
|
|
8796
|
-
var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
8797
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
8798
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
8799
|
-
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;
|
|
8800
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
8801
|
-
};
|
|
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
|
+
};
|
|
8802
8805
|
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
|
8803
8806
|
/// <reference path='../drop-down-list/drop-down-list-model.d.ts'/>
|
|
8804
8807
|
var SPINNER_CLASS = 'e-atc-spinner-icon';
|
|
@@ -9648,25 +9651,25 @@ var ComboBox = /** @__PURE__ @class */ (function (_super) {
|
|
|
9648
9651
|
* export all modules from current location
|
|
9649
9652
|
*/
|
|
9650
9653
|
|
|
9651
|
-
var __extends$4 = (undefined && undefined.__extends) || (function () {
|
|
9652
|
-
var extendStatics = function (d, b) {
|
|
9653
|
-
extendStatics = Object.setPrototypeOf ||
|
|
9654
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
9655
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
9656
|
-
return extendStatics(d, b);
|
|
9657
|
-
};
|
|
9658
|
-
return function (d, b) {
|
|
9659
|
-
extendStatics(d, b);
|
|
9660
|
-
function __() { this.constructor = d; }
|
|
9661
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
9662
|
-
};
|
|
9663
|
-
})();
|
|
9664
|
-
var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
9665
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
9666
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
9667
|
-
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;
|
|
9668
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
9669
|
-
};
|
|
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
|
+
};
|
|
9670
9673
|
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
|
9671
9674
|
/// <reference path='../combo-box/combo-box-model.d.ts'/>
|
|
9672
9675
|
dropDownListClasses.root = 'e-autocomplete';
|
|
@@ -10275,25 +10278,25 @@ function encodePlaceholder(placeholder) {
|
|
|
10275
10278
|
}
|
|
10276
10279
|
/* eslint-enable valid-jsdoc */
|
|
10277
10280
|
|
|
10278
|
-
var __extends$5 = (undefined && undefined.__extends) || (function () {
|
|
10279
|
-
var extendStatics = function (d, b) {
|
|
10280
|
-
extendStatics = Object.setPrototypeOf ||
|
|
10281
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
10282
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
10283
|
-
return extendStatics(d, b);
|
|
10284
|
-
};
|
|
10285
|
-
return function (d, b) {
|
|
10286
|
-
extendStatics(d, b);
|
|
10287
|
-
function __() { this.constructor = d; }
|
|
10288
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
10289
|
-
};
|
|
10290
|
-
})();
|
|
10291
|
-
var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
10292
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
10293
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
10294
|
-
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;
|
|
10295
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
10296
|
-
};
|
|
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
|
+
};
|
|
10297
10300
|
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
|
10298
10301
|
/// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
|
|
10299
10302
|
var FOCUS = 'e-input-focus';
|
|
@@ -15165,25 +15168,25 @@ var CheckBoxSelection = /** @__PURE__ @class */ (function () {
|
|
|
15165
15168
|
* export all modules from current location
|
|
15166
15169
|
*/
|
|
15167
15170
|
|
|
15168
|
-
var __extends$6 = (undefined && undefined.__extends) || (function () {
|
|
15169
|
-
var extendStatics = function (d, b) {
|
|
15170
|
-
extendStatics = Object.setPrototypeOf ||
|
|
15171
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
15172
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
15173
|
-
return extendStatics(d, b);
|
|
15174
|
-
};
|
|
15175
|
-
return function (d, b) {
|
|
15176
|
-
extendStatics(d, b);
|
|
15177
|
-
function __() { this.constructor = d; }
|
|
15178
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15179
|
-
};
|
|
15180
|
-
})();
|
|
15181
|
-
var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
15182
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
15183
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
15184
|
-
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;
|
|
15185
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
15186
|
-
};
|
|
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
|
+
};
|
|
15187
15190
|
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
|
15188
15191
|
/// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
|
|
15189
15192
|
/**
|
|
@@ -17601,25 +17604,25 @@ var listBoxClasses = {
|
|
|
17601
17604
|
* export all modules from current location
|
|
17602
17605
|
*/
|
|
17603
17606
|
|
|
17604
|
-
var __extends$7 = (undefined && undefined.__extends) || (function () {
|
|
17605
|
-
var extendStatics = function (d, b) {
|
|
17606
|
-
extendStatics = Object.setPrototypeOf ||
|
|
17607
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
17608
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
17609
|
-
return extendStatics(d, b);
|
|
17610
|
-
};
|
|
17611
|
-
return function (d, b) {
|
|
17612
|
-
extendStatics(d, b);
|
|
17613
|
-
function __() { this.constructor = d; }
|
|
17614
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
17615
|
-
};
|
|
17616
|
-
})();
|
|
17617
|
-
var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
17618
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
17619
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17620
|
-
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;
|
|
17621
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
17622
|
-
};
|
|
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
|
+
};
|
|
17623
17626
|
/**
|
|
17624
17627
|
* The Mention component is used to list someone or something based on user input in textarea, input,
|
|
17625
17628
|
* or any other editable element from which the user can select.
|