@frollo/frollo-web-ui 0.1.2 → 0.2.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.
Files changed (33) hide show
  1. package/cjs/index.js +282 -212
  2. package/esm/add-to-unscopables-82352072.js +239 -0
  3. package/esm/{es.array.includes-debcb50f.js → es.array.includes-33e186c4.js} +3 -2
  4. package/esm/{es.function.name-e746680f.js → es.function.name-3a9c8706.js} +1 -1
  5. package/esm/es.number.constructor-f646730f.js +243 -0
  6. package/esm/{function-name-f0c1223e.js → function-name-3bda6320.js} +1 -1
  7. package/esm/fw-animations.js +136 -0
  8. package/esm/{fw-button-ab906734.js → fw-button-22301a2f.js} +1 -1
  9. package/esm/fw-button.js +5 -4
  10. package/esm/fw-card.js +1 -1
  11. package/esm/fw-checkbox.js +2 -2
  12. package/esm/fw-input.js +5 -4
  13. package/esm/fw-modal.js +6 -5
  14. package/esm/fw-navigation-menu.js +12 -67
  15. package/esm/fw-tabs.js +5 -4
  16. package/esm/{index-963039a3.js → index-59d76908.js} +2 -2
  17. package/esm/{index-5ee56f7d.js → index-dd50b12a.js} +31 -219
  18. package/esm/index.js +19 -14
  19. package/esm/is-forced-3323c994.js +438 -0
  20. package/frollo-web-ui.esm.js +307 -229
  21. package/index.d.ts +64 -16
  22. package/package.json +1 -1
  23. package/types/components/fw-animations/fw-email-pulse.vue.d.ts +24 -0
  24. package/types/components/fw-animations/fw-success-pulse.vue.d.ts +24 -0
  25. package/types/components/fw-animations/index.d.ts +3 -0
  26. package/types/components/fw-button/index.types.d.ts +1 -9
  27. package/types/components/fw-input/index.types.d.ts +1 -4
  28. package/types/components/fw-navigation-menu/fw-navigation-menu.vue.d.ts +0 -2
  29. package/types/components/fw-tabs/fw-tab.vue.d.ts +11 -0
  30. package/types/components/fw-tabs/fw-tabs.vue.d.ts +1 -1
  31. package/types/components/index.d.ts +1 -0
  32. package/esm/add-to-unscopables-81c17489.js +0 -673
  33. package/esm/to-string-139f1ee8.js +0 -52
@@ -1,4 +1,4 @@
1
- import { getCurrentInstance, inject, warn as warn$1, ref, unref, computed, reactive, watch, nextTick, onUnmounted, onMounted, provide, isRef, onBeforeUnmount, defineComponent, toRef, resolveDynamicComponent, h, markRaw, watchEffect, readonly, createElementVNode, resolveComponent, openBlock, createElementBlock, createVNode, withCtx, toDisplayString, createCommentVNode, renderSlot, mergeProps, Transition, normalizeClass, pushScopeId, popScopeId, createBlock, Fragment, renderList, createTextVNode, createApp } from 'vue';
1
+ import { getCurrentInstance, inject, warn as warn$1, ref, unref, computed, reactive, watch, nextTick, onUnmounted, onMounted, provide, isRef, onBeforeUnmount, defineComponent, toRef, resolveDynamicComponent, h, markRaw, watchEffect, readonly, createElementVNode, resolveComponent, openBlock, createElementBlock, createVNode, withCtx, toDisplayString, createCommentVNode, renderSlot, mergeProps, Transition, normalizeClass, pushScopeId, popScopeId, createBlock, Fragment, renderList, createTextVNode, useCssVars, createStaticVNode, createApp } from 'vue';
2
2
 
