@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/frollo-web-ui.esm.js
CHANGED
|
@@ -113,7 +113,7 @@ var global$f =
|
|
|
113
113
|
|
|
114
114
|
var objectGetOwnPropertyDescriptor = {};
|
|
115
115
|
|
|
116
|
-
var fails$
|
|
116
|
+
var fails$d = function (exec) {
|
|
117
117
|
try {
|
|
118
118
|
return !!exec();
|
|
119
119
|
} catch (error) {
|
|
@@ -121,17 +121,17 @@ var fails$c = function (exec) {
|
|
|
121
121
|
}
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
var fails$
|
|
124
|
+
var fails$c = fails$d;
|
|
125
125
|
|
|
126
126
|
// Detect IE8's incomplete defineProperty implementation
|
|
127
|
-
var descriptors = !fails$
|
|
127
|
+
var descriptors = !fails$c(function () {
|
|
128
128
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
129
129
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
130
130
|
});
|
|
131
131
|
|
|
132
|
-
var fails$
|
|
132
|
+
var fails$b = fails$d;
|
|
133
133
|
|
|
134
|
-
var functionBindNative = !fails$
|
|
134
|
+
var functionBindNative = !fails$b(function () {
|
|
135
135
|
// eslint-disable-next-line es-x/no-function-prototype-bind -- safe
|
|
136
136
|
var test = (function () { /* empty */ }).bind();
|
|
137
137
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
@@ -177,34 +177,34 @@ var NATIVE_BIND$2 = functionBindNative;
|
|
|
177
177
|
var FunctionPrototype$3 = Function.prototype;
|
|
178
178
|
var bind$2 = FunctionPrototype$3.bind;
|
|
179
179
|
var call$4 = FunctionPrototype$3.call;
|
|
180
|
-
var uncurryThis$
|
|
180
|
+
var uncurryThis$k = NATIVE_BIND$2 && bind$2.bind(call$4, call$4);
|
|
181
181
|
|
|
182
182
|
var functionUncurryThis = NATIVE_BIND$2 ? function (fn) {
|
|
183
|
-
return fn && uncurryThis$
|
|
183
|
+
return fn && uncurryThis$k(fn);
|
|
184
184
|
} : function (fn) {
|
|
185
185
|
return fn && function () {
|
|
186
186
|
return call$4.apply(fn, arguments);
|
|
187
187
|
};
|
|
188
188
|
};
|
|
189
189
|
|
|
190
|
-
var uncurryThis$
|
|
190
|
+
var uncurryThis$j = functionUncurryThis;
|
|
191
191
|
|
|
192
|
-
var toString$
|
|
193
|
-
var stringSlice = uncurryThis$
|
|
192
|
+
var toString$6 = uncurryThis$j({}.toString);
|
|
193
|
+
var stringSlice = uncurryThis$j(''.slice);
|
|
194
194
|
|
|
195
195
|
var classofRaw$1 = function (it) {
|
|
196
|
-
return stringSlice(toString$
|
|
196
|
+
return stringSlice(toString$6(it), 8, -1);
|
|
197
197
|
};
|
|
198
198
|
|
|
199
|
-
var uncurryThis$
|
|
200
|
-
var fails$
|
|
199
|
+
var uncurryThis$i = functionUncurryThis;
|
|
200
|
+
var fails$a = fails$d;
|
|
201
201
|
var classof$5 = classofRaw$1;
|
|
202
202
|
|
|
203
203
|
var $Object$3 = Object;
|
|
204
|
-
var split = uncurryThis$
|
|
204
|
+
var split = uncurryThis$i(''.split);
|
|
205
205
|
|
|
206
206
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
207
|
-
var indexedObject = fails$
|
|
207
|
+
var indexedObject = fails$a(function () {
|
|
208
208
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
209
209
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
210
210
|
return !$Object$3('z').propertyIsEnumerable(0);
|
|
@@ -216,17 +216,17 @@ var $TypeError$7 = TypeError;
|
|
|
216
216
|
|
|
217
217
|
// `RequireObjectCoercible` abstract operation
|
|
218
218
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
219
|
-
var requireObjectCoercible$
|
|
219
|
+
var requireObjectCoercible$4 = function (it) {
|
|
220
220
|
if (it == undefined) throw $TypeError$7("Can't call method on " + it);
|
|
221
221
|
return it;
|
|
222
222
|
};
|
|
223
223
|
|
|
224
224
|
// toObject with fallback for non-array-like ES3 strings
|
|
225
225
|
var IndexedObject$1 = indexedObject;
|
|
226
|
-
var requireObjectCoercible$
|
|
226
|
+
var requireObjectCoercible$3 = requireObjectCoercible$4;
|
|
227
227
|
|
|
228
228
|
var toIndexedObject$5 = function (it) {
|
|
229
|
-
return IndexedObject$1(requireObjectCoercible$
|
|
229
|
+
return IndexedObject$1(requireObjectCoercible$3(it));
|
|
230
230
|
};
|
|
231
231
|
|
|
232
232
|
// `IsCallable` abstract operation
|
|
@@ -252,9 +252,9 @@ var getBuiltIn$5 = function (namespace, method) {
|
|
|
252
252
|
return arguments.length < 2 ? aFunction(global$e[namespace]) : global$e[namespace] && global$e[namespace][method];
|
|
253
253
|
};
|
|
254
254
|
|
|
255
|
-
var uncurryThis$
|
|
255
|
+
var uncurryThis$h = functionUncurryThis;
|
|
256
256
|
|
|
257
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
257
|
+
var objectIsPrototypeOf = uncurryThis$h({}.isPrototypeOf);
|
|
258
258
|
|
|
259
259
|
var getBuiltIn$4 = getBuiltIn$5;
|
|
260
260
|
|
|
@@ -291,10 +291,10 @@ var engineV8Version = version;
|
|
|
291
291
|
/* eslint-disable es-x/no-symbol -- required for testing */
|
|
292
292
|
|
|
293
293
|
var V8_VERSION = engineV8Version;
|
|
294
|
-
var fails$
|
|
294
|
+
var fails$9 = fails$d;
|
|
295
295
|
|
|
296
296
|
// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
|
|
297
|
-
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$
|
|
297
|
+
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$9(function () {
|
|
298
298
|
var symbol = Symbol();
|
|
299
299
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
300
300
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -411,20 +411,20 @@ var store$2 = sharedStore;
|
|
|
411
411
|
|
|
412
412
|
var shared$3 = shared$4.exports;
|
|
413
413
|
|
|
414
|
-
var requireObjectCoercible$
|
|
414
|
+
var requireObjectCoercible$2 = requireObjectCoercible$4;
|
|
415
415
|
|
|
416
416
|
var $Object$1 = Object;
|
|
417
417
|
|
|
418
418
|
// `ToObject` abstract operation
|
|
419
419
|
// https://tc39.es/ecma262/#sec-toobject
|
|
420
420
|
var toObject$2 = function (argument) {
|
|
421
|
-
return $Object$1(requireObjectCoercible$
|
|
421
|
+
return $Object$1(requireObjectCoercible$2(argument));
|
|
422
422
|
};
|
|
423
423
|
|
|
424
|
-
var uncurryThis$
|
|
424
|
+
var uncurryThis$g = functionUncurryThis;
|
|
425
425
|
var toObject$1 = toObject$2;
|
|
426
426
|
|
|
427
|
-
var hasOwnProperty$1 = uncurryThis$
|
|
427
|
+
var hasOwnProperty$1 = uncurryThis$g({}.hasOwnProperty);
|
|
428
428
|
|
|
429
429
|
// `HasOwnProperty` abstract operation
|
|
430
430
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
@@ -433,14 +433,14 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
|
433
433
|
return hasOwnProperty$1(toObject$1(it), key);
|
|
434
434
|
};
|
|
435
435
|
|
|
436
|
-
var uncurryThis$
|
|
436
|
+
var uncurryThis$f = functionUncurryThis;
|
|
437
437
|
|
|
438
438
|
var id = 0;
|
|
439
439
|
var postfix = Math.random();
|
|
440
|
-
var toString$
|
|
440
|
+
var toString$5 = uncurryThis$f(1.0.toString);
|
|
441
441
|
|
|
442
442
|
var uid$2 = function (key) {
|
|
443
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$
|
|
443
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$5(++id + postfix, 36);
|
|
444
444
|
};
|
|
445
445
|
|
|
446
446
|
var global$a = global$f;
|
|
@@ -516,11 +516,11 @@ var documentCreateElement$2 = function (it) {
|
|
|
516
516
|
};
|
|
517
517
|
|
|
518
518
|
var DESCRIPTORS$a = descriptors;
|
|
519
|
-
var fails$
|
|
519
|
+
var fails$8 = fails$d;
|
|
520
520
|
var createElement = documentCreateElement$2;
|
|
521
521
|
|
|
522
522
|
// Thanks to IE8 for its funny defineProperty
|
|
523
|
-
var ie8DomDefine = !DESCRIPTORS$a && !fails$
|
|
523
|
+
var ie8DomDefine = !DESCRIPTORS$a && !fails$8(function () {
|
|
524
524
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
525
525
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
526
526
|
get: function () { return 7; }
|
|
@@ -553,11 +553,11 @@ var f$4 = objectGetOwnPropertyDescriptor.f = DESCRIPTORS$9 ? $getOwnPropertyDesc
|
|
|
553
553
|
var objectDefineProperty = {};
|
|
554
554
|
|
|
555
555
|
var DESCRIPTORS$8 = descriptors;
|
|
556
|
-
var fails$
|
|
556
|
+
var fails$7 = fails$d;
|
|
557
557
|
|
|
558
558
|
// V8 ~ Chrome 36-
|
|
559
559
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
560
|
-
var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$
|
|
560
|
+
var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$7(function () {
|
|
561
561
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
562
562
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
563
563
|
value: 42,
|
|
@@ -651,11 +651,11 @@ var functionName = {
|
|
|
651
651
|
CONFIGURABLE: CONFIGURABLE
|
|
652
652
|
};
|
|
653
653
|
|
|
654
|
-
var uncurryThis$
|
|
654
|
+
var uncurryThis$e = functionUncurryThis;
|
|
655
655
|
var isCallable$a = isCallable$g;
|
|
656
656
|
var store$1 = sharedStore;
|
|
657
657
|
|
|
658
|
-
var functionToString$1 = uncurryThis$
|
|
658
|
+
var functionToString$1 = uncurryThis$e(Function.toString);
|
|
659
659
|
|
|
660
660
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
661
661
|
if (!isCallable$a(store$1.inspectSource)) {
|
|
@@ -687,7 +687,7 @@ var hiddenKeys$4 = {};
|
|
|
687
687
|
|
|
688
688
|
var NATIVE_WEAK_MAP = nativeWeakMap;
|
|
689
689
|
var global$7 = global$f;
|
|
690
|
-
var uncurryThis$
|
|
690
|
+
var uncurryThis$d = functionUncurryThis;
|
|
691
691
|
var isObject$3 = isObject$8;
|
|
692
692
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
|
|
693
693
|
var hasOwn$4 = hasOwnProperty_1;
|
|
@@ -715,9 +715,9 @@ var getterFor = function (TYPE) {
|
|
|
715
715
|
|
|
716
716
|
if (NATIVE_WEAK_MAP || shared.state) {
|
|
717
717
|
var store = shared.state || (shared.state = new WeakMap());
|
|
718
|
-
var wmget = uncurryThis$
|
|
719
|
-
var wmhas = uncurryThis$
|
|
720
|
-
var wmset = uncurryThis$
|
|
718
|
+
var wmget = uncurryThis$d(store.get);
|
|
719
|
+
var wmhas = uncurryThis$d(store.has);
|
|
720
|
+
var wmset = uncurryThis$d(store.set);
|
|
721
721
|
set$1 = function (it, metadata) {
|
|
722
722
|
if (wmhas(store, it)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
|
|
723
723
|
metadata.facade = it;
|
|
@@ -755,7 +755,7 @@ var internalState = {
|
|
|
755
755
|
getterFor: getterFor
|
|
756
756
|
};
|
|
757
757
|
|
|
758
|
-
var fails$
|
|
758
|
+
var fails$6 = fails$d;
|
|
759
759
|
var isCallable$8 = isCallable$g;
|
|
760
760
|
var hasOwn$3 = hasOwnProperty_1;
|
|
761
761
|
var DESCRIPTORS$4 = descriptors;
|
|
@@ -768,7 +768,7 @@ var getInternalState = InternalStateModule.get;
|
|
|
768
768
|
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
769
769
|
var defineProperty$3 = Object.defineProperty;
|
|
770
770
|
|
|
771
|
-
var CONFIGURABLE_LENGTH = DESCRIPTORS$4 && !fails$
|
|
771
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS$4 && !fails$6(function () {
|
|
772
772
|
return defineProperty$3(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
773
773
|
});
|
|
774
774
|
|
|
@@ -922,13 +922,13 @@ var arrayIncludes = {
|
|
|
922
922
|
indexOf: createMethod$3(false)
|
|
923
923
|
};
|
|
924
924
|
|
|
925
|
-
var uncurryThis$
|
|
925
|
+
var uncurryThis$c = functionUncurryThis;
|
|
926
926
|
var hasOwn$2 = hasOwnProperty_1;
|
|
927
927
|
var toIndexedObject$2 = toIndexedObject$5;
|
|
928
928
|
var indexOf = arrayIncludes.indexOf;
|
|
929
929
|
var hiddenKeys$2 = hiddenKeys$4;
|
|
930
930
|
|
|
931
|
-
var push$2 = uncurryThis$
|
|
931
|
+
var push$2 = uncurryThis$c([].push);
|
|
932
932
|
|
|
933
933
|
var objectKeysInternal = function (object, names) {
|
|
934
934
|
var O = toIndexedObject$2(object);
|
|
@@ -972,12 +972,12 @@ var objectGetOwnPropertySymbols = {};
|
|
|
972
972
|
var f$1 = objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
973
973
|
|
|
974
974
|
var getBuiltIn$2 = getBuiltIn$5;
|
|
975
|
-
var uncurryThis$
|
|
975
|
+
var uncurryThis$b = functionUncurryThis;
|
|
976
976
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
977
977
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
978
978
|
var anObject$3 = anObject$5;
|
|
979
979
|
|
|
980
|
-
var concat = uncurryThis$
|
|
980
|
+
var concat = uncurryThis$b([].concat);
|
|
981
981
|
|
|
982
982
|
// all object keys, includes non-enumerable and symbols
|
|
983
983
|
var ownKeys$2 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
@@ -1003,7 +1003,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
|
|
|
1003
1003
|
}
|
|
1004
1004
|
};
|
|
1005
1005
|
|
|
1006
|
-
var fails$
|
|
1006
|
+
var fails$5 = fails$d;
|
|
1007
1007
|
var isCallable$6 = isCallable$g;
|
|
1008
1008
|
|
|
1009
1009
|
var replacement = /#|\.prototype\./;
|
|
@@ -1012,7 +1012,7 @@ var isForced$2 = function (feature, detection) {
|
|
|
1012
1012
|
var value = data[normalize(feature)];
|
|
1013
1013
|
return value == POLYFILL ? true
|
|
1014
1014
|
: value == NATIVE ? false
|
|
1015
|
-
: isCallable$6(detection) ? fails$
|
|
1015
|
+
: isCallable$6(detection) ? fails$5(detection)
|
|
1016
1016
|
: !!detection;
|
|
1017
1017
|
};
|
|
1018
1018
|
|
|
@@ -1081,11 +1081,11 @@ var _export = function (options, source) {
|
|
|
1081
1081
|
}
|
|
1082
1082
|
};
|
|
1083
1083
|
|
|
1084
|
-
var uncurryThis$
|
|
1084
|
+
var uncurryThis$a = functionUncurryThis;
|
|
1085
1085
|
var aCallable = aCallable$2;
|
|
1086
1086
|
var NATIVE_BIND$1 = functionBindNative;
|
|
1087
1087
|
|
|
1088
|
-
var bind$1 = uncurryThis$
|
|
1088
|
+
var bind$1 = uncurryThis$a(uncurryThis$a.bind);
|
|
1089
1089
|
|
|
1090
1090
|
// optional / simple context binding
|
|
1091
1091
|
var functionBindContext = function (fn, that) {
|
|
@@ -1143,8 +1143,8 @@ var classof$3 = TO_STRING_TAG_SUPPORT$2 ? classofRaw : function (it) {
|
|
|
1143
1143
|
: (result = classofRaw(O)) == 'Object' && isCallable$5(O.callee) ? 'Arguments' : result;
|
|
1144
1144
|
};
|
|
1145
1145
|
|
|
1146
|
-
var uncurryThis$
|
|
1147
|
-
var fails$
|
|
1146
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
1147
|
+
var fails$4 = fails$d;
|
|
1148
1148
|
var isCallable$4 = isCallable$g;
|
|
1149
1149
|
var classof$2 = classof$3;
|
|
1150
1150
|
var getBuiltIn$1 = getBuiltIn$5;
|
|
@@ -1154,7 +1154,7 @@ var noop = function () { /* empty */ };
|
|
|
1154
1154
|
var empty = [];
|
|
1155
1155
|
var construct = getBuiltIn$1('Reflect', 'construct');
|
|
1156
1156
|
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
1157
|
-
var exec = uncurryThis$
|
|
1157
|
+
var exec = uncurryThis$9(constructorRegExp.exec);
|
|
1158
1158
|
var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
|
|
1159
1159
|
|
|
1160
1160
|
var isConstructorModern = function isConstructor(argument) {
|
|
@@ -1188,7 +1188,7 @@ isConstructorLegacy.sham = true;
|
|
|
1188
1188
|
|
|
1189
1189
|
// `IsConstructor` abstract operation
|
|
1190
1190
|
// https://tc39.es/ecma262/#sec-isconstructor
|
|
1191
|
-
var isConstructor$1 = !construct || fails$
|
|
1191
|
+
var isConstructor$1 = !construct || fails$4(function () {
|
|
1192
1192
|
var called;
|
|
1193
1193
|
return isConstructorModern(isConstructorModern.call)
|
|
1194
1194
|
|| !isConstructorModern(Object)
|
|
@@ -1228,13 +1228,13 @@ var arraySpeciesCreate$1 = function (originalArray, length) {
|
|
|
1228
1228
|
};
|
|
1229
1229
|
|
|
1230
1230
|
var bind = functionBindContext;
|
|
1231
|
-
var uncurryThis$
|
|
1231
|
+
var uncurryThis$8 = functionUncurryThis;
|
|
1232
1232
|
var IndexedObject = indexedObject;
|
|
1233
1233
|
var toObject = toObject$2;
|
|
1234
1234
|
var lengthOfArrayLike = lengthOfArrayLike$2;
|
|
1235
1235
|
var arraySpeciesCreate = arraySpeciesCreate$1;
|
|
1236
1236
|
|
|
1237
|
-
var push$1 = uncurryThis$
|
|
1237
|
+
var push$1 = uncurryThis$8([].push);
|
|
1238
1238
|
|
|
1239
1239
|
// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
|
|
1240
1240
|
var createMethod$2 = function (TYPE) {
|
|
@@ -1302,11 +1302,11 @@ var arrayIteration = {
|
|
|
1302
1302
|
};
|
|
1303
1303
|
|
|
1304
1304
|
'use strict';
|
|
1305
|
-
var fails$
|
|
1305
|
+
var fails$3 = fails$d;
|
|
1306
1306
|
|
|
1307
1307
|
var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
|
|
1308
1308
|
var method = [][METHOD_NAME];
|
|
1309
|
-
return !!method && fails$
|
|
1309
|
+
return !!method && fails$3(function () {
|
|
1310
1310
|
// eslint-disable-next-line no-useless-call -- required for testing
|
|
1311
1311
|
method.call(null, argument || function () { return 1; }, 1);
|
|
1312
1312
|
});
|
|
@@ -1326,13 +1326,13 @@ var arrayForEach = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */)
|
|
|
1326
1326
|
} : [].forEach;
|
|
1327
1327
|
|
|
1328
1328
|
'use strict';
|
|
1329
|
-
var $$
|
|
1329
|
+
var $$6 = _export;
|
|
1330
1330
|
var forEach$1 = arrayForEach;
|
|
1331
1331
|
|
|
1332
1332
|
// `Array.prototype.forEach` method
|
|
1333
1333
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
1334
1334
|
// eslint-disable-next-line es-x/no-array-prototype-foreach -- safe
|
|
1335
|
-
$$
|
|
1335
|
+
$$6({ target: 'Array', proto: true, forced: [].forEach != forEach$1 }, {
|
|
1336
1336
|
forEach: forEach$1
|
|
1337
1337
|
});
|
|
1338
1338
|
|
|
@@ -1350,12 +1350,12 @@ var objectToString$1 = TO_STRING_TAG_SUPPORT$1 ? {}.toString : function toString
|
|
|
1350
1350
|
|
|
1351
1351
|
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1352
1352
|
var defineBuiltIn$1 = defineBuiltIn$3;
|
|
1353
|
-
var toString$
|
|
1353
|
+
var toString$4 = objectToString$1;
|
|
1354
1354
|
|
|
1355
1355
|
// `Object.prototype.toString` method
|
|
1356
1356
|
// https://tc39.es/ecma262/#sec-object.prototype.tostring
|
|
1357
1357
|
if (!TO_STRING_TAG_SUPPORT) {
|
|
1358
|
-
defineBuiltIn$1(Object.prototype, 'toString', toString$
|
|
1358
|
+
defineBuiltIn$1(Object.prototype, 'toString', toString$4, { unsafe: true });
|
|
1359
1359
|
}
|
|
1360
1360
|
|
|
1361
1361
|
var web_domCollections_forEach = {};
|
|
@@ -1440,13 +1440,13 @@ var objectKeys$2 = Object.keys || function keys(O) {
|
|
|
1440
1440
|
};
|
|
1441
1441
|
|
|
1442
1442
|
var DESCRIPTORS$3 = descriptors;
|
|
1443
|
-
var uncurryThis$
|
|
1443
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
1444
1444
|
var objectKeys$1 = objectKeys$2;
|
|
1445
1445
|
var toIndexedObject$1 = toIndexedObject$5;
|
|
1446
1446
|
var $propertyIsEnumerable = objectPropertyIsEnumerable.f;
|
|
1447
1447
|
|
|
1448
|
-
var propertyIsEnumerable = uncurryThis$
|
|
1449
|
-
var push = uncurryThis$
|
|
1448
|
+
var propertyIsEnumerable = uncurryThis$7($propertyIsEnumerable);
|
|
1449
|
+
var push = uncurryThis$7([].push);
|
|
1450
1450
|
|
|
1451
1451
|
// `Object.{ entries, values }` methods implementation
|
|
1452
1452
|
var createMethod$1 = function (TO_ENTRIES) {
|
|
@@ -1476,12 +1476,12 @@ var objectToArray = {
|
|
|
1476
1476
|
values: createMethod$1(false)
|
|
1477
1477
|
};
|
|
1478
1478
|
|
|
1479
|
-
var $$
|
|
1479
|
+
var $$5 = _export;
|
|
1480
1480
|
var $entries = objectToArray.entries;
|
|
1481
1481
|
|
|
1482
1482
|
// `Object.entries` method
|
|
1483
1483
|
// https://tc39.es/ecma262/#sec-object.entries
|
|
1484
|
-
$$
|
|
1484
|
+
$$5({ target: 'Object', stat: true }, {
|
|
1485
1485
|
entries: function entries(O) {
|
|
1486
1486
|
return $entries(O);
|
|
1487
1487
|
}
|
|
@@ -4812,19 +4812,19 @@ var addToUnscopables$2 = function (key) {
|
|
|
4812
4812
|
};
|
|
4813
4813
|
|
|
4814
4814
|
'use strict';
|
|
4815
|
-
var $$
|
|
4815
|
+
var $$4 = _export;
|
|
4816
4816
|
var $includes = arrayIncludes.includes;
|
|
4817
|
-
var fails$
|
|
4817
|
+
var fails$2 = fails$d;
|
|
4818
4818
|
var addToUnscopables$1 = addToUnscopables$2;
|
|
4819
4819
|
|
|
4820
4820
|
// FF99+ bug
|
|
4821
|
-
var BROKEN_ON_SPARSE = fails$
|
|
4821
|
+
var BROKEN_ON_SPARSE = fails$2(function () {
|
|
4822
4822
|
return !Array(1).includes();
|
|
4823
4823
|
});
|
|
4824
4824
|
|
|
4825
4825
|
// `Array.prototype.includes` method
|
|
4826
4826
|
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
4827
|
-
$$
|
|
4827
|
+
$$4({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
|
|
4828
4828
|
includes: function includes(el /* , fromIndex = 0 */) {
|
|
4829
4829
|
return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
|
|
4830
4830
|
}
|
|
@@ -4883,10 +4883,10 @@ var script$7 = defineComponent({
|
|
|
4883
4883
|
},
|
|
4884
4884
|
|
|
4885
4885
|
/**
|
|
4886
|
-
* Validation rules. Accepts
|
|
4886
|
+
* Validation rules. Accepts an object, string schema or validation function.
|
|
4887
4887
|
*/
|
|
4888
4888
|
rules: {
|
|
4889
|
-
type: [
|
|
4889
|
+
type: [Object, String, Function]
|
|
4890
4890
|
},
|
|
4891
4891
|
|
|
4892
4892
|
/**
|
|
@@ -4902,6 +4902,13 @@ var script$7 = defineComponent({
|
|
|
4902
4902
|
*/
|
|
4903
4903
|
hint: {
|
|
4904
4904
|
type: String
|
|
4905
|
+
},
|
|
4906
|
+
|
|
4907
|
+
/**
|
|
4908
|
+
* The autocomplete input attribute
|
|
4909
|
+
*/
|
|
4910
|
+
autocomplete: {
|
|
4911
|
+
type: String
|
|
4905
4912
|
}
|
|
4906
4913
|
},
|
|
4907
4914
|
setup: function setup(props, ctx) {
|
|
@@ -4925,13 +4932,13 @@ var es_function_name = {};
|
|
|
4925
4932
|
|
|
4926
4933
|
var DESCRIPTORS$1 = descriptors;
|
|
4927
4934
|
var FUNCTION_NAME_EXISTS = functionName.EXISTS;
|
|
4928
|
-
var uncurryThis$
|
|
4935
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
4929
4936
|
var defineProperty$1 = objectDefineProperty.f;
|
|
4930
4937
|
|
|
4931
4938
|
var FunctionPrototype$1 = Function.prototype;
|
|
4932
|
-
var functionToString = uncurryThis$
|
|
4939
|
+
var functionToString = uncurryThis$6(FunctionPrototype$1.toString);
|
|
4933
4940
|
var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
|
|
4934
|
-
var regExpExec = uncurryThis$
|
|
4941
|
+
var regExpExec = uncurryThis$6(nameRE.exec);
|
|
4935
4942
|
var NAME = 'name';
|
|
4936
4943
|
|
|
4937
4944
|
// Function instances `.name` property
|
|
@@ -4969,7 +4976,7 @@ var _hoisted_7$3 = {
|
|
|
4969
4976
|
key: 0,
|
|
4970
4977
|
"class": "flex text-black absolute w-9 h-full inset-y-0 left-0 items-center pl-3 pointer-events-none"
|
|
4971
4978
|
};
|
|
4972
|
-
var _hoisted_8$3 = ["placeholder", "type", "readonly", "disabled"];
|
|
4979
|
+
var _hoisted_8$3 = ["placeholder", "type", "readonly", "disabled", "autocomplete"];
|
|
4973
4980
|
|
|
4974
4981
|
var _hoisted_9$2 = /*#__PURE__*/createElementVNode("svg", {
|
|
4975
4982
|
fill: "currentColor",
|
|
@@ -5022,6 +5029,7 @@ function render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5022
5029
|
type: _ctx.type,
|
|
5023
5030
|
readonly: _ctx.readonly,
|
|
5024
5031
|
disabled: _ctx.readonly,
|
|
5032
|
+
autocomplete: _ctx.autocomplete,
|
|
5025
5033
|
"class": [{
|
|
5026
5034
|
'pl-10': !!_ctx.$slots.prefix,
|
|
5027
5035
|
'pr-20': !!_ctx.$slots.suffix
|
|
@@ -5105,10 +5113,10 @@ var script$6 = defineComponent({
|
|
|
5105
5113
|
},
|
|
5106
5114
|
|
|
5107
5115
|
/**
|
|
5108
|
-
* Validation rules. Accepts
|
|
5116
|
+
* Validation rules. Accepts an object, stringm schema or validation function.
|
|
5109
5117
|
*/
|
|
5110
5118
|
rules: {
|
|
5111
|
-
type: [
|
|
5119
|
+
type: [Object, String, Function]
|
|
5112
5120
|
},
|
|
5113
5121
|
|
|
5114
5122
|
/**
|
|
@@ -5121,7 +5129,7 @@ var script$6 = defineComponent({
|
|
|
5121
5129
|
});
|
|
5122
5130
|
|
|
5123
5131
|
var _withScopeId$1 = function _withScopeId(n) {
|
|
5124
|
-
return pushScopeId("data-v-
|
|
5132
|
+
return pushScopeId("data-v-7423717e"), n = n(), popScopeId(), n;
|
|
5125
5133
|
};
|
|
5126
5134
|
|
|
5127
5135
|
var _hoisted_1$5 = {
|
|
@@ -5183,12 +5191,12 @@ function render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5183
5191
|
}, 8, ["name", "value", "rules"])]);
|
|
5184
5192
|
}
|
|
5185
5193
|
|
|
5186
|
-
var css_248z$3 = ".fwFadeIn-enter-active[data-v-
|
|
5187
|
-
var stylesheet$3 = ".fwFadeIn-enter-active[data-v-
|
|
5194
|
+
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}";
|
|
5195
|
+
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}";
|
|
5188
5196
|
styleInject(css_248z$3);
|
|
5189
5197
|
|
|
5190
5198
|
script$6.render = render$6;
|
|
5191
|
-
script$6.__scopeId = "data-v-
|
|
5199
|
+
script$6.__scopeId = "data-v-7423717e";
|
|
5192
5200
|
|
|
5193
5201
|
var script$5 = defineComponent({
|
|
5194
5202
|
name: 'FwCard',
|
|
@@ -5350,7 +5358,7 @@ var script$4 = defineComponent({
|
|
|
5350
5358
|
border: 'border-none focus-visible:ring-primary'
|
|
5351
5359
|
},
|
|
5352
5360
|
text: {
|
|
5353
|
-
text: 'text-body hover:text-white active:text-white',
|
|
5361
|
+
text: 'text-body font-medium hover:text-white active:text-white',
|
|
5354
5362
|
background: 'bg-white hover:bg-body active:bg-body',
|
|
5355
5363
|
border: 'border-transparent focus-visible:ring-body'
|
|
5356
5364
|
}
|
|
@@ -5466,6 +5474,69 @@ styleInject(css_248z$2);
|
|
|
5466
5474
|
|
|
5467
5475
|
script$4.render = render$4;
|
|
5468
5476
|
|
|
5477
|
+
var es_string_link = {};
|
|
5478
|
+
|
|
5479
|
+
var classof = classof$3;
|
|
5480
|
+
|
|
5481
|
+
var $String$1 = String;
|
|
5482
|
+
|
|
5483
|
+
var toString$3 = function (argument) {
|
|
5484
|
+
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
5485
|
+
return $String$1(argument);
|
|
5486
|
+
};
|
|
5487
|
+
|
|
5488
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
5489
|
+
var requireObjectCoercible$1 = requireObjectCoercible$4;
|
|
5490
|
+
var toString$2 = toString$3;
|
|
5491
|
+
|
|
5492
|
+
var quot = /"/g;
|
|
5493
|
+
var replace$1 = uncurryThis$5(''.replace);
|
|
5494
|
+
|
|
5495
|
+
// `CreateHTML` abstract operation
|
|
5496
|
+
// https://tc39.es/ecma262/#sec-createhtml
|
|
5497
|
+
var createHtml = function (string, tag, attribute, value) {
|
|
5498
|
+
var S = toString$2(requireObjectCoercible$1(string));
|
|
5499
|
+
var p1 = '<' + tag;
|
|
5500
|
+
if (attribute !== '') p1 += ' ' + attribute + '="' + replace$1(toString$2(value), quot, '"') + '"';
|
|
5501
|
+
return p1 + '>' + S + '</' + tag + '>';
|
|
5502
|
+
};
|
|
5503
|
+
|
|
5504
|
+
var fails$1 = fails$d;
|
|
5505
|
+
|
|
5506
|
+
// check the existence of a method, lowercase
|
|
5507
|
+
// of a tag and escaping quotes in arguments
|
|
5508
|
+
var stringHtmlForced = function (METHOD_NAME) {
|
|
5509
|
+
return fails$1(function () {
|
|
5510
|
+
var test = ''[METHOD_NAME]('"');
|
|
5511
|
+
return test !== test.toLowerCase() || test.split('"').length > 3;
|
|
5512
|
+
});
|
|
5513
|
+
};
|
|
5514
|
+
|
|
5515
|
+
'use strict';
|
|
5516
|
+
var $$3 = _export;
|
|
5517
|
+
var createHTML = createHtml;
|
|
5518
|
+
var forcedStringHTMLMethod = stringHtmlForced;
|
|
5519
|
+
|
|
5520
|
+
// `String.prototype.link` method
|
|
5521
|
+
// https://tc39.es/ecma262/#sec-string.prototype.link
|
|
5522
|
+
$$3({ target: 'String', proto: true, forced: forcedStringHTMLMethod('link') }, {
|
|
5523
|
+
link: function link(url) {
|
|
5524
|
+
return createHTML(this, 'a', 'href', url);
|
|
5525
|
+
}
|
|
5526
|
+
});
|
|
5527
|
+
|
|
5528
|
+
var ButtonVariantName;
|
|
5529
|
+
|
|
5530
|
+
(function (ButtonVariantName) {
|
|
5531
|
+
ButtonVariantName["primary"] = "primary";
|
|
5532
|
+
ButtonVariantName["secondary"] = "secondary";
|
|
5533
|
+
ButtonVariantName["tertiary"] = "tertiary";
|
|
5534
|
+
ButtonVariantName["error"] = "error";
|
|
5535
|
+
ButtonVariantName["success"] = "success";
|
|
5536
|
+
ButtonVariantName["text"] = "text";
|
|
5537
|
+
ButtonVariantName["link"] = "link";
|
|
5538
|
+
})(ButtonVariantName || (ButtonVariantName = {}));
|
|
5539
|
+
|
|
5469
5540
|
var script$3 = defineComponent({
|
|
5470
5541
|
name: 'FwNavigationMenu',
|
|
5471
5542
|
emits: ['action'],
|
|
@@ -5506,7 +5577,8 @@ var script$3 = defineComponent({
|
|
|
5506
5577
|
mobileMenuClass: mobileMenuClass,
|
|
5507
5578
|
isMobileMenuOpen: isMobileMenuOpen,
|
|
5508
5579
|
toggleMobileMenu: toggleMobileMenu,
|
|
5509
|
-
actionClicked: actionClicked
|
|
5580
|
+
actionClicked: actionClicked,
|
|
5581
|
+
ButtonVariantName: ButtonVariantName
|
|
5510
5582
|
};
|
|
5511
5583
|
}
|
|
5512
5584
|
});
|
|
@@ -5515,7 +5587,7 @@ var _hoisted_1$3 = {
|
|
|
5515
5587
|
"class": "fw-nav-menu relative z-50 h-20 shadow-md"
|
|
5516
5588
|
};
|
|
5517
5589
|
var _hoisted_2$2 = {
|
|
5518
|
-
"class": "px-6 flex-1 h-full flex bg-white items-stretch justify-between"
|
|
5590
|
+
"class": "px-6 flex-1 h-full flex bg-white items-stretch justify-between max-w-6xl mx-auto"
|
|
5519
5591
|
};
|
|
5520
5592
|
var _hoisted_3$2 = {
|
|
5521
5593
|
key: 0,
|
|
@@ -5523,7 +5595,7 @@ var _hoisted_3$2 = {
|
|
|
5523
5595
|
};
|
|
5524
5596
|
var _hoisted_4$1 = {
|
|
5525
5597
|
key: 1,
|
|
5526
|
-
"class": "container hidden sm:flex items-center justify-start
|
|
5598
|
+
"class": "container hidden sm:flex items-center justify-start sm:ml-6"
|
|
5527
5599
|
};
|
|
5528
5600
|
var _hoisted_5$1 = {
|
|
5529
5601
|
"class": "flex space-x-2"
|
|
@@ -5557,10 +5629,10 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5557
5629
|
|
|
5558
5630
|
var _component_FwButton = resolveComponent("FwButton");
|
|
5559
5631
|
|
|
5560
|
-
return openBlock(), createElementBlock("nav", _hoisted_1$3, [createElementVNode("div", _hoisted_2$2, [_ctx.$slots.logo ? (openBlock(), createElementBlock("div", _hoisted_3$2, [renderSlot(_ctx.$slots, "logo")])) : createCommentVNode("", true), ((_ctx$menuItems = _ctx.menuItems) === null || _ctx$menuItems === void 0 ? void 0 : _ctx$menuItems.length) > 0 ? (openBlock(), createElementBlock("div", _hoisted_4$1, [createElementVNode("div", _hoisted_5$1, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
|
|
5632
|
+
return openBlock(), createElementBlock("nav", _hoisted_1$3, [createElementVNode("div", _hoisted_2$2, [_ctx.$slots.logo ? (openBlock(), createElementBlock("div", _hoisted_3$2, [renderSlot(_ctx.$slots, "logo")])) : createCommentVNode("", true), _ctx.menuItems && ((_ctx$menuItems = _ctx.menuItems) === null || _ctx$menuItems === void 0 ? void 0 : _ctx$menuItems.length) > 0 ? (openBlock(), createElementBlock("div", _hoisted_4$1, [createElementVNode("div", _hoisted_5$1, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
|
|
5561
5633
|
return openBlock(), createBlock(_component_FwButton, {
|
|
5562
5634
|
key: i,
|
|
5563
|
-
variant:
|
|
5635
|
+
variant: _ctx.ButtonVariantName.text,
|
|
5564
5636
|
href: item.href,
|
|
5565
5637
|
to: item.to,
|
|
5566
5638
|
size: "md",
|
|
@@ -5570,7 +5642,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5570
5642
|
return [createTextVNode(toDisplayString(item.label), 1)];
|
|
5571
5643
|
}),
|
|
5572
5644
|
_: 2
|
|
5573
|
-
}, 1032, ["href", "to"]);
|
|
5645
|
+
}, 1032, ["variant", "href", "to"]);
|
|
5574
5646
|
}), 128))])])) : createCommentVNode("", true), _ctx.actionLabel ? (openBlock(), createElementBlock("div", _hoisted_6$1, [createVNode(_component_FwButton, {
|
|
5575
5647
|
onClick: _ctx.actionClicked,
|
|
5576
5648
|
size: "md",
|
|
@@ -5581,7 +5653,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5581
5653
|
}),
|
|
5582
5654
|
_: 1
|
|
5583
5655
|
}, 8, ["onClick", "aria-label"])])) : createCommentVNode("", true), createElementVNode("div", _hoisted_7$1, [createVNode(_component_FwButton, {
|
|
5584
|
-
variant:
|
|
5656
|
+
variant: _ctx.ButtonVariantName.text,
|
|
5585
5657
|
size: "sm",
|
|
5586
5658
|
onClick: _ctx.toggleMobileMenu
|
|
5587
5659
|
}, {
|
|
@@ -5594,20 +5666,18 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5594
5666
|
}, null, 8, _hoisted_10$1)]))];
|
|
5595
5667
|
}),
|
|
5596
5668
|
_: 1
|
|
5597
|
-
}, 8, ["onClick"])])]), createVNode(Transition, {
|
|
5669
|
+
}, 8, ["variant", "onClick"])])]), createVNode(Transition, {
|
|
5598
5670
|
name: "slideInLeft"
|
|
5599
5671
|
}, {
|
|
5600
5672
|
"default": withCtx(function () {
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
return [((_ctx$menuItems2 = _ctx.menuItems) === null || _ctx$menuItems2 === void 0 ? void 0 : _ctx$menuItems2.length) > 0 && _ctx.isMobileMenuOpen ? (openBlock(), createElementBlock("div", {
|
|
5673
|
+
return [_ctx.menuItems && _ctx.menuItems.length > 0 && _ctx.isMobileMenuOpen ? (openBlock(), createElementBlock("div", {
|
|
5604
5674
|
key: 0,
|
|
5605
5675
|
"class": normalizeClass(["fw-nav-menu--mobile", _ctx.mobileMenuClass])
|
|
5606
5676
|
}, [createElementVNode("div", _hoisted_11$1, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
|
|
5607
5677
|
return openBlock(), createBlock(_component_FwButton, {
|
|
5608
5678
|
key: i,
|
|
5609
5679
|
"class": "w-full rounded-md",
|
|
5610
|
-
variant:
|
|
5680
|
+
variant: _ctx.ButtonVariantName.text,
|
|
5611
5681
|
href: item.href,
|
|
5612
5682
|
to: item.to,
|
|
5613
5683
|
size: "md",
|
|
@@ -5617,10 +5687,10 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5617
5687
|
return [createTextVNode(toDisplayString(item.label), 1)];
|
|
5618
5688
|
}),
|
|
5619
5689
|
_: 2
|
|
5620
|
-
}, 1032, ["href", "to"]);
|
|
5690
|
+
}, 1032, ["variant", "href", "to"]);
|
|
5621
5691
|
}), 128))]), _ctx.actionLabel ? (openBlock(), createBlock(_component_FwButton, {
|
|
5622
5692
|
key: 0,
|
|
5623
|
-
"class": "w-full rounded-md
|
|
5693
|
+
"class": "w-full rounded-md",
|
|
5624
5694
|
onClick: _ctx.actionClicked
|
|
5625
5695
|
}, {
|
|
5626
5696
|
"default": withCtx(function () {
|
|
@@ -5643,12 +5713,12 @@ var es_number_constructor = {};
|
|
|
5643
5713
|
|
|
5644
5714
|
var isCallable$2 = isCallable$g;
|
|
5645
5715
|
|
|
5646
|
-
var $String
|
|
5716
|
+
var $String = String;
|
|
5647
5717
|
var $TypeError$1 = TypeError;
|
|
5648
5718
|
|
|
5649
5719
|
var aPossiblePrototype$1 = function (argument) {
|
|
5650
5720
|
if (typeof argument == 'object' || isCallable$2(argument)) return argument;
|
|
5651
|
-
throw $TypeError$1("Can't set " + $String
|
|
5721
|
+
throw $TypeError$1("Can't set " + $String(argument) + ' as a prototype');
|
|
5652
5722
|
};
|
|
5653
5723
|
|
|
5654
5724
|
/* eslint-disable no-proto -- safe */
|
|
@@ -5705,22 +5775,13 @@ var uncurryThis$3 = functionUncurryThis;
|
|
|
5705
5775
|
// https://tc39.es/ecma262/#sec-thisnumbervalue
|
|
5706
5776
|
var thisNumberValue$1 = uncurryThis$3(1.0.valueOf);
|
|
5707
5777
|
|
|
5708
|
-
var classof = classof$3;
|
|
5709
|
-
|
|
5710
|
-
var $String = String;
|
|
5711
|
-
|
|
5712
|
-
var toString$2 = function (argument) {
|
|
5713
|
-
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
5714
|
-
return $String(argument);
|
|
5715
|
-
};
|
|
5716
|
-
|
|
5717
5778
|
// a string of all valid unicode whitespaces
|
|
5718
5779
|
var whitespaces$1 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
|
|
5719
5780
|
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
|
|
5720
5781
|
|
|
5721
5782
|
var uncurryThis$2 = functionUncurryThis;
|
|
5722
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
5723
|
-
var toString$1 = toString$
|
|
5783
|
+
var requireObjectCoercible = requireObjectCoercible$4;
|
|
5784
|
+
var toString$1 = toString$3;
|
|
5724
5785
|
var whitespaces = whitespaces$1;
|
|
5725
5786
|
|
|
5726
5787
|
var replace = uncurryThis$2(''.replace);
|
|
@@ -5761,7 +5822,7 @@ var inheritIfRequired = inheritIfRequired$1;
|
|
|
5761
5822
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
5762
5823
|
var isSymbol$1 = isSymbol$4;
|
|
5763
5824
|
var toPrimitive = toPrimitive$2;
|
|
5764
|
-
var fails = fails$
|
|
5825
|
+
var fails = fails$d;
|
|
5765
5826
|
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
|
|
5766
5827
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
5767
5828
|
var defineProperty = objectDefineProperty.f;
|
|
@@ -6345,7 +6406,7 @@ var script = defineComponent({
|
|
|
6345
6406
|
});
|
|
6346
6407
|
|
|
6347
6408
|
var _withScopeId = function _withScopeId(n) {
|
|
6348
|
-
return pushScopeId("data-v-
|
|
6409
|
+
return pushScopeId("data-v-003a6fba"), n = n(), popScopeId(), n;
|
|
6349
6410
|
};
|
|
6350
6411
|
|
|
6351
6412
|
var _hoisted_1 = {
|
|
@@ -6385,9 +6446,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6385
6446
|
"default": withCtx(function () {
|
|
6386
6447
|
return [createElementVNode("div", _hoisted_1, [createElementVNode("div", _hoisted_2, [createElementVNode("div", _hoisted_3, [createElementVNode("div", {
|
|
6387
6448
|
role: _ctx.role,
|
|
6449
|
+
"aria-modal": "true",
|
|
6388
6450
|
"class": "fw-modal--container p-12 m-8 inline-block w-full max-w-[540px] bg-white rounded-2xl shadow",
|
|
6389
|
-
"aria-labelledby": _ctx.$slots.header || _ctx.header ? "modal_".concat(_ctx.uuid, "_header") :
|
|
6390
|
-
"aria-describedby": _ctx.$slots.body ? "modal_".concat(_ctx.uuid, "_body") :
|
|
6451
|
+
"aria-labelledby": _ctx.$slots.header || _ctx.header ? "modal_".concat(_ctx.uuid, "_header") : undefined,
|
|
6452
|
+
"aria-describedby": _ctx.$slots.body ? "modal_".concat(_ctx.uuid, "_body") : undefined
|
|
6391
6453
|
}, [_ctx.$slots.icon || _ctx.$slots.header || _ctx.header ? (openBlock(), createElementBlock("div", _hoisted_5, [_ctx.$slots.icon ? (openBlock(), createElementBlock("div", _hoisted_6, [renderSlot(_ctx.$slots, "icon")])) : createCommentVNode("", true), _ctx.$slots.header ? (openBlock(), createElementBlock("h2", {
|
|
6392
6454
|
key: 1,
|
|
6393
6455
|
id: "modal_".concat(_ctx.uuid, "_header")
|
|
@@ -6436,12 +6498,12 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6436
6498
|
});
|
|
6437
6499
|
}
|
|
6438
6500
|
|
|
6439
|
-
var css_248z = ".modalFadeIn-enter-active[data-v-
|
|
6440
|
-
var stylesheet = ".modalFadeIn-enter-active[data-v-
|
|
6501
|
+
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}}";
|
|
6502
|
+
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}}";
|
|
6441
6503
|
styleInject(css_248z);
|
|
6442
6504
|
|
|
6443
6505
|
script.render = render;
|
|
6444
|
-
script.__scopeId = "data-v-
|
|
6506
|
+
script.__scopeId = "data-v-003a6fba";
|
|
6445
6507
|
|
|
6446
6508
|
// Form components
|
|
6447
6509
|
|