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