3
3
  function _arrayWithHoles(arr) {
4
4
  if (Array.isArray(arr)) return arr;
@@ -113,7 +113,7 @@ var global$f =
113
113
 
114
114
  var objectGetOwnPropertyDescriptor = {};
115
115
 
116
- var fails$d = function (exec) {
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$c = fails$d;
124
+ var fails$b = fails$c;
125
125
 
126
126
  // Detect IE8's incomplete defineProperty implementation
127
- var descriptors = !fails$c(function () {
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$b = fails$d;
132
+ var fails$a = fails$c;
133
133
 
134
- var functionBindNative = !fails$b(function () {
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$k = NATIVE_BIND$2 && bind$2.bind(call$4, call$4);
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$k(fn);
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$j = functionUncurryThis;
190
+ var uncurryThis$i = functionUncurryThis;
191
191
 
192
- var toString$6 = uncurryThis$j({}.toString);
193
- var stringSlice = uncurryThis$j(''.slice);
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$6(it), 8, -1);
196
+ return stringSlice(toString$5(it), 8, -1);
197
197
  };
198
198
 
199
- var uncurryThis$i = functionUncurryThis;
200
- var fails$a = fails$d;
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$i(''.split);
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$a(function () {
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$4 = function (it) {
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$3 = requireObjectCoercible$4;
226
+ var requireObjectCoercible$2 = requireObjectCoercible$3;
227
227
 
228
228
  var toIndexedObject$5 = function (it) {
229
- return IndexedObject$1(requireObjectCoercible$3(it));
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$h = functionUncurryThis;
255
+ var uncurryThis$g = functionUncurryThis;
256
256
 
257
- var objectIsPrototypeOf = uncurryThis$h({}.isPrototypeOf);
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$9 = fails$d;
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$9(function () {
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$2 = requireObjectCoercible$4;
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$2(argument));
421
+ return $Object$1(requireObjectCoercible$1(argument));
422
422
  };
423
423
 
424
- var uncurryThis$g = functionUncurryThis;
424
+ var uncurryThis$f = functionUncurryThis;
425
425
  var toObject$1 = toObject$2;
426
426
 
427
- var hasOwnProperty$1 = uncurryThis$g({}.hasOwnProperty);
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$f = functionUncurryThis;
436
+ var uncurryThis$e = functionUncurryThis;
437
437
 
438
438
  var id = 0;
439
439
  var postfix = Math.random();
440
- var toString$5 = uncurryThis$f(1.0.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$5(++id + postfix, 36);
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$8 = fails$d;
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$8(function () {
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$7 = fails$d;
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$7(function () {
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$e = functionUncurryThis;
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$e(Function.toString);
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$d = functionUncurryThis;
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$d(store.get);
719
- var wmhas = uncurryThis$d(store.has);
720
- var wmset = uncurryThis$d(store.set);
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$6 = fails$d;
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$6(function () {
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$c = functionUncurryThis;
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$c([].push);
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$b = functionUncurryThis;
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$b([].concat);
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$5 = fails$d;
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$5(detection)
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$a = functionUncurryThis;
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$a(uncurryThis$a.bind);
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$9 = functionUncurryThis;
1147
- var fails$4 = fails$d;
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$9(constructorRegExp.exec);
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$4(function () {
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$8 = functionUncurryThis;
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$8([].push);
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$3 = fails$d;
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$3(function () {
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 $$6 = _export;
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
- $$6({ target: 'Array', proto: true, forced: [].forEach != forEach$1 }, {
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$4 = objectToString$1;
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$4, { unsafe: true });
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$7 = functionUncurryThis;
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$7($propertyIsEnumerable);
1449
- var push = uncurryThis$7([].push);
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 $$5 = _export;
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
- $$5({ target: 'Object', stat: true }, {
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 $$4 = _export;
4815
+ var $$3 = _export;
4816
4816
  var $includes = arrayIncludes.includes;
4817
- var fails$2 = fails$d;
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$2(function () {
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
- $$4({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
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$6 = functionUncurryThis;
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$6(FunctionPrototype$1.toString);
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$6(nameRE.exec);
4941
+ var regExpExec = uncurryThis$5(nameRE.exec);
4942
4942
  var NAME = 'name';
4943
4943
 
4944
4944
  // Function instances `.name` property
@@ -4956,16 +4956,16 @@ if (DESCRIPTORS$1 && !FUNCTION_NAME_EXISTS) {
4956
4956
  });
4957
4957
  }
4958
4958
 
4959
- var _hoisted_1$6 = {
4959
+ var _hoisted_1$8 = {
4960
4960
  "class": "fw-input w-full"
4961
4961
  };
4962
- var _hoisted_2$5 = {
4962
+ var _hoisted_2$7 = {
4963
4963
  "class": "flex flex-col"
4964
4964
  };
4965
- var _hoisted_3$5 = {
4965
+ var _hoisted_3$6 = {
4966
4966
  "class": "flex flex-row justify-between"
4967
4967
  };
4968
- var _hoisted_4$4 = ["for"];
4968
+ var _hoisted_4$6 = ["for"];
4969
4969
  var _hoisted_5$3 = {
4970
4970
  key: 1
4971
4971
  };
@@ -5004,10 +5004,10 @@ var _hoisted_13 = {
5004
5004
  var _hoisted_14 = {
5005
5005
  key: 1
5006
5006
  };
5007
- function render$7(_ctx, _cache, $props, $setup, $data, $options) {
5007
+ function render$9(_ctx, _cache, $props, $setup, $data, $options) {
5008
5008
  var _component_InputField = resolveComponent("InputField");
5009
5009
 
5010
- return openBlock(), createElementBlock("div", _hoisted_1$6, [createVNode(_component_InputField, {
5010
+ return openBlock(), createElementBlock("div", _hoisted_1$8, [createVNode(_component_InputField, {
5011
5011
  modelValue: _ctx.inputValue,
5012
5012
  "onUpdate:modelValue": _cache[0] || (_cache[0] = function ($event) {
5013
5013
  return _ctx.inputValue = $event;
@@ -5020,11 +5020,11 @@ function render$7(_ctx, _cache, $props, $setup, $data, $options) {
5020
5020
  errors = _ref.errors,
5021
5021
  errorMessage = _ref.errorMessage,
5022
5022
  meta = _ref.meta;
5023
- return [createElementVNode("div", _hoisted_2$5, [createElementVNode("div", _hoisted_3$5, [_ctx.label ? (openBlock(), createElementBlock("label", {
5023
+ return [createElementVNode("div", _hoisted_2$7, [createElementVNode("div", _hoisted_3$6, [_ctx.label ? (openBlock(), createElementBlock("label", {
5024
5024
  key: 0,
5025
5025
  "for": _ctx.name,
5026
5026
  "class": "block mb-2"
5027
- }, toDisplayString(_ctx.label), 9, _hoisted_4$4)) : createCommentVNode("", true), _ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_5$3, [renderSlot(_ctx.$slots, "action")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_6$3, [_ctx.$slots.prefix ? (openBlock(), createElementBlock("div", _hoisted_7$3, [renderSlot(_ctx.$slots, "prefix")])) : createCommentVNode("", true), createElementVNode("input", mergeProps(field, {
5027
+ }, toDisplayString(_ctx.label), 9, _hoisted_4$6)) : createCommentVNode("", true), _ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_5$3, [renderSlot(_ctx.$slots, "action")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_6$3, [_ctx.$slots.prefix ? (openBlock(), createElementBlock("div", _hoisted_7$3, [renderSlot(_ctx.$slots, "prefix")])) : createCommentVNode("", true), createElementVNode("input", mergeProps(field, {
5028
5028
  placeholder: _ctx.placeholder,
5029
5029
  type: _ctx.type,
5030
5030
  readonly: _ctx.readonly,
@@ -5085,11 +5085,11 @@ function styleInject(css, ref) {
5085
5085
  }
5086
5086
  }
5087
5087
 
5088
- var css_248z$4 = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}";
5089
- var stylesheet$4 = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}";
5090
- styleInject(css_248z$4);
5088
+ var css_248z$6 = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}";
5089
+ var stylesheet$6 = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}";
5090
+ styleInject(css_248z$6);
5091
5091
 
5092
- script$7.render = render$7;
5092
+ script$7.render = render$9;
5093
5093
 
5094
5094
  var script$6 = defineComponent({
5095
5095
  name: 'FwCheckbox',
@@ -5128,18 +5128,18 @@ var script$6 = defineComponent({
5128
5128
  }
5129
5129
  });
5130
5130
 
5131
- var _withScopeId$1 = function _withScopeId(n) {
5131
+ var _withScopeId$3 = function _withScopeId(n) {
5132
5132
  return pushScopeId("data-v-7423717e"), n = n(), popScopeId(), n;
5133
5133
  };
5134
5134
 
5135
- var _hoisted_1$5 = {
5135
+ var _hoisted_1$7 = {
5136
5136
  "class": "fw-checkbox w-full"
5137
5137
  };
5138
- var _hoisted_2$4 = {
5138
+ var _hoisted_2$6 = {
5139
5139
  "class": "flex flex-col"
5140
5140
  };
5141
- var _hoisted_3$4 = ["for"];
5142
- var _hoisted_4$3 = ["value", "name"];
5141
+ var _hoisted_3$5 = ["for"];
5142
+ var _hoisted_4$5 = ["value", "name"];
5143
5143
  var _hoisted_5$2 = ["innerHTML"];
5144
5144
  var _hoisted_6$2 = {
5145
5145
  "class": "italic text-sm font-medium min-h-[21px]"
@@ -5151,10 +5151,10 @@ var _hoisted_7$2 = {
5151
5151
  var _hoisted_8$2 = {
5152
5152
  key: 1
5153
5153
  };
5154
- function render$6(_ctx, _cache, $props, $setup, $data, $options) {
5154
+ function render$8(_ctx, _cache, $props, $setup, $data, $options) {
5155
5155
  var _component_InputField = resolveComponent("InputField");
5156
5156
 
5157
- return openBlock(), createElementBlock("div", _hoisted_1$5, [createVNode(_component_InputField, {
5157
+ return openBlock(), createElementBlock("div", _hoisted_1$7, [createVNode(_component_InputField, {
5158
5158
  name: _ctx.name,
5159
5159
  value: _ctx.name,
5160
5160
  type: "checkbox",
@@ -5165,7 +5165,7 @@ function render$6(_ctx, _cache, $props, $setup, $data, $options) {
5165
5165
  errors = _ref.errors,
5166
5166
  errorMessage = _ref.errorMessage,
5167
5167
  meta = _ref.meta;
5168
- return [createElementVNode("div", _hoisted_2$4, [_ctx.label ? (openBlock(), createElementBlock("label", {
5168
+ return [createElementVNode("div", _hoisted_2$6, [_ctx.label ? (openBlock(), createElementBlock("label", {
5169
5169
  key: 0,
5170
5170
  "for": _ctx.name,
5171
5171
  "class": "inline-flex items-center mb-3"
@@ -5174,10 +5174,10 @@ function render$6(_ctx, _cache, $props, $setup, $data, $options) {
5174
5174
  name: _ctx.name,
5175
5175
  type: "checkbox",
5176
5176
  "class": "text-primary w-6 h-6 cursor-pointer bg-white border-grey-light border rounded"
5177
- }), null, 16, _hoisted_4$3), createElementVNode("span", {
5177
+ }), null, 16, _hoisted_4$5), createElementVNode("span", {
5178
5178
  "class": "ml-2",
5179
5179
  innerHTML: _ctx.label
5180
- }, null, 8, _hoisted_5$2)], 8, _hoisted_3$4)) : createCommentVNode("", true), createElementVNode("div", _hoisted_6$2, [createVNode(Transition, {
5180
+ }, null, 8, _hoisted_5$2)], 8, _hoisted_3$5)) : createCommentVNode("", true), createElementVNode("div", _hoisted_6$2, [createVNode(Transition, {
5181
5181
  name: "fwFadeIn",
5182
5182
  mode: "out-in"
5183
5183
  }, {
@@ -5191,11 +5191,11 @@ function render$6(_ctx, _cache, $props, $setup, $data, $options) {
5191
5191
  }, 8, ["name", "value", "rules"])]);
5192
5192
  }
5193
5193
 
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}";
5196
- styleInject(css_248z$3);
5194
+ var css_248z$5 = ".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$5 = ".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}";
5196
+ styleInject(css_248z$5);
5197
5197
 
5198
- script$6.render = render$6;
5198
+ script$6.render = render$8;
5199
5199
  script$6.__scopeId = "data-v-7423717e";
5200
5200
 
5201
5201
  var script$5 = defineComponent({
@@ -5242,36 +5242,36 @@ var script$5 = defineComponent({
5242
5242
  }
5243
5243
  });
5244
5244
 
5245
- var _hoisted_1$4 = {
5245
+ var _hoisted_1$6 = {
5246
5246
  key: 0,
5247
5247
  "class": "fw-card--header px-8 py-4 bg-grey-lightest rounded-t-lg border-opacity-0"
5248
5248
  };
5249
- var _hoisted_2$3 = {
5249
+ var _hoisted_2$5 = {
5250
5250
  key: 0,
5251
5251
  "class": "fw-card--prefix-title text-primary"
5252
5252
  };
5253
- var _hoisted_3$3 = {
5253
+ var _hoisted_3$4 = {
5254
5254
  key: 1
5255
5255
  };
5256
- var _hoisted_4$2 = {
5256
+ var _hoisted_4$4 = {
5257
5257
  key: 1,
5258
5258
  "class": "p-8"
5259
5259
  };
5260
- function render$5(_ctx, _cache, $props, $setup, $data, $options) {
5260
+ function render$7(_ctx, _cache, $props, $setup, $data, $options) {
5261
5261
  return openBlock(), createBlock(resolveDynamicComponent(_ctx.componentName), {
5262
5262
  to: _ctx.to ? _ctx.to : null,
5263
5263
  href: _ctx.href ? _ctx.href : null,
5264
5264
  tabindex: _ctx.to ? 0 : null,
5265
- "class": normalizeClass(["fw-card shadow-card rounded-lg", _ctx.to || _ctx.href ? _ctx.linkClass : ''])
5265
+ "class": normalizeClass(["fw-card shadow-card rounded-lg", _ctx.to || _ctx.href || !!_ctx.$attrs.onClick ? _ctx.linkClass : ''])
5266
5266
  }, {
5267
5267
  "default": withCtx(function () {
5268
- return [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_1$4, [_ctx.prefixTitle ? (openBlock(), createElementBlock("span", _hoisted_2$3, toDisplayString(_ctx.prefixTitle), 1)) : createCommentVNode("", true), _ctx.title ? (openBlock(), createElementBlock("span", _hoisted_3$3, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true)])) : createCommentVNode("", true), _ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_4$2, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true)];
5268
+ return [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_1$6, [_ctx.prefixTitle ? (openBlock(), createElementBlock("span", _hoisted_2$5, toDisplayString(_ctx.prefixTitle), 1)) : createCommentVNode("", true), _ctx.title ? (openBlock(), createElementBlock("span", _hoisted_3$4, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true)])) : createCommentVNode("", true), _ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_4$4, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true)];
5269
5269
  }),
5270
5270
  _: 3
5271
5271
  }, 8, ["to", "href", "tabindex", "class"]);
5272
5272
  }
5273
5273
 
5274
- script$5.render = render$5;
5274
+ script$5.render = render$7;
5275
5275
 
5276
5276
  var script$4 = defineComponent({
5277
5277
  name: 'FwButton',
@@ -5448,7 +5448,7 @@ var script$4 = defineComponent({
5448
5448
  }
5449
5449
  });
5450
5450
 
5451
- function render$4(_ctx, _cache, $props, $setup, $data, $options) {
5451
+ function render$6(_ctx, _cache, $props, $setup, $data, $options) {
5452
5452
  return openBlock(), createBlock(resolveDynamicComponent(_ctx.tagName), {
5453
5453
  "class": normalizeClass(["fw-button", [_ctx.baseClass, _ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass, _ctx.variant === 'link' ? 'pl-0 pr-0 pt-0 pb-0 rounded-none font-normal' : 'font-bold rounded-full']]),
5454
5454
  type: _ctx.tagName === 'button' ? _ctx.buttonType : null,
@@ -5468,74 +5468,11 @@ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
5468
5468
  }, 40, ["class", "type", "to", "href", "tabindex", "onClick", "onFocusin", "onFocusout", "onMouseover", "onMouseout"]);
5469
5469
  }
5470
5470
 
5471
- 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}";
5472
- 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}";
5473
- styleInject(css_248z$2);
5474
-
5475
- script$4.render = render$4;
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, '&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;
5471
+ var css_248z$4 = ".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}";
5472
+ var stylesheet$4 = ".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}";
5473
+ styleInject(css_248z$4);
5529
5474
 
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 = {}));
5475
+ script$4.render = render$6;
5539
5476
 
5540
5477
  var script$3 = defineComponent({
5541
5478
  name: 'FwNavigationMenu',
@@ -5577,23 +5514,22 @@ 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
  });
5585
5521
 
5586
- var _hoisted_1$3 = {
5522
+ var _hoisted_1$5 = {
5587
5523
  "class": "fw-nav-menu relative z-50 h-20 shadow-md"
5588
5524
  };
5589
- var _hoisted_2$2 = {
5525
+ var _hoisted_2$4 = {
5590
5526
  "class": "px-6 flex-1 h-full flex bg-white items-stretch justify-between max-w-6xl mx-auto"
5591
5527
  };
5592
- var _hoisted_3$2 = {
5528
+ var _hoisted_3$3 = {
5593
5529
  key: 0,
5594
5530
  "class": "flex-shrink-0 flex items-center"
5595
5531
  };
5596
- var _hoisted_4$1 = {
5532
+ var _hoisted_4$3 = {
5597
5533
  key: 1,
5598
5534
  "class": "container hidden sm:flex items-center justify-start sm:ml-6"
5599
5535
  };
@@ -5624,15 +5560,15 @@ var _hoisted_10$1 = ["d"];
5624
5560
  var _hoisted_11$1 = {
5625
5561
  "class": "w-full flex flex-col"
5626
5562
  };
5627
- function render$3(_ctx, _cache, $props, $setup, $data, $options) {
5563
+ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
5628
5564
  var _ctx$menuItems;
5629
5565
 
5630
5566
  var _component_FwButton = resolveComponent("FwButton");
5631
5567
 
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) {
5568
+ return openBlock(), createElementBlock("nav", _hoisted_1$5, [createElementVNode("div", _hoisted_2$4, [_ctx.$slots.logo ? (openBlock(), createElementBlock("div", _hoisted_3$3, [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$3, [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: _ctx.ButtonVariantName.text,
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, ["variant", "href", "to"]);
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: _ctx.ButtonVariantName.text,
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, ["variant", "onClick"])])]), createVNode(Transition, {
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: _ctx.ButtonVariantName.text,
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, ["variant", "href", "to"]);
5626
+ }, 1032, ["href", "to"]);
5691
5627
  }), 128))]), _ctx.actionLabel ? (openBlock(), createBlock(_component_FwButton, {
5692
5628
  key: 0,
5693
5629
  "class": "w-full rounded-md",
@@ -5703,22 +5639,22 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
5703
5639
  })]);
5704
5640
  }
5705
5641
 
5706
- var css_248z$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}}";
5707
- 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}}";
5708
- styleInject(css_248z$1);
5642
+ var css_248z$3 = ".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}}";
5643
+ var stylesheet$3 = ".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}}";
5644
+ styleInject(css_248z$3);
5709
5645
 
5710
- script$3.render = render$3;
5646
+ script$3.render = render$5;
5711
5647
 
5712
5648
  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$4;
5784
- var toString$1 = toString$3;
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$d;
5770
+ var fails = fails$c;
5826
5771
  var getOwnPropertyNames = objectGetOwnPropertyNames.f;
5827
5772
  var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
5828
5773
  var defineProperty = objectDefineProperty.f;
@@ -5916,7 +5861,8 @@ var script$2 = defineComponent({
5916
5861
  var active = computed(function () {
5917
5862
  return props.modelValue;
5918
5863
  });
5919
- var tabs = ref([]);
5864
+ var tabs = ref();
5865
+ tabs.value = [];
5920
5866
 
5921
5867
  var selectTab = function selectTab(tab) {
5922
5868
  ctx.emit('update:modelValue', tab);
@@ -5934,16 +5880,16 @@ var script$2 = defineComponent({
5934
5880
  }
5935
5881
  });
5936
5882
 
5937
- var _hoisted_1$2 = {
5883
+ var _hoisted_1$4 = {
5938
5884
  "class": "fw-tabs"
5939
5885
  };
5940
- var _hoisted_2$1 = {
5886
+ var _hoisted_2$3 = {
5941
5887
  key: 0,
5942
5888
  "class": "flex flex-wrap -mb-px border-b border-grey-light dark:text-grey-base dark:border-grey-base"
5943
5889
  };
5944
- var _hoisted_3$1 = ["onClick"];
5945
- function render$2(_ctx, _cache, $props, $setup, $data, $options) {
5946
- return openBlock(), createElementBlock("div", _hoisted_1$2, [_ctx.tabs ? (openBlock(), createElementBlock("ul", _hoisted_2$1, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.tabs, function (tab, i) {
5890
+ var _hoisted_3$2 = ["onClick"];
5891
+ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
5892
+ return openBlock(), createElementBlock("div", _hoisted_1$4, [_ctx.tabs ? (openBlock(), createElementBlock("ul", _hoisted_2$3, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.tabs, function (tab, i) {
5947
5893
  return openBlock(), createElementBlock("li", {
5948
5894
  "class": "mr-2",
5949
5895
  key: i
@@ -5953,11 +5899,11 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
5953
5899
  return _ctx.selectTab(i);
5954
5900
  },
5955
5901
  "class": normalizeClass(["inline-block p-4 outline-primary border-b-2 border-transparent transition ease-in", _ctx.active === i ? 'font-medium border-black' : 'hover:bg-grey-lightest'])
5956
- }, toDisplayString(tab.props.label), 11, _hoisted_3$1)]);
5902
+ }, toDisplayString(tab.props.label), 11, _hoisted_3$2)]);
5957
5903
  }), 128))])) : createCommentVNode("", true), renderSlot(_ctx.$slots, "default")]);
5958
5904
  }
5959
5905
 
5960
- script$2.render = render$2;
5906
+ script$2.render = render$4;
5961
5907
 
5962
5908
  var es_array_findIndex = {};
5963
5909
 
@@ -5994,7 +5940,7 @@ var script$1 = defineComponent({
5994
5940
  required: true
5995
5941
  }
5996
5942
  },
5997
- setup: function setup() {
5943
+ setup: function setup(props) {
5998
5944
  var instance = getCurrentInstance();
5999
5945
 
6000
5946
  var _ref = inject('tabsState') || {
@@ -6021,20 +5967,21 @@ var script$1 = defineComponent({
6021
5967
  });
6022
5968
  return {
6023
5969
  isActive: isActive,
6024
- index: index
5970
+ index: index,
5971
+ props: props
6025
5972
  };
6026
5973
  }
6027
5974
  });
6028
5975
 
6029
- var _hoisted_1$1 = {
5976
+ var _hoisted_1$3 = {
6030
5977
  key: 0,
6031
5978
  "class": "fw-tab w-full"
6032
5979
  };
6033
- function render$1(_ctx, _cache, $props, $setup, $data, $options) {
6034
- return _ctx.isActive ? (openBlock(), createElementBlock("div", _hoisted_1$1, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true);
5980
+ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
5981
+ return _ctx.isActive ? (openBlock(), createElementBlock("div", _hoisted_1$3, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true);
6035
5982
  }
6036
5983
 
6037
- script$1.render = render$1;
5984
+ script$1.render = render$3;
6038
5985
 
6039
5986
  /** Detect free variable `global` from Node.js. */
6040
5987
  var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;
@@ -6405,20 +6352,20 @@ var script = defineComponent({
6405
6352
  }
6406
6353
  });
6407
6354
 
6408
- var _withScopeId = function _withScopeId(n) {
6355
+ var _withScopeId$2 = function _withScopeId(n) {
6409
6356
  return pushScopeId("data-v-003a6fba"), n = n(), popScopeId(), n;
6410
6357
  };
6411
6358
 
6412
- var _hoisted_1 = {
6359
+ var _hoisted_1$2 = {
6413
6360
  "class": "fw-modal"
6414
6361
  };
6415
- var _hoisted_2 = {
6362
+ var _hoisted_2$2 = {
6416
6363
  "class": "fw-modal--mask fixed z-[9999] top-0 left-0 w-full h-full bg-black bg-opacity-50"
6417
6364
  };
6418
- var _hoisted_3 = {
6365
+ var _hoisted_3$1 = {
6419
6366
  "class": "fw-modal--wrapper text-center overflow-auto flex justify-center items-center h-full"
6420
6367
  };
6421
- var _hoisted_4 = ["role", "aria-labelledby", "aria-describedby"];
6368
+ var _hoisted_4$2 = ["role", "aria-labelledby", "aria-describedby"];
6422
6369
  var _hoisted_5 = {
6423
6370
  key: 0,
6424
6371
  "class": "fw-modal--header text-center"
@@ -6436,7 +6383,7 @@ var _hoisted_11 = {
6436
6383
  key: 3,
6437
6384
  "class": "modal-footer flex space-x-4 pt-4 justify-center"
6438
6385
  };
6439
- function render(_ctx, _cache, $props, $setup, $data, $options) {
6386
+ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
6440
6387
  var _component_FwButton = resolveComponent("FwButton");
6441
6388
 
6442
6389
  return openBlock(), createBlock(Transition, {
@@ -6444,7 +6391,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6444
6391
  appear: ""
6445
6392
  }, {
6446
6393
  "default": withCtx(function () {
6447
- return [createElementVNode("div", _hoisted_1, [createElementVNode("div", _hoisted_2, [createElementVNode("div", _hoisted_3, [createElementVNode("div", {
6394
+ return [createElementVNode("div", _hoisted_1$2, [createElementVNode("div", _hoisted_2$2, [createElementVNode("div", _hoisted_3$1, [createElementVNode("div", {
6448
6395
  role: _ctx.role,
6449
6396
  "aria-modal": "true",
6450
6397
  "class": "fw-modal--container p-12 m-8 inline-block w-full max-w-[540px] bg-white rounded-2xl shadow",
@@ -6492,19 +6439,148 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6492
6439
  return [createTextVNode(toDisplayString(_ctx.confirmButtonText), 1)];
6493
6440
  }),
6494
6441
  _: 1
6495
- }, 8, ["variant", "aria-label"])) : createCommentVNode("", true)])) : createCommentVNode("", true)], 8, _hoisted_4)])])])];
6442
+ }, 8, ["variant", "aria-label"])) : createCommentVNode("", true)])) : createCommentVNode("", true)], 8, _hoisted_4$2)])])])];
6496
6443
  }),
6497
6444
  _: 3
6498
6445
  });
6499
6446
  }
6500
6447
 
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}}";
6503
- styleInject(css_248z);
6448
+ var css_248z$2 = ".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}}";
6449
+ var stylesheet$2 = ".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}}";
6450
+ styleInject(css_248z$2);
6504
6451
 
6505
- script.render = render;
6452
+ script.render = render$2;
6506
6453
  script.__scopeId = "data-v-003a6fba";
6507
6454
 
6455
+ var __default__$1 = defineComponent({
6456
+ name: 'FwEmailPulse',
6457
+ props: {
6458
+ /**
6459
+ * The animation-iteration-count CSS property of the pulse animation.
6460
+ * Sets the number of times an animation sequence should be played before stopping.
6461
+ * https://developer.mozilla.org/en-US/docs/Web/CSS/animation-iteration-count
6462
+ */
6463
+ animationIteration: {
6464
+ type: [String, Number],
6465
+ "default": 5
6466
+ }
6467
+ }
6468
+ });
6469
+
6470
+ var __injectCSSVars__$1 = function __injectCSSVars__() {
6471
+ useCssVars(function (_ctx) {
6472
+ return {
6473
+ "7fb9ba3d": _ctx.animationIteration
6474
+ };
6475
+ });
6476
+ };
6477
+
6478
+ var __setup__$1 = __default__$1.setup;
6479
+ __default__$1.setup = __setup__$1 ? function (props, ctx) {
6480
+ __injectCSSVars__$1();
6481
+
6482
+ return __setup__$1(props, ctx);
6483
+ } : __injectCSSVars__$1;
6484
+
6485
+ var _withScopeId$1 = function _withScopeId(n) {
6486
+ return pushScopeId("data-v-62714d9a"), n = n(), popScopeId(), n;
6487
+ };
6488
+
6489
+ var _hoisted_1$1 = {
6490
+ "class": "fw-email-pulse justify-center mx-auto"
6491
+ };
6492
+
6493
+ var _hoisted_2$1 = /*#__PURE__*/_withScopeId$1(function () {
6494
+ return /*#__PURE__*/createElementVNode("svg", {
6495
+ width: "102",
6496
+ height: "102",
6497
+ viewBox: "0 0 102 102",
6498
+ fill: "none",
6499
+ xmlns: "http://www.w3.org/2000/svg"
6500
+ }, [/*#__PURE__*/createElementVNode("path", {
6501
+ "class": "fill-primary",
6502
+ "fill-rule": "evenodd",
6503
+ "clip-rule": "evenodd",
6504
+ d: "M51 102C79.1665 102 102 79.1665 102 51C102 22.8335 79.1665 0 51 0C22.8335 0 0 22.8335 0 51C0 79.1665 22.8335 102 51 102ZM27 39C27 35.6859 29.6859 33 33 33H69C72.3094 33 75 35.6859 75 39V63C75 66.3141 72.3141 69 69 69H33C29.6859 69 27 66.3141 27 63V39ZM72 39C72 37.3462 70.6537 36 69 36H33C31.3463 36 30 37.35 30 39V42.375L48.2972 56.1009C49.8909 57.2934 52.1062 57.2934 53.7 56.1009L72 42.3759V39ZM69 66C70.6537 66 72 64.6537 72 63V46.0406L55.5 58.5C54.1781 59.4938 52.5881 60.0019 51 60.0019C49.4119 60.0019 47.8237 59.4947 46.5 58.5L30 46.0406V63C30 64.6537 31.3463 66 33 66H69Z"
6505
+ })], -1);
6506
+ });
6507
+
6508
+ var _hoisted_3 = /*#__PURE__*/_withScopeId$1(function () {
6509
+ return /*#__PURE__*/createElementVNode("svg", {
6510
+ "class": "absolute top-0 left-0",
6511
+ viewBox: "0 0 130 130"
6512
+ }, [/*#__PURE__*/createElementVNode("circle", {
6513
+ "class": "fw-email-pulse-circle",
6514
+ cx: "50%",
6515
+ cy: "50%",
6516
+ r: "45"
6517
+ })], -1);
6518
+ });
6519
+
6520
+ var _hoisted_4$1 = [_hoisted_2$1, _hoisted_3];
6521
+ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
6522
+ return openBlock(), createElementBlock("div", _hoisted_1$1, _hoisted_4$1);
6523
+ }
6524
+
6525
+ var css_248z$1 = ".fw-email-pulse[data-v-62714d9a]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:130px;position:relative;width:130px}.fw-email-pulse-circle[data-v-62714d9a]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--7fb9ba3d);animation-iteration-count:var(--7fb9ba3d);-webkit-animation-name:fwEmailPulse-62714d9a;animation-name:fwEmailPulse-62714d9a;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
6526
+ var stylesheet$1 = ".fw-email-pulse[data-v-62714d9a]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:130px;position:relative;width:130px}.fw-email-pulse-circle[data-v-62714d9a]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--7fb9ba3d);animation-iteration-count:var(--7fb9ba3d);-webkit-animation-name:fwEmailPulse-62714d9a;animation-name:fwEmailPulse-62714d9a;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
6527
+ styleInject(css_248z$1);
6528
+
6529
+ __default__$1.render = render$1;
6530
+ __default__$1.__scopeId = "data-v-62714d9a";
6531
+
6532
+ var __default__ = defineComponent({
6533
+ name: 'FwSuccessPulse',
6534
+ props: {
6535
+ /**
6536
+ * The animation-iteration-count CSS property of the pulse animation.
6537
+ * Sets the number of times an animation sequence should be played before stopping.
6538
+ * https://developer.mozilla.org/en-US/docs/Web/CSS/animation-iteration-count
6539
+ */
6540
+ animationIteration: {
6541
+ type: [String, Number],
6542
+ "default": 2
6543
+ }
6544
+ }
6545
+ });
6546
+
6547
+ var __injectCSSVars__ = function __injectCSSVars__() {
6548
+ useCssVars(function (_ctx) {
6549
+ return {
6550
+ "22e0894f": _ctx.animationIteration
6551
+ };
6552
+ });
6553
+ };
6554
+
6555
+ var __setup__ = __default__.setup;
6556
+ __default__.setup = __setup__ ? function (props, ctx) {
6557
+ __injectCSSVars__();
6558
+
6559
+ return __setup__(props, ctx);
6560
+ } : __injectCSSVars__;
6561
+
6562
+ var _withScopeId = function _withScopeId(n) {
6563
+ return pushScopeId("data-v-c32112d4"), n = n(), popScopeId(), n;
6564
+ };
6565
+
6566
+ var _hoisted_1 = {
6567
+ "class": "fw-success-pulse"
6568
+ };
6569
+
6570
+ var _hoisted_2 = /*#__PURE__*/createStaticVNode("<svg class=\"fw-success-pulse--checkmark\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 52 52\" data-v-c32112d4><circle class=\"fw-success-pulse--checkmark__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\" data-v-c32112d4></circle><path class=\"fw-success-pulse--checkmark__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\" data-v-c32112d4></path></svg><svg class=\"absolute top-0 left-0\" viewBox=\"0 0 100 100\" data-v-c32112d4><circle class=\"fw-success-pulse--circle\" cx=\"50%\" cy=\"50%\" r=\"34\" data-v-c32112d4></circle></svg>", 2);
6571
+
6572
+ var _hoisted_4 = [_hoisted_2];
6573
+ function render(_ctx, _cache, $props, $setup, $data, $options) {
6574
+ return openBlock(), createElementBlock("div", _hoisted_1, _hoisted_4);
6575
+ }
6576
+
6577
+ var css_248z = ".fw-success-pulse[data-v-c32112d4]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100px;position:relative;width:100px}.fw-success-pulse--checkmark__circle[data-v-c32112d4]{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:var(--colorPrimary);fill:none;-webkit-animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards;animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards}.fw-success-pulse--checkmark[data-v-c32112d4]{stroke-width:4;stroke:#fff;stroke-miterlimit:10;-webkit-animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;border-radius:50%;-webkit-box-shadow:inset 0 0 0 var(--colorPrimary);box-shadow:inset 0 0 0 var(--colorPrimary);display:block;height:70px;margin:10% auto;width:70px}.fw-success-pulse--checkmark__check[data-v-c32112d4]{stroke-dasharray:48;stroke-dashoffset:48;stroke-linecap:round;-webkit-animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@-webkit-keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@-webkit-keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}@keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}.fw-success-pulse--circle[data-v-c32112d4]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--22e0894f);animation-iteration-count:var(--22e0894f);-webkit-animation-name:fwSuccessPulse-c32112d4;animation-name:fwSuccessPulse-c32112d4;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
6578
+ var stylesheet = ".fw-success-pulse[data-v-c32112d4]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100px;position:relative;width:100px}.fw-success-pulse--checkmark__circle[data-v-c32112d4]{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:var(--colorPrimary);fill:none;-webkit-animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards;animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards}.fw-success-pulse--checkmark[data-v-c32112d4]{stroke-width:4;stroke:#fff;stroke-miterlimit:10;-webkit-animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;border-radius:50%;-webkit-box-shadow:inset 0 0 0 var(--colorPrimary);box-shadow:inset 0 0 0 var(--colorPrimary);display:block;height:70px;margin:10% auto;width:70px}.fw-success-pulse--checkmark__check[data-v-c32112d4]{stroke-dasharray:48;stroke-dashoffset:48;stroke-linecap:round;-webkit-animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@-webkit-keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@-webkit-keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}@keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}.fw-success-pulse--circle[data-v-c32112d4]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--22e0894f);animation-iteration-count:var(--22e0894f);-webkit-animation-name:fwSuccessPulse-c32112d4;animation-name:fwSuccessPulse-c32112d4;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
6579
+ styleInject(css_248z);
6580
+
6581
+ __default__.render = render;
6582
+ __default__.__scopeId = "data-v-c32112d4";
6583
+
6508
6584
  // Form components
6509
6585
 
6510
6586
  var components = /*#__PURE__*/Object.freeze({
@@ -6517,7 +6593,9 @@ var components = /*#__PURE__*/Object.freeze({
6517
6593
  FwNavigationMenu: script$3,
6518
6594
  FwTabs: script$2,
6519
6595
  FwTab: script$1,
6520
- FwModal: script
6596
+ FwModal: script,
6597
+ FwEmailPulse: __default__$1,
6598
+ FwSuccessPulse: __default__
6521
6599
  });
6522
6600
 
6523
6601
  function _defineProperty(obj, key, value) {
@@ -6644,14 +6722,14 @@ $({ global: true, bind: true, forced: global$1.setTimeout !== setTimeout$1 }, {
6644
6722
  var modalService = function modalService(options, element) {
6645
6723
  var elementToMount = document.createElement('div');
6646
6724
  elementToMount.id = uniqueId('fw-modal-app-');
6647
- var elAppend = element || document.body;
6725
+ var elAppend = element || document.querySelector('#app');
6648
6726
  var modalVNode = undefined;
6649
6727
 
6650
6728
  var open = function open() {
6651
6729
  var _modalVNode;
6652
6730
 
6653
6731
  modalVNode = createApp(script, _objectSpread2({}, options));
6654
- elAppend.appendChild(elementToMount);
6732
+ elAppend === null || elAppend === void 0 ? void 0 : elAppend.appendChild(elementToMount);
6655
6733
  (_modalVNode = modalVNode) === null || _modalVNode === void 0 ? void 0 : _modalVNode.mount(elementToMount);
6656
6734
  };
6657
6735
 
@@ -6686,4 +6764,4 @@ var install = function install(app) {
6686
6764
  });
6687
6765
  };
6688
6766
 
6689
- export { script$4 as FwButton, script$5 as FwCard, script$6 as FwCheckbox, Form as FwForm, script$7 as FwInput, script as FwModal, script$3 as FwNavigationMenu, script$1 as FwTab, script$2 as FwTabs, install as default, modalService };
6767
+ export { script$4 as FwButton, script$5 as FwCard, script$6 as FwCheckbox, __default__$1 as FwEmailPulse, Form as FwForm, script$7 as FwInput, script as FwModal, script$3 as FwNavigationMenu, __default__ as FwSuccessPulse, script$1 as FwTab, script$2 as FwTabs, install as default, modalService };