@frollo/frollo-web-ui 0.1.2 → 0.2.0
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 +96 -141
- package/esm/fw-navigation-menu.js +9 -65
- package/esm/fw-tabs.js +1 -2
- package/esm/{index-5ee56f7d.js → index-0e14da44.js} +61 -14
- package/esm/index.js +4 -5
- package/frollo-web-ui.esm.js +96 -151
- package/index.d.ts +2 -14
- package/package.json +1 -1
- package/types/components/fw-button/index.types.d.ts +1 -9
- package/types/components/fw-input/index.types.d.ts +1 -4
- package/types/components/fw-navigation-menu/fw-navigation-menu.vue.d.ts +0 -2
- package/esm/to-string-139f1ee8.js +0 -52
package/cjs/index.js
CHANGED
|
@@ -91,21 +91,21 @@ var global$f =
|
|
|
91
91
|
check(typeof self == 'object' && self) ||
|
|
92
92
|
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
93
93
|
// eslint-disable-next-line no-new-func -- fallback
|
|
94
|
-
(function () { return this; })() || Function('return this')();var objectGetOwnPropertyDescriptor = {};var fails$
|
|
94
|
+
(function () { return this; })() || Function('return this')();var objectGetOwnPropertyDescriptor = {};var fails$c = function (exec) {
|
|
95
95
|
try {
|
|
96
96
|
return !!exec();
|
|
97
97
|
} catch (error) {
|
|
98
98
|
return true;
|
|
99
99
|
}
|
|
100
|
-
};var fails$
|
|
100
|
+
};var fails$b = fails$c;
|
|
101
101
|
|
|
102
102
|
// Detect IE8's incomplete defineProperty implementation
|
|
103
|
-
var descriptors = !fails$
|
|
103
|
+
var descriptors = !fails$b(function () {
|
|
104
104
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
105
105
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
106
|
-
});var fails$
|
|
106
|
+
});var fails$a = fails$c;
|
|
107
107
|
|
|
108
|
-
var functionBindNative = !fails$
|
|
108
|
+
var functionBindNative = !fails$a(function () {
|
|
109
109
|
// eslint-disable-next-line es-x/no-function-prototype-bind -- safe
|
|
110
110
|
var test = (function () { /* empty */ }).bind();
|
|
111
111
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
@@ -141,30 +141,30 @@ var f$5 = objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumer
|
|
|
141
141
|
var FunctionPrototype$3 = Function.prototype;
|
|
142
142
|
var bind$2 = FunctionPrototype$3.bind;
|
|
143
143
|
var call$4 = FunctionPrototype$3.call;
|
|
144
|
-
var uncurryThis$
|
|
144
|
+
var uncurryThis$j = NATIVE_BIND$2 && bind$2.bind(call$4, call$4);
|
|
145
145
|
|
|
146
146
|
var functionUncurryThis = NATIVE_BIND$2 ? function (fn) {
|
|
147
|
-
return fn && uncurryThis$
|
|
147
|
+
return fn && uncurryThis$j(fn);
|
|
148
148
|
} : function (fn) {
|
|
149
149
|
return fn && function () {
|
|
150
150
|
return call$4.apply(fn, arguments);
|
|
151
151
|
};
|
|
152
|
-
};var uncurryThis$
|
|
152
|
+
};var uncurryThis$i = functionUncurryThis;
|
|
153
153
|
|
|
154
|
-
var toString$
|
|
155
|
-
var stringSlice = uncurryThis$
|
|
154
|
+
var toString$5 = uncurryThis$i({}.toString);
|
|
155
|
+
var stringSlice = uncurryThis$i(''.slice);
|
|
156
156
|
|
|
157
157
|
var classofRaw$1 = function (it) {
|
|
158
|
-
return stringSlice(toString$
|
|
159
|
-
};var uncurryThis$
|
|
160
|
-
var fails$
|
|
158
|
+
return stringSlice(toString$5(it), 8, -1);
|
|
159
|
+
};var uncurryThis$h = functionUncurryThis;
|
|
160
|
+
var fails$9 = fails$c;
|
|
161
161
|
var classof$5 = classofRaw$1;
|
|
162
162
|
|
|
163
163
|
var $Object$3 = Object;
|
|
164
|
-
var split = uncurryThis$
|
|
164
|
+
var split = uncurryThis$h(''.split);
|
|
165
165
|
|
|
166
166
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
167
|
-
var indexedObject = fails$
|
|
167
|
+
var indexedObject = fails$9(function () {
|
|
168
168
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
169
169
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
170
170
|
return !$Object$3('z').propertyIsEnumerable(0);
|
|
@@ -174,15 +174,15 @@ var indexedObject = fails$a(function () {
|
|
|
174
174
|
|
|
175
175
|
// `RequireObjectCoercible` abstract operation
|
|
176
176
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
177
|
-
var requireObjectCoercible$
|
|
177
|
+
var requireObjectCoercible$3 = function (it) {
|
|
178
178
|
if (it == undefined) throw $TypeError$7("Can't call method on " + it);
|
|
179
179
|
return it;
|
|
180
180
|
};// toObject with fallback for non-array-like ES3 strings
|
|
181
181
|
var IndexedObject$1 = indexedObject;
|
|
182
|
-
var requireObjectCoercible$
|
|
182
|
+
var requireObjectCoercible$2 = requireObjectCoercible$3;
|
|
183
183
|
|
|
184
184
|
var toIndexedObject$5 = function (it) {
|
|
185
|
-
return IndexedObject$1(requireObjectCoercible$
|
|
185
|
+
return IndexedObject$1(requireObjectCoercible$2(it));
|
|
186
186
|
};// `IsCallable` abstract operation
|
|
187
187
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
188
188
|
var isCallable$g = function (argument) {
|
|
@@ -200,9 +200,9 @@ var aFunction = function (argument) {
|
|
|
200
200
|
|
|
201
201
|
var getBuiltIn$5 = function (namespace, method) {
|
|
202
202
|
return arguments.length < 2 ? aFunction(global$e[namespace]) : global$e[namespace] && global$e[namespace][method];
|
|
203
|
-
};var uncurryThis$
|
|
203
|
+
};var uncurryThis$g = functionUncurryThis;
|
|
204
204
|
|
|
205
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
205
|
+
var objectIsPrototypeOf = uncurryThis$g({}.isPrototypeOf);var getBuiltIn$4 = getBuiltIn$5;
|
|
206
206
|
|
|
207
207
|
var engineUserAgent = getBuiltIn$4('navigator', 'userAgent') || '';var global$d = global$f;
|
|
208
208
|
var userAgent$1 = engineUserAgent;
|
|
@@ -233,10 +233,10 @@ if (!version && userAgent$1) {
|
|
|
233
233
|
var engineV8Version = version;/* eslint-disable es-x/no-symbol -- required for testing */
|
|
234
234
|
|
|
235
235
|
var V8_VERSION = engineV8Version;
|
|
236
|
-
var fails$
|
|
236
|
+
var fails$8 = fails$c;
|
|
237
237
|
|
|
238
238
|
// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
|
|
239
|
-
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$
|
|
239
|
+
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$8(function () {
|
|
240
240
|
var symbol = Symbol();
|
|
241
241
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
242
242
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -329,32 +329,32 @@ var store$2 = sharedStore;
|
|
|
329
329
|
source: 'https://github.com/zloirock/core-js'
|
|
330
330
|
});
|
|
331
331
|
|
|
332
|
-
var shared$3 = shared$4.exports;var requireObjectCoercible$
|
|
332
|
+
var shared$3 = shared$4.exports;var requireObjectCoercible$1 = requireObjectCoercible$3;
|
|
333
333
|
|
|
334
334
|
var $Object$1 = Object;
|
|
335
335
|
|
|
336
336
|
// `ToObject` abstract operation
|
|
337
337
|
// https://tc39.es/ecma262/#sec-toobject
|
|
338
338
|
var toObject$2 = function (argument) {
|
|
339
|
-
return $Object$1(requireObjectCoercible$
|
|
340
|
-
};var uncurryThis$
|
|
339
|
+
return $Object$1(requireObjectCoercible$1(argument));
|
|
340
|
+
};var uncurryThis$f = functionUncurryThis;
|
|
341
341
|
var toObject$1 = toObject$2;
|
|
342
342
|
|
|
343
|
-
var hasOwnProperty$1 = uncurryThis$
|
|
343
|
+
var hasOwnProperty$1 = uncurryThis$f({}.hasOwnProperty);
|
|
344
344
|
|
|
345
345
|
// `HasOwnProperty` abstract operation
|
|
346
346
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
347
347
|
// eslint-disable-next-line es-x/no-object-hasown -- safe
|
|
348
348
|
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
349
349
|
return hasOwnProperty$1(toObject$1(it), key);
|
|
350
|
-
};var uncurryThis$
|
|
350
|
+
};var uncurryThis$e = functionUncurryThis;
|
|
351
351
|
|
|
352
352
|
var id = 0;
|
|
353
353
|
var postfix = Math.random();
|
|
354
|
-
var toString$
|
|
354
|
+
var toString$4 = uncurryThis$e(1.0.toString);
|
|
355
355
|
|
|
356
356
|
var uid$2 = function (key) {
|
|
357
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$
|
|
357
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$4(++id + postfix, 36);
|
|
358
358
|
};var global$a = global$f;
|
|
359
359
|
var shared$2 = shared$4.exports;
|
|
360
360
|
var hasOwn$7 = hasOwnProperty_1;
|
|
@@ -420,11 +420,11 @@ var EXISTS$1 = isObject$5(document$1) && isObject$5(document$1.createElement);
|
|
|
420
420
|
var documentCreateElement$2 = function (it) {
|
|
421
421
|
return EXISTS$1 ? document$1.createElement(it) : {};
|
|
422
422
|
};var DESCRIPTORS$a = descriptors;
|
|
423
|
-
var fails$
|
|
423
|
+
var fails$7 = fails$c;
|
|
424
424
|
var createElement = documentCreateElement$2;
|
|
425
425
|
|
|
426
426
|
// Thanks to IE8 for its funny defineProperty
|
|
427
|
-
var ie8DomDefine = !DESCRIPTORS$a && !fails$
|
|
427
|
+
var ie8DomDefine = !DESCRIPTORS$a && !fails$7(function () {
|
|
428
428
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
429
429
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
430
430
|
get: function () { return 7; }
|
|
@@ -451,11 +451,11 @@ var f$4 = objectGetOwnPropertyDescriptor.f = DESCRIPTORS$9 ? $getOwnPropertyDesc
|
|
|
451
451
|
} catch (error) { /* empty */ }
|
|
452
452
|
if (hasOwn$6(O, P)) return createPropertyDescriptor$1(!call$1(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
453
453
|
};var objectDefineProperty = {};var DESCRIPTORS$8 = descriptors;
|
|
454
|
-
var fails$
|
|
454
|
+
var fails$6 = fails$c;
|
|
455
455
|
|
|
456
456
|
// V8 ~ Chrome 36-
|
|
457
457
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
458
|
-
var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$
|
|
458
|
+
var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$6(function () {
|
|
459
459
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
460
460
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
461
461
|
value: 42,
|
|
@@ -537,11 +537,11 @@ var functionName = {
|
|
|
537
537
|
EXISTS: EXISTS,
|
|
538
538
|
PROPER: PROPER,
|
|
539
539
|
CONFIGURABLE: CONFIGURABLE
|
|
540
|
-
};var uncurryThis$
|
|
540
|
+
};var uncurryThis$d = functionUncurryThis;
|
|
541
541
|
var isCallable$a = isCallable$g;
|
|
542
542
|
var store$1 = sharedStore;
|
|
543
543
|
|
|
544
|
-
var functionToString$1 = uncurryThis$
|
|
544
|
+
var functionToString$1 = uncurryThis$d(Function.toString);
|
|
545
545
|
|
|
546
546
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
547
547
|
if (!isCallable$a(store$1.inspectSource)) {
|
|
@@ -565,7 +565,7 @@ var sharedKey$2 = function (key) {
|
|
|
565
565
|
return keys$1[key] || (keys$1[key] = uid(key));
|
|
566
566
|
};var hiddenKeys$4 = {};var NATIVE_WEAK_MAP = nativeWeakMap;
|
|
567
567
|
var global$7 = global$f;
|
|
568
|
-
var uncurryThis$
|
|
568
|
+
var uncurryThis$c = functionUncurryThis;
|
|
569
569
|
var isObject$3 = isObject$8;
|
|
570
570
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
|
|
571
571
|
var hasOwn$4 = hasOwnProperty_1;
|
|
@@ -593,9 +593,9 @@ var getterFor = function (TYPE) {
|
|
|
593
593
|
|
|
594
594
|
if (NATIVE_WEAK_MAP || shared.state) {
|
|
595
595
|
var store = shared.state || (shared.state = new WeakMap());
|
|
596
|
-
var wmget = uncurryThis$
|
|
597
|
-
var wmhas = uncurryThis$
|
|
598
|
-
var wmset = uncurryThis$
|
|
596
|
+
var wmget = uncurryThis$c(store.get);
|
|
597
|
+
var wmhas = uncurryThis$c(store.has);
|
|
598
|
+
var wmset = uncurryThis$c(store.set);
|
|
599
599
|
set$1 = function (it, metadata) {
|
|
600
600
|
if (wmhas(store, it)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
|
|
601
601
|
metadata.facade = it;
|
|
@@ -631,7 +631,7 @@ var internalState = {
|
|
|
631
631
|
has: has,
|
|
632
632
|
enforce: enforce,
|
|
633
633
|
getterFor: getterFor
|
|
634
|
-
};var fails$
|
|
634
|
+
};var fails$5 = fails$c;
|
|
635
635
|
var isCallable$8 = isCallable$g;
|
|
636
636
|
var hasOwn$3 = hasOwnProperty_1;
|
|
637
637
|
var DESCRIPTORS$4 = descriptors;
|
|
@@ -644,7 +644,7 @@ var getInternalState = InternalStateModule.get;
|
|
|
644
644
|
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
645
645
|
var defineProperty$3 = Object.defineProperty;
|
|
646
646
|
|
|
647
|
-
var CONFIGURABLE_LENGTH = DESCRIPTORS$4 && !fails$
|
|
647
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS$4 && !fails$5(function () {
|
|
648
648
|
return defineProperty$3(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
649
649
|
});
|
|
650
650
|
|
|
@@ -780,13 +780,13 @@ var arrayIncludes = {
|
|
|
780
780
|
// `Array.prototype.indexOf` method
|
|
781
781
|
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
782
782
|
indexOf: createMethod$3(false)
|
|
783
|
-
};var uncurryThis$
|
|
783
|
+
};var uncurryThis$b = functionUncurryThis;
|
|
784
784
|
var hasOwn$2 = hasOwnProperty_1;
|
|
785
785
|
var toIndexedObject$2 = toIndexedObject$5;
|
|
786
786
|
var indexOf = arrayIncludes.indexOf;
|
|
787
787
|
var hiddenKeys$2 = hiddenKeys$4;
|
|
788
788
|
|
|
789
|
-
var push$2 = uncurryThis$
|
|
789
|
+
var push$2 = uncurryThis$b([].push);
|
|
790
790
|
|
|
791
791
|
var objectKeysInternal = function (object, names) {
|
|
792
792
|
var O = toIndexedObject$2(object);
|
|
@@ -820,12 +820,12 @@ var f$2 = objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function g
|
|
|
820
820
|
return internalObjectKeys$1(O, hiddenKeys$1);
|
|
821
821
|
};var objectGetOwnPropertySymbols = {};// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
|
|
822
822
|
var f$1 = objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;var getBuiltIn$2 = getBuiltIn$5;
|
|
823
|
-
var uncurryThis$
|
|
823
|
+
var uncurryThis$a = functionUncurryThis;
|
|
824
824
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
825
825
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
826
826
|
var anObject$3 = anObject$5;
|
|
827
827
|
|
|
828
|
-
var concat = uncurryThis$
|
|
828
|
+
var concat = uncurryThis$a([].concat);
|
|
829
829
|
|
|
830
830
|
// all object keys, includes non-enumerable and symbols
|
|
831
831
|
var ownKeys$2 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
@@ -847,7 +847,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
|
|
|
847
847
|
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
848
848
|
}
|
|
849
849
|
}
|
|
850
|
-
};var fails$
|
|
850
|
+
};var fails$4 = fails$c;
|
|
851
851
|
var isCallable$6 = isCallable$g;
|
|
852
852
|
|
|
853
853
|
var replacement = /#|\.prototype\./;
|
|
@@ -856,7 +856,7 @@ var isForced$2 = function (feature, detection) {
|
|
|
856
856
|
var value = data[normalize(feature)];
|
|
857
857
|
return value == POLYFILL ? true
|
|
858
858
|
: value == NATIVE ? false
|
|
859
|
-
: isCallable$6(detection) ? fails$
|
|
859
|
+
: isCallable$6(detection) ? fails$4(detection)
|
|
860
860
|
: !!detection;
|
|
861
861
|
};
|
|
862
862
|
|
|
@@ -921,11 +921,11 @@ var _export = function (options, source) {
|
|
|
921
921
|
}
|
|
922
922
|
defineBuiltIn$2(target, key, sourceProperty, options);
|
|
923
923
|
}
|
|
924
|
-
};var uncurryThis$
|
|
924
|
+
};var uncurryThis$9 = functionUncurryThis;
|
|
925
925
|
var aCallable = aCallable$2;
|
|
926
926
|
var NATIVE_BIND$1 = functionBindNative;
|
|
927
927
|
|
|
928
|
-
var bind$1 = uncurryThis$
|
|
928
|
+
var bind$1 = uncurryThis$9(uncurryThis$9.bind);
|
|
929
929
|
|
|
930
930
|
// optional / simple context binding
|
|
931
931
|
var functionBindContext = function (fn, that) {
|
|
@@ -975,8 +975,8 @@ var classof$3 = TO_STRING_TAG_SUPPORT$2 ? classofRaw : function (it) {
|
|
|
975
975
|
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
976
976
|
// ES3 arguments fallback
|
|
977
977
|
: (result = classofRaw(O)) == 'Object' && isCallable$5(O.callee) ? 'Arguments' : result;
|
|
978
|
-
};var uncurryThis$
|
|
979
|
-
var fails$
|
|
978
|
+
};var uncurryThis$8 = functionUncurryThis;
|
|
979
|
+
var fails$3 = fails$c;
|
|
980
980
|
var isCallable$4 = isCallable$g;
|
|
981
981
|
var classof$2 = classof$3;
|
|
982
982
|
var getBuiltIn$1 = getBuiltIn$5;
|
|
@@ -986,7 +986,7 @@ var noop = function () { /* empty */ };
|
|
|
986
986
|
var empty = [];
|
|
987
987
|
var construct = getBuiltIn$1('Reflect', 'construct');
|
|
988
988
|
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
989
|
-
var exec = uncurryThis$
|
|
989
|
+
var exec = uncurryThis$8(constructorRegExp.exec);
|
|
990
990
|
var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
|
|
991
991
|
|
|
992
992
|
var isConstructorModern = function isConstructor(argument) {
|
|
@@ -1020,7 +1020,7 @@ isConstructorLegacy.sham = true;
|
|
|
1020
1020
|
|
|
1021
1021
|
// `IsConstructor` abstract operation
|
|
1022
1022
|
// https://tc39.es/ecma262/#sec-isconstructor
|
|
1023
|
-
var isConstructor$1 = !construct || fails$
|
|
1023
|
+
var isConstructor$1 = !construct || fails$3(function () {
|
|
1024
1024
|
var called;
|
|
1025
1025
|
return isConstructorModern(isConstructorModern.call)
|
|
1026
1026
|
|| !isConstructorModern(Object)
|
|
@@ -1054,13 +1054,13 @@ var arraySpeciesConstructor$1 = function (originalArray) {
|
|
|
1054
1054
|
var arraySpeciesCreate$1 = function (originalArray, length) {
|
|
1055
1055
|
return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
|
|
1056
1056
|
};var bind = functionBindContext;
|
|
1057
|
-
var uncurryThis$
|
|
1057
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
1058
1058
|
var IndexedObject = indexedObject;
|
|
1059
1059
|
var toObject = toObject$2;
|
|
1060
1060
|
var lengthOfArrayLike = lengthOfArrayLike$2;
|
|
1061
1061
|
var arraySpeciesCreate = arraySpeciesCreate$1;
|
|
1062
1062
|
|
|
1063
|
-
var push$1 = uncurryThis$
|
|
1063
|
+
var push$1 = uncurryThis$7([].push);
|
|
1064
1064
|
|
|
1065
1065
|
// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
|
|
1066
1066
|
var createMethod$2 = function (TYPE) {
|
|
@@ -1126,11 +1126,11 @@ var arrayIteration = {
|
|
|
1126
1126
|
// https://github.com/tc39/proposal-array-filtering
|
|
1127
1127
|
filterReject: createMethod$2(7)
|
|
1128
1128
|
};'use strict';
|
|
1129
|
-
var fails$
|
|
1129
|
+
var fails$2 = fails$c;
|
|
1130
1130
|
|
|
1131
1131
|
var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
|
|
1132
1132
|
var method = [][METHOD_NAME];
|
|
1133
|
-
return !!method && fails$
|
|
1133
|
+
return !!method && fails$2(function () {
|
|
1134
1134
|
// eslint-disable-next-line no-useless-call -- required for testing
|
|
1135
1135
|
method.call(null, argument || function () { return 1; }, 1);
|
|
1136
1136
|
});
|
|
@@ -1146,13 +1146,13 @@ var arrayForEach = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */)
|
|
|
1146
1146
|
return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
1147
1147
|
// eslint-disable-next-line es-x/no-array-prototype-foreach -- safe
|
|
1148
1148
|
} : [].forEach;'use strict';
|
|
1149
|
-
var $$
|
|
1149
|
+
var $$5 = _export;
|
|
1150
1150
|
var forEach$1 = arrayForEach;
|
|
1151
1151
|
|
|
1152
1152
|
// `Array.prototype.forEach` method
|
|
1153
1153
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
1154
1154
|
// eslint-disable-next-line es-x/no-array-prototype-foreach -- safe
|
|
1155
|
-
$$
|
|
1155
|
+
$$5({ target: 'Array', proto: true, forced: [].forEach != forEach$1 }, {
|
|
1156
1156
|
forEach: forEach$1
|
|
1157
1157
|
});var es_object_toString = {};'use strict';
|
|
1158
1158
|
var TO_STRING_TAG_SUPPORT$1 = toStringTagSupport;
|
|
@@ -1164,12 +1164,12 @@ var objectToString$1 = TO_STRING_TAG_SUPPORT$1 ? {}.toString : function toString
|
|
|
1164
1164
|
return '[object ' + classof$1(this) + ']';
|
|
1165
1165
|
};var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1166
1166
|
var defineBuiltIn$1 = defineBuiltIn$3;
|
|
1167
|
-
var toString$
|
|
1167
|
+
var toString$3 = objectToString$1;
|
|
1168
1168
|
|
|
1169
1169
|
// `Object.prototype.toString` method
|
|
1170
1170
|
// https://tc39.es/ecma262/#sec-object.prototype.tostring
|
|
1171
1171
|
if (!TO_STRING_TAG_SUPPORT) {
|
|
1172
|
-
defineBuiltIn$1(Object.prototype, 'toString', toString$
|
|
1172
|
+
defineBuiltIn$1(Object.prototype, 'toString', toString$3, { unsafe: true });
|
|
1173
1173
|
}var web_domCollections_forEach = {};// iterable DOM collections
|
|
1174
1174
|
// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
|
|
1175
1175
|
var domIterables = {
|
|
@@ -1240,13 +1240,13 @@ var enumBugKeys$1 = enumBugKeys$3;
|
|
|
1240
1240
|
var objectKeys$2 = Object.keys || function keys(O) {
|
|
1241
1241
|
return internalObjectKeys(O, enumBugKeys$1);
|
|
1242
1242
|
};var DESCRIPTORS$3 = descriptors;
|
|
1243
|
-
var uncurryThis$
|
|
1243
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
1244
1244
|
var objectKeys$1 = objectKeys$2;
|
|
1245
1245
|
var toIndexedObject$1 = toIndexedObject$5;
|
|
1246
1246
|
var $propertyIsEnumerable = objectPropertyIsEnumerable.f;
|
|
1247
1247
|
|
|
1248
|
-
var propertyIsEnumerable = uncurryThis$
|
|
1249
|
-
var push = uncurryThis$
|
|
1248
|
+
var propertyIsEnumerable = uncurryThis$6($propertyIsEnumerable);
|
|
1249
|
+
var push = uncurryThis$6([].push);
|
|
1250
1250
|
|
|
1251
1251
|
// `Object.{ entries, values }` methods implementation
|
|
1252
1252
|
var createMethod$1 = function (TO_ENTRIES) {
|
|
@@ -1274,12 +1274,12 @@ var objectToArray = {
|
|
|
1274
1274
|
// `Object.values` method
|
|
1275
1275
|
// https://tc39.es/ecma262/#sec-object.values
|
|
1276
1276
|
values: createMethod$1(false)
|
|
1277
|
-
};var $$
|
|
1277
|
+
};var $$4 = _export;
|
|
1278
1278
|
var $entries = objectToArray.entries;
|
|
1279
1279
|
|
|
1280
1280
|
// `Object.entries` method
|
|
1281
1281
|
// https://tc39.es/ecma262/#sec-object.entries
|
|
1282
|
-
$$
|
|
1282
|
+
$$4({ target: 'Object', stat: true }, {
|
|
1283
1283
|
entries: function entries(O) {
|
|
1284
1284
|
return $entries(O);
|
|
1285
1285
|
}
|
|
@@ -4584,19 +4584,19 @@ if (ArrayPrototype[UNSCOPABLES] == undefined) {
|
|
|
4584
4584
|
var addToUnscopables$2 = function (key) {
|
|
4585
4585
|
ArrayPrototype[UNSCOPABLES][key] = true;
|
|
4586
4586
|
};'use strict';
|
|
4587
|
-
var $$
|
|
4587
|
+
var $$3 = _export;
|
|
4588
4588
|
var $includes = arrayIncludes.includes;
|
|
4589
|
-
var fails$
|
|
4589
|
+
var fails$1 = fails$c;
|
|
4590
4590
|
var addToUnscopables$1 = addToUnscopables$2;
|
|
4591
4591
|
|
|
4592
4592
|
// FF99+ bug
|
|
4593
|
-
var BROKEN_ON_SPARSE = fails$
|
|
4593
|
+
var BROKEN_ON_SPARSE = fails$1(function () {
|
|
4594
4594
|
return !Array(1).includes();
|
|
4595
4595
|
});
|
|
4596
4596
|
|
|
4597
4597
|
// `Array.prototype.includes` method
|
|
4598
4598
|
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
4599
|
-
$$
|
|
4599
|
+
$$3({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
|
|
4600
4600
|
includes: function includes(el /* , fromIndex = 0 */) {
|
|
4601
4601
|
return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
|
|
4602
4602
|
}
|
|
@@ -4698,13 +4698,13 @@ addToUnscopables$1('includes');var script$7 = vue.defineComponent({
|
|
|
4698
4698
|
}
|
|
4699
4699
|
});var es_function_name = {};var DESCRIPTORS$1 = descriptors;
|
|
4700
4700
|
var FUNCTION_NAME_EXISTS = functionName.EXISTS;
|
|
4701
|
-
var uncurryThis$
|
|
4701
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
4702
4702
|
var defineProperty$1 = objectDefineProperty.f;
|
|
4703
4703
|
|
|
4704
4704
|
var FunctionPrototype$1 = Function.prototype;
|
|
4705
|
-
var functionToString = uncurryThis$
|
|
4705
|
+
var functionToString = uncurryThis$5(FunctionPrototype$1.toString);
|
|
4706
4706
|
var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
|
|
4707
|
-
var regExpExec = uncurryThis$
|
|
4707
|
+
var regExpExec = uncurryThis$5(nameRE.exec);
|
|
4708
4708
|
var NAME = 'name';
|
|
4709
4709
|
|
|
4710
4710
|
// Function instances `.name` property
|
|
@@ -5208,58 +5208,7 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5208
5208
|
}, 40, ["class", "type", "to", "href", "tabindex", "onClick", "onFocusin", "onFocusout", "onMouseover", "onMouseout"]);
|
|
5209
5209
|
}var css_248z$2 = ".fw-button{line-height:normal;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out}";
|
|
5210
5210
|
var stylesheet$2 = ".fw-button{line-height:normal;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out}";
|
|
5211
|
-
styleInject(css_248z$2);script$4.render = render$4;var
|
|
5212
|
-
|
|
5213
|
-
var $String$1 = String;
|
|
5214
|
-
|
|
5215
|
-
var toString$3 = function (argument) {
|
|
5216
|
-
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
5217
|
-
return $String$1(argument);
|
|
5218
|
-
};var uncurryThis$5 = functionUncurryThis;
|
|
5219
|
-
var requireObjectCoercible$1 = requireObjectCoercible$4;
|
|
5220
|
-
var toString$2 = toString$3;
|
|
5221
|
-
|
|
5222
|
-
var quot = /"/g;
|
|
5223
|
-
var replace$1 = uncurryThis$5(''.replace);
|
|
5224
|
-
|
|
5225
|
-
// `CreateHTML` abstract operation
|
|
5226
|
-
// https://tc39.es/ecma262/#sec-createhtml
|
|
5227
|
-
var createHtml = function (string, tag, attribute, value) {
|
|
5228
|
-
var S = toString$2(requireObjectCoercible$1(string));
|
|
5229
|
-
var p1 = '<' + tag;
|
|
5230
|
-
if (attribute !== '') p1 += ' ' + attribute + '="' + replace$1(toString$2(value), quot, '"') + '"';
|
|
5231
|
-
return p1 + '>' + S + '</' + tag + '>';
|
|
5232
|
-
};var fails$1 = fails$d;
|
|
5233
|
-
|
|
5234
|
-
// check the existence of a method, lowercase
|
|
5235
|
-
// of a tag and escaping quotes in arguments
|
|
5236
|
-
var stringHtmlForced = function (METHOD_NAME) {
|
|
5237
|
-
return fails$1(function () {
|
|
5238
|
-
var test = ''[METHOD_NAME]('"');
|
|
5239
|
-
return test !== test.toLowerCase() || test.split('"').length > 3;
|
|
5240
|
-
});
|
|
5241
|
-
};'use strict';
|
|
5242
|
-
var $$3 = _export;
|
|
5243
|
-
var createHTML = createHtml;
|
|
5244
|
-
var forcedStringHTMLMethod = stringHtmlForced;
|
|
5245
|
-
|
|
5246
|
-
// `String.prototype.link` method
|
|
5247
|
-
// https://tc39.es/ecma262/#sec-string.prototype.link
|
|
5248
|
-
$$3({ target: 'String', proto: true, forced: forcedStringHTMLMethod('link') }, {
|
|
5249
|
-
link: function link(url) {
|
|
5250
|
-
return createHTML(this, 'a', 'href', url);
|
|
5251
|
-
}
|
|
5252
|
-
});var ButtonVariantName;
|
|
5253
|
-
|
|
5254
|
-
(function (ButtonVariantName) {
|
|
5255
|
-
ButtonVariantName["primary"] = "primary";
|
|
5256
|
-
ButtonVariantName["secondary"] = "secondary";
|
|
5257
|
-
ButtonVariantName["tertiary"] = "tertiary";
|
|
5258
|
-
ButtonVariantName["error"] = "error";
|
|
5259
|
-
ButtonVariantName["success"] = "success";
|
|
5260
|
-
ButtonVariantName["text"] = "text";
|
|
5261
|
-
ButtonVariantName["link"] = "link";
|
|
5262
|
-
})(ButtonVariantName || (ButtonVariantName = {}));var script$3 = vue.defineComponent({
|
|
5211
|
+
styleInject(css_248z$2);script$4.render = render$4;var script$3 = vue.defineComponent({
|
|
5263
5212
|
name: 'FwNavigationMenu',
|
|
5264
5213
|
emits: ['action'],
|
|
5265
5214
|
components: {
|
|
@@ -5299,8 +5248,7 @@ $$3({ target: 'String', proto: true, forced: forcedStringHTMLMethod('link') }, {
|
|
|
5299
5248
|
mobileMenuClass: mobileMenuClass,
|
|
5300
5249
|
isMobileMenuOpen: isMobileMenuOpen,
|
|
5301
5250
|
toggleMobileMenu: toggleMobileMenu,
|
|
5302
|
-
actionClicked: actionClicked
|
|
5303
|
-
ButtonVariantName: ButtonVariantName
|
|
5251
|
+
actionClicked: actionClicked
|
|
5304
5252
|
};
|
|
5305
5253
|
}
|
|
5306
5254
|
});var _hoisted_1$3 = {
|
|
@@ -5352,7 +5300,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5352
5300
|
return vue.openBlock(), vue.createElementBlock("nav", _hoisted_1$3, [vue.createElementVNode("div", _hoisted_2$2, [_ctx.$slots.logo ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$2, [vue.renderSlot(_ctx.$slots, "logo")])) : vue.createCommentVNode("", true), _ctx.menuItems && ((_ctx$menuItems = _ctx.menuItems) === null || _ctx$menuItems === void 0 ? void 0 : _ctx$menuItems.length) > 0 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$1, [vue.createElementVNode("div", _hoisted_5$1, [(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.menuItems, function (item, i) {
|
|
5353
5301
|
return vue.openBlock(), vue.createBlock(_component_FwButton, {
|
|
5354
5302
|
key: i,
|
|
5355
|
-
variant:
|
|
5303
|
+
variant: "text",
|
|
5356
5304
|
href: item.href,
|
|
5357
5305
|
to: item.to,
|
|
5358
5306
|
size: "md",
|
|
@@ -5362,7 +5310,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5362
5310
|
return [vue.createTextVNode(vue.toDisplayString(item.label), 1)];
|
|
5363
5311
|
}),
|
|
5364
5312
|
_: 2
|
|
5365
|
-
}, 1032, ["
|
|
5313
|
+
}, 1032, ["href", "to"]);
|
|
5366
5314
|
}), 128))])])) : vue.createCommentVNode("", true), _ctx.actionLabel ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$1, [vue.createVNode(_component_FwButton, {
|
|
5367
5315
|
onClick: _ctx.actionClicked,
|
|
5368
5316
|
size: "md",
|
|
@@ -5373,7 +5321,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5373
5321
|
}),
|
|
5374
5322
|
_: 1
|
|
5375
5323
|
}, 8, ["onClick", "aria-label"])])) : vue.createCommentVNode("", true), vue.createElementVNode("div", _hoisted_7$1, [vue.createVNode(_component_FwButton, {
|
|
5376
|
-
variant:
|
|
5324
|
+
variant: "text",
|
|
5377
5325
|
size: "sm",
|
|
5378
5326
|
onClick: _ctx.toggleMobileMenu
|
|
5379
5327
|
}, {
|
|
@@ -5386,7 +5334,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5386
5334
|
}, null, 8, _hoisted_10$1)]))];
|
|
5387
5335
|
}),
|
|
5388
5336
|
_: 1
|
|
5389
|
-
}, 8, ["
|
|
5337
|
+
}, 8, ["onClick"])])]), vue.createVNode(vue.Transition, {
|
|
5390
5338
|
name: "slideInLeft"
|
|
5391
5339
|
}, {
|
|
5392
5340
|
"default": vue.withCtx(function () {
|
|
@@ -5397,7 +5345,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5397
5345
|
return vue.openBlock(), vue.createBlock(_component_FwButton, {
|
|
5398
5346
|
key: i,
|
|
5399
5347
|
"class": "w-full rounded-md",
|
|
5400
|
-
variant:
|
|
5348
|
+
variant: "text",
|
|
5401
5349
|
href: item.href,
|
|
5402
5350
|
to: item.to,
|
|
5403
5351
|
size: "md",
|
|
@@ -5407,7 +5355,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5407
5355
|
return [vue.createTextVNode(vue.toDisplayString(item.label), 1)];
|
|
5408
5356
|
}),
|
|
5409
5357
|
_: 2
|
|
5410
|
-
}, 1032, ["
|
|
5358
|
+
}, 1032, ["href", "to"]);
|
|
5411
5359
|
}), 128))]), _ctx.actionLabel ? (vue.openBlock(), vue.createBlock(_component_FwButton, {
|
|
5412
5360
|
key: 0,
|
|
5413
5361
|
"class": "w-full rounded-md",
|
|
@@ -5425,12 +5373,12 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5425
5373
|
var stylesheet$1 = ".fw-nav-menu--mobile{z-index:-1}.fw-nav-menu--mobile,.slideInLeft-enter-active{-webkit-transition:left .35s ease-in;-o-transition:left .35s ease-in;transition:left .35s ease-in}.slideInLeft-enter-active{-webkit-animation:slideInLeft .35s;animation:slideInLeft .35s}.slideInLeft-leave-active{animation:slideInLeft .35s reverse;-webkit-transition:left .35s ease-in-out;-o-transition:left .35s ease-in-out;transition:left .35s ease-in-out}@-webkit-keyframes slideInLeft{0%{left:100%}to{left:0}}@keyframes slideInLeft{0%{left:100%}to{left:0}}";
|
|
5426
5374
|
styleInject(css_248z$1);script$3.render = render$3;var es_number_constructor = {};var isCallable$2 = isCallable$g;
|
|
5427
5375
|
|
|
5428
|
-
var $String = String;
|
|
5376
|
+
var $String$1 = String;
|
|
5429
5377
|
var $TypeError$1 = TypeError;
|
|
5430
5378
|
|
|
5431
5379
|
var aPossiblePrototype$1 = function (argument) {
|
|
5432
5380
|
if (typeof argument == 'object' || isCallable$2(argument)) return argument;
|
|
5433
|
-
throw $TypeError$1("Can't set " + $String(argument) + ' as a prototype');
|
|
5381
|
+
throw $TypeError$1("Can't set " + $String$1(argument) + ' as a prototype');
|
|
5434
5382
|
};/* eslint-disable no-proto -- safe */
|
|
5435
5383
|
|
|
5436
5384
|
var uncurryThis$4 = functionUncurryThis;
|
|
@@ -5479,11 +5427,18 @@ var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
|
|
|
5479
5427
|
|
|
5480
5428
|
// `thisNumberValue` abstract operation
|
|
5481
5429
|
// https://tc39.es/ecma262/#sec-thisnumbervalue
|
|
5482
|
-
var thisNumberValue$1 = uncurryThis$3(1.0.valueOf)
|
|
5430
|
+
var thisNumberValue$1 = uncurryThis$3(1.0.valueOf);var classof = classof$3;
|
|
5431
|
+
|
|
5432
|
+
var $String = String;
|
|
5433
|
+
|
|
5434
|
+
var toString$2 = function (argument) {
|
|
5435
|
+
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
5436
|
+
return $String(argument);
|
|
5437
|
+
};// a string of all valid unicode whitespaces
|
|
5483
5438
|
var whitespaces$1 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
|
|
5484
5439
|
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';var uncurryThis$2 = functionUncurryThis;
|
|
5485
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
5486
|
-
var toString$1 = toString$
|
|
5440
|
+
var requireObjectCoercible = requireObjectCoercible$3;
|
|
5441
|
+
var toString$1 = toString$2;
|
|
5487
5442
|
var whitespaces = whitespaces$1;
|
|
5488
5443
|
|
|
5489
5444
|
var replace = uncurryThis$2(''.replace);
|
|
@@ -5522,7 +5477,7 @@ var inheritIfRequired = inheritIfRequired$1;
|
|
|
5522
5477
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
5523
5478
|
var isSymbol$1 = isSymbol$4;
|
|
5524
5479
|
var toPrimitive = toPrimitive$2;
|
|
5525
|
-
var fails = fails$
|
|
5480
|
+
var fails = fails$c;
|
|
5526
5481
|
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
|
|
5527
5482
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
5528
5483
|
var defineProperty = objectDefineProperty.f;
|
|
@@ -6256,14 +6211,14 @@ $({ global: true, bind: true, forced: global$1.setTimeout !== setTimeout$1 }, {
|
|
|
6256
6211
|
});var modalService = function modalService(options, element) {
|
|
6257
6212
|
var elementToMount = document.createElement('div');
|
|
6258
6213
|
elementToMount.id = uniqueId('fw-modal-app-');
|
|
6259
|
-
var elAppend = element || document.
|
|
6214
|
+
var elAppend = element || document.querySelector('#app');
|
|
6260
6215
|
var modalVNode = undefined;
|
|
6261
6216
|
|
|
6262
6217
|
var open = function open() {
|
|
6263
6218
|
var _modalVNode;
|
|
6264
6219
|
|
|
6265
6220
|
modalVNode = vue.createApp(script, _objectSpread2({}, options));
|
|
6266
|
-
elAppend.appendChild(elementToMount);
|
|
6221
|
+
elAppend === null || elAppend === void 0 ? void 0 : elAppend.appendChild(elementToMount);
|
|
6267
6222
|
(_modalVNode = modalVNode) === null || _modalVNode === void 0 ? void 0 : _modalVNode.mount(elementToMount);
|
|
6268
6223
|
};
|
|
6269
6224
|
|