@frollo/frollo-web-ui 0.0.1

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/cjs/index.js ADDED
@@ -0,0 +1,1317 @@
1
+ 'use strict';Object.defineProperty(exports,'__esModule',{value:true});var vue=require('vue');function _arrayWithHoles(arr) {
2
+ if (Array.isArray(arr)) return arr;
3
+ }function _iterableToArrayLimit(arr, i) {
4
+ var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
5
+
6
+ if (_i == null) return;
7
+ var _arr = [];
8
+ var _n = true;
9
+ var _d = false;
10
+
11
+ var _s, _e;
12
+
13
+ try {
14
+ for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
15
+ _arr.push(_s.value);
16
+
17
+ if (i && _arr.length === i) break;
18
+ }
19
+ } catch (err) {
20
+ _d = true;
21
+ _e = err;
22
+ } finally {
23
+ try {
24
+ if (!_n && _i["return"] != null) _i["return"]();
25
+ } finally {
26
+ if (_d) throw _e;
27
+ }
28
+ }
29
+
30
+ return _arr;
31
+ }function _arrayLikeToArray(arr, len) {
32
+ if (len == null || len > arr.length) len = arr.length;
33
+
34
+ for (var i = 0, arr2 = new Array(len); i < len; i++) {
35
+ arr2[i] = arr[i];
36
+ }
37
+
38
+ return arr2;
39
+ }function _unsupportedIterableToArray(o, minLen) {
40
+ if (!o) return;
41
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
42
+ var n = Object.prototype.toString.call(o).slice(8, -1);
43
+ if (n === "Object" && o.constructor) n = o.constructor.name;
44
+ if (n === "Map" || n === "Set") return Array.from(o);
45
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
46
+ }function _nonIterableRest() {
47
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
48
+ }function _slicedToArray(arr, i) {
49
+ return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
50
+ }var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
51
+
52
+ function getDefaultExportFromCjs (x) {
53
+ return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
54
+ }
55
+
56
+ function getDefaultExportFromNamespaceIfPresent (n) {
57
+ return n && Object.prototype.hasOwnProperty.call(n, 'default') ? n['default'] : n;
58
+ }
59
+
60
+ function getDefaultExportFromNamespaceIfNotNamed (n) {
61
+ return n && Object.prototype.hasOwnProperty.call(n, 'default') && Object.keys(n).length === 1 ? n['default'] : n;
62
+ }
63
+
64
+ function getAugmentedNamespace(n) {
65
+ if (n.__esModule) return n;
66
+ var a = Object.defineProperty({}, '__esModule', {value: true});
67
+ Object.keys(n).forEach(function (k) {
68
+ var d = Object.getOwnPropertyDescriptor(n, k);
69
+ Object.defineProperty(a, k, d.get ? d : {
70
+ enumerable: true,
71
+ get: function () {
72
+ return n[k];
73
+ }
74
+ });
75
+ });
76
+ return a;
77
+ }
78
+
79
+ function commonjsRequire (path) {
80
+ throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
81
+ }var es_array_forEach = {};var check = function (it) {
82
+ return it && it.Math == Math && it;
83
+ };
84
+
85
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
86
+ var global$o =
87
+ // eslint-disable-next-line es/no-global-this -- safe
88
+ check(typeof globalThis == 'object' && globalThis) ||
89
+ check(typeof window == 'object' && window) ||
90
+ // eslint-disable-next-line no-restricted-globals -- safe
91
+ check(typeof self == 'object' && self) ||
92
+ check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
93
+ // eslint-disable-next-line no-new-func -- fallback
94
+ (function () { return this; })() || Function('return this')();var objectGetOwnPropertyDescriptor = {};var fails$9 = function (exec) {
95
+ try {
96
+ return !!exec();
97
+ } catch (error) {
98
+ return true;
99
+ }
100
+ };var fails$8 = fails$9;
101
+
102
+ // Detect IE8's incomplete defineProperty implementation
103
+ var descriptors = !fails$8(function () {
104
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
105
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
106
+ });var fails$7 = fails$9;
107
+
108
+ var functionBindNative = !fails$7(function () {
109
+ var test = (function () { /* empty */ }).bind();
110
+ // eslint-disable-next-line no-prototype-builtins -- safe
111
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
112
+ });var NATIVE_BIND$2 = functionBindNative;
113
+
114
+ var call$4 = Function.prototype.call;
115
+
116
+ var functionCall = NATIVE_BIND$2 ? call$4.bind(call$4) : function () {
117
+ return call$4.apply(call$4, arguments);
118
+ };var objectPropertyIsEnumerable = {};'use strict';
119
+ var $propertyIsEnumerable$1 = {}.propertyIsEnumerable;
120
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
121
+ var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
122
+
123
+ // Nashorn ~ JDK8 bug
124
+ var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable$1.call({ 1: 2 }, 1);
125
+
126
+ // `Object.prototype.propertyIsEnumerable` method implementation
127
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
128
+ var f$4 = objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
129
+ var descriptor = getOwnPropertyDescriptor$1(this, V);
130
+ return !!descriptor && descriptor.enumerable;
131
+ } : $propertyIsEnumerable$1;var createPropertyDescriptor$2 = function (bitmap, value) {
132
+ return {
133
+ enumerable: !(bitmap & 1),
134
+ configurable: !(bitmap & 2),
135
+ writable: !(bitmap & 4),
136
+ value: value
137
+ };
138
+ };var NATIVE_BIND$1 = functionBindNative;
139
+
140
+ var FunctionPrototype$1 = Function.prototype;
141
+ var bind$2 = FunctionPrototype$1.bind;
142
+ var call$3 = FunctionPrototype$1.call;
143
+ var uncurryThis$d = NATIVE_BIND$1 && bind$2.bind(call$3, call$3);
144
+
145
+ var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
146
+ return fn && uncurryThis$d(fn);
147
+ } : function (fn) {
148
+ return fn && function () {
149
+ return call$3.apply(fn, arguments);
150
+ };
151
+ };var uncurryThis$c = functionUncurryThis;
152
+
153
+ var toString$2 = uncurryThis$c({}.toString);
154
+ var stringSlice = uncurryThis$c(''.slice);
155
+
156
+ var classofRaw$1 = function (it) {
157
+ return stringSlice(toString$2(it), 8, -1);
158
+ };var global$n = global$o;
159
+ var uncurryThis$b = functionUncurryThis;
160
+ var fails$6 = fails$9;
161
+ var classof$4 = classofRaw$1;
162
+
163
+ var Object$4 = global$n.Object;
164
+ var split = uncurryThis$b(''.split);
165
+
166
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
167
+ var indexedObject = fails$6(function () {
168
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
169
+ // eslint-disable-next-line no-prototype-builtins -- safe
170
+ return !Object$4('z').propertyIsEnumerable(0);
171
+ }) ? function (it) {
172
+ return classof$4(it) == 'String' ? split(it, '') : Object$4(it);
173
+ } : Object$4;var global$m = global$o;
174
+
175
+ var TypeError$7 = global$m.TypeError;
176
+
177
+ // `RequireObjectCoercible` abstract operation
178
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
179
+ var requireObjectCoercible$2 = function (it) {
180
+ if (it == undefined) throw TypeError$7("Can't call method on " + it);
181
+ return it;
182
+ };// toObject with fallback for non-array-like ES3 strings
183
+ var IndexedObject$1 = indexedObject;
184
+ var requireObjectCoercible$1 = requireObjectCoercible$2;
185
+
186
+ var toIndexedObject$4 = function (it) {
187
+ return IndexedObject$1(requireObjectCoercible$1(it));
188
+ };// `IsCallable` abstract operation
189
+ // https://tc39.es/ecma262/#sec-iscallable
190
+ var isCallable$b = function (argument) {
191
+ return typeof argument == 'function';
192
+ };var isCallable$a = isCallable$b;
193
+
194
+ var isObject$6 = function (it) {
195
+ return typeof it == 'object' ? it !== null : isCallable$a(it);
196
+ };var global$l = global$o;
197
+ var isCallable$9 = isCallable$b;
198
+
199
+ var aFunction = function (argument) {
200
+ return isCallable$9(argument) ? argument : undefined;
201
+ };
202
+
203
+ var getBuiltIn$4 = function (namespace, method) {
204
+ return arguments.length < 2 ? aFunction(global$l[namespace]) : global$l[namespace] && global$l[namespace][method];
205
+ };var uncurryThis$a = functionUncurryThis;
206
+
207
+ var objectIsPrototypeOf = uncurryThis$a({}.isPrototypeOf);var getBuiltIn$3 = getBuiltIn$4;
208
+
209
+ var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';var global$k = global$o;
210
+ var userAgent = engineUserAgent;
211
+
212
+ var process = global$k.process;
213
+ var Deno = global$k.Deno;
214
+ var versions = process && process.versions || Deno && Deno.version;
215
+ var v8 = versions && versions.v8;
216
+ var match, version;
217
+
218
+ if (v8) {
219
+ match = v8.split('.');
220
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
221
+ // but their correct versions are not interesting for us
222
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
223
+ }
224
+
225
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
226
+ // so check `userAgent` even if `.v8` exists, but 0
227
+ if (!version && userAgent) {
228
+ match = userAgent.match(/Edge\/(\d+)/);
229
+ if (!match || match[1] >= 74) {
230
+ match = userAgent.match(/Chrome\/(\d+)/);
231
+ if (match) version = +match[1];
232
+ }
233
+ }
234
+
235
+ var engineV8Version = version;/* eslint-disable es/no-symbol -- required for testing */
236
+
237
+ var V8_VERSION = engineV8Version;
238
+ var fails$5 = fails$9;
239
+
240
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
241
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$5(function () {
242
+ var symbol = Symbol();
243
+ // Chrome 38 Symbol has incorrect toString conversion
244
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
245
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
246
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
247
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
248
+ });/* eslint-disable es/no-symbol -- required for testing */
249
+
250
+ var NATIVE_SYMBOL$1 = nativeSymbol;
251
+
252
+ var useSymbolAsUid = NATIVE_SYMBOL$1
253
+ && !Symbol.sham
254
+ && typeof Symbol.iterator == 'symbol';var global$j = global$o;
255
+ var getBuiltIn$2 = getBuiltIn$4;
256
+ var isCallable$8 = isCallable$b;
257
+ var isPrototypeOf = objectIsPrototypeOf;
258
+ var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
259
+
260
+ var Object$3 = global$j.Object;
261
+
262
+ var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
263
+ return typeof it == 'symbol';
264
+ } : function (it) {
265
+ var $Symbol = getBuiltIn$2('Symbol');
266
+ return isCallable$8($Symbol) && isPrototypeOf($Symbol.prototype, Object$3(it));
267
+ };var global$i = global$o;
268
+
269
+ var String$2 = global$i.String;
270
+
271
+ var tryToString$1 = function (argument) {
272
+ try {
273
+ return String$2(argument);
274
+ } catch (error) {
275
+ return 'Object';
276
+ }
277
+ };var global$h = global$o;
278
+ var isCallable$7 = isCallable$b;
279
+ var tryToString = tryToString$1;
280
+
281
+ var TypeError$6 = global$h.TypeError;
282
+
283
+ // `Assert: IsCallable(argument) is true`
284
+ var aCallable$2 = function (argument) {
285
+ if (isCallable$7(argument)) return argument;
286
+ throw TypeError$6(tryToString(argument) + ' is not a function');
287
+ };var aCallable$1 = aCallable$2;
288
+
289
+ // `GetMethod` abstract operation
290
+ // https://tc39.es/ecma262/#sec-getmethod
291
+ var getMethod$1 = function (V, P) {
292
+ var func = V[P];
293
+ return func == null ? undefined : aCallable$1(func);
294
+ };var global$g = global$o;
295
+ var call$2 = functionCall;
296
+ var isCallable$6 = isCallable$b;
297
+ var isObject$5 = isObject$6;
298
+
299
+ var TypeError$5 = global$g.TypeError;
300
+
301
+ // `OrdinaryToPrimitive` abstract operation
302
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
303
+ var ordinaryToPrimitive$1 = function (input, pref) {
304
+ var fn, val;
305
+ if (pref === 'string' && isCallable$6(fn = input.toString) && !isObject$5(val = call$2(fn, input))) return val;
306
+ if (isCallable$6(fn = input.valueOf) && !isObject$5(val = call$2(fn, input))) return val;
307
+ if (pref !== 'string' && isCallable$6(fn = input.toString) && !isObject$5(val = call$2(fn, input))) return val;
308
+ throw TypeError$5("Can't convert object to primitive value");
309
+ };var shared$4 = {exports: {}};var isPure = false;var global$f = global$o;
310
+
311
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
312
+ var defineProperty = Object.defineProperty;
313
+
314
+ var setGlobal$3 = function (key, value) {
315
+ try {
316
+ defineProperty(global$f, key, { value: value, configurable: true, writable: true });
317
+ } catch (error) {
318
+ global$f[key] = value;
319
+ } return value;
320
+ };var global$e = global$o;
321
+ var setGlobal$2 = setGlobal$3;
322
+
323
+ var SHARED = '__core-js_shared__';
324
+ var store$3 = global$e[SHARED] || setGlobal$2(SHARED, {});
325
+
326
+ var sharedStore = store$3;var IS_PURE = isPure;
327
+ var store$2 = sharedStore;
328
+
329
+ (shared$4.exports = function (key, value) {
330
+ return store$2[key] || (store$2[key] = value !== undefined ? value : {});
331
+ })('versions', []).push({
332
+ version: '3.21.1',
333
+ mode: IS_PURE ? 'pure' : 'global',
334
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
335
+ license: 'https://github.com/zloirock/core-js/blob/v3.21.1/LICENSE',
336
+ source: 'https://github.com/zloirock/core-js'
337
+ });
338
+
339
+ var shared$3 = shared$4.exports;var global$d = global$o;
340
+ var requireObjectCoercible = requireObjectCoercible$2;
341
+
342
+ var Object$2 = global$d.Object;
343
+
344
+ // `ToObject` abstract operation
345
+ // https://tc39.es/ecma262/#sec-toobject
346
+ var toObject$2 = function (argument) {
347
+ return Object$2(requireObjectCoercible(argument));
348
+ };var uncurryThis$9 = functionUncurryThis;
349
+ var toObject$1 = toObject$2;
350
+
351
+ var hasOwnProperty = uncurryThis$9({}.hasOwnProperty);
352
+
353
+ // `HasOwnProperty` abstract operation
354
+ // https://tc39.es/ecma262/#sec-hasownproperty
355
+ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
356
+ return hasOwnProperty(toObject$1(it), key);
357
+ };var uncurryThis$8 = functionUncurryThis;
358
+
359
+ var id = 0;
360
+ var postfix = Math.random();
361
+ var toString$1 = uncurryThis$8(1.0.toString);
362
+
363
+ var uid$2 = function (key) {
364
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$1(++id + postfix, 36);
365
+ };var global$c = global$o;
366
+ var shared$2 = shared$4.exports;
367
+ var hasOwn$6 = hasOwnProperty_1;
368
+ var uid$1 = uid$2;
369
+ var NATIVE_SYMBOL = nativeSymbol;
370
+ var USE_SYMBOL_AS_UID = useSymbolAsUid;
371
+
372
+ var WellKnownSymbolsStore = shared$2('wks');
373
+ var Symbol$1 = global$c.Symbol;
374
+ var symbolFor = Symbol$1 && Symbol$1['for'];
375
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
376
+
377
+ var wellKnownSymbol$4 = function (name) {
378
+ if (!hasOwn$6(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
379
+ var description = 'Symbol.' + name;
380
+ if (NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)) {
381
+ WellKnownSymbolsStore[name] = Symbol$1[name];
382
+ } else if (USE_SYMBOL_AS_UID && symbolFor) {
383
+ WellKnownSymbolsStore[name] = symbolFor(description);
384
+ } else {
385
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
386
+ }
387
+ } return WellKnownSymbolsStore[name];
388
+ };var global$b = global$o;
389
+ var call$1 = functionCall;
390
+ var isObject$4 = isObject$6;
391
+ var isSymbol$1 = isSymbol$2;
392
+ var getMethod = getMethod$1;
393
+ var ordinaryToPrimitive = ordinaryToPrimitive$1;
394
+ var wellKnownSymbol$3 = wellKnownSymbol$4;
395
+
396
+ var TypeError$4 = global$b.TypeError;
397
+ var TO_PRIMITIVE = wellKnownSymbol$3('toPrimitive');
398
+
399
+ // `ToPrimitive` abstract operation
400
+ // https://tc39.es/ecma262/#sec-toprimitive
401
+ var toPrimitive$1 = function (input, pref) {
402
+ if (!isObject$4(input) || isSymbol$1(input)) return input;
403
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
404
+ var result;
405
+ if (exoticToPrim) {
406
+ if (pref === undefined) pref = 'default';
407
+ result = call$1(exoticToPrim, input, pref);
408
+ if (!isObject$4(result) || isSymbol$1(result)) return result;
409
+ throw TypeError$4("Can't convert object to primitive value");
410
+ }
411
+ if (pref === undefined) pref = 'number';
412
+ return ordinaryToPrimitive(input, pref);
413
+ };var toPrimitive = toPrimitive$1;
414
+ var isSymbol = isSymbol$2;
415
+
416
+ // `ToPropertyKey` abstract operation
417
+ // https://tc39.es/ecma262/#sec-topropertykey
418
+ var toPropertyKey$2 = function (argument) {
419
+ var key = toPrimitive(argument, 'string');
420
+ return isSymbol(key) ? key : key + '';
421
+ };var global$a = global$o;
422
+ var isObject$3 = isObject$6;
423
+
424
+ var document = global$a.document;
425
+ // typeof document.createElement is 'object' in old IE
426
+ var EXISTS$1 = isObject$3(document) && isObject$3(document.createElement);
427
+
428
+ var documentCreateElement$1 = function (it) {
429
+ return EXISTS$1 ? document.createElement(it) : {};
430
+ };var DESCRIPTORS$6 = descriptors;
431
+ var fails$4 = fails$9;
432
+ var createElement = documentCreateElement$1;
433
+
434
+ // Thanks to IE8 for its funny defineProperty
435
+ var ie8DomDefine = !DESCRIPTORS$6 && !fails$4(function () {
436
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
437
+ return Object.defineProperty(createElement('div'), 'a', {
438
+ get: function () { return 7; }
439
+ }).a != 7;
440
+ });var DESCRIPTORS$5 = descriptors;
441
+ var call = functionCall;
442
+ var propertyIsEnumerableModule = objectPropertyIsEnumerable;
443
+ var createPropertyDescriptor$1 = createPropertyDescriptor$2;
444
+ var toIndexedObject$3 = toIndexedObject$4;
445
+ var toPropertyKey$1 = toPropertyKey$2;
446
+ var hasOwn$5 = hasOwnProperty_1;
447
+ var IE8_DOM_DEFINE$1 = ie8DomDefine;
448
+
449
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
450
+ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
451
+
452
+ // `Object.getOwnPropertyDescriptor` method
453
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
454
+ var f$3 = objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
455
+ O = toIndexedObject$3(O);
456
+ P = toPropertyKey$1(P);
457
+ if (IE8_DOM_DEFINE$1) try {
458
+ return $getOwnPropertyDescriptor$1(O, P);
459
+ } catch (error) { /* empty */ }
460
+ if (hasOwn$5(O, P)) return createPropertyDescriptor$1(!call(propertyIsEnumerableModule.f, O, P), O[P]);
461
+ };var objectDefineProperty = {};var DESCRIPTORS$4 = descriptors;
462
+ var fails$3 = fails$9;
463
+
464
+ // V8 ~ Chrome 36-
465
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
466
+ var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$3(function () {
467
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
468
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
469
+ value: 42,
470
+ writable: false
471
+ }).prototype != 42;
472
+ });var global$9 = global$o;
473
+ var isObject$2 = isObject$6;
474
+
475
+ var String$1 = global$9.String;
476
+ var TypeError$3 = global$9.TypeError;
477
+
478
+ // `Assert: Type(argument) is Object`
479
+ var anObject$2 = function (argument) {
480
+ if (isObject$2(argument)) return argument;
481
+ throw TypeError$3(String$1(argument) + ' is not an object');
482
+ };var global$8 = global$o;
483
+ var DESCRIPTORS$3 = descriptors;
484
+ var IE8_DOM_DEFINE = ie8DomDefine;
485
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
486
+ var anObject$1 = anObject$2;
487
+ var toPropertyKey = toPropertyKey$2;
488
+
489
+ var TypeError$2 = global$8.TypeError;
490
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
491
+ var $defineProperty = Object.defineProperty;
492
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
493
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
494
+ var ENUMERABLE = 'enumerable';
495
+ var CONFIGURABLE$1 = 'configurable';
496
+ var WRITABLE = 'writable';
497
+
498
+ // `Object.defineProperty` method
499
+ // https://tc39.es/ecma262/#sec-object.defineproperty
500
+ var f$2 = objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
501
+ anObject$1(O);
502
+ P = toPropertyKey(P);
503
+ anObject$1(Attributes);
504
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
505
+ var current = $getOwnPropertyDescriptor(O, P);
506
+ if (current && current[WRITABLE]) {
507
+ O[P] = Attributes.value;
508
+ Attributes = {
509
+ configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
510
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
511
+ writable: false
512
+ };
513
+ }
514
+ } return $defineProperty(O, P, Attributes);
515
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
516
+ anObject$1(O);
517
+ P = toPropertyKey(P);
518
+ anObject$1(Attributes);
519
+ if (IE8_DOM_DEFINE) try {
520
+ return $defineProperty(O, P, Attributes);
521
+ } catch (error) { /* empty */ }
522
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError$2('Accessors not supported');
523
+ if ('value' in Attributes) O[P] = Attributes.value;
524
+ return O;
525
+ };var DESCRIPTORS$2 = descriptors;
526
+ var definePropertyModule$1 = objectDefineProperty;
527
+ var createPropertyDescriptor = createPropertyDescriptor$2;
528
+
529
+ var createNonEnumerableProperty$4 = DESCRIPTORS$2 ? function (object, key, value) {
530
+ return definePropertyModule$1.f(object, key, createPropertyDescriptor(1, value));
531
+ } : function (object, key, value) {
532
+ object[key] = value;
533
+ return object;
534
+ };var redefine$3 = {exports: {}};var uncurryThis$7 = functionUncurryThis;
535
+ var isCallable$5 = isCallable$b;
536
+ var store$1 = sharedStore;
537
+
538
+ var functionToString = uncurryThis$7(Function.toString);
539
+
540
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
541
+ if (!isCallable$5(store$1.inspectSource)) {
542
+ store$1.inspectSource = function (it) {
543
+ return functionToString(it);
544
+ };
545
+ }
546
+
547
+ var inspectSource$3 = store$1.inspectSource;var global$7 = global$o;
548
+ var isCallable$4 = isCallable$b;
549
+ var inspectSource$2 = inspectSource$3;
550
+
551
+ var WeakMap$1 = global$7.WeakMap;
552
+
553
+ var nativeWeakMap = isCallable$4(WeakMap$1) && /native code/.test(inspectSource$2(WeakMap$1));var shared$1 = shared$4.exports;
554
+ var uid = uid$2;
555
+
556
+ var keys = shared$1('keys');
557
+
558
+ var sharedKey$1 = function (key) {
559
+ return keys[key] || (keys[key] = uid(key));
560
+ };var hiddenKeys$3 = {};var NATIVE_WEAK_MAP = nativeWeakMap;
561
+ var global$6 = global$o;
562
+ var uncurryThis$6 = functionUncurryThis;
563
+ var isObject$1 = isObject$6;
564
+ var createNonEnumerableProperty$3 = createNonEnumerableProperty$4;
565
+ var hasOwn$4 = hasOwnProperty_1;
566
+ var shared = sharedStore;
567
+ var sharedKey = sharedKey$1;
568
+ var hiddenKeys$2 = hiddenKeys$3;
569
+
570
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
571
+ var TypeError$1 = global$6.TypeError;
572
+ var WeakMap = global$6.WeakMap;
573
+ var set, get, has;
574
+
575
+ var enforce = function (it) {
576
+ return has(it) ? get(it) : set(it, {});
577
+ };
578
+
579
+ var getterFor = function (TYPE) {
580
+ return function (it) {
581
+ var state;
582
+ if (!isObject$1(it) || (state = get(it)).type !== TYPE) {
583
+ throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
584
+ } return state;
585
+ };
586
+ };
587
+
588
+ if (NATIVE_WEAK_MAP || shared.state) {
589
+ var store = shared.state || (shared.state = new WeakMap());
590
+ var wmget = uncurryThis$6(store.get);
591
+ var wmhas = uncurryThis$6(store.has);
592
+ var wmset = uncurryThis$6(store.set);
593
+ set = function (it, metadata) {
594
+ if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
595
+ metadata.facade = it;
596
+ wmset(store, it, metadata);
597
+ return metadata;
598
+ };
599
+ get = function (it) {
600
+ return wmget(store, it) || {};
601
+ };
602
+ has = function (it) {
603
+ return wmhas(store, it);
604
+ };
605
+ } else {
606
+ var STATE = sharedKey('state');
607
+ hiddenKeys$2[STATE] = true;
608
+ set = function (it, metadata) {
609
+ if (hasOwn$4(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
610
+ metadata.facade = it;
611
+ createNonEnumerableProperty$3(it, STATE, metadata);
612
+ return metadata;
613
+ };
614
+ get = function (it) {
615
+ return hasOwn$4(it, STATE) ? it[STATE] : {};
616
+ };
617
+ has = function (it) {
618
+ return hasOwn$4(it, STATE);
619
+ };
620
+ }
621
+
622
+ var internalState = {
623
+ set: set,
624
+ get: get,
625
+ has: has,
626
+ enforce: enforce,
627
+ getterFor: getterFor
628
+ };var DESCRIPTORS$1 = descriptors;
629
+ var hasOwn$3 = hasOwnProperty_1;
630
+
631
+ var FunctionPrototype = Function.prototype;
632
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
633
+ var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
634
+
635
+ var EXISTS = hasOwn$3(FunctionPrototype, 'name');
636
+ // additional protection from minified / mangled / dropped function names
637
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
638
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
639
+
640
+ var functionName = {
641
+ EXISTS: EXISTS,
642
+ PROPER: PROPER,
643
+ CONFIGURABLE: CONFIGURABLE
644
+ };var global$5 = global$o;
645
+ var isCallable$3 = isCallable$b;
646
+ var hasOwn$2 = hasOwnProperty_1;
647
+ var createNonEnumerableProperty$2 = createNonEnumerableProperty$4;
648
+ var setGlobal$1 = setGlobal$3;
649
+ var inspectSource$1 = inspectSource$3;
650
+ var InternalStateModule = internalState;
651
+ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
652
+
653
+ var getInternalState = InternalStateModule.get;
654
+ var enforceInternalState = InternalStateModule.enforce;
655
+ var TEMPLATE = String(String).split('String');
656
+
657
+ (redefine$3.exports = function (O, key, value, options) {
658
+ var unsafe = options ? !!options.unsafe : false;
659
+ var simple = options ? !!options.enumerable : false;
660
+ var noTargetGet = options ? !!options.noTargetGet : false;
661
+ var name = options && options.name !== undefined ? options.name : key;
662
+ var state;
663
+ if (isCallable$3(value)) {
664
+ if (String(name).slice(0, 7) === 'Symbol(') {
665
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
666
+ }
667
+ if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
668
+ createNonEnumerableProperty$2(value, 'name', name);
669
+ }
670
+ state = enforceInternalState(value);
671
+ if (!state.source) {
672
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
673
+ }
674
+ }
675
+ if (O === global$5) {
676
+ if (simple) O[key] = value;
677
+ else setGlobal$1(key, value);
678
+ return;
679
+ } else if (!unsafe) {
680
+ delete O[key];
681
+ } else if (!noTargetGet && O[key]) {
682
+ simple = true;
683
+ }
684
+ if (simple) O[key] = value;
685
+ else createNonEnumerableProperty$2(O, key, value);
686
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
687
+ })(Function.prototype, 'toString', function toString() {
688
+ return isCallable$3(this) && getInternalState(this).source || inspectSource$1(this);
689
+ });
690
+
691
+ var redefine$2 = redefine$3.exports;var objectGetOwnPropertyNames = {};var ceil = Math.ceil;
692
+ var floor = Math.floor;
693
+
694
+ // `ToIntegerOrInfinity` abstract operation
695
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
696
+ var toIntegerOrInfinity$2 = function (argument) {
697
+ var number = +argument;
698
+ // eslint-disable-next-line no-self-compare -- safe
699
+ return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
700
+ };var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
701
+
702
+ var max = Math.max;
703
+ var min$1 = Math.min;
704
+
705
+ // Helper for a popular repeating case of the spec:
706
+ // Let integer be ? ToInteger(index).
707
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
708
+ var toAbsoluteIndex$1 = function (index, length) {
709
+ var integer = toIntegerOrInfinity$1(index);
710
+ return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
711
+ };var toIntegerOrInfinity = toIntegerOrInfinity$2;
712
+
713
+ var min = Math.min;
714
+
715
+ // `ToLength` abstract operation
716
+ // https://tc39.es/ecma262/#sec-tolength
717
+ var toLength$1 = function (argument) {
718
+ return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
719
+ };var toLength = toLength$1;
720
+
721
+ // `LengthOfArrayLike` abstract operation
722
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
723
+ var lengthOfArrayLike$2 = function (obj) {
724
+ return toLength(obj.length);
725
+ };var toIndexedObject$2 = toIndexedObject$4;
726
+ var toAbsoluteIndex = toAbsoluteIndex$1;
727
+ var lengthOfArrayLike$1 = lengthOfArrayLike$2;
728
+
729
+ // `Array.prototype.{ indexOf, includes }` methods implementation
730
+ var createMethod$2 = function (IS_INCLUDES) {
731
+ return function ($this, el, fromIndex) {
732
+ var O = toIndexedObject$2($this);
733
+ var length = lengthOfArrayLike$1(O);
734
+ var index = toAbsoluteIndex(fromIndex, length);
735
+ var value;
736
+ // Array#includes uses SameValueZero equality algorithm
737
+ // eslint-disable-next-line no-self-compare -- NaN check
738
+ if (IS_INCLUDES && el != el) while (length > index) {
739
+ value = O[index++];
740
+ // eslint-disable-next-line no-self-compare -- NaN check
741
+ if (value != value) return true;
742
+ // Array#indexOf ignores holes, Array#includes - not
743
+ } else for (;length > index; index++) {
744
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
745
+ } return !IS_INCLUDES && -1;
746
+ };
747
+ };
748
+
749
+ var arrayIncludes = {
750
+ // `Array.prototype.includes` method
751
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
752
+ includes: createMethod$2(true),
753
+ // `Array.prototype.indexOf` method
754
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
755
+ indexOf: createMethod$2(false)
756
+ };var uncurryThis$5 = functionUncurryThis;
757
+ var hasOwn$1 = hasOwnProperty_1;
758
+ var toIndexedObject$1 = toIndexedObject$4;
759
+ var indexOf = arrayIncludes.indexOf;
760
+ var hiddenKeys$1 = hiddenKeys$3;
761
+
762
+ var push$2 = uncurryThis$5([].push);
763
+
764
+ var objectKeysInternal = function (object, names) {
765
+ var O = toIndexedObject$1(object);
766
+ var i = 0;
767
+ var result = [];
768
+ var key;
769
+ for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push$2(result, key);
770
+ // Don't enum bug & hidden keys
771
+ while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
772
+ ~indexOf(result, key) || push$2(result, key);
773
+ }
774
+ return result;
775
+ };// IE8- don't enum bug keys
776
+ var enumBugKeys$2 = [
777
+ 'constructor',
778
+ 'hasOwnProperty',
779
+ 'isPrototypeOf',
780
+ 'propertyIsEnumerable',
781
+ 'toLocaleString',
782
+ 'toString',
783
+ 'valueOf'
784
+ ];var internalObjectKeys$1 = objectKeysInternal;
785
+ var enumBugKeys$1 = enumBugKeys$2;
786
+
787
+ var hiddenKeys = enumBugKeys$1.concat('length', 'prototype');
788
+
789
+ // `Object.getOwnPropertyNames` method
790
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
791
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
792
+ var f$1 = objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
793
+ return internalObjectKeys$1(O, hiddenKeys);
794
+ };var objectGetOwnPropertySymbols = {};// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
795
+ var f = objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;var getBuiltIn$1 = getBuiltIn$4;
796
+ var uncurryThis$4 = functionUncurryThis;
797
+ var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
798
+ var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
799
+ var anObject = anObject$2;
800
+
801
+ var concat = uncurryThis$4([].concat);
802
+
803
+ // all object keys, includes non-enumerable and symbols
804
+ var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
805
+ var keys = getOwnPropertyNamesModule.f(anObject(it));
806
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
807
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
808
+ };var hasOwn = hasOwnProperty_1;
809
+ var ownKeys = ownKeys$1;
810
+ var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
811
+ var definePropertyModule = objectDefineProperty;
812
+
813
+ var copyConstructorProperties$1 = function (target, source, exceptions) {
814
+ var keys = ownKeys(source);
815
+ var defineProperty = definePropertyModule.f;
816
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
817
+ for (var i = 0; i < keys.length; i++) {
818
+ var key = keys[i];
819
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
820
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
821
+ }
822
+ }
823
+ };var fails$2 = fails$9;
824
+ var isCallable$2 = isCallable$b;
825
+
826
+ var replacement = /#|\.prototype\./;
827
+
828
+ var isForced$1 = function (feature, detection) {
829
+ var value = data[normalize(feature)];
830
+ return value == POLYFILL ? true
831
+ : value == NATIVE ? false
832
+ : isCallable$2(detection) ? fails$2(detection)
833
+ : !!detection;
834
+ };
835
+
836
+ var normalize = isForced$1.normalize = function (string) {
837
+ return String(string).replace(replacement, '.').toLowerCase();
838
+ };
839
+
840
+ var data = isForced$1.data = {};
841
+ var NATIVE = isForced$1.NATIVE = 'N';
842
+ var POLYFILL = isForced$1.POLYFILL = 'P';
843
+
844
+ var isForced_1 = isForced$1;var global$4 = global$o;
845
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
846
+ var createNonEnumerableProperty$1 = createNonEnumerableProperty$4;
847
+ var redefine$1 = redefine$3.exports;
848
+ var setGlobal = setGlobal$3;
849
+ var copyConstructorProperties = copyConstructorProperties$1;
850
+ var isForced = isForced_1;
851
+
852
+ /*
853
+ options.target - name of the target object
854
+ options.global - target is the global object
855
+ options.stat - export as static methods of target
856
+ options.proto - export as prototype methods of target
857
+ options.real - real prototype method for the `pure` version
858
+ options.forced - export even if the native feature is available
859
+ options.bind - bind methods to the target, required for the `pure` version
860
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
861
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
862
+ options.sham - add a flag to not completely full polyfills
863
+ options.enumerable - export as enumerable property
864
+ options.noTargetGet - prevent calling a getter on target
865
+ options.name - the .name of the function if it does not match the key
866
+ */
867
+ var _export = function (options, source) {
868
+ var TARGET = options.target;
869
+ var GLOBAL = options.global;
870
+ var STATIC = options.stat;
871
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
872
+ if (GLOBAL) {
873
+ target = global$4;
874
+ } else if (STATIC) {
875
+ target = global$4[TARGET] || setGlobal(TARGET, {});
876
+ } else {
877
+ target = (global$4[TARGET] || {}).prototype;
878
+ }
879
+ if (target) for (key in source) {
880
+ sourceProperty = source[key];
881
+ if (options.noTargetGet) {
882
+ descriptor = getOwnPropertyDescriptor(target, key);
883
+ targetProperty = descriptor && descriptor.value;
884
+ } else targetProperty = target[key];
885
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
886
+ // contained in target
887
+ if (!FORCED && targetProperty !== undefined) {
888
+ if (typeof sourceProperty == typeof targetProperty) continue;
889
+ copyConstructorProperties(sourceProperty, targetProperty);
890
+ }
891
+ // add a flag to not completely full polyfills
892
+ if (options.sham || (targetProperty && targetProperty.sham)) {
893
+ createNonEnumerableProperty$1(sourceProperty, 'sham', true);
894
+ }
895
+ // extend global
896
+ redefine$1(target, key, sourceProperty, options);
897
+ }
898
+ };var uncurryThis$3 = functionUncurryThis;
899
+ var aCallable = aCallable$2;
900
+ var NATIVE_BIND = functionBindNative;
901
+
902
+ var bind$1 = uncurryThis$3(uncurryThis$3.bind);
903
+
904
+ // optional / simple context binding
905
+ var functionBindContext = function (fn, that) {
906
+ aCallable(fn);
907
+ return that === undefined ? fn : NATIVE_BIND ? bind$1(fn, that) : function (/* ...args */) {
908
+ return fn.apply(that, arguments);
909
+ };
910
+ };var classof$3 = classofRaw$1;
911
+
912
+ // `IsArray` abstract operation
913
+ // https://tc39.es/ecma262/#sec-isarray
914
+ // eslint-disable-next-line es/no-array-isarray -- safe
915
+ var isArray$1 = Array.isArray || function isArray(argument) {
916
+ return classof$3(argument) == 'Array';
917
+ };var wellKnownSymbol$2 = wellKnownSymbol$4;
918
+
919
+ var TO_STRING_TAG$1 = wellKnownSymbol$2('toStringTag');
920
+ var test = {};
921
+
922
+ test[TO_STRING_TAG$1] = 'z';
923
+
924
+ var toStringTagSupport = String(test) === '[object z]';var global$3 = global$o;
925
+ var TO_STRING_TAG_SUPPORT$2 = toStringTagSupport;
926
+ var isCallable$1 = isCallable$b;
927
+ var classofRaw = classofRaw$1;
928
+ var wellKnownSymbol$1 = wellKnownSymbol$4;
929
+
930
+ var TO_STRING_TAG = wellKnownSymbol$1('toStringTag');
931
+ var Object$1 = global$3.Object;
932
+
933
+ // ES3 wrong here
934
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
935
+
936
+ // fallback for IE11 Script Access Denied error
937
+ var tryGet = function (it, key) {
938
+ try {
939
+ return it[key];
940
+ } catch (error) { /* empty */ }
941
+ };
942
+
943
+ // getting tag from ES6+ `Object.prototype.toString`
944
+ var classof$2 = TO_STRING_TAG_SUPPORT$2 ? classofRaw : function (it) {
945
+ var O, tag, result;
946
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
947
+ // @@toStringTag case
948
+ : typeof (tag = tryGet(O = Object$1(it), TO_STRING_TAG)) == 'string' ? tag
949
+ // builtinTag case
950
+ : CORRECT_ARGUMENTS ? classofRaw(O)
951
+ // ES3 arguments fallback
952
+ : (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
953
+ };var uncurryThis$2 = functionUncurryThis;
954
+ var fails$1 = fails$9;
955
+ var isCallable = isCallable$b;
956
+ var classof$1 = classof$2;
957
+ var getBuiltIn = getBuiltIn$4;
958
+ var inspectSource = inspectSource$3;
959
+
960
+ var noop = function () { /* empty */ };
961
+ var empty = [];
962
+ var construct = getBuiltIn('Reflect', 'construct');
963
+ var constructorRegExp = /^\s*(?:class|function)\b/;
964
+ var exec = uncurryThis$2(constructorRegExp.exec);
965
+ var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
966
+
967
+ var isConstructorModern = function isConstructor(argument) {
968
+ if (!isCallable(argument)) return false;
969
+ try {
970
+ construct(noop, empty, argument);
971
+ return true;
972
+ } catch (error) {
973
+ return false;
974
+ }
975
+ };
976
+
977
+ var isConstructorLegacy = function isConstructor(argument) {
978
+ if (!isCallable(argument)) return false;
979
+ switch (classof$1(argument)) {
980
+ case 'AsyncFunction':
981
+ case 'GeneratorFunction':
982
+ case 'AsyncGeneratorFunction': return false;
983
+ }
984
+ try {
985
+ // we can't check .prototype since constructors produced by .bind haven't it
986
+ // `Function#toString` throws on some built-it function in some legacy engines
987
+ // (for example, `DOMQuad` and similar in FF41-)
988
+ return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
989
+ } catch (error) {
990
+ return true;
991
+ }
992
+ };
993
+
994
+ isConstructorLegacy.sham = true;
995
+
996
+ // `IsConstructor` abstract operation
997
+ // https://tc39.es/ecma262/#sec-isconstructor
998
+ var isConstructor$1 = !construct || fails$1(function () {
999
+ var called;
1000
+ return isConstructorModern(isConstructorModern.call)
1001
+ || !isConstructorModern(Object)
1002
+ || !isConstructorModern(function () { called = true; })
1003
+ || called;
1004
+ }) ? isConstructorLegacy : isConstructorModern;var global$2 = global$o;
1005
+ var isArray = isArray$1;
1006
+ var isConstructor = isConstructor$1;
1007
+ var isObject = isObject$6;
1008
+ var wellKnownSymbol = wellKnownSymbol$4;
1009
+
1010
+ var SPECIES = wellKnownSymbol('species');
1011
+ var Array$1 = global$2.Array;
1012
+
1013
+ // a part of `ArraySpeciesCreate` abstract operation
1014
+ // https://tc39.es/ecma262/#sec-arrayspeciescreate
1015
+ var arraySpeciesConstructor$1 = function (originalArray) {
1016
+ var C;
1017
+ if (isArray(originalArray)) {
1018
+ C = originalArray.constructor;
1019
+ // cross-realm fallback
1020
+ if (isConstructor(C) && (C === Array$1 || isArray(C.prototype))) C = undefined;
1021
+ else if (isObject(C)) {
1022
+ C = C[SPECIES];
1023
+ if (C === null) C = undefined;
1024
+ }
1025
+ } return C === undefined ? Array$1 : C;
1026
+ };var arraySpeciesConstructor = arraySpeciesConstructor$1;
1027
+
1028
+ // `ArraySpeciesCreate` abstract operation
1029
+ // https://tc39.es/ecma262/#sec-arrayspeciescreate
1030
+ var arraySpeciesCreate$1 = function (originalArray, length) {
1031
+ return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
1032
+ };var bind = functionBindContext;
1033
+ var uncurryThis$1 = functionUncurryThis;
1034
+ var IndexedObject = indexedObject;
1035
+ var toObject = toObject$2;
1036
+ var lengthOfArrayLike = lengthOfArrayLike$2;
1037
+ var arraySpeciesCreate = arraySpeciesCreate$1;
1038
+
1039
+ var push$1 = uncurryThis$1([].push);
1040
+
1041
+ // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
1042
+ var createMethod$1 = function (TYPE) {
1043
+ var IS_MAP = TYPE == 1;
1044
+ var IS_FILTER = TYPE == 2;
1045
+ var IS_SOME = TYPE == 3;
1046
+ var IS_EVERY = TYPE == 4;
1047
+ var IS_FIND_INDEX = TYPE == 6;
1048
+ var IS_FILTER_REJECT = TYPE == 7;
1049
+ var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
1050
+ return function ($this, callbackfn, that, specificCreate) {
1051
+ var O = toObject($this);
1052
+ var self = IndexedObject(O);
1053
+ var boundFunction = bind(callbackfn, that);
1054
+ var length = lengthOfArrayLike(self);
1055
+ var index = 0;
1056
+ var create = specificCreate || arraySpeciesCreate;
1057
+ var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
1058
+ var value, result;
1059
+ for (;length > index; index++) if (NO_HOLES || index in self) {
1060
+ value = self[index];
1061
+ result = boundFunction(value, index, O);
1062
+ if (TYPE) {
1063
+ if (IS_MAP) target[index] = result; // map
1064
+ else if (result) switch (TYPE) {
1065
+ case 3: return true; // some
1066
+ case 5: return value; // find
1067
+ case 6: return index; // findIndex
1068
+ case 2: push$1(target, value); // filter
1069
+ } else switch (TYPE) {
1070
+ case 4: return false; // every
1071
+ case 7: push$1(target, value); // filterReject
1072
+ }
1073
+ }
1074
+ }
1075
+ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
1076
+ };
1077
+ };
1078
+
1079
+ var arrayIteration = {
1080
+ // `Array.prototype.forEach` method
1081
+ // https://tc39.es/ecma262/#sec-array.prototype.foreach
1082
+ forEach: createMethod$1(0),
1083
+ // `Array.prototype.map` method
1084
+ // https://tc39.es/ecma262/#sec-array.prototype.map
1085
+ map: createMethod$1(1),
1086
+ // `Array.prototype.filter` method
1087
+ // https://tc39.es/ecma262/#sec-array.prototype.filter
1088
+ filter: createMethod$1(2),
1089
+ // `Array.prototype.some` method
1090
+ // https://tc39.es/ecma262/#sec-array.prototype.some
1091
+ some: createMethod$1(3),
1092
+ // `Array.prototype.every` method
1093
+ // https://tc39.es/ecma262/#sec-array.prototype.every
1094
+ every: createMethod$1(4),
1095
+ // `Array.prototype.find` method
1096
+ // https://tc39.es/ecma262/#sec-array.prototype.find
1097
+ find: createMethod$1(5),
1098
+ // `Array.prototype.findIndex` method
1099
+ // https://tc39.es/ecma262/#sec-array.prototype.findIndex
1100
+ findIndex: createMethod$1(6),
1101
+ // `Array.prototype.filterReject` method
1102
+ // https://github.com/tc39/proposal-array-filtering
1103
+ filterReject: createMethod$1(7)
1104
+ };'use strict';
1105
+ var fails = fails$9;
1106
+
1107
+ var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
1108
+ var method = [][METHOD_NAME];
1109
+ return !!method && fails(function () {
1110
+ // eslint-disable-next-line no-useless-call -- required for testing
1111
+ method.call(null, argument || function () { return 1; }, 1);
1112
+ });
1113
+ };'use strict';
1114
+ var $forEach = arrayIteration.forEach;
1115
+ var arrayMethodIsStrict = arrayMethodIsStrict$1;
1116
+
1117
+ var STRICT_METHOD = arrayMethodIsStrict('forEach');
1118
+
1119
+ // `Array.prototype.forEach` method implementation
1120
+ // https://tc39.es/ecma262/#sec-array.prototype.foreach
1121
+ var arrayForEach = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
1122
+ return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
1123
+ // eslint-disable-next-line es/no-array-prototype-foreach -- safe
1124
+ } : [].forEach;'use strict';
1125
+ var $$1 = _export;
1126
+ var forEach$1 = arrayForEach;
1127
+
1128
+ // `Array.prototype.forEach` method
1129
+ // https://tc39.es/ecma262/#sec-array.prototype.foreach
1130
+ // eslint-disable-next-line es/no-array-prototype-foreach -- safe
1131
+ $$1({ target: 'Array', proto: true, forced: [].forEach != forEach$1 }, {
1132
+ forEach: forEach$1
1133
+ });var es_object_toString = {};'use strict';
1134
+ var TO_STRING_TAG_SUPPORT$1 = toStringTagSupport;
1135
+ var classof = classof$2;
1136
+
1137
+ // `Object.prototype.toString` method implementation
1138
+ // https://tc39.es/ecma262/#sec-object.prototype.tostring
1139
+ var objectToString = TO_STRING_TAG_SUPPORT$1 ? {}.toString : function toString() {
1140
+ return '[object ' + classof(this) + ']';
1141
+ };var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1142
+ var redefine = redefine$3.exports;
1143
+ var toString = objectToString;
1144
+
1145
+ // `Object.prototype.toString` method
1146
+ // https://tc39.es/ecma262/#sec-object.prototype.tostring
1147
+ if (!TO_STRING_TAG_SUPPORT) {
1148
+ redefine(Object.prototype, 'toString', toString, { unsafe: true });
1149
+ }var web_domCollections_forEach = {};// iterable DOM collections
1150
+ // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
1151
+ var domIterables = {
1152
+ CSSRuleList: 0,
1153
+ CSSStyleDeclaration: 0,
1154
+ CSSValueList: 0,
1155
+ ClientRectList: 0,
1156
+ DOMRectList: 0,
1157
+ DOMStringList: 0,
1158
+ DOMTokenList: 1,
1159
+ DataTransferItemList: 0,
1160
+ FileList: 0,
1161
+ HTMLAllCollection: 0,
1162
+ HTMLCollection: 0,
1163
+ HTMLFormElement: 0,
1164
+ HTMLSelectElement: 0,
1165
+ MediaList: 0,
1166
+ MimeTypeArray: 0,
1167
+ NamedNodeMap: 0,
1168
+ NodeList: 1,
1169
+ PaintRequestList: 0,
1170
+ Plugin: 0,
1171
+ PluginArray: 0,
1172
+ SVGLengthList: 0,
1173
+ SVGNumberList: 0,
1174
+ SVGPathSegList: 0,
1175
+ SVGPointList: 0,
1176
+ SVGStringList: 0,
1177
+ SVGTransformList: 0,
1178
+ SourceBufferList: 0,
1179
+ StyleSheetList: 0,
1180
+ TextTrackCueList: 0,
1181
+ TextTrackList: 0,
1182
+ TouchList: 0
1183
+ };// in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList`
1184
+ var documentCreateElement = documentCreateElement$1;
1185
+
1186
+ var classList = documentCreateElement('span').classList;
1187
+ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.constructor.prototype;
1188
+
1189
+ var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;var global$1 = global$o;
1190
+ var DOMIterables = domIterables;
1191
+ var DOMTokenListPrototype = domTokenListPrototype;
1192
+ var forEach = arrayForEach;
1193
+ var createNonEnumerableProperty = createNonEnumerableProperty$4;
1194
+
1195
+ var handlePrototype = function (CollectionPrototype) {
1196
+ // some Chrome versions have non-configurable methods on DOMTokenList
1197
+ if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {
1198
+ createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);
1199
+ } catch (error) {
1200
+ CollectionPrototype.forEach = forEach;
1201
+ }
1202
+ };
1203
+
1204
+ for (var COLLECTION_NAME in DOMIterables) {
1205
+ if (DOMIterables[COLLECTION_NAME]) {
1206
+ handlePrototype(global$1[COLLECTION_NAME] && global$1[COLLECTION_NAME].prototype);
1207
+ }
1208
+ }
1209
+
1210
+ handlePrototype(DOMTokenListPrototype);var es_object_entries = {};var internalObjectKeys = objectKeysInternal;
1211
+ var enumBugKeys = enumBugKeys$2;
1212
+
1213
+ // `Object.keys` method
1214
+ // https://tc39.es/ecma262/#sec-object.keys
1215
+ // eslint-disable-next-line es/no-object-keys -- safe
1216
+ var objectKeys$1 = Object.keys || function keys(O) {
1217
+ return internalObjectKeys(O, enumBugKeys);
1218
+ };var DESCRIPTORS = descriptors;
1219
+ var uncurryThis = functionUncurryThis;
1220
+ var objectKeys = objectKeys$1;
1221
+ var toIndexedObject = toIndexedObject$4;
1222
+ var $propertyIsEnumerable = objectPropertyIsEnumerable.f;
1223
+
1224
+ var propertyIsEnumerable = uncurryThis($propertyIsEnumerable);
1225
+ var push = uncurryThis([].push);
1226
+
1227
+ // `Object.{ entries, values }` methods implementation
1228
+ var createMethod = function (TO_ENTRIES) {
1229
+ return function (it) {
1230
+ var O = toIndexedObject(it);
1231
+ var keys = objectKeys(O);
1232
+ var length = keys.length;
1233
+ var i = 0;
1234
+ var result = [];
1235
+ var key;
1236
+ while (length > i) {
1237
+ key = keys[i++];
1238
+ if (!DESCRIPTORS || propertyIsEnumerable(O, key)) {
1239
+ push(result, TO_ENTRIES ? [key, O[key]] : O[key]);
1240
+ }
1241
+ }
1242
+ return result;
1243
+ };
1244
+ };
1245
+
1246
+ var objectToArray = {
1247
+ // `Object.entries` method
1248
+ // https://tc39.es/ecma262/#sec-object.entries
1249
+ entries: createMethod(true),
1250
+ // `Object.values` method
1251
+ // https://tc39.es/ecma262/#sec-object.values
1252
+ values: createMethod(false)
1253
+ };var $ = _export;
1254
+ var $entries = objectToArray.entries;
1255
+
1256
+ // `Object.entries` method
1257
+ // https://tc39.es/ecma262/#sec-object.entries
1258
+ $({ target: 'Object', stat: true }, {
1259
+ entries: function entries(O) {
1260
+ return $entries(O);
1261
+ }
1262
+ });var script = vue.defineComponent({
1263
+ name: 'FwCard',
1264
+ props: {
1265
+ /**
1266
+ * The header title of the card
1267
+ */
1268
+ title: {
1269
+ type: String
1270
+ },
1271
+
1272
+ /**
1273
+ * Title prefix with primary color
1274
+ */
1275
+ prefixTitle: {
1276
+ type: String
1277
+ }
1278
+ }
1279
+ });var _hoisted_1 = {
1280
+ "class": "fw-card shadow rounded-lg"
1281
+ };
1282
+ var _hoisted_2 = {
1283
+ key: 0,
1284
+ "class": "fw-card--header text-lg px-8 py-4 font-bold bg-grey-lightest rounded-t-lg border-opacity-0"
1285
+ };
1286
+ var _hoisted_3 = {
1287
+ key: 0,
1288
+ "class": "fw-card--prefix-title text-primary"
1289
+ };
1290
+ var _hoisted_4 = {
1291
+ key: 1
1292
+ };
1293
+ var _hoisted_5 = {
1294
+ key: 1,
1295
+ "class": "p-8"
1296
+ };
1297
+ function render(_ctx, _cache, $props, $setup, $data, $options) {
1298
+ return vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [_ctx.title || _ctx.prefixTitle ? (vue.openBlock(), vue.createElementBlock("h4", _hoisted_2, [_ctx.prefixTitle ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_3, vue.toDisplayString(_ctx.prefixTitle), 1)) : vue.createCommentVNode("", true), _ctx.title ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_4, vue.toDisplayString(_ctx.title), 1)) : vue.createCommentVNode("", true)])) : vue.createCommentVNode("", true), _ctx.$slots["default"] ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5, [vue.renderSlot(_ctx.$slots, "default")])) : vue.createCommentVNode("", true)]);
1299
+ }script.render = render;var components$1=/*#__PURE__*/Object.freeze({__proto__:null,FwCard:script});var install = function install(app) {
1300
+ Object.entries(components$1).forEach(function (_ref) {
1301
+ var _ref2 = _slicedToArray(_ref, 2),
1302
+ componentName = _ref2[0],
1303
+ component = _ref2[1];
1304
+
1305
+ app.component(componentName, component);
1306
+ });
1307
+ };var components=/*#__PURE__*/Object.freeze({__proto__:null,'default':install,FwCard:script});Object.entries(components).forEach(function (_ref) {
1308
+ var _ref2 = _slicedToArray(_ref, 2),
1309
+ componentName = _ref2[0],
1310
+ component = _ref2[1];
1311
+
1312
+ if (componentName !== 'default') {
1313
+ var key = componentName;
1314
+ var val = component;
1315
+ install[key] = val;
1316
+ }
1317
+ });exports["default"]=install;