@frollo/frollo-web-ui 0.1.1 → 0.1.2
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 +169 -117
- package/esm/{fw-button-bba6ac88.js → fw-button-ab906734.js} +1 -1
- package/esm/fw-button.js +1 -1
- package/esm/fw-checkbox.js +6 -6
- package/esm/fw-input.js +11 -3
- package/esm/fw-modal.js +2 -2
- package/esm/fw-navigation-menu.js +71 -17
- package/esm/fw-tabs.js +2 -1
- package/esm/{index-0e14da44.js → index-5ee56f7d.js} +14 -61
- package/esm/{index-1813012f.js → index-963039a3.js} +8 -7
- package/esm/index.js +7 -6
- package/esm/to-string-139f1ee8.js +52 -0
- package/frollo-web-ui.esm.js +179 -117
- package/index.d.ts +23 -10
- package/package.json +2 -2
- package/types/components/fw-checkbox/fw-checkbox.vue.d.ts +5 -4
- package/types/components/fw-checkbox/index.types.d.ts +1 -1
- package/types/components/fw-input/fw-input.vue.d.ts +16 -4
- package/types/components/fw-input/index.types.d.ts +1 -1
- package/types/components/fw-navigation-menu/fw-navigation-menu.vue.d.ts +2 -0
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$d = 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$c = fails$d;
|
|
101
101
|
|
|
102
102
|
// Detect IE8's incomplete defineProperty implementation
|
|
103
|
-
var descriptors = !fails$
|
|
103
|
+
var descriptors = !fails$c(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$b = fails$d;
|
|
107
107
|
|
|
108
|
-
var functionBindNative = !fails$
|
|
108
|
+
var functionBindNative = !fails$b(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$k = 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$k(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$j = functionUncurryThis;
|
|
153
153
|
|
|
154
|
-
var toString$
|
|
155
|
-
var stringSlice = uncurryThis$
|
|
154
|
+
var toString$6 = uncurryThis$j({}.toString);
|
|
155
|
+
var stringSlice = uncurryThis$j(''.slice);
|
|
156
156
|
|
|
157
157
|
var classofRaw$1 = function (it) {
|
|
158
|
-
return stringSlice(toString$
|
|
159
|
-
};var uncurryThis$
|
|
160
|
-
var fails$
|
|
158
|
+
return stringSlice(toString$6(it), 8, -1);
|
|
159
|
+
};var uncurryThis$i = functionUncurryThis;
|
|
160
|
+
var fails$a = fails$d;
|
|
161
161
|
var classof$5 = classofRaw$1;
|
|
162
162
|
|
|
163
163
|
var $Object$3 = Object;
|
|
164
|
-
var split = uncurryThis$
|
|
164
|
+
var split = uncurryThis$i(''.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$a(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$9(function () {
|
|
|
174
174
|
|
|
175
175
|
// `RequireObjectCoercible` abstract operation
|
|
176
176
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
177
|
-
var requireObjectCoercible$
|
|
177
|
+
var requireObjectCoercible$4 = 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$3 = requireObjectCoercible$4;
|
|
183
183
|
|
|
184
184
|
var toIndexedObject$5 = function (it) {
|
|
185
|
-
return IndexedObject$1(requireObjectCoercible$
|
|
185
|
+
return IndexedObject$1(requireObjectCoercible$3(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$h = functionUncurryThis;
|
|
204
204
|
|
|
205
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
205
|
+
var objectIsPrototypeOf = uncurryThis$h({}.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$9 = fails$d;
|
|
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$9(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$2 = requireObjectCoercible$4;
|
|
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$2(argument));
|
|
340
|
+
};var uncurryThis$g = functionUncurryThis;
|
|
341
341
|
var toObject$1 = toObject$2;
|
|
342
342
|
|
|
343
|
-
var hasOwnProperty$1 = uncurryThis$
|
|
343
|
+
var hasOwnProperty$1 = uncurryThis$g({}.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$f = functionUncurryThis;
|
|
351
351
|
|
|
352
352
|
var id = 0;
|
|
353
353
|
var postfix = Math.random();
|
|
354
|
-
var toString$
|
|
354
|
+
var toString$5 = uncurryThis$f(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$5(++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$8 = fails$d;
|
|
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$8(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$7 = fails$d;
|
|
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$7(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$e = 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$e(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$d = 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$d(store.get);
|
|
597
|
+
var wmhas = uncurryThis$d(store.has);
|
|
598
|
+
var wmset = uncurryThis$d(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$6 = fails$d;
|
|
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$6(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$c = 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$c([].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$b = 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$b([].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$5 = fails$d;
|
|
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$5(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$a = 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$a(uncurryThis$a.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$9 = functionUncurryThis;
|
|
979
|
+
var fails$4 = fails$d;
|
|
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$9(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$4(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$8 = 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$8([].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$3 = fails$d;
|
|
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$3(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 $$6 = _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
|
+
$$6({ 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$4 = 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$4, { 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$7 = 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$7($propertyIsEnumerable);
|
|
1249
|
+
var push = uncurryThis$7([].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 $$5 = _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
|
+
$$5({ 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 $$4 = _export;
|
|
4588
4588
|
var $includes = arrayIncludes.includes;
|
|
4589
|
-
var fails$
|
|
4589
|
+
var fails$2 = fails$d;
|
|
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$2(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
|
+
$$4({ 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
|
}
|
|
@@ -4653,10 +4653,10 @@ addToUnscopables$1('includes');var script$7 = vue.defineComponent({
|
|
|
4653
4653
|
},
|
|
4654
4654
|
|
|
4655
4655
|
/**
|
|
4656
|
-
* Validation rules. Accepts
|
|
4656
|
+
* Validation rules. Accepts an object, string schema or validation function.
|
|
4657
4657
|
*/
|
|
4658
4658
|
rules: {
|
|
4659
|
-
type: [
|
|
4659
|
+
type: [Object, String, Function]
|
|
4660
4660
|
},
|
|
4661
4661
|
|
|
4662
4662
|
/**
|
|
@@ -4672,6 +4672,13 @@ addToUnscopables$1('includes');var script$7 = vue.defineComponent({
|
|
|
4672
4672
|
*/
|
|
4673
4673
|
hint: {
|
|
4674
4674
|
type: String
|
|
4675
|
+
},
|
|
4676
|
+
|
|
4677
|
+
/**
|
|
4678
|
+
* The autocomplete input attribute
|
|
4679
|
+
*/
|
|
4680
|
+
autocomplete: {
|
|
4681
|
+
type: String
|
|
4675
4682
|
}
|
|
4676
4683
|
},
|
|
4677
4684
|
setup: function setup(props, ctx) {
|
|
@@ -4691,13 +4698,13 @@ addToUnscopables$1('includes');var script$7 = vue.defineComponent({
|
|
|
4691
4698
|
}
|
|
4692
4699
|
});var es_function_name = {};var DESCRIPTORS$1 = descriptors;
|
|
4693
4700
|
var FUNCTION_NAME_EXISTS = functionName.EXISTS;
|
|
4694
|
-
var uncurryThis$
|
|
4701
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
4695
4702
|
var defineProperty$1 = objectDefineProperty.f;
|
|
4696
4703
|
|
|
4697
4704
|
var FunctionPrototype$1 = Function.prototype;
|
|
4698
|
-
var functionToString = uncurryThis$
|
|
4705
|
+
var functionToString = uncurryThis$6(FunctionPrototype$1.toString);
|
|
4699
4706
|
var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
|
|
4700
|
-
var regExpExec = uncurryThis$
|
|
4707
|
+
var regExpExec = uncurryThis$6(nameRE.exec);
|
|
4701
4708
|
var NAME = 'name';
|
|
4702
4709
|
|
|
4703
4710
|
// Function instances `.name` property
|
|
@@ -4733,7 +4740,7 @@ var _hoisted_7$3 = {
|
|
|
4733
4740
|
key: 0,
|
|
4734
4741
|
"class": "flex text-black absolute w-9 h-full inset-y-0 left-0 items-center pl-3 pointer-events-none"
|
|
4735
4742
|
};
|
|
4736
|
-
var _hoisted_8$3 = ["placeholder", "type", "readonly", "disabled"];
|
|
4743
|
+
var _hoisted_8$3 = ["placeholder", "type", "readonly", "disabled", "autocomplete"];
|
|
4737
4744
|
|
|
4738
4745
|
var _hoisted_9$2 = /*#__PURE__*/vue.createElementVNode("svg", {
|
|
4739
4746
|
fill: "currentColor",
|
|
@@ -4786,6 +4793,7 @@ function render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4786
4793
|
type: _ctx.type,
|
|
4787
4794
|
readonly: _ctx.readonly,
|
|
4788
4795
|
disabled: _ctx.readonly,
|
|
4796
|
+
autocomplete: _ctx.autocomplete,
|
|
4789
4797
|
"class": [{
|
|
4790
4798
|
'pl-10': !!_ctx.$slots.prefix,
|
|
4791
4799
|
'pr-20': !!_ctx.$slots.suffix
|
|
@@ -4861,10 +4869,10 @@ styleInject(css_248z$4);script$7.render = render$7;var script$6 = vue.defineComp
|
|
|
4861
4869
|
},
|
|
4862
4870
|
|
|
4863
4871
|
/**
|
|
4864
|
-
* Validation rules. Accepts
|
|
4872
|
+
* Validation rules. Accepts an object, stringm schema or validation function.
|
|
4865
4873
|
*/
|
|
4866
4874
|
rules: {
|
|
4867
|
-
type: [
|
|
4875
|
+
type: [Object, String, Function]
|
|
4868
4876
|
},
|
|
4869
4877
|
|
|
4870
4878
|
/**
|
|
@@ -4875,7 +4883,7 @@ styleInject(css_248z$4);script$7.render = render$7;var script$6 = vue.defineComp
|
|
|
4875
4883
|
}
|
|
4876
4884
|
}
|
|
4877
4885
|
});var _withScopeId$1 = function _withScopeId(n) {
|
|
4878
|
-
return vue.pushScopeId("data-v-
|
|
4886
|
+
return vue.pushScopeId("data-v-7423717e"), n = n(), vue.popScopeId(), n;
|
|
4879
4887
|
};
|
|
4880
4888
|
|
|
4881
4889
|
var _hoisted_1$5 = {
|
|
@@ -4935,10 +4943,10 @@ function render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4935
4943
|
}),
|
|
4936
4944
|
_: 1
|
|
4937
4945
|
}, 8, ["name", "value", "rules"])]);
|
|
4938
|
-
}var css_248z$3 = ".fwFadeIn-enter-active[data-v-
|
|
4939
|
-
var stylesheet$3 = ".fwFadeIn-enter-active[data-v-
|
|
4946
|
+
}var css_248z$3 = ".fwFadeIn-enter-active[data-v-7423717e]{-webkit-animation:fwFadeIn-7423717e .35s;animation:fwFadeIn-7423717e .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-7423717e]{animation:fwFadeIn-7423717e .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-7423717e{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-7423717e{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-7423717e]{-ms-flex-negative:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-origin:border-box;display:inline-block;flex-shrink:0;-webkit-transition:background .2s ease-in;-o-transition:background .2s ease-in;transition:background .2s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.fw-checkbox input[data-v-7423717e]:checked{background-color:currentColor;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='3 3 10 10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E\");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}";
|
|
4947
|
+
var stylesheet$3 = ".fwFadeIn-enter-active[data-v-7423717e]{-webkit-animation:fwFadeIn-7423717e .35s;animation:fwFadeIn-7423717e .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-7423717e]{animation:fwFadeIn-7423717e .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-7423717e{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-7423717e{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-7423717e]{-ms-flex-negative:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-origin:border-box;display:inline-block;flex-shrink:0;-webkit-transition:background .2s ease-in;-o-transition:background .2s ease-in;transition:background .2s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.fw-checkbox input[data-v-7423717e]:checked{background-color:currentColor;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='3 3 10 10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E\");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}";
|
|
4940
4948
|
styleInject(css_248z$3);script$6.render = render$6;
|
|
4941
|
-
script$6.__scopeId = "data-v-
|
|
4949
|
+
script$6.__scopeId = "data-v-7423717e";var script$5 = vue.defineComponent({
|
|
4942
4950
|
name: 'FwCard',
|
|
4943
4951
|
props: {
|
|
4944
4952
|
/**
|
|
@@ -5092,7 +5100,7 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5092
5100
|
border: 'border-none focus-visible:ring-primary'
|
|
5093
5101
|
},
|
|
5094
5102
|
text: {
|
|
5095
|
-
text: 'text-body hover:text-white active:text-white',
|
|
5103
|
+
text: 'text-body font-medium hover:text-white active:text-white',
|
|
5096
5104
|
background: 'bg-white hover:bg-body active:bg-body',
|
|
5097
5105
|
border: 'border-transparent focus-visible:ring-body'
|
|
5098
5106
|
}
|
|
@@ -5200,7 +5208,58 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5200
5208
|
}, 40, ["class", "type", "to", "href", "tabindex", "onClick", "onFocusin", "onFocusout", "onMouseover", "onMouseout"]);
|
|
5201
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}";
|
|
5202
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}";
|
|
5203
|
-
styleInject(css_248z$2);script$4.render = render$4;var
|
|
5211
|
+
styleInject(css_248z$2);script$4.render = render$4;var es_string_link = {};var classof = classof$3;
|
|
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({
|
|
5204
5263
|
name: 'FwNavigationMenu',
|
|
5205
5264
|
emits: ['action'],
|
|
5206
5265
|
components: {
|
|
@@ -5240,14 +5299,15 @@ styleInject(css_248z$2);script$4.render = render$4;var script$3 = vue.defineComp
|
|
|
5240
5299
|
mobileMenuClass: mobileMenuClass,
|
|
5241
5300
|
isMobileMenuOpen: isMobileMenuOpen,
|
|
5242
5301
|
toggleMobileMenu: toggleMobileMenu,
|
|
5243
|
-
actionClicked: actionClicked
|
|
5302
|
+
actionClicked: actionClicked,
|
|
5303
|
+
ButtonVariantName: ButtonVariantName
|
|
5244
5304
|
};
|
|
5245
5305
|
}
|
|
5246
5306
|
});var _hoisted_1$3 = {
|
|
5247
5307
|
"class": "fw-nav-menu relative z-50 h-20 shadow-md"
|
|
5248
5308
|
};
|
|
5249
5309
|
var _hoisted_2$2 = {
|
|
5250
|
-
"class": "px-6 flex-1 h-full flex bg-white items-stretch justify-between"
|
|
5310
|
+
"class": "px-6 flex-1 h-full flex bg-white items-stretch justify-between max-w-6xl mx-auto"
|
|
5251
5311
|
};
|
|
5252
5312
|
var _hoisted_3$2 = {
|
|
5253
5313
|
key: 0,
|
|
@@ -5255,7 +5315,7 @@ var _hoisted_3$2 = {
|
|
|
5255
5315
|
};
|
|
5256
5316
|
var _hoisted_4$1 = {
|
|
5257
5317
|
key: 1,
|
|
5258
|
-
"class": "container hidden sm:flex items-center justify-start
|
|
5318
|
+
"class": "container hidden sm:flex items-center justify-start sm:ml-6"
|
|
5259
5319
|
};
|
|
5260
5320
|
var _hoisted_5$1 = {
|
|
5261
5321
|
"class": "flex space-x-2"
|
|
@@ -5289,10 +5349,10 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5289
5349
|
|
|
5290
5350
|
var _component_FwButton = vue.resolveComponent("FwButton");
|
|
5291
5351
|
|
|
5292
|
-
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) === 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) {
|
|
5352
|
+
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) {
|
|
5293
5353
|
return vue.openBlock(), vue.createBlock(_component_FwButton, {
|
|
5294
5354
|
key: i,
|
|
5295
|
-
variant:
|
|
5355
|
+
variant: _ctx.ButtonVariantName.text,
|
|
5296
5356
|
href: item.href,
|
|
5297
5357
|
to: item.to,
|
|
5298
5358
|
size: "md",
|
|
@@ -5302,7 +5362,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5302
5362
|
return [vue.createTextVNode(vue.toDisplayString(item.label), 1)];
|
|
5303
5363
|
}),
|
|
5304
5364
|
_: 2
|
|
5305
|
-
}, 1032, ["href", "to"]);
|
|
5365
|
+
}, 1032, ["variant", "href", "to"]);
|
|
5306
5366
|
}), 128))])])) : vue.createCommentVNode("", true), _ctx.actionLabel ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$1, [vue.createVNode(_component_FwButton, {
|
|
5307
5367
|
onClick: _ctx.actionClicked,
|
|
5308
5368
|
size: "md",
|
|
@@ -5313,7 +5373,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5313
5373
|
}),
|
|
5314
5374
|
_: 1
|
|
5315
5375
|
}, 8, ["onClick", "aria-label"])])) : vue.createCommentVNode("", true), vue.createElementVNode("div", _hoisted_7$1, [vue.createVNode(_component_FwButton, {
|
|
5316
|
-
variant:
|
|
5376
|
+
variant: _ctx.ButtonVariantName.text,
|
|
5317
5377
|
size: "sm",
|
|
5318
5378
|
onClick: _ctx.toggleMobileMenu
|
|
5319
5379
|
}, {
|
|
@@ -5326,20 +5386,18 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5326
5386
|
}, null, 8, _hoisted_10$1)]))];
|
|
5327
5387
|
}),
|
|
5328
5388
|
_: 1
|
|
5329
|
-
}, 8, ["onClick"])])]), vue.createVNode(vue.Transition, {
|
|
5389
|
+
}, 8, ["variant", "onClick"])])]), vue.createVNode(vue.Transition, {
|
|
5330
5390
|
name: "slideInLeft"
|
|
5331
5391
|
}, {
|
|
5332
5392
|
"default": vue.withCtx(function () {
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
return [((_ctx$menuItems2 = _ctx.menuItems) === null || _ctx$menuItems2 === void 0 ? void 0 : _ctx$menuItems2.length) > 0 && _ctx.isMobileMenuOpen ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
5393
|
+
return [_ctx.menuItems && _ctx.menuItems.length > 0 && _ctx.isMobileMenuOpen ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
5336
5394
|
key: 0,
|
|
5337
5395
|
"class": vue.normalizeClass(["fw-nav-menu--mobile", _ctx.mobileMenuClass])
|
|
5338
5396
|
}, [vue.createElementVNode("div", _hoisted_11$1, [(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.menuItems, function (item, i) {
|
|
5339
5397
|
return vue.openBlock(), vue.createBlock(_component_FwButton, {
|
|
5340
5398
|
key: i,
|
|
5341
5399
|
"class": "w-full rounded-md",
|
|
5342
|
-
variant:
|
|
5400
|
+
variant: _ctx.ButtonVariantName.text,
|
|
5343
5401
|
href: item.href,
|
|
5344
5402
|
to: item.to,
|
|
5345
5403
|
size: "md",
|
|
@@ -5349,10 +5407,10 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5349
5407
|
return [vue.createTextVNode(vue.toDisplayString(item.label), 1)];
|
|
5350
5408
|
}),
|
|
5351
5409
|
_: 2
|
|
5352
|
-
}, 1032, ["href", "to"]);
|
|
5410
|
+
}, 1032, ["variant", "href", "to"]);
|
|
5353
5411
|
}), 128))]), _ctx.actionLabel ? (vue.openBlock(), vue.createBlock(_component_FwButton, {
|
|
5354
5412
|
key: 0,
|
|
5355
|
-
"class": "w-full rounded-md
|
|
5413
|
+
"class": "w-full rounded-md",
|
|
5356
5414
|
onClick: _ctx.actionClicked
|
|
5357
5415
|
}, {
|
|
5358
5416
|
"default": vue.withCtx(function () {
|
|
@@ -5367,12 +5425,12 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5367
5425
|
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}}";
|
|
5368
5426
|
styleInject(css_248z$1);script$3.render = render$3;var es_number_constructor = {};var isCallable$2 = isCallable$g;
|
|
5369
5427
|
|
|
5370
|
-
var $String
|
|
5428
|
+
var $String = String;
|
|
5371
5429
|
var $TypeError$1 = TypeError;
|
|
5372
5430
|
|
|
5373
5431
|
var aPossiblePrototype$1 = function (argument) {
|
|
5374
5432
|
if (typeof argument == 'object' || isCallable$2(argument)) return argument;
|
|
5375
|
-
throw $TypeError$1("Can't set " + $String
|
|
5433
|
+
throw $TypeError$1("Can't set " + $String(argument) + ' as a prototype');
|
|
5376
5434
|
};/* eslint-disable no-proto -- safe */
|
|
5377
5435
|
|
|
5378
5436
|
var uncurryThis$4 = functionUncurryThis;
|
|
@@ -5421,18 +5479,11 @@ var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
|
|
|
5421
5479
|
|
|
5422
5480
|
// `thisNumberValue` abstract operation
|
|
5423
5481
|
// https://tc39.es/ecma262/#sec-thisnumbervalue
|
|
5424
|
-
var thisNumberValue$1 = uncurryThis$3(1.0.valueOf)
|
|
5425
|
-
|
|
5426
|
-
var $String = String;
|
|
5427
|
-
|
|
5428
|
-
var toString$2 = function (argument) {
|
|
5429
|
-
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
5430
|
-
return $String(argument);
|
|
5431
|
-
};// a string of all valid unicode whitespaces
|
|
5482
|
+
var thisNumberValue$1 = uncurryThis$3(1.0.valueOf);// a string of all valid unicode whitespaces
|
|
5432
5483
|
var whitespaces$1 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
|
|
5433
5484
|
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';var uncurryThis$2 = functionUncurryThis;
|
|
5434
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
5435
|
-
var toString$1 = toString$
|
|
5485
|
+
var requireObjectCoercible = requireObjectCoercible$4;
|
|
5486
|
+
var toString$1 = toString$3;
|
|
5436
5487
|
var whitespaces = whitespaces$1;
|
|
5437
5488
|
|
|
5438
5489
|
var replace = uncurryThis$2(''.replace);
|
|
@@ -5471,7 +5522,7 @@ var inheritIfRequired = inheritIfRequired$1;
|
|
|
5471
5522
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
5472
5523
|
var isSymbol$1 = isSymbol$4;
|
|
5473
5524
|
var toPrimitive = toPrimitive$2;
|
|
5474
|
-
var fails = fails$
|
|
5525
|
+
var fails = fails$d;
|
|
5475
5526
|
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
|
|
5476
5527
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
5477
5528
|
var defineProperty = objectDefineProperty.f;
|
|
@@ -6009,7 +6060,7 @@ function uniqueId(prefix) {
|
|
|
6009
6060
|
};
|
|
6010
6061
|
}
|
|
6011
6062
|
});var _withScopeId = function _withScopeId(n) {
|
|
6012
|
-
return vue.pushScopeId("data-v-
|
|
6063
|
+
return vue.pushScopeId("data-v-003a6fba"), n = n(), vue.popScopeId(), n;
|
|
6013
6064
|
};
|
|
6014
6065
|
|
|
6015
6066
|
var _hoisted_1 = {
|
|
@@ -6049,9 +6100,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6049
6100
|
"default": vue.withCtx(function () {
|
|
6050
6101
|
return [vue.createElementVNode("div", _hoisted_1, [vue.createElementVNode("div", _hoisted_2, [vue.createElementVNode("div", _hoisted_3, [vue.createElementVNode("div", {
|
|
6051
6102
|
role: _ctx.role,
|
|
6103
|
+
"aria-modal": "true",
|
|
6052
6104
|
"class": "fw-modal--container p-12 m-8 inline-block w-full max-w-[540px] bg-white rounded-2xl shadow",
|
|
6053
|
-
"aria-labelledby": _ctx.$slots.header || _ctx.header ? "modal_".concat(_ctx.uuid, "_header") :
|
|
6054
|
-
"aria-describedby": _ctx.$slots.body ? "modal_".concat(_ctx.uuid, "_body") :
|
|
6105
|
+
"aria-labelledby": _ctx.$slots.header || _ctx.header ? "modal_".concat(_ctx.uuid, "_header") : undefined,
|
|
6106
|
+
"aria-describedby": _ctx.$slots.body ? "modal_".concat(_ctx.uuid, "_body") : undefined
|
|
6055
6107
|
}, [_ctx.$slots.icon || _ctx.$slots.header || _ctx.header ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5, [_ctx.$slots.icon ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6, [vue.renderSlot(_ctx.$slots, "icon")])) : vue.createCommentVNode("", true), _ctx.$slots.header ? (vue.openBlock(), vue.createElementBlock("h2", {
|
|
6056
6108
|
key: 1,
|
|
6057
6109
|
id: "modal_".concat(_ctx.uuid, "_header")
|
|
@@ -6098,10 +6150,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6098
6150
|
}),
|
|
6099
6151
|
_: 3
|
|
6100
6152
|
});
|
|
6101
|
-
}var css_248z = ".modalFadeIn-enter-active[data-v-
|
|
6102
|
-
var stylesheet = ".modalFadeIn-enter-active[data-v-
|
|
6153
|
+
}var css_248z = ".modalFadeIn-enter-active[data-v-003a6fba]{-webkit-animation:modalFadeIn-003a6fba .4s;animation:modalFadeIn-003a6fba .4s;-webkit-transition:opacity .4s ease-in;-o-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.modalFadeIn-leave-active[data-v-003a6fba]{animation:modalFadeIn-003a6fba .4s reverse;-webkit-transition:opacity .4s ease-out;-o-transition:opacity .4s ease-out;transition:opacity .4s ease-out}@-webkit-keyframes modalFadeIn-003a6fba{0%{opacity:0}to{opacity:1}}@keyframes modalFadeIn-003a6fba{0%{opacity:0}to{opacity:1}}";
|
|
6154
|
+
var stylesheet = ".modalFadeIn-enter-active[data-v-003a6fba]{-webkit-animation:modalFadeIn-003a6fba .4s;animation:modalFadeIn-003a6fba .4s;-webkit-transition:opacity .4s ease-in;-o-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.modalFadeIn-leave-active[data-v-003a6fba]{animation:modalFadeIn-003a6fba .4s reverse;-webkit-transition:opacity .4s ease-out;-o-transition:opacity .4s ease-out;transition:opacity .4s ease-out}@-webkit-keyframes modalFadeIn-003a6fba{0%{opacity:0}to{opacity:1}}@keyframes modalFadeIn-003a6fba{0%{opacity:0}to{opacity:1}}";
|
|
6103
6155
|
styleInject(css_248z);script.render = render;
|
|
6104
|
-
script.__scopeId = "data-v-
|
|
6156
|
+
script.__scopeId = "data-v-003a6fba";// Form components
|
|
6105
6157
|
var Components=/*#__PURE__*/Object.freeze({__proto__:null,FwForm:Form,FwInput:script$7,FwCheckbox:script$6,FwCard:script$5,FwButton:script$4,FwNavigationMenu:script$3,FwTabs:script$2,FwTab:script$1,FwModal:script});function _defineProperty(obj, key, value) {
|
|
6106
6158
|
if (key in obj) {
|
|
6107
6159
|
Object.defineProperty(obj, key, {
|