@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/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$c = function (exec) {
|
|
117
117
|
try {
|
|
118
118
|
return !!exec();
|
|
119
119
|
} catch (error) {
|
|
@@ -121,17 +121,17 @@ var fails$d = function (exec) {
|
|
|
121
121
|
}
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
var fails$
|
|
124
|
+
var fails$b = fails$c;
|
|
125
125
|
|
|
126
126
|
// Detect IE8's incomplete defineProperty implementation
|
|
127
|
-
var descriptors = !fails$
|
|
127
|
+
var descriptors = !fails$b(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$a = fails$c;
|
|
133
133
|
|
|
134
|
-
var functionBindNative = !fails$
|
|
134
|
+
var functionBindNative = !fails$a(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$j = 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$j(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$i = functionUncurryThis;
|
|
191
191
|
|
|
192
|
-
var toString$
|
|
193
|
-
var stringSlice = uncurryThis$
|
|
192
|
+
var toString$5 = uncurryThis$i({}.toString);
|
|
193
|
+
var stringSlice = uncurryThis$i(''.slice);
|
|
194
194
|
|
|
195
195
|
var classofRaw$1 = function (it) {
|
|
196
|
-
return stringSlice(toString$
|
|
196
|
+
return stringSlice(toString$5(it), 8, -1);
|
|
197
197
|
};
|
|
198
198
|
|
|
199
|
-
var uncurryThis$
|
|
200
|
-
var fails$
|
|
199
|
+
var uncurryThis$h = functionUncurryThis;
|
|
200
|
+
var fails$9 = fails$c;
|
|
201
201
|
var classof$5 = classofRaw$1;
|
|
202
202
|
|
|
203
203
|
var $Object$3 = Object;
|
|
204
|
-
var split = uncurryThis$
|
|
204
|
+
var split = uncurryThis$h(''.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$9(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$3 = 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$2 = requireObjectCoercible$3;
|
|
227
227
|
|
|
228
228
|
var toIndexedObject$5 = function (it) {
|
|
229
|
-
return IndexedObject$1(requireObjectCoercible$
|
|
229
|
+
return IndexedObject$1(requireObjectCoercible$2(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$g = functionUncurryThis;
|
|
256
256
|
|
|
257
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
257
|
+
var objectIsPrototypeOf = uncurryThis$g({}.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$8 = fails$c;
|
|
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$8(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$1 = requireObjectCoercible$3;
|
|
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$1(argument));
|
|
422
422
|
};
|
|
423
423
|
|
|
424
|
-
var uncurryThis$
|
|
424
|
+
var uncurryThis$f = functionUncurryThis;
|
|
425
425
|
var toObject$1 = toObject$2;
|
|
426
426
|
|
|
427
|
-
var hasOwnProperty$1 = uncurryThis$
|
|
427
|
+
var hasOwnProperty$1 = uncurryThis$f({}.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$e = functionUncurryThis;
|
|
437
437
|
|
|
438
438
|
var id = 0;
|
|
439
439
|
var postfix = Math.random();
|
|
440
|
-
var toString$
|
|
440
|
+
var toString$4 = uncurryThis$e(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$4(++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$7 = fails$c;
|
|
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$7(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$6 = fails$c;
|
|
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$6(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$d = 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$d(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$c = 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$c(store.get);
|
|
719
|
+
var wmhas = uncurryThis$c(store.has);
|
|
720
|
+
var wmset = uncurryThis$c(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$5 = fails$c;
|
|
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$5(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$b = 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$b([].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$a = 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$a([].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$4 = fails$c;
|
|
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$4(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$9 = 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$9(uncurryThis$9.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$8 = functionUncurryThis;
|
|
1147
|
+
var fails$3 = fails$c;
|
|
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$8(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$3(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$7 = 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$7([].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$2 = fails$c;
|
|
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$2(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 $$5 = _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
|
+
$$5({ 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$3 = 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$3, { 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$6 = 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$6($propertyIsEnumerable);
|
|
1449
|
+
var push = uncurryThis$6([].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 $$4 = _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
|
+
$$4({ 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 $$3 = _export;
|
|
4816
4816
|
var $includes = arrayIncludes.includes;
|
|
4817
|
-
var fails$
|
|
4817
|
+
var fails$1 = fails$c;
|
|
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$1(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
|
+
$$3({ 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
|
}
|
|
@@ -4932,13 +4932,13 @@ var es_function_name = {};
|
|
|
4932
4932
|
|
|
4933
4933
|
var DESCRIPTORS$1 = descriptors;
|
|
4934
4934
|
var FUNCTION_NAME_EXISTS = functionName.EXISTS;
|
|
4935
|
-
var uncurryThis$
|
|
4935
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
4936
4936
|
var defineProperty$1 = objectDefineProperty.f;
|
|
4937
4937
|
|
|
4938
4938
|
var FunctionPrototype$1 = Function.prototype;
|
|
4939
|
-
var functionToString = uncurryThis$
|
|
4939
|
+
var functionToString = uncurryThis$5(FunctionPrototype$1.toString);
|
|
4940
4940
|
var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
|
|
4941
|
-
var regExpExec = uncurryThis$
|
|
4941
|
+
var regExpExec = uncurryThis$5(nameRE.exec);
|
|
4942
4942
|
var NAME = 'name';
|
|
4943
4943
|
|
|
4944
4944
|
// Function instances `.name` property
|
|
@@ -5474,69 +5474,6 @@ styleInject(css_248z$2);
|
|
|
5474
5474
|
|
|
5475
5475
|
script$4.render = render$4;
|
|
5476
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
|
-
|
|
5540
5477
|
var script$3 = defineComponent({
|
|
5541
5478
|
name: 'FwNavigationMenu',
|
|
5542
5479
|
emits: ['action'],
|
|
@@ -5577,8 +5514,7 @@ var script$3 = defineComponent({
|
|
|
5577
5514
|
mobileMenuClass: mobileMenuClass,
|
|
5578
5515
|
isMobileMenuOpen: isMobileMenuOpen,
|
|
5579
5516
|
toggleMobileMenu: toggleMobileMenu,
|
|
5580
|
-
actionClicked: actionClicked
|
|
5581
|
-
ButtonVariantName: ButtonVariantName
|
|
5517
|
+
actionClicked: actionClicked
|
|
5582
5518
|
};
|
|
5583
5519
|
}
|
|
5584
5520
|
});
|
|
@@ -5632,7 +5568,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5632
5568
|
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) {
|
|
5633
5569
|
return openBlock(), createBlock(_component_FwButton, {
|
|
5634
5570
|
key: i,
|
|
5635
|
-
variant:
|
|
5571
|
+
variant: "text",
|
|
5636
5572
|
href: item.href,
|
|
5637
5573
|
to: item.to,
|
|
5638
5574
|
size: "md",
|
|
@@ -5642,7 +5578,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5642
5578
|
return [createTextVNode(toDisplayString(item.label), 1)];
|
|
5643
5579
|
}),
|
|
5644
5580
|
_: 2
|
|
5645
|
-
}, 1032, ["
|
|
5581
|
+
}, 1032, ["href", "to"]);
|
|
5646
5582
|
}), 128))])])) : createCommentVNode("", true), _ctx.actionLabel ? (openBlock(), createElementBlock("div", _hoisted_6$1, [createVNode(_component_FwButton, {
|
|
5647
5583
|
onClick: _ctx.actionClicked,
|
|
5648
5584
|
size: "md",
|
|
@@ -5653,7 +5589,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5653
5589
|
}),
|
|
5654
5590
|
_: 1
|
|
5655
5591
|
}, 8, ["onClick", "aria-label"])])) : createCommentVNode("", true), createElementVNode("div", _hoisted_7$1, [createVNode(_component_FwButton, {
|
|
5656
|
-
variant:
|
|
5592
|
+
variant: "text",
|
|
5657
5593
|
size: "sm",
|
|
5658
5594
|
onClick: _ctx.toggleMobileMenu
|
|
5659
5595
|
}, {
|
|
@@ -5666,7 +5602,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5666
5602
|
}, null, 8, _hoisted_10$1)]))];
|
|
5667
5603
|
}),
|
|
5668
5604
|
_: 1
|
|
5669
|
-
}, 8, ["
|
|
5605
|
+
}, 8, ["onClick"])])]), createVNode(Transition, {
|
|
5670
5606
|
name: "slideInLeft"
|
|
5671
5607
|
}, {
|
|
5672
5608
|
"default": withCtx(function () {
|
|
@@ -5677,7 +5613,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5677
5613
|
return openBlock(), createBlock(_component_FwButton, {
|
|
5678
5614
|
key: i,
|
|
5679
5615
|
"class": "w-full rounded-md",
|
|
5680
|
-
variant:
|
|
5616
|
+
variant: "text",
|
|
5681
5617
|
href: item.href,
|
|
5682
5618
|
to: item.to,
|
|
5683
5619
|
size: "md",
|
|
@@ -5687,7 +5623,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5687
5623
|
return [createTextVNode(toDisplayString(item.label), 1)];
|
|
5688
5624
|
}),
|
|
5689
5625
|
_: 2
|
|
5690
|
-
}, 1032, ["
|
|
5626
|
+
}, 1032, ["href", "to"]);
|
|
5691
5627
|
}), 128))]), _ctx.actionLabel ? (openBlock(), createBlock(_component_FwButton, {
|
|
5692
5628
|
key: 0,
|
|
5693
5629
|
"class": "w-full rounded-md",
|
|
@@ -5713,12 +5649,12 @@ var es_number_constructor = {};
|
|
|
5713
5649
|
|
|
5714
5650
|
var isCallable$2 = isCallable$g;
|
|
5715
5651
|
|
|
5716
|
-
var $String = String;
|
|
5652
|
+
var $String$1 = String;
|
|
5717
5653
|
var $TypeError$1 = TypeError;
|
|
5718
5654
|
|
|
5719
5655
|
var aPossiblePrototype$1 = function (argument) {
|
|
5720
5656
|
if (typeof argument == 'object' || isCallable$2(argument)) return argument;
|
|
5721
|
-
throw $TypeError$1("Can't set " + $String(argument) + ' as a prototype');
|
|
5657
|
+
throw $TypeError$1("Can't set " + $String$1(argument) + ' as a prototype');
|
|
5722
5658
|
};
|
|
5723
5659
|
|
|
5724
5660
|
/* eslint-disable no-proto -- safe */
|
|
@@ -5775,13 +5711,22 @@ var uncurryThis$3 = functionUncurryThis;
|
|
|
5775
5711
|
// https://tc39.es/ecma262/#sec-thisnumbervalue
|
|
5776
5712
|
var thisNumberValue$1 = uncurryThis$3(1.0.valueOf);
|
|
5777
5713
|
|
|
5714
|
+
var classof = classof$3;
|
|
5715
|
+
|
|
5716
|
+
var $String = String;
|
|
5717
|
+
|
|
5718
|
+
var toString$2 = function (argument) {
|
|
5719
|
+
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
5720
|
+
return $String(argument);
|
|
5721
|
+
};
|
|
5722
|
+
|
|
5778
5723
|
// a string of all valid unicode whitespaces
|
|
5779
5724
|
var whitespaces$1 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
|
|
5780
5725
|
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
|
|
5781
5726
|
|
|
5782
5727
|
var uncurryThis$2 = functionUncurryThis;
|
|
5783
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
5784
|
-
var toString$1 = toString$
|
|
5728
|
+
var requireObjectCoercible = requireObjectCoercible$3;
|
|
5729
|
+
var toString$1 = toString$2;
|
|
5785
5730
|
var whitespaces = whitespaces$1;
|
|
5786
5731
|
|
|
5787
5732
|
var replace = uncurryThis$2(''.replace);
|
|
@@ -5822,7 +5767,7 @@ var inheritIfRequired = inheritIfRequired$1;
|
|
|
5822
5767
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
5823
5768
|
var isSymbol$1 = isSymbol$4;
|
|
5824
5769
|
var toPrimitive = toPrimitive$2;
|
|
5825
|
-
var fails = fails$
|
|
5770
|
+
var fails = fails$c;
|
|
5826
5771
|
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
|
|
5827
5772
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
5828
5773
|
var defineProperty = objectDefineProperty.f;
|
|
@@ -6644,14 +6589,14 @@ $({ global: true, bind: true, forced: global$1.setTimeout !== setTimeout$1 }, {
|
|
|
6644
6589
|
var modalService = function modalService(options, element) {
|
|
6645
6590
|
var elementToMount = document.createElement('div');
|
|
6646
6591
|
elementToMount.id = uniqueId('fw-modal-app-');
|
|
6647
|
-
var elAppend = element || document.
|
|
6592
|
+
var elAppend = element || document.querySelector('#app');
|
|
6648
6593
|
var modalVNode = undefined;
|
|
6649
6594
|
|
|
6650
6595
|
var open = function open() {
|
|
6651
6596
|
var _modalVNode;
|
|
6652
6597
|
|
|
6653
6598
|
modalVNode = createApp(script, _objectSpread2({}, options));
|
|
6654
|
-
elAppend.appendChild(elementToMount);
|
|
6599
|
+
elAppend === null || elAppend === void 0 ? void 0 : elAppend.appendChild(elementToMount);
|
|
6655
6600
|
(_modalVNode = modalVNode) === null || _modalVNode === void 0 ? void 0 : _modalVNode.mount(elementToMount);
|
|
6656
6601
|
};
|
|
6657
6602
|
|