@frollo/frollo-web-ui 3.0.2 → 4.0.1

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 (40) hide show
  1. package/cjs/index.js +371 -247
  2. package/esm/{es.number.constructor-1249bd78.js → es.number.constructor-d6ff8874.js} +13 -4
  3. package/esm/{es.string.iterator-284b31d4.js → es.string.iterator-590198a8.js} +1 -2
  4. package/esm/fw-animations.js +3 -4
  5. package/esm/fw-bar-chart.js +3 -4
  6. package/esm/{fw-button-0401f207.js → fw-button-7902ae9e.js} +1 -1
  7. package/esm/fw-button.js +3 -3
  8. package/esm/fw-dropdown.js +1 -1
  9. package/esm/{fw-image-03f85465.js → fw-image-c829ed20.js} +3 -3
  10. package/esm/fw-image.js +4 -5
  11. package/esm/fw-input.js +25 -7
  12. package/esm/{fw-loading-spinner-164d8df0.js → fw-loading-spinner-7462e0b2.js} +1 -1
  13. package/esm/fw-loading.js +17 -17
  14. package/esm/fw-modal.js +3 -3
  15. package/esm/fw-navigation-menu.js +3 -3
  16. package/esm/fw-progress-bar.js +1 -2
  17. package/esm/fw-sidebar-menu.js +13 -9
  18. package/esm/fw-table.js +119 -52
  19. package/esm/fw-tabs.js +1 -2
  20. package/esm/fw-toast.js +2 -3
  21. package/esm/fw-transactions-card.js +4 -5
  22. package/esm/{index-692e4d19.js → index-dbe0534d.js} +137 -95
  23. package/esm/{index-1a41e7bf.js → index-f0510452.js} +2 -3
  24. package/esm/index.js +35 -36
  25. package/frollo-web-ui.esm.js +411 -279
  26. package/icons/arrow-down.svg +3 -0
  27. package/icons/arrow-sort.svg +3 -0
  28. package/icons/index.ts +7 -1
  29. package/icons/search.svg +3 -0
  30. package/index.d.ts +88 -20
  31. package/package.json +1 -1
  32. package/types/components/fw-input/fw-input.vue.d.ts +34 -0
  33. package/types/components/fw-input/index.types.d.ts +2 -0
  34. package/types/components/fw-sidebar-menu/fw-sidebar-menu.vue.d.ts +4 -3
  35. package/types/components/fw-sidebar-menu/index.types.d.ts +2 -1
  36. package/types/components/fw-table/fw-table.vue.d.ts +32 -5
  37. package/types/components/fw-table/index.types.d.ts +4 -1
  38. package/types/icons/index.d.ts +4 -1
  39. package/web-components/index.js +414 -282
  40. package/esm/to-string-12728fd2.js +0 -13
@@ -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, Fragment, renderList, createBlock, createTextVNode, Teleport, normalizeStyle, withKeys, resolveDirective, withDirectives, TransitionGroup, version as version$2, isProxy, toRaw, shallowRef, useCssVars, createStaticVNode, 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, createBlock, Transition, normalizeClass, pushScopeId, popScopeId, Fragment, renderList, createTextVNode, Teleport, normalizeStyle, useCssVars, withKeys, resolveDirective, withDirectives, TransitionGroup, version as version$2, isProxy, toRaw, shallowRef, createStaticVNode, createApp } from 'vue';
2
2
 
3
3
  function _arrayWithHoles(arr) {
4
4
  if (Array.isArray(arr)) return arr;
@@ -5111,7 +5111,7 @@ function uniqueId(prefix) {
5111
5111
  return toString$8(prefix) + id;
5112
5112
  }
5113
5113
 
5114
- var script$n = defineComponent({
5114
+ var script$m = defineComponent({
5115
5115
  name: 'FwInput',
5116
5116
  emits: ['update:modelValue'],
5117
5117
  components: {
@@ -5187,11 +5187,27 @@ var script$n = defineComponent({
5187
5187
  tabindex: {
5188
5188
  type: String,
5189
5189
  "default": '1'
5190
+ },
5191
+ /**
5192
+ * Whether the input is rounded.
5193
+ * Defaults to false
5194
+ */
5195
+ rounded: {
5196
+ type: Boolean,
5197
+ "default": false
5198
+ },
5199
+ /**
5200
+ * Enable the error section UI.
5201
+ * Defaults to true
5202
+ */
5203
+ enableErrors: {
5204
+ type: Boolean,
5205
+ "default": true
5190
5206
  }
5191
5207
  },
5192
5208
  setup: function setup(props, ctx) {
5193
5209
  var uuid = uniqueId();
5194
- var inputBaseClass = ref("border-2 border-grey-40 rounded focus:outline-none focus:ring-2 focus:ring-primary block w-full p-2.5");
5210
+ var inputBaseClass = ref("border-2 border-grey-40 focus:outline-none focus:ring-2 focus:ring-primary block w-full p-2.5");
5195
5211
  var inputValue = computed({
5196
5212
  get: function get() {
5197
5213
  return props.modelValue;
@@ -5338,16 +5354,16 @@ $$d({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
5338
5354
  }
5339
5355
  });
5340
5356
 
5341
- var _hoisted_1$T = {
5357
+ var _hoisted_1$W = {
5342
5358
  "class": "fw-input w-full"
5343
5359
  };
5344
- var _hoisted_2$P = {
5360
+ var _hoisted_2$S = {
5345
5361
  "class": "flex flex-col"
5346
5362
  };
5347
- var _hoisted_3$M = {
5363
+ var _hoisted_3$P = {
5348
5364
  "class": "flex flex-row justify-between"
5349
5365
  };
5350
- var _hoisted_4$d = ["for"];
5366
+ var _hoisted_4$e = ["for"];
5351
5367
  var _hoisted_5$8 = {
5352
5368
  key: 1
5353
5369
  };
@@ -5371,10 +5387,11 @@ var _hoisted_9$5 = /*#__PURE__*/createElementVNode("svg", {
5371
5387
  })], -1);
5372
5388
  var _hoisted_10$4 = [_hoisted_9$5];
5373
5389
  var _hoisted_11$1 = {
5374
- key: 1,
5390
+ key: 2,
5375
5391
  "class": "flex text-black absolute w-10 h-full inset-y-0 right-0 items-center pr-3"
5376
5392
  };
5377
5393
  var _hoisted_12 = {
5394
+ key: 0,
5378
5395
  "class": "italic text-right text-sm font-medium mt-2 min-h-[21px]"
5379
5396
  };
5380
5397
  var _hoisted_13 = {
@@ -5384,9 +5401,9 @@ var _hoisted_13 = {
5384
5401
  var _hoisted_14 = {
5385
5402
  key: 1
5386
5403
  };
5387
- function render$V(_ctx, _cache, $props, $setup, $data, $options) {
5404
+ function render$Y(_ctx, _cache, $props, $setup, $data, $options) {
5388
5405
  var _component_InputField = resolveComponent("InputField");
5389
- return openBlock(), createElementBlock("div", _hoisted_1$T, [createVNode(_component_InputField, {
5406
+ return openBlock(), createElementBlock("div", _hoisted_1$W, [createVNode(_component_InputField, {
5390
5407
  modelValue: _ctx.inputValue,
5391
5408
  "onUpdate:modelValue": _cache[0] || (_cache[0] = function ($event) {
5392
5409
  return _ctx.inputValue = $event;
@@ -5399,11 +5416,11 @@ function render$V(_ctx, _cache, $props, $setup, $data, $options) {
5399
5416
  errors = _ref.errors,
5400
5417
  errorMessage = _ref.errorMessage,
5401
5418
  meta = _ref.meta;
5402
- return [createElementVNode("div", _hoisted_2$P, [createElementVNode("div", _hoisted_3$M, [_ctx.label ? (openBlock(), createElementBlock("label", {
5419
+ return [createElementVNode("div", _hoisted_2$S, [createElementVNode("div", _hoisted_3$P, [_ctx.label ? (openBlock(), createElementBlock("label", {
5403
5420
  key: 0,
5404
5421
  "for": "fw-input-".concat(_ctx.name, "-").concat(_ctx.uuid),
5405
5422
  "class": "block mb-2 font-medium"
5406
- }, toDisplayString(_ctx.label), 9, _hoisted_4$d)) : createCommentVNode("", true), _ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_5$8, [renderSlot(_ctx.$slots, "action")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_6$6, [_ctx.$slots.prefix ? (openBlock(), createElementBlock("div", _hoisted_7$6, [renderSlot(_ctx.$slots, "prefix")])) : createCommentVNode("", true), createElementVNode("input", mergeProps(field, {
5423
+ }, toDisplayString(_ctx.label), 9, _hoisted_4$e)) : createCommentVNode("", true), _ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_5$8, [renderSlot(_ctx.$slots, "action")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_6$6, [_ctx.$slots.prefix ? (openBlock(), createElementBlock("div", _hoisted_7$6, [renderSlot(_ctx.$slots, "prefix")])) : createCommentVNode("", true), createElementVNode("input", mergeProps(field, {
5407
5424
  id: "fw-input-".concat(_ctx.name, "-").concat(_ctx.uuid),
5408
5425
  placeholder: _ctx.placeholder,
5409
5426
  type: _ctx.type,
@@ -5414,8 +5431,9 @@ function render$V(_ctx, _cache, $props, $setup, $data, $options) {
5414
5431
  "class": [{
5415
5432
  'pl-10': !!_ctx.$slots.prefix,
5416
5433
  'pr-20': !!_ctx.$slots.suffix
5417
- }, _ctx.inputBaseClass]
5418
- }), null, 16, _hoisted_8$6), createVNode(Transition, {
5434
+ }, _ctx.inputBaseClass, _ctx.rounded ? 'rounded-full' : 'rounded']
5435
+ }), null, 16, _hoisted_8$6), _ctx.enableErrors ? (openBlock(), createBlock(Transition, {
5436
+ key: 1,
5419
5437
  name: "fwFadeIn"
5420
5438
  }, {
5421
5439
  "default": withCtx(function () {
@@ -5425,7 +5443,7 @@ function render$V(_ctx, _cache, $props, $setup, $data, $options) {
5425
5443
  }, _hoisted_10$4, 2)) : createCommentVNode("", true)];
5426
5444
  }),
5427
5445
  _: 2
5428
- }, 1024), _ctx.$slots.suffix ? (openBlock(), createElementBlock("div", _hoisted_11$1, [renderSlot(_ctx.$slots, "suffix")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_12, [createVNode(Transition, {
5446
+ }, 1024)) : createCommentVNode("", true), _ctx.$slots.suffix ? (openBlock(), createElementBlock("div", _hoisted_11$1, [renderSlot(_ctx.$slots, "suffix")])) : createCommentVNode("", true)]), _ctx.enableErrors ? (openBlock(), createElementBlock("div", _hoisted_12, [createVNode(Transition, {
5429
5447
  name: "fwFadeIn",
5430
5448
  mode: "out-in"
5431
5449
  }, {
@@ -5433,7 +5451,7 @@ function render$V(_ctx, _cache, $props, $setup, $data, $options) {
5433
5451
  return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("span", _hoisted_13, toDisplayString(errorMessage || errors[0]), 1)) : _ctx.hint ? (openBlock(), createElementBlock("span", _hoisted_14, toDisplayString(_ctx.hint), 1)) : createCommentVNode("", true)];
5434
5452
  }),
5435
5453
  _: 2
5436
- }, 1024)])])];
5454
+ }, 1024)])) : createCommentVNode("", true)])];
5437
5455
  }),
5438
5456
  _: 3
5439
5457
  }, 8, ["modelValue", "name", "rules"])]);
@@ -5466,13 +5484,13 @@ function styleInject(css, ref) {
5466
5484
  }
5467
5485
  }
5468
5486
 
5469
- var css_248z$d = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-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}}";
5470
- var stylesheet$d = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-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}}";
5471
- styleInject(css_248z$d);
5487
+ var css_248z$e = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-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}}";
5488
+ var stylesheet$e = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-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}}";
5489
+ styleInject(css_248z$e);
5472
5490
 
5473
- script$n.render = render$V;
5491
+ script$m.render = render$Y;
5474
5492
 
5475
- var script$m = defineComponent({
5493
+ var script$l = defineComponent({
5476
5494
  name: 'FwCheckbox',
5477
5495
  components: {
5478
5496
  InputField: Field
@@ -5512,17 +5530,17 @@ var script$m = defineComponent({
5512
5530
  }
5513
5531
  });
5514
5532
 
5515
- var _withScopeId$4 = function _withScopeId(n) {
5533
+ var _withScopeId$5 = function _withScopeId(n) {
5516
5534
  return pushScopeId("data-v-3370ec5a"), n = n(), popScopeId(), n;
5517
5535
  };
5518
- var _hoisted_1$S = {
5536
+ var _hoisted_1$V = {
5519
5537
  "class": "fw-checkbox w-full"
5520
5538
  };
5521
- var _hoisted_2$O = {
5539
+ var _hoisted_2$R = {
5522
5540
  "class": "flex flex-col"
5523
5541
  };
5524
- var _hoisted_3$L = ["for"];
5525
- var _hoisted_4$c = ["value", "name", "id"];
5542
+ var _hoisted_3$O = ["for"];
5543
+ var _hoisted_4$d = ["value", "name", "id"];
5526
5544
  var _hoisted_5$7 = ["innerHTML"];
5527
5545
  var _hoisted_6$5 = {
5528
5546
  "class": "italic text-sm font-medium min-h-[21px]"
@@ -5534,9 +5552,9 @@ var _hoisted_7$5 = {
5534
5552
  var _hoisted_8$5 = {
5535
5553
  key: 1
5536
5554
  };
5537
- function render$U(_ctx, _cache, $props, $setup, $data, $options) {
5555
+ function render$X(_ctx, _cache, $props, $setup, $data, $options) {
5538
5556
  var _component_InputField = resolveComponent("InputField");
5539
- return openBlock(), createElementBlock("div", _hoisted_1$S, [createVNode(_component_InputField, {
5557
+ return openBlock(), createElementBlock("div", _hoisted_1$V, [createVNode(_component_InputField, {
5540
5558
  name: _ctx.name,
5541
5559
  value: _ctx.name,
5542
5560
  type: "checkbox",
@@ -5547,7 +5565,7 @@ function render$U(_ctx, _cache, $props, $setup, $data, $options) {
5547
5565
  errors = _ref.errors,
5548
5566
  errorMessage = _ref.errorMessage,
5549
5567
  meta = _ref.meta;
5550
- return [createElementVNode("div", _hoisted_2$O, [createElementVNode("label", {
5568
+ return [createElementVNode("div", _hoisted_2$R, [createElementVNode("label", {
5551
5569
  "for": "fw-checkbox-".concat(_ctx.name, "-").concat(_ctx.uuid),
5552
5570
  "class": "inline-flex items-center mb-3"
5553
5571
  }, [createElementVNode("input", mergeProps(field, {
@@ -5556,11 +5574,11 @@ function render$U(_ctx, _cache, $props, $setup, $data, $options) {
5556
5574
  id: "fw-checkbox-".concat(_ctx.name, "-").concat(_ctx.uuid),
5557
5575
  type: "checkbox",
5558
5576
  "class": "text-link w-6 h-6 cursor-pointer bg-white border-grey-light border rounded"
5559
- }), null, 16, _hoisted_4$c), _ctx.label ? (openBlock(), createElementBlock("span", {
5577
+ }), null, 16, _hoisted_4$d), _ctx.label ? (openBlock(), createElementBlock("span", {
5560
5578
  key: 0,
5561
5579
  "class": "ml-2",
5562
5580
  innerHTML: _ctx.label
5563
- }, null, 8, _hoisted_5$7)) : createCommentVNode("", true)], 8, _hoisted_3$L), createElementVNode("div", _hoisted_6$5, [createVNode(Transition, {
5581
+ }, null, 8, _hoisted_5$7)) : createCommentVNode("", true)], 8, _hoisted_3$O), createElementVNode("div", _hoisted_6$5, [createVNode(Transition, {
5564
5582
  name: "fwFadeIn",
5565
5583
  mode: "out-in"
5566
5584
  }, {
@@ -5574,12 +5592,12 @@ function render$U(_ctx, _cache, $props, $setup, $data, $options) {
5574
5592
  }, 8, ["name", "value", "rules"])]);
5575
5593
  }
5576
5594
 
5577
- var css_248z$c = ".fwFadeIn-enter-active[data-v-3370ec5a]{-webkit-animation:fwFadeIn-3370ec5a .35s;animation:fwFadeIn-3370ec5a .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-3370ec5a]{animation:fwFadeIn-3370ec5a .35s reverse;-webkit-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-3370ec5a]{-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;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-3370ec5a]: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}";
5578
- var stylesheet$c = ".fwFadeIn-enter-active[data-v-3370ec5a]{-webkit-animation:fwFadeIn-3370ec5a .35s;animation:fwFadeIn-3370ec5a .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-3370ec5a]{animation:fwFadeIn-3370ec5a .35s reverse;-webkit-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-3370ec5a]{-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;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-3370ec5a]: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}";
5579
- styleInject(css_248z$c);
5595
+ var css_248z$d = ".fwFadeIn-enter-active[data-v-3370ec5a]{-webkit-animation:fwFadeIn-3370ec5a .35s;animation:fwFadeIn-3370ec5a .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-3370ec5a]{animation:fwFadeIn-3370ec5a .35s reverse;-webkit-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-3370ec5a]{-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;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-3370ec5a]: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}";
5596
+ var stylesheet$d = ".fwFadeIn-enter-active[data-v-3370ec5a]{-webkit-animation:fwFadeIn-3370ec5a .35s;animation:fwFadeIn-3370ec5a .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-3370ec5a]{animation:fwFadeIn-3370ec5a .35s reverse;-webkit-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-3370ec5a{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-3370ec5a]{-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;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-3370ec5a]: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}";
5597
+ styleInject(css_248z$d);
5580
5598
 
5581
- script$m.render = render$U;
5582
- script$m.__scopeId = "data-v-3370ec5a";
5599
+ script$l.render = render$X;
5600
+ script$l.__scopeId = "data-v-3370ec5a";
5583
5601
 
5584
5602
  var es_array_find = {};
5585
5603
 
@@ -5605,12 +5623,54 @@ $$c({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, {
5605
5623
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
5606
5624
  addToUnscopables$1(FIND);
5607
5625
 
5608
- const _hoisted_1$R = {
5626
+ const _hoisted_1$U = {
5609
5627
  viewBox: "0 0 52 34",
5610
5628
  fill: "currentColor",
5611
5629
  xmlns: "http://www.w3.org/2000/svg"
5612
5630
  };
5613
- const _hoisted_2$N = /*#__PURE__*/createElementVNode("path", { d: "M25.973 19.938a5.608 5.608 0 005.625-5.625c0-3.077-2.549-5.626-5.625-5.626-.088 0-.176.088-.264.088.088.44.176.88.176 1.407a4.126 4.126 0 01-4.13 4.13c-.528 0-.968-.087-1.407-.175v.175c0 3.165 2.46 5.626 5.625 5.626zm24.96-4.043C46.189 6.578 36.697.25 25.974.25 15.163.25 5.67 6.578.924 15.895c-.176.351-.264.79-.264 1.23 0 .527.088.967.264 1.318C5.67 27.76 15.162 34 25.973 34c10.723 0 20.215-6.24 24.96-15.557.177-.351.265-.79.265-1.23 0-.527-.088-.967-.264-1.319zM25.974 3.063c6.152 0 11.25 5.097 11.25 11.25 0 6.24-5.098 11.25-11.25 11.25-6.24 0-11.25-5.01-11.25-11.25 0-6.153 5.01-11.163 11.25-11.25zm0 28.125c-9.492 0-18.105-5.362-22.5-14.063 2.46-4.834 6.416-8.877 11.338-11.338a13.875 13.875 0 00-2.9 8.526c0 7.822 6.24 14.062 14.062 14.062 7.734 0 14.063-6.24 14.063-14.063 0-3.164-1.143-6.152-2.989-8.525 4.922 2.461 8.877 6.504 11.426 11.338-4.482 8.701-13.096 14.063-22.5 14.063z" }, null, -1);
5631
+ const _hoisted_2$Q = /*#__PURE__*/createElementVNode("path", { d: "M25.973 19.938a5.608 5.608 0 005.625-5.625c0-3.077-2.549-5.626-5.625-5.626-.088 0-.176.088-.264.088.088.44.176.88.176 1.407a4.126 4.126 0 01-4.13 4.13c-.528 0-.968-.087-1.407-.175v.175c0 3.165 2.46 5.626 5.625 5.626zm24.96-4.043C46.189 6.578 36.697.25 25.974.25 15.163.25 5.67 6.578.924 15.895c-.176.351-.264.79-.264 1.23 0 .527.088.967.264 1.318C5.67 27.76 15.162 34 25.973 34c10.723 0 20.215-6.24 24.96-15.557.177-.351.265-.79.265-1.23 0-.527-.088-.967-.264-1.319zM25.974 3.063c6.152 0 11.25 5.097 11.25 11.25 0 6.24-5.098 11.25-11.25 11.25-6.24 0-11.25-5.01-11.25-11.25 0-6.153 5.01-11.163 11.25-11.25zm0 28.125c-9.492 0-18.105-5.362-22.5-14.063 2.46-4.834 6.416-8.877 11.338-11.338a13.875 13.875 0 00-2.9 8.526c0 7.822 6.24 14.062 14.062 14.062 7.734 0 14.063-6.24 14.063-14.063 0-3.164-1.143-6.152-2.989-8.525 4.922 2.461 8.877 6.504 11.426 11.338-4.482 8.701-13.096 14.063-22.5 14.063z" }, null, -1);
5632
+ const _hoisted_3$N = [
5633
+ _hoisted_2$Q
5634
+ ];
5635
+
5636
+ function render$W(_ctx, _cache) {
5637
+ return (openBlock(), createElementBlock("svg", _hoisted_1$U, _hoisted_3$N))
5638
+ }
5639
+
5640
+ const _hoisted_1$T = {
5641
+ viewBox: "0 0 42 55",
5642
+ fill: "currentColor",
5643
+ xmlns: "http://www.w3.org/2000/svg"
5644
+ };
5645
+ const _hoisted_2$P = /*#__PURE__*/createElementVNode("path", { d: "M39.668 11.086l-8.754-8.754c-.95-.95-2.32-1.582-3.586-1.582H5.707A5.135 5.135 0 00.75 5.918v43.875a4.951 4.951 0 004.957 4.957h30.48c2.743 0 5.063-2.215 5.063-4.957V14.672c0-1.266-.633-2.637-1.582-3.586zM27.75 4.23c.21.106.527.211.738.422l8.86 8.86c.21.21.316.527.422.843H27.75V4.23zm10.125 45.563c0 .844-.844 1.688-1.688 1.688H5.707c-.844 0-1.687-.844-1.687-1.688V5.918c0-.95.843-1.793 1.687-1.793h18.668v11.074c0 1.371 1.055 2.426 2.531 2.426h10.969v32.168zM21 21v13.5h13.395c.105 0 0 0 0 0 0-7.383-6.012-13.395-13.395-13.5zm3.375 4.008a10.314 10.314 0 016.117 6.117h-6.117v-6.117zm-5.063 19.617c-4.746 0-8.437-3.691-8.437-8.438 0-4.007 2.848-7.382 6.75-8.226v-3.375C11.825 25.43 7.5 30.28 7.5 36.188 7.5 42.727 12.773 48 19.313 48c5.906 0 10.757-4.324 11.601-10.125H27.54c-.844 3.902-4.219 6.75-8.227 6.75z" }, null, -1);
5646
+ const _hoisted_3$M = [
5647
+ _hoisted_2$P
5648
+ ];
5649
+
5650
+ function render$V(_ctx, _cache) {
5651
+ return (openBlock(), createElementBlock("svg", _hoisted_1$T, _hoisted_3$M))
5652
+ }
5653
+
5654
+ const _hoisted_1$S = {
5655
+ viewBox: "0 0 54 42",
5656
+ fill: "currentColor",
5657
+ xmlns: "http://www.w3.org/2000/svg"
5658
+ };
5659
+ const _hoisted_2$O = /*#__PURE__*/createElementVNode("path", { d: "M11.25 27c0-1.219-1.031-2.25-2.25-2.25-1.313 0-2.25 1.031-2.25 2.25 0 1.313.938 2.25 2.25 2.25 1.219 0 2.25-.938 2.25-2.25zM27 11.25c1.219 0 2.25-.938 2.25-2.25 0-1.219-1.031-2.25-2.25-2.25-1.313 0-2.25 1.031-2.25 2.25 0 1.313.938 2.25 2.25 2.25zM14.25 12C12.937 12 12 13.031 12 14.25c0 1.313.938 2.25 2.25 2.25 1.219 0 2.25-.938 2.25-2.25 0-1.219-1.031-2.25-2.25-2.25zm26.438 1.125c-.657-.469-1.594-.375-2.157.188l-9.093 11.25C28.688 24.28 27.843 24 27 24c-3.375 0-6 2.719-6 6 0 3.375 2.625 6 6 6 3.281 0 6-2.625 6-6a5.57 5.57 0 00-1.219-3.469l9.094-11.25c.563-.656.375-1.594-.188-2.156zM30 30c0 1.688-1.406 3-3 3-1.688 0-3-1.313-3-3 0-1.594 1.313-3 3-3 1.594 0 3 1.406 3 3zm15-5.25c-1.313 0-2.25 1.031-2.25 2.25 0 1.313.938 2.25 2.25 2.25 1.219 0 2.25-.938 2.25-2.25 0-1.219-1.031-2.25-2.25-2.25zM54 27C54 12.094 41.906 0 27 0 12 0 0 12.094 0 27c0 4.969 1.313 9.656 3.656 13.594.469.937 1.5 1.406 2.531 1.406H47.72c1.031 0 2.062-.469 2.531-1.406A26.627 26.627 0 0054 27zm-3 0c0 4.313-1.125 8.438-3.281 12l-41.532.094A24.525 24.525 0 013 27C3 13.781 13.688 3 27 3c13.219 0 24 10.781 24 24z" }, null, -1);
5660
+ const _hoisted_3$L = [
5661
+ _hoisted_2$O
5662
+ ];
5663
+
5664
+ function render$U(_ctx, _cache) {
5665
+ return (openBlock(), createElementBlock("svg", _hoisted_1$S, _hoisted_3$L))
5666
+ }
5667
+
5668
+ const _hoisted_1$R = {
5669
+ viewBox: "0 0 404 146",
5670
+ fill: "currentColor",
5671
+ xmlns: "http://www.w3.org/2000/svg"
5672
+ };
5673
+ const _hoisted_2$N = /*#__PURE__*/createElementVNode("path", { d: "M130 113.6h-22.8V143H75.6v-29.4H.2V91.8L66.2 3h34L39 87.2h37.6V61h30.6v26.2H130v26.4zM199.691 145.4c-11.6 0-21.934-2.867-31-8.6-9.067-5.733-16.2-14-21.4-24.8-5.067-10.933-7.6-23.933-7.6-39s2.533-28 7.6-38.8c5.2-10.933 12.333-19.267 21.4-25 9.066-5.733 19.4-8.6 31-8.6 11.6 0 21.933 2.867 31 8.6 9.066 5.733 16.133 14.067 21.2 25 5.2 10.8 7.8 23.733 7.8 38.8 0 15.067-2.6 28.067-7.8 39-5.067 10.8-12.134 19.067-21.2 24.8-9.067 5.733-19.4 8.6-31 8.6zm0-27.4c8.533 0 15.2-3.667 20-11 4.933-7.333 7.4-18.667 7.4-34 0-15.333-2.467-26.667-7.4-34-4.8-7.333-11.467-11-20-11-8.4 0-15.067 3.667-20 11-4.8 7.333-7.2 18.667-7.2 34 0 15.333 2.4 26.667 7.2 34 4.933 7.333 11.6 11 20 11zM403.633 113.6h-22.8V143h-31.6v-29.4h-75.4V91.8l66-88.8h34l-61.2 84.2h37.6V61h30.6v26.2h22.8v26.4z" }, null, -1);
5614
5674
  const _hoisted_3$K = [
5615
5675
  _hoisted_2$N
5616
5676
  ];
@@ -5620,25 +5680,27 @@ function render$T(_ctx, _cache) {
5620
5680
  }
5621
5681
 
5622
5682
  const _hoisted_1$Q = {
5623
- viewBox: "0 0 42 55",
5624
5683
  fill: "currentColor",
5684
+ viewBox: "0 0 20 20",
5625
5685
  xmlns: "http://www.w3.org/2000/svg"
5626
5686
  };
5627
- const _hoisted_2$M = /*#__PURE__*/createElementVNode("path", { d: "M39.668 11.086l-8.754-8.754c-.95-.95-2.32-1.582-3.586-1.582H5.707A5.135 5.135 0 00.75 5.918v43.875a4.951 4.951 0 004.957 4.957h30.48c2.743 0 5.063-2.215 5.063-4.957V14.672c0-1.266-.633-2.637-1.582-3.586zM27.75 4.23c.21.106.527.211.738.422l8.86 8.86c.21.21.316.527.422.843H27.75V4.23zm10.125 45.563c0 .844-.844 1.688-1.688 1.688H5.707c-.844 0-1.687-.844-1.687-1.688V5.918c0-.95.843-1.793 1.687-1.793h18.668v11.074c0 1.371 1.055 2.426 2.531 2.426h10.969v32.168zM21 21v13.5h13.395c.105 0 0 0 0 0 0-7.383-6.012-13.395-13.395-13.5zm3.375 4.008a10.314 10.314 0 016.117 6.117h-6.117v-6.117zm-5.063 19.617c-4.746 0-8.437-3.691-8.437-8.438 0-4.007 2.848-7.382 6.75-8.226v-3.375C11.825 25.43 7.5 30.28 7.5 36.188 7.5 42.727 12.773 48 19.313 48c5.906 0 10.757-4.324 11.601-10.125H27.54c-.844 3.902-4.219 6.75-8.227 6.75z" }, null, -1);
5628
- const _hoisted_3$J = [
5629
- _hoisted_2$M
5687
+ const _hoisted_2$M = /*#__PURE__*/createElementVNode("path", { d: "M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z" }, null, -1);
5688
+ const _hoisted_3$J = /*#__PURE__*/createElementVNode("path", { d: "M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" }, null, -1);
5689
+ const _hoisted_4$c = [
5690
+ _hoisted_2$M,
5691
+ _hoisted_3$J
5630
5692
  ];
5631
5693
 
5632
5694
  function render$S(_ctx, _cache) {
5633
- return (openBlock(), createElementBlock("svg", _hoisted_1$Q, _hoisted_3$J))
5695
+ return (openBlock(), createElementBlock("svg", _hoisted_1$Q, _hoisted_4$c))
5634
5696
  }
5635
5697
 
5636
5698
  const _hoisted_1$P = {
5637
- viewBox: "0 0 54 42",
5699
+ viewBox: "0 0 24 24",
5638
5700
  fill: "currentColor",
5639
5701
  xmlns: "http://www.w3.org/2000/svg"
5640
5702
  };
5641
- const _hoisted_2$L = /*#__PURE__*/createElementVNode("path", { d: "M11.25 27c0-1.219-1.031-2.25-2.25-2.25-1.313 0-2.25 1.031-2.25 2.25 0 1.313.938 2.25 2.25 2.25 1.219 0 2.25-.938 2.25-2.25zM27 11.25c1.219 0 2.25-.938 2.25-2.25 0-1.219-1.031-2.25-2.25-2.25-1.313 0-2.25 1.031-2.25 2.25 0 1.313.938 2.25 2.25 2.25zM14.25 12C12.937 12 12 13.031 12 14.25c0 1.313.938 2.25 2.25 2.25 1.219 0 2.25-.938 2.25-2.25 0-1.219-1.031-2.25-2.25-2.25zm26.438 1.125c-.657-.469-1.594-.375-2.157.188l-9.093 11.25C28.688 24.28 27.843 24 27 24c-3.375 0-6 2.719-6 6 0 3.375 2.625 6 6 6 3.281 0 6-2.625 6-6a5.57 5.57 0 00-1.219-3.469l9.094-11.25c.563-.656.375-1.594-.188-2.156zM30 30c0 1.688-1.406 3-3 3-1.688 0-3-1.313-3-3 0-1.594 1.313-3 3-3 1.594 0 3 1.406 3 3zm15-5.25c-1.313 0-2.25 1.031-2.25 2.25 0 1.313.938 2.25 2.25 2.25 1.219 0 2.25-.938 2.25-2.25 0-1.219-1.031-2.25-2.25-2.25zM54 27C54 12.094 41.906 0 27 0 12 0 0 12.094 0 27c0 4.969 1.313 9.656 3.656 13.594.469.937 1.5 1.406 2.531 1.406H47.72c1.031 0 2.062-.469 2.531-1.406A26.627 26.627 0 0054 27zm-3 0c0 4.313-1.125 8.438-3.281 12l-41.532.094A24.525 24.525 0 013 27C3 13.781 13.688 3 27 3c13.219 0 24 10.781 24 24z" }, null, -1);
5703
+ const _hoisted_2$L = /*#__PURE__*/createElementVNode("path", { d: "M12 1.875c5.56 0 10.125 4.504 10.125 10.125A10.122 10.122 0 0112 22.125C6.41 22.125 1.875 17.599 1.875 12 1.875 6.412 6.403 1.875 12 1.875zm0-1.5C5.58.375.375 5.582.375 12 .375 18.422 5.58 23.625 12 23.625S23.625 18.422 23.625 12C23.625 5.582 18.42.375 12 .375zM11.461 6h1.078c.32 0 .575.266.562.586l-.329 7.875a.563.563 0 01-.562.539h-.42a.563.563 0 01-.563-.54L10.9 6.587A.563.563 0 0111.461 6zM12 15.938a1.312 1.312 0 100 2.624 1.312 1.312 0 000-2.625z" }, null, -1);
5642
5704
  const _hoisted_3$I = [
5643
5705
  _hoisted_2$L
5644
5706
  ];
@@ -5648,11 +5710,11 @@ function render$R(_ctx, _cache) {
5648
5710
  }
5649
5711
 
5650
5712
  const _hoisted_1$O = {
5651
- viewBox: "0 0 404 146",
5652
5713
  fill: "currentColor",
5653
- xmlns: "http://www.w3.org/2000/svg"
5714
+ xmlns: "http://www.w3.org/2000/svg",
5715
+ viewBox: "0 0 24 24"
5654
5716
  };
5655
- const _hoisted_2$K = /*#__PURE__*/createElementVNode("path", { d: "M130 113.6h-22.8V143H75.6v-29.4H.2V91.8L66.2 3h34L39 87.2h37.6V61h30.6v26.2H130v26.4zM199.691 145.4c-11.6 0-21.934-2.867-31-8.6-9.067-5.733-16.2-14-21.4-24.8-5.067-10.933-7.6-23.933-7.6-39s2.533-28 7.6-38.8c5.2-10.933 12.333-19.267 21.4-25 9.066-5.733 19.4-8.6 31-8.6 11.6 0 21.933 2.867 31 8.6 9.066 5.733 16.133 14.067 21.2 25 5.2 10.8 7.8 23.733 7.8 38.8 0 15.067-2.6 28.067-7.8 39-5.067 10.8-12.134 19.067-21.2 24.8-9.067 5.733-19.4 8.6-31 8.6zm0-27.4c8.533 0 15.2-3.667 20-11 4.933-7.333 7.4-18.667 7.4-34 0-15.333-2.467-26.667-7.4-34-4.8-7.333-11.467-11-20-11-8.4 0-15.067 3.667-20 11-4.8 7.333-7.2 18.667-7.2 34 0 15.333 2.4 26.667 7.2 34 4.933 7.333 11.6 11 20 11zM403.633 113.6h-22.8V143h-31.6v-29.4h-75.4V91.8l66-88.8h34l-61.2 84.2h37.6V61h30.6v26.2h22.8v26.4z" }, null, -1);
5717
+ const _hoisted_2$K = /*#__PURE__*/createElementVNode("path", { d: "M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3zM9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9V7z" }, null, -1);
5656
5718
  const _hoisted_3$H = [
5657
5719
  _hoisted_2$K
5658
5720
  ];
@@ -5663,11 +5725,11 @@ function render$Q(_ctx, _cache) {
5663
5725
 
5664
5726
  const _hoisted_1$N = {
5665
5727
  fill: "currentColor",
5666
- viewBox: "0 0 20 20",
5667
- xmlns: "http://www.w3.org/2000/svg"
5728
+ xmlns: "http://www.w3.org/2000/svg",
5729
+ viewBox: "0 0 612 612"
5668
5730
  };
5669
- const _hoisted_2$J = /*#__PURE__*/createElementVNode("path", { d: "M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z" }, null, -1);
5670
- const _hoisted_3$G = /*#__PURE__*/createElementVNode("path", { d: "M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" }, null, -1);
5731
+ const _hoisted_2$J = /*#__PURE__*/createElementVNode("path", { d: "M609.608 315.426a19.767 19.767 0 000-18.853c-58.464-107.643-172.5-180.72-303.607-180.72S60.857 188.931 2.393 296.573a19.767 19.767 0 000 18.853C60.858 423.069 174.892 496.147 306 496.147s245.143-73.078 303.608-180.721zM306 451.855c-80.554 0-145.855-65.302-145.855-145.855S225.446 160.144 306 160.144 451.856 225.446 451.856 306 386.554 451.855 306 451.855z" }, null, -1);
5732
+ const _hoisted_3$G = /*#__PURE__*/createElementVNode("path", { d: "M306 231.67c-6.136 0-12.095.749-17.798 2.15 5.841 6.76 9.383 15.563 9.383 25.198 0 21.3-17.267 38.568-38.568 38.568-9.635 0-18.438-3.541-25.198-9.383a74.513 74.513 0 00-2.15 17.798c0 41.052 33.279 74.33 74.33 74.33s74.33-33.279 74.33-74.33S347.052 231.67 306 231.67z" }, null, -1);
5671
5733
  const _hoisted_4$b = [
5672
5734
  _hoisted_2$J,
5673
5735
  _hoisted_3$G
@@ -5678,11 +5740,11 @@ function render$P(_ctx, _cache) {
5678
5740
  }
5679
5741
 
5680
5742
  const _hoisted_1$M = {
5681
- viewBox: "0 0 24 24",
5682
5743
  fill: "currentColor",
5683
- xmlns: "http://www.w3.org/2000/svg"
5744
+ xmlns: "http://www.w3.org/2000/svg",
5745
+ viewBox: "0 -64 640 640"
5684
5746
  };
5685
- const _hoisted_2$I = /*#__PURE__*/createElementVNode("path", { d: "M12 1.875c5.56 0 10.125 4.504 10.125 10.125A10.122 10.122 0 0112 22.125C6.41 22.125 1.875 17.599 1.875 12 1.875 6.412 6.403 1.875 12 1.875zm0-1.5C5.58.375.375 5.582.375 12 .375 18.422 5.58 23.625 12 23.625S23.625 18.422 23.625 12C23.625 5.582 18.42.375 12 .375zM11.461 6h1.078c.32 0 .575.266.562.586l-.329 7.875a.563.563 0 01-.562.539h-.42a.563.563 0 01-.563-.54L10.9 6.587A.563.563 0 0111.461 6zM12 15.938a1.312 1.312 0 100 2.624 1.312 1.312 0 000-2.625z" }, null, -1);
5747
+ const _hoisted_2$I = /*#__PURE__*/createElementVNode("path", { d: "M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 000 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 01-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0081.25-102.07 32.35 32.35 0 000-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 00-147.32 37.7L45.46 3.37A16 16 0 0023 6.18L3.37 31.45A16 16 0 006.18 53.9l588.36 454.73a16 16 0 0022.46-2.81l19.64-25.27a16 16 0 00-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 00416 256a94.76 94.76 0 00-121.31-92.21A47.65 47.65 0 01304 192a46.64 46.64 0 01-1.54 10l-73.61-56.89A142.31 142.31 0 01320 112a143.92 143.92 0 01144 144c0 21.63-5.29 41.79-13.9 60.11z" }, null, -1);
5686
5748
  const _hoisted_3$F = [
5687
5749
  _hoisted_2$I
5688
5750
  ];
@@ -5692,41 +5754,41 @@ function render$O(_ctx, _cache) {
5692
5754
  }
5693
5755
 
5694
5756
  const _hoisted_1$L = {
5757
+ viewBox: "0 0 18 18",
5695
5758
  fill: "currentColor",
5696
- xmlns: "http://www.w3.org/2000/svg",
5697
- viewBox: "0 0 24 24"
5759
+ xmlns: "http://www.w3.org/2000/svg"
5698
5760
  };
5699
- const _hoisted_2$H = /*#__PURE__*/createElementVNode("path", { d: "M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3zM9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9V7z" }, null, -1);
5700
- const _hoisted_3$E = [
5701
- _hoisted_2$H
5761
+ const _hoisted_2$H = /*#__PURE__*/createElementVNode("path", { d: "M16 13h-4.172l-1.414 1.414A1.99 1.99 0 019 15a1.986 1.986 0 01-1.414-.586L6.172 13H2a1 1 0 00-1 1v3a1 1 0 001 1h14a1 1 0 001-1v-3c0-.553-.447-1-1-1zm-1.5 3.25a.752.752 0 01-.75-.75c0-.412.338-.75.75-.75s.75.338.75.75-.338.75-.75.75z" }, null, -1);
5762
+ const _hoisted_3$E = /*#__PURE__*/createElementVNode("path", { d: "M4.293 8.706a1 1 0 011.414-1.414l2.292 2.296V2a1 1 0 012 0v7.588l2.293-2.294a1 1 0 111.414 1.414l-4 4A.997.997 0 019 13a.995.995 0 01-.707-.293l-4-4z" }, null, -1);
5763
+ const _hoisted_4$a = [
5764
+ _hoisted_2$H,
5765
+ _hoisted_3$E
5702
5766
  ];
5703
5767
 
5704
5768
  function render$N(_ctx, _cache) {
5705
- return (openBlock(), createElementBlock("svg", _hoisted_1$L, _hoisted_3$E))
5769
+ return (openBlock(), createElementBlock("svg", _hoisted_1$L, _hoisted_4$a))
5706
5770
  }
5707
5771
 
5708
5772
  const _hoisted_1$K = {
5709
5773
  fill: "currentColor",
5710
5774
  xmlns: "http://www.w3.org/2000/svg",
5711
- viewBox: "0 0 612 612"
5775
+ viewBox: "0 0 576 512"
5712
5776
  };
5713
- const _hoisted_2$G = /*#__PURE__*/createElementVNode("path", { d: "M609.608 315.426a19.767 19.767 0 000-18.853c-58.464-107.643-172.5-180.72-303.607-180.72S60.857 188.931 2.393 296.573a19.767 19.767 0 000 18.853C60.858 423.069 174.892 496.147 306 496.147s245.143-73.078 303.608-180.721zM306 451.855c-80.554 0-145.855-65.302-145.855-145.855S225.446 160.144 306 160.144 451.856 225.446 451.856 306 386.554 451.855 306 451.855z" }, null, -1);
5714
- const _hoisted_3$D = /*#__PURE__*/createElementVNode("path", { d: "M306 231.67c-6.136 0-12.095.749-17.798 2.15 5.841 6.76 9.383 15.563 9.383 25.198 0 21.3-17.267 38.568-38.568 38.568-9.635 0-18.438-3.541-25.198-9.383a74.513 74.513 0 00-2.15 17.798c0 41.052 33.279 74.33 74.33 74.33s74.33-33.279 74.33-74.33S347.052 231.67 306 231.67z" }, null, -1);
5715
- const _hoisted_4$a = [
5716
- _hoisted_2$G,
5717
- _hoisted_3$D
5777
+ const _hoisted_2$G = /*#__PURE__*/createElementVNode("path", { d: "M528 32H48C21.49 32 0 53.49 0 80v16h576V80c0-26.51-21.5-48-48-48zM0 432c0 26.5 21.49 48 48 48h480c26.51 0 48-21.49 48-48V128H0v304zm368-240h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h128c8.836 0 16 7.164 16 16s-7.2 16-16 16H368c-8.836 0-16-7.164-16-16s7.2-16 16-16zM176 192c35.35 0 64 28.66 64 64s-28.65 64-64 64-64-28.66-64-64 28.7-64 64-64zm-64 160h128c26.51 0 48 21.49 48 48 0 8.836-7.164 16-16 16H80c-8.84 0-16-7.2-16-16 0-26.5 21.49-48 48-48z" }, null, -1);
5778
+ const _hoisted_3$D = [
5779
+ _hoisted_2$G
5718
5780
  ];
5719
5781
 
5720
5782
  function render$M(_ctx, _cache) {
5721
- return (openBlock(), createElementBlock("svg", _hoisted_1$K, _hoisted_4$a))
5783
+ return (openBlock(), createElementBlock("svg", _hoisted_1$K, _hoisted_3$D))
5722
5784
  }
5723
5785
 
5724
5786
  const _hoisted_1$J = {
5787
+ viewBox: "0 0 16 16",
5725
5788
  fill: "currentColor",
5726
- xmlns: "http://www.w3.org/2000/svg",
5727
- viewBox: "0 -64 640 640"
5789
+ xmlns: "http://www.w3.org/2000/svg"
5728
5790
  };
5729
- const _hoisted_2$F = /*#__PURE__*/createElementVNode("path", { d: "M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 000 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 01-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0081.25-102.07 32.35 32.35 0 000-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 00-147.32 37.7L45.46 3.37A16 16 0 0023 6.18L3.37 31.45A16 16 0 006.18 53.9l588.36 454.73a16 16 0 0022.46-2.81l19.64-25.27a16 16 0 00-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 00416 256a94.76 94.76 0 00-121.31-92.21A47.65 47.65 0 01304 192a46.64 46.64 0 01-1.54 10l-73.61-56.89A142.31 142.31 0 01320 112a143.92 143.92 0 01144 144c0 21.63-5.29 41.79-13.9 60.11z" }, null, -1);
5791
+ const _hoisted_2$F = /*#__PURE__*/createElementVNode("path", { d: "M8 0a8 8 0 00-8 8 8 8 0 008 8 8 8 0 008-8 8 8 0 00-8-8zm0 4a1 1 0 110 2 1 1 0 010-2zm1.25 8h-2.5a.75.75 0 010-1.5h.5v-2H7A.75.75 0 017 7h1a.75.75 0 01.75.75v2.75h.5a.75.75 0 010 1.5z" }, null, -1);
5730
5792
  const _hoisted_3$C = [
5731
5793
  _hoisted_2$F
5732
5794
  ];
@@ -5736,27 +5798,25 @@ function render$L(_ctx, _cache) {
5736
5798
  }
5737
5799
 
5738
5800
  const _hoisted_1$I = {
5739
- viewBox: "0 0 18 18",
5801
+ viewBox: "0 0 104 104",
5740
5802
  fill: "currentColor",
5741
5803
  xmlns: "http://www.w3.org/2000/svg"
5742
5804
  };
5743
- const _hoisted_2$E = /*#__PURE__*/createElementVNode("path", { d: "M16 13h-4.172l-1.414 1.414A1.99 1.99 0 019 15a1.986 1.986 0 01-1.414-.586L6.172 13H2a1 1 0 00-1 1v3a1 1 0 001 1h14a1 1 0 001-1v-3c0-.553-.447-1-1-1zm-1.5 3.25a.752.752 0 01-.75-.75c0-.412.338-.75.75-.75s.75.338.75.75-.338.75-.75.75z" }, null, -1);
5744
- const _hoisted_3$B = /*#__PURE__*/createElementVNode("path", { d: "M4.293 8.706a1 1 0 011.414-1.414l2.292 2.296V2a1 1 0 012 0v7.588l2.293-2.294a1 1 0 111.414 1.414l-4 4A.997.997 0 019 13a.995.995 0 01-.707-.293l-4-4z" }, null, -1);
5745
- const _hoisted_4$9 = [
5746
- _hoisted_2$E,
5747
- _hoisted_3$B
5805
+ const _hoisted_2$E = /*#__PURE__*/createElementVNode("path", { d: "M87.202 25.452L65.569 3.819A13.01 13.01 0 0056.367 0H26c-7.18 0-13 5.82-13 13l.001 78c0 7.18 5.82 13 13 13H78c7.18 0 13-5.82 13-13V34.633c0-3.453-1.36-6.744-3.798-9.181zM58.5 6.922c.91.319 1.76.782 2.462 1.483l21.633 21.633c.707.695 1.174 1.548 1.478 2.462H61.75a3.26 3.26 0 01-3.25-3.25V6.922zM84.5 91c0 3.583-2.917 6.5-6.5 6.5H26a6.509 6.509 0 01-6.5-6.5V13c0-3.583 2.917-6.5 6.5-6.5h26v22.75c0 5.383 4.367 9.75 9.75 9.75H84.5v52zM52 79.625a4.876 4.876 0 00-4.875 4.875 4.875 4.875 0 109.75 0A4.87 4.87 0 0052 79.625zm-.183-4.875c1.97 0 3.433-1.463 3.433-3.25V48.75A3.26 3.26 0 0052 45.5a3.26 3.26 0 00-3.25 3.25V71.5c0 1.787 1.442 3.25 3.067 3.25z" }, null, -1);
5806
+ const _hoisted_3$B = [
5807
+ _hoisted_2$E
5748
5808
  ];
5749
5809
 
5750
5810
  function render$K(_ctx, _cache) {
5751
- return (openBlock(), createElementBlock("svg", _hoisted_1$I, _hoisted_4$9))
5811
+ return (openBlock(), createElementBlock("svg", _hoisted_1$I, _hoisted_3$B))
5752
5812
  }
5753
5813
 
5754
5814
  const _hoisted_1$H = {
5815
+ viewBox: "0 0 118 104",
5755
5816
  fill: "currentColor",
5756
- xmlns: "http://www.w3.org/2000/svg",
5757
- viewBox: "0 0 576 512"
5817
+ xmlns: "http://www.w3.org/2000/svg"
5758
5818
  };
5759
- const _hoisted_2$D = /*#__PURE__*/createElementVNode("path", { d: "M528 32H48C21.49 32 0 53.49 0 80v16h576V80c0-26.51-21.5-48-48-48zM0 432c0 26.5 21.49 48 48 48h480c26.51 0 48-21.49 48-48V128H0v304zm368-240h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h128c8.836 0 16 7.164 16 16s-7.2 16-16 16H368c-8.836 0-16-7.164-16-16s7.2-16 16-16zM176 192c35.35 0 64 28.66 64 64s-28.65 64-64 64-64-28.66-64-64 28.7-64 64-64zm-64 160h128c26.51 0 48 21.49 48 48 0 8.836-7.164 16-16 16H80c-8.84 0-16-7.2-16-16 0-26.5 21.49-48 48-48z" }, null, -1);
5819
+ const _hoisted_2$D = /*#__PURE__*/createElementVNode("path", { d: "M3.82 104a3.255 3.255 0 01-3.25-3.25 3.255 3.255 0 013.25-3.25h3.25v-9.08c0-6.418 2.115-12.837 6.015-17.753L27.362 52 13.086 33.333a29.22 29.22 0 01-6.015-17.76V6.5H3.82a3.25 3.25 0 110-6.5h71.5a3.255 3.255 0 013.25 3.25 3.254 3.254 0 01-3.25 3.25h-3.25v9.074c0 6.424-2.112 12.66-6.012 17.759L51.778 52l4.814 6.277c-1.178 2.234-2.092 4.61-2.783 7.089L45.116 53.97c-.894-1.34-.894-2.782 0-3.94l15.6-20.638c3.209-3.96 4.854-8.815 4.854-13.818V6.5h-52v9.074c0 5.003 1.644 9.857 4.678 13.818L34.025 50.03c.894 1.157.894 2.6 0 3.94L18.248 74.608A22.708 22.708 0 0013.57 88.42v9.08h47.166a36.793 36.793 0 007.028 6.5H3.82zm50.09-19.5a35.463 35.463 0 002.56 6.5H23.32a3.262 3.262 0 01-2.89-1.767c-.557-1.26-.461-2.377.246-3.372l16.07-22.75c1.22-1.463 3.25-1.808 4.713-.934 1.463 1.218 1.808 3.25.752 4.712L29.638 84.5H53.91zM37.032 40.848l-13-16.25c-.772-.792-.934-2.132-.386-3.25A3.215 3.215 0 0126.57 19.5h26c1.26 0 2.397.717 2.925 1.848.549 1.118.386 2.458-.386 3.25l-13 16.25c-.609.955-1.543 1.402-2.539 1.402-.995 0-1.93-.447-2.539-1.402zm2.54-7.048l6.235-7.8H33.334l6.236 7.8zm48.567 24.7c1.97 0 3.25 1.462 3.25 3.25v9.75h6.682a3.26 3.26 0 013.25 3.25A3.26 3.26 0 0198.07 78h-9.932c-1.605 0-3.25-1.463-3.25-3.25v-13c0-1.788 1.645-3.25 3.25-3.25zM59.07 74.75c0-16.148 13.102-29.25 29.25-29.25 16.149 0 29.25 13.102 29.25 29.25S104.469 104 88.32 104c-16.148 0-29.25-13.102-29.25-29.25zM88.32 97.5c12.574 0 22.75-10.177 22.75-22.75S100.894 52 88.32 52c-12.573 0-22.75 10.177-22.75 22.75S75.747 97.5 88.32 97.5z" }, null, -1);
5760
5820
  const _hoisted_3$A = [
5761
5821
  _hoisted_2$D
5762
5822
  ];
@@ -5766,11 +5826,11 @@ function render$J(_ctx, _cache) {
5766
5826
  }
5767
5827
 
5768
5828
  const _hoisted_1$G = {
5769
- viewBox: "0 0 16 16",
5829
+ viewBox: "0 0 56 56",
5770
5830
  fill: "currentColor",
5771
5831
  xmlns: "http://www.w3.org/2000/svg"
5772
5832
  };
5773
- const _hoisted_2$C = /*#__PURE__*/createElementVNode("path", { d: "M8 0a8 8 0 00-8 8 8 8 0 008 8 8 8 0 008-8 8 8 0 00-8-8zm0 4a1 1 0 110 2 1 1 0 010-2zm1.25 8h-2.5a.75.75 0 010-1.5h.5v-2H7A.75.75 0 017 7h1a.75.75 0 01.75.75v2.75h.5a.75.75 0 010 1.5z" }, null, -1);
5833
+ const _hoisted_2$C = /*#__PURE__*/createElementVNode("path", { d: "M49 7H7a7 7 0 00-7 7v28a7 7 0 007 7h42a7 7 0 007-7V14c0-3.866-3.14-7-7-7zM7 10.5h42c1.93 0 3.5 1.57 3.5 3.5v3.939L31.15 33.95a5.282 5.282 0 01-6.303 0L3.5 17.937V14c0-1.925 1.57-3.5 3.5-3.5zM52.5 42c0 1.93-1.57 3.5-3.5 3.5H7c-1.93 0-3.5-1.57-3.5-3.5V22.214L22.75 36.75a8.744 8.744 0 0010.5 0L52.5 22.214V42z" }, null, -1);
5774
5834
  const _hoisted_3$z = [
5775
5835
  _hoisted_2$C
5776
5836
  ];
@@ -5780,11 +5840,11 @@ function render$I(_ctx, _cache) {
5780
5840
  }
5781
5841
 
5782
5842
  const _hoisted_1$F = {
5783
- viewBox: "0 0 104 104",
5843
+ viewBox: "0 0 17 12",
5784
5844
  fill: "currentColor",
5785
5845
  xmlns: "http://www.w3.org/2000/svg"
5786
5846
  };
5787
- const _hoisted_2$B = /*#__PURE__*/createElementVNode("path", { d: "M87.202 25.452L65.569 3.819A13.01 13.01 0 0056.367 0H26c-7.18 0-13 5.82-13 13l.001 78c0 7.18 5.82 13 13 13H78c7.18 0 13-5.82 13-13V34.633c0-3.453-1.36-6.744-3.798-9.181zM58.5 6.922c.91.319 1.76.782 2.462 1.483l21.633 21.633c.707.695 1.174 1.548 1.478 2.462H61.75a3.26 3.26 0 01-3.25-3.25V6.922zM84.5 91c0 3.583-2.917 6.5-6.5 6.5H26a6.509 6.509 0 01-6.5-6.5V13c0-3.583 2.917-6.5 6.5-6.5h26v22.75c0 5.383 4.367 9.75 9.75 9.75H84.5v52zM52 79.625a4.876 4.876 0 00-4.875 4.875 4.875 4.875 0 109.75 0A4.87 4.87 0 0052 79.625zm-.183-4.875c1.97 0 3.433-1.463 3.433-3.25V48.75A3.26 3.26 0 0052 45.5a3.26 3.26 0 00-3.25 3.25V71.5c0 1.787 1.442 3.25 3.067 3.25z" }, null, -1);
5847
+ const _hoisted_2$B = /*#__PURE__*/createElementVNode("path", { d: "M15.847.621c.359.33.359.865 0 1.164l-9.281 9.281c-.299.359-.833.359-1.164 0L.622 6.285c-.33-.3-.33-.833 0-1.164a.848.848 0 011.193 0L6 9.308 14.684.621c.33-.328.864-.328 1.163 0z" }, null, -1);
5788
5848
  const _hoisted_3$y = [
5789
5849
  _hoisted_2$B
5790
5850
  ];
@@ -5794,11 +5854,11 @@ function render$H(_ctx, _cache) {
5794
5854
  }
5795
5855
 
5796
5856
  const _hoisted_1$E = {
5797
- viewBox: "0 0 118 104",
5857
+ viewBox: "0 0 56 56",
5798
5858
  fill: "currentColor",
5799
5859
  xmlns: "http://www.w3.org/2000/svg"
5800
5860
  };
5801
- const _hoisted_2$A = /*#__PURE__*/createElementVNode("path", { d: "M3.82 104a3.255 3.255 0 01-3.25-3.25 3.255 3.255 0 013.25-3.25h3.25v-9.08c0-6.418 2.115-12.837 6.015-17.753L27.362 52 13.086 33.333a29.22 29.22 0 01-6.015-17.76V6.5H3.82a3.25 3.25 0 110-6.5h71.5a3.255 3.255 0 013.25 3.25 3.254 3.254 0 01-3.25 3.25h-3.25v9.074c0 6.424-2.112 12.66-6.012 17.759L51.778 52l4.814 6.277c-1.178 2.234-2.092 4.61-2.783 7.089L45.116 53.97c-.894-1.34-.894-2.782 0-3.94l15.6-20.638c3.209-3.96 4.854-8.815 4.854-13.818V6.5h-52v9.074c0 5.003 1.644 9.857 4.678 13.818L34.025 50.03c.894 1.157.894 2.6 0 3.94L18.248 74.608A22.708 22.708 0 0013.57 88.42v9.08h47.166a36.793 36.793 0 007.028 6.5H3.82zm50.09-19.5a35.463 35.463 0 002.56 6.5H23.32a3.262 3.262 0 01-2.89-1.767c-.557-1.26-.461-2.377.246-3.372l16.07-22.75c1.22-1.463 3.25-1.808 4.713-.934 1.463 1.218 1.808 3.25.752 4.712L29.638 84.5H53.91zM37.032 40.848l-13-16.25c-.772-.792-.934-2.132-.386-3.25A3.215 3.215 0 0126.57 19.5h26c1.26 0 2.397.717 2.925 1.848.549 1.118.386 2.458-.386 3.25l-13 16.25c-.609.955-1.543 1.402-2.539 1.402-.995 0-1.93-.447-2.539-1.402zm2.54-7.048l6.235-7.8H33.334l6.236 7.8zm48.567 24.7c1.97 0 3.25 1.462 3.25 3.25v9.75h6.682a3.26 3.26 0 013.25 3.25A3.26 3.26 0 0198.07 78h-9.932c-1.605 0-3.25-1.463-3.25-3.25v-13c0-1.788 1.645-3.25 3.25-3.25zM59.07 74.75c0-16.148 13.102-29.25 29.25-29.25 16.149 0 29.25 13.102 29.25 29.25S104.469 104 88.32 104c-16.148 0-29.25-13.102-29.25-29.25zM88.32 97.5c12.574 0 22.75-10.177 22.75-22.75S100.894 52 88.32 52c-12.573 0-22.75 10.177-22.75 22.75S75.747 97.5 88.32 97.5z" }, null, -1);
5861
+ const _hoisted_2$A = /*#__PURE__*/createElementVNode("path", { d: "M52.036 39.526c-.35.382-.82.568-1.29.568-.426 0-.852-.154-1.188-.465l-21.563-19.9L6.439 39.536c-.711.657-1.82.616-2.473-.099a1.748 1.748 0 01.097-2.47l22.75-21a1.745 1.745 0 012.376 0l22.75 21c.7.754.754 1.848.098 2.559z" }, null, -1);
5802
5862
  const _hoisted_3$x = [
5803
5863
  _hoisted_2$A
5804
5864
  ];
@@ -5812,7 +5872,7 @@ const _hoisted_1$D = {
5812
5872
  fill: "currentColor",
5813
5873
  xmlns: "http://www.w3.org/2000/svg"
5814
5874
  };
5815
- const _hoisted_2$z = /*#__PURE__*/createElementVNode("path", { d: "M49 7H7a7 7 0 00-7 7v28a7 7 0 007 7h42a7 7 0 007-7V14c0-3.866-3.14-7-7-7zM7 10.5h42c1.93 0 3.5 1.57 3.5 3.5v3.939L31.15 33.95a5.282 5.282 0 01-6.303 0L3.5 17.937V14c0-1.925 1.57-3.5 3.5-3.5zM52.5 42c0 1.93-1.57 3.5-3.5 3.5H7c-1.93 0-3.5-1.57-3.5-3.5V22.214L22.75 36.75a8.744 8.744 0 0010.5 0L52.5 22.214V42z" }, null, -1);
5875
+ const _hoisted_2$z = /*#__PURE__*/createElementVNode("path", { d: "M3.966 16.657c.343-.372.813-.656 1.285-.656.425 0 .85.154 1.188.465l21.557 19.808 21.558-19.808a1.745 1.745 0 012.473.099c.656.71.612 1.814-.097 2.47l-22.75 21a1.745 1.745 0 01-2.376 0l-22.75-21c-.7-.562-.745-1.667-.088-2.378z" }, null, -1);
5816
5876
  const _hoisted_3$w = [
5817
5877
  _hoisted_2$z
5818
5878
  ];
@@ -5822,11 +5882,11 @@ function render$F(_ctx, _cache) {
5822
5882
  }
5823
5883
 
5824
5884
  const _hoisted_1$C = {
5825
- viewBox: "0 0 17 12",
5885
+ viewBox: "0 0 56 56",
5826
5886
  fill: "currentColor",
5827
5887
  xmlns: "http://www.w3.org/2000/svg"
5828
5888
  };
5829
- const _hoisted_2$y = /*#__PURE__*/createElementVNode("path", { d: "M15.847.621c.359.33.359.865 0 1.164l-9.281 9.281c-.299.359-.833.359-1.164 0L.622 6.285c-.33-.3-.33-.833 0-1.164a.848.848 0 011.193 0L6 9.308 14.684.621c.33-.328.864-.328 1.163 0z" }, null, -1);
5889
+ const _hoisted_2$y = /*#__PURE__*/createElementVNode("path", { d: "M18.645 52.04a1.732 1.732 0 01-.564-1.285c0-.425.154-.85.465-1.187L38.354 28.01 18.546 6.438a1.746 1.746 0 01.099-2.473 1.747 1.747 0 012.47.097l21 22.75a1.745 1.745 0 010 2.376l-21 22.75c-.658.704-1.759.759-2.47.103z" }, null, -1);
5830
5890
  const _hoisted_3$v = [
5831
5891
  _hoisted_2$y
5832
5892
  ];
@@ -5840,7 +5900,7 @@ const _hoisted_1$B = {
5840
5900
  fill: "currentColor",
5841
5901
  xmlns: "http://www.w3.org/2000/svg"
5842
5902
  };
5843
- const _hoisted_2$x = /*#__PURE__*/createElementVNode("path", { d: "M52.036 39.526c-.35.382-.82.568-1.29.568-.426 0-.852-.154-1.188-.465l-21.563-19.9L6.439 39.536c-.711.657-1.82.616-2.473-.099a1.748 1.748 0 01.097-2.47l22.75-21a1.745 1.745 0 012.376 0l22.75 21c.7.754.754 1.848.098 2.559z" }, null, -1);
5903
+ const _hoisted_2$x = /*#__PURE__*/createElementVNode("path", { d: "M39.681 3.965c.376.343.564.813.564 1.285 0 .426-.154.851-.465 1.188L19.881 28l19.808 21.558c.656.71.615 1.82-.1 2.473a1.748 1.748 0 01-2.47-.098l-21-22.75a1.745 1.745 0 010-2.375l21-22.75c.746-.705 1.851-.75 2.562-.093z" }, null, -1);
5844
5904
  const _hoisted_3$u = [
5845
5905
  _hoisted_2$x
5846
5906
  ];
@@ -5850,11 +5910,11 @@ function render$D(_ctx, _cache) {
5850
5910
  }
5851
5911
 
5852
5912
  const _hoisted_1$A = {
5853
- viewBox: "0 0 56 56",
5854
5913
  fill: "currentColor",
5855
- xmlns: "http://www.w3.org/2000/svg"
5914
+ xmlns: "http://www.w3.org/2000/svg",
5915
+ viewBox: "0 0 512 512"
5856
5916
  };
5857
- const _hoisted_2$w = /*#__PURE__*/createElementVNode("path", { d: "M3.966 16.657c.343-.372.813-.656 1.285-.656.425 0 .85.154 1.188.465l21.557 19.808 21.558-19.808a1.745 1.745 0 012.473.099c.656.71.612 1.814-.097 2.47l-22.75 21a1.745 1.745 0 01-2.376 0l-22.75-21c-.7-.562-.745-1.667-.088-2.378z" }, null, -1);
5917
+ const _hoisted_2$w = /*#__PURE__*/createElementVNode("path", { d: "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm-24 152c0-13.2 10.8-24 24-24s24 10.75 24 24v128c0 13.25-10.75 24-24 24s-24-10.7-24-24V152zm24 248c-17.36 0-31.44-14.08-31.44-31.44s14.07-31.44 31.44-31.44 31.44 14.08 31.44 31.44C287.4 385.9 273.4 400 256 400z" }, null, -1);
5858
5918
  const _hoisted_3$t = [
5859
5919
  _hoisted_2$w
5860
5920
  ];
@@ -5864,11 +5924,11 @@ function render$C(_ctx, _cache) {
5864
5924
  }
5865
5925
 
5866
5926
  const _hoisted_1$z = {
5867
- viewBox: "0 0 56 56",
5927
+ viewBox: "0 0 33 33",
5868
5928
  fill: "currentColor",
5869
5929
  xmlns: "http://www.w3.org/2000/svg"
5870
5930
  };
5871
- const _hoisted_2$v = /*#__PURE__*/createElementVNode("path", { d: "M18.645 52.04a1.732 1.732 0 01-.564-1.285c0-.425.154-.85.465-1.187L38.354 28.01 18.546 6.438a1.746 1.746 0 01.099-2.473 1.747 1.747 0 012.47.097l21 22.75a1.745 1.745 0 010 2.376l-21 22.75c-.658.704-1.759.759-2.47.103z" }, null, -1);
5931
+ const _hoisted_2$v = /*#__PURE__*/createElementVNode("path", { d: "M5.965 5.39L2.76 3.832c-.395-.155-.877-.044-1.071.357a.788.788 0 00.357 1.07L5.25 6.817a.798.798 0 00.358.088c.37 0 .695-.257.783-.62a.796.796 0 00-.427-.895zm-.356 12.689a.79.79 0 00-.357.087l-3.205 1.558a.796.796 0 00-.363 1.07c.2.356.682.557 1.077.363L5.966 19.6c.332-.17.507-.545.426-.857-.087-.364-.412-.664-.783-.664zM26.444 6.905a.79.79 0 00.356-.088l3.206-1.557a.789.789 0 00.357-1.07c-.194-.356-.677-.558-1.071-.358L26.086 5.39a.803.803 0 00-.425.895c.086.363.412.62.783.62zM4.808 12.469c0-.4-.357-.8-.801-.8H.8c-.444 0-.801.356-.801.755 0 .4.357.847.801.847h3.206c.444 0 .8-.31.8-.802zm26.444-.8h-3.206c-.444 0-.801.356-.801.755 0 .4.357.757.801.757h3.206c.444 0 .8-.357.8-.757s-.355-.756-.8-.756zm-1.248 8.142L26.8 18.255c-.394-.155-.876-.038-1.077.357a.805.805 0 00.363 1.076l3.206 1.558a.805.805 0 001.076-.363.793.793 0 00-.363-1.07zM16.001 3.701c-4.848.014-8.79 4-8.79 8.884 0 2.149.776 4.223 2.182 5.84.668.766 1.795 2.483 2.19 3.806a.792.792 0 00.883.687.809.809 0 00.707-.884l-.03-.166c-.517-1.751-1.803-3.648-2.541-4.496a7.302 7.302 0 01-1.787-4.787c0-4.07 3.157-7.267 7.186-7.277h.025c1.91 0 3.709.744 5.069 2.1a7.248 7.248 0 012.143 5.177 7.3 7.3 0 01-1.786 4.788c-.739.849-2.026 2.745-2.542 4.496l-.031.168c-.053.438.247.88.684.935.04.005.077.008.115.008.39 0 .719-.256.769-.657.418-1.415 1.546-3.131 2.214-3.898a8.912 8.912 0 002.18-5.84c0-2.39-.93-4.633-2.615-6.316C20.559 4.605 18.31 3.641 16 3.701zm3.186 20.788H12.82a.802.802 0 00-.801.803l.004 1.119c0 .314.094.624.268.885l.856 1.287c.261.393.862.715 1.335.715h3.09c.472 0 1.073-.322 1.334-.715l.856-1.286c.148-.223.268-.62.269-.886l-.002-1.119c-.042-.397-.358-.803-.843-.803zm-.762 1.968l-.806 1.225c-.024.022-.085.054-.044.056l-3.02.006c-.02-.005-.056-.014-.07-.014-.007-.012-.008 0 0 0l-.857-1.276v-.32h4.804v.26c-.007.023-.017.063-.007.063zm-1.597-18.75a.801.801 0 00-.802-.8c-3.092 0-5.609 2.515-5.609 5.563a.8.8 0 101.603 0c0-2.208 1.797-3.961 4.006-3.961.441 0 .802-.359.802-.801z" }, null, -1);
5872
5932
  const _hoisted_3$s = [
5873
5933
  _hoisted_2$v
5874
5934
  ];
@@ -5878,11 +5938,11 @@ function render$B(_ctx, _cache) {
5878
5938
  }
5879
5939
 
5880
5940
  const _hoisted_1$y = {
5881
- viewBox: "0 0 56 56",
5941
+ viewBox: "0 0 32 33",
5882
5942
  fill: "currentColor",
5883
5943
  xmlns: "http://www.w3.org/2000/svg"
5884
5944
  };
5885
- const _hoisted_2$u = /*#__PURE__*/createElementVNode("path", { d: "M39.681 3.965c.376.343.564.813.564 1.285 0 .426-.154.851-.465 1.188L19.881 28l19.808 21.558c.656.71.615 1.82-.1 2.473a1.748 1.748 0 01-2.47-.098l-21-22.75a1.745 1.745 0 010-2.375l21-22.75c.746-.705 1.851-.75 2.562-.093z" }, null, -1);
5945
+ const _hoisted_2$u = /*#__PURE__*/createElementVNode("path", { d: "M28.01 10.385c.445.28.79.795.79 1.355 0 .86-.7 1.56-1.56 1.56H4.758a1.56 1.56 0 01-.768-2.915l11.615-6.58c.245-.14.5-.14.79 0l11.615 6.58zM4.917 11.7h22.168L16 5.42 4.917 11.7zM6.4 21.3v-6.4H8v6.4h4v-6.4h1.6v6.4h4.8v-6.4H20v6.4h4v-6.4h1.6v6.4c.44 0 .8.36.8.8 0 .44-.36.8-.8.8H6.4a.801.801 0 010-1.6zm-2 4c0-.44.358-.8.8-.8h21.6c.44 0 .8.36.8.8 0 .44-.36.8-.8.8H5.2c-.442 0-.8-.36-.8-.8zm-1.2 3.2c0-.44.358-.8.8-.8h24c.44 0 .8.36.8.8 0 .44-.36.8-.8.8H4c-.442 0-.8-.36-.8-.8z" }, null, -1);
5886
5946
  const _hoisted_3$r = [
5887
5947
  _hoisted_2$u
5888
5948
  ];
@@ -5892,11 +5952,11 @@ function render$A(_ctx, _cache) {
5892
5952
  }
5893
5953
 
5894
5954
  const _hoisted_1$x = {
5955
+ viewBox: "0 0 32 33",
5895
5956
  fill: "currentColor",
5896
- xmlns: "http://www.w3.org/2000/svg",
5897
- viewBox: "0 0 512 512"
5957
+ xmlns: "http://www.w3.org/2000/svg"
5898
5958
  };
5899
- const _hoisted_2$t = /*#__PURE__*/createElementVNode("path", { d: "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm-24 152c0-13.2 10.8-24 24-24s24 10.75 24 24v128c0 13.25-10.75 24-24 24s-24-10.7-24-24V152zm24 248c-17.36 0-31.44-14.08-31.44-31.44s14.07-31.44 31.44-31.44 31.44 14.08 31.44 31.44C287.4 385.9 273.4 400 256 400z" }, null, -1);
5959
+ const _hoisted_2$t = /*#__PURE__*/createElementVNode("path", { d: "M11.615 8.339c.065.06.145.12.23.179-.77.03-1.52.094-2.245.192V7.7c0-.763.43-1.386.97-1.852.545-.469 1.285-.854 2.135-1.162 1.7-.62 3.995-.986 6.495-.986 2.455 0 4.795.367 6.495.986.85.308 1.59.693 2.135 1.162.54.466.97 1.09.97 1.852v10.895c0 .77-.41 1.41-.955 1.9-.59.49-1.29.895-2.14 1.22-.515.195-1.09.37-1.705.515v-1.65c.41-.11.79-.23 1.14-.36.74-.285 1.285-.6 1.635-.915.345-.31.425-.555.425-.71v-3.31c-.435.28-.94.525-1.495.735-.515.195-1.09.37-1.705.515v-1.65c.41-.11.79-.23 1.14-.36.74-.285 1.285-.605 1.635-.915.345-.355.425-.555.425-.71v-2.895c-.44.275-.95.51-1.505.71-.865.315-1.88.565-3 .73-.09-.14-.185-.185-.28-.27a7.484 7.484 0 00-1.69-1.125c1.735-.115 3.27-.42 4.38-.84.79-.27 1.335-.574 1.68-.871.35-.3.415-.518.415-.639s-.065-.34-.415-.639c-.345-.297-.89-.601-1.68-.872-1.44-.54-3.545-.889-5.905-.889-2.36 0-4.465.35-5.95.889-.745.271-1.29.575-1.635.872-.35.3-.46.518-.46.639s.11.34.46.639zM3.2 14.1c0-.765.428-1.385.97-1.895.545-.425 1.287-.81 2.134-1.12 1.701-.62 3.996-.985 6.496-.985 2.455 0 4.795.365 6.495.985.85.31 1.59.695 2.135 1.12.54.51.97 1.13.97 1.895v10.895c0 .77-.41 1.41-.955 1.9-.59.49-1.29.895-2.14 1.22-1.7.65-4.005.99-6.505.99-2.545 0-4.802-.34-6.507-.99-.85-.325-1.592-.73-2.137-1.22-.544-.49-.956-1.13-.956-1.9V14.1zm2.013.64c.346.295.893.6 1.638.87 1.484.54 3.589.89 5.949.89s4.465-.35 5.905-.89c.79-.27 1.335-.575 1.68-.87.35-.3.415-.52.415-.64s-.065-.34-.415-.64c-.345-.295-.89-.6-1.68-.87-1.44-.585-3.545-.89-5.905-.89-2.36 0-4.465.305-5.949.89-.745.27-1.292.575-1.638.87-.348.3-.413.52-.413.64s.065.34.413.64zm14.082 2.375c-1.7.62-4.04.985-6.495.985-2.5 0-4.795-.365-6.496-.985a8.184 8.184 0 01-1.504-.71V19.3c0 .155.08.355.427.71.346.31.893.63 1.636.915 1.482.56 3.577.925 5.937.925 2.36 0 4.455-.365 5.94-.925.74-.285 1.285-.605 1.635-.915.345-.355.425-.555.425-.71v-2.895c-.44.27-.95.51-1.505.71zm-14.068 8.59c.346.315.893.63 1.636.915 1.482.56 3.577.885 5.937.885 2.36 0 4.455-.325 5.94-.885.74-.285 1.285-.6 1.635-.915.345-.31.425-.555.425-.71v-3.31c-.435.28-.94.525-1.495.735-1.7.65-4.005 1.03-6.505 1.03-2.545 0-4.802-.38-6.507-1.03a10.41 10.41 0 01-1.538-.735v3.31c0 .155.126.4.472.71z" }, null, -1);
5900
5960
  const _hoisted_3$q = [
5901
5961
  _hoisted_2$t
5902
5962
  ];
@@ -5906,11 +5966,11 @@ function render$z(_ctx, _cache) {
5906
5966
  }
5907
5967
 
5908
5968
  const _hoisted_1$w = {
5909
- viewBox: "0 0 33 33",
5969
+ viewBox: "0 0 36 21",
5910
5970
  fill: "currentColor",
5911
5971
  xmlns: "http://www.w3.org/2000/svg"
5912
5972
  };
5913
- const _hoisted_2$s = /*#__PURE__*/createElementVNode("path", { d: "M5.965 5.39L2.76 3.832c-.395-.155-.877-.044-1.071.357a.788.788 0 00.357 1.07L5.25 6.817a.798.798 0 00.358.088c.37 0 .695-.257.783-.62a.796.796 0 00-.427-.895zm-.356 12.689a.79.79 0 00-.357.087l-3.205 1.558a.796.796 0 00-.363 1.07c.2.356.682.557 1.077.363L5.966 19.6c.332-.17.507-.545.426-.857-.087-.364-.412-.664-.783-.664zM26.444 6.905a.79.79 0 00.356-.088l3.206-1.557a.789.789 0 00.357-1.07c-.194-.356-.677-.558-1.071-.358L26.086 5.39a.803.803 0 00-.425.895c.086.363.412.62.783.62zM4.808 12.469c0-.4-.357-.8-.801-.8H.8c-.444 0-.801.356-.801.755 0 .4.357.847.801.847h3.206c.444 0 .8-.31.8-.802zm26.444-.8h-3.206c-.444 0-.801.356-.801.755 0 .4.357.757.801.757h3.206c.444 0 .8-.357.8-.757s-.355-.756-.8-.756zm-1.248 8.142L26.8 18.255c-.394-.155-.876-.038-1.077.357a.805.805 0 00.363 1.076l3.206 1.558a.805.805 0 001.076-.363.793.793 0 00-.363-1.07zM16.001 3.701c-4.848.014-8.79 4-8.79 8.884 0 2.149.776 4.223 2.182 5.84.668.766 1.795 2.483 2.19 3.806a.792.792 0 00.883.687.809.809 0 00.707-.884l-.03-.166c-.517-1.751-1.803-3.648-2.541-4.496a7.302 7.302 0 01-1.787-4.787c0-4.07 3.157-7.267 7.186-7.277h.025c1.91 0 3.709.744 5.069 2.1a7.248 7.248 0 012.143 5.177 7.3 7.3 0 01-1.786 4.788c-.739.849-2.026 2.745-2.542 4.496l-.031.168c-.053.438.247.88.684.935.04.005.077.008.115.008.39 0 .719-.256.769-.657.418-1.415 1.546-3.131 2.214-3.898a8.912 8.912 0 002.18-5.84c0-2.39-.93-4.633-2.615-6.316C20.559 4.605 18.31 3.641 16 3.701zm3.186 20.788H12.82a.802.802 0 00-.801.803l.004 1.119c0 .314.094.624.268.885l.856 1.287c.261.393.862.715 1.335.715h3.09c.472 0 1.073-.322 1.334-.715l.856-1.286c.148-.223.268-.62.269-.886l-.002-1.119c-.042-.397-.358-.803-.843-.803zm-.762 1.968l-.806 1.225c-.024.022-.085.054-.044.056l-3.02.006c-.02-.005-.056-.014-.07-.014-.007-.012-.008 0 0 0l-.857-1.276v-.32h4.804v.26c-.007.023-.017.063-.007.063zm-1.597-18.75a.801.801 0 00-.802-.8c-3.092 0-5.609 2.515-5.609 5.563a.8.8 0 101.603 0c0-2.208 1.797-3.961 4.006-3.961.441 0 .802-.359.802-.801z" }, null, -1);
5973
+ const _hoisted_2$s = /*#__PURE__*/createElementVNode("path", { d: "M34.468 5.972l-13.901 14C19.79 20.66 18.893 21 17.997 21a3.488 3.488 0 01-2.476-1.025l-13.901-14a3.36 3.36 0 01-.857-3.81A3.516 3.516 0 013.996 0h27.902c1.415 0 2.693.851 3.235 2.16.543 1.31.341 2.817-.665 3.812z" }, null, -1);
5914
5974
  const _hoisted_3$p = [
5915
5975
  _hoisted_2$s
5916
5976
  ];
@@ -5920,11 +5980,11 @@ function render$y(_ctx, _cache) {
5920
5980
  }
5921
5981
 
5922
5982
  const _hoisted_1$v = {
5923
- viewBox: "0 0 32 33",
5924
- fill: "currentColor",
5925
- xmlns: "http://www.w3.org/2000/svg"
5983
+ xmlns: "http://www.w3.org/2000/svg",
5984
+ viewBox: "0 0 320 512",
5985
+ fill: "currentColor"
5926
5986
  };
5927
- const _hoisted_2$r = /*#__PURE__*/createElementVNode("path", { d: "M28.01 10.385c.445.28.79.795.79 1.355 0 .86-.7 1.56-1.56 1.56H4.758a1.56 1.56 0 01-.768-2.915l11.615-6.58c.245-.14.5-.14.79 0l11.615 6.58zM4.917 11.7h22.168L16 5.42 4.917 11.7zM6.4 21.3v-6.4H8v6.4h4v-6.4h1.6v6.4h4.8v-6.4H20v6.4h4v-6.4h1.6v6.4c.44 0 .8.36.8.8 0 .44-.36.8-.8.8H6.4a.801.801 0 010-1.6zm-2 4c0-.44.358-.8.8-.8h21.6c.44 0 .8.36.8.8 0 .44-.36.8-.8.8H5.2c-.442 0-.8-.36-.8-.8zm-1.2 3.2c0-.44.358-.8.8-.8h24c.44 0 .8.36.8.8 0 .44-.36.8-.8.8H4c-.442 0-.8-.36-.8-.8z" }, null, -1);
5987
+ const _hoisted_2$r = /*#__PURE__*/createElementVNode("path", { d: "M287.1 288H31.2c-28.36 0-42.73 34.5-22.62 54.63l127.1 128c12.5 12.5 32.86 12.5 45.36 0l127.1-128C330.7 322.5 316.3 288 287.1 288zM160 448L32.05 320h255.9L160 448zM32.05 224h255.9c28.36 0 42.73-34.5 22.62-54.62l-127.1-128c-12.5-12.5-32.86-12.5-45.36 0L9.304 169.4C-10.69 189.5 3.682 224 32.05 224zM160 63.97L287.1 192H31.2L160 63.97z" }, null, -1);
5928
5988
  const _hoisted_3$o = [
5929
5989
  _hoisted_2$r
5930
5990
  ];
@@ -5934,11 +5994,11 @@ function render$x(_ctx, _cache) {
5934
5994
  }
5935
5995
 
5936
5996
  const _hoisted_1$u = {
5937
- viewBox: "0 0 32 33",
5997
+ viewBox: "0 0 46 46",
5938
5998
  fill: "currentColor",
5939
5999
  xmlns: "http://www.w3.org/2000/svg"
5940
6000
  };
5941
- const _hoisted_2$q = /*#__PURE__*/createElementVNode("path", { d: "M11.615 8.339c.065.06.145.12.23.179-.77.03-1.52.094-2.245.192V7.7c0-.763.43-1.386.97-1.852.545-.469 1.285-.854 2.135-1.162 1.7-.62 3.995-.986 6.495-.986 2.455 0 4.795.367 6.495.986.85.308 1.59.693 2.135 1.162.54.466.97 1.09.97 1.852v10.895c0 .77-.41 1.41-.955 1.9-.59.49-1.29.895-2.14 1.22-.515.195-1.09.37-1.705.515v-1.65c.41-.11.79-.23 1.14-.36.74-.285 1.285-.6 1.635-.915.345-.31.425-.555.425-.71v-3.31c-.435.28-.94.525-1.495.735-.515.195-1.09.37-1.705.515v-1.65c.41-.11.79-.23 1.14-.36.74-.285 1.285-.605 1.635-.915.345-.355.425-.555.425-.71v-2.895c-.44.275-.95.51-1.505.71-.865.315-1.88.565-3 .73-.09-.14-.185-.185-.28-.27a7.484 7.484 0 00-1.69-1.125c1.735-.115 3.27-.42 4.38-.84.79-.27 1.335-.574 1.68-.871.35-.3.415-.518.415-.639s-.065-.34-.415-.639c-.345-.297-.89-.601-1.68-.872-1.44-.54-3.545-.889-5.905-.889-2.36 0-4.465.35-5.95.889-.745.271-1.29.575-1.635.872-.35.3-.46.518-.46.639s.11.34.46.639zM3.2 14.1c0-.765.428-1.385.97-1.895.545-.425 1.287-.81 2.134-1.12 1.701-.62 3.996-.985 6.496-.985 2.455 0 4.795.365 6.495.985.85.31 1.59.695 2.135 1.12.54.51.97 1.13.97 1.895v10.895c0 .77-.41 1.41-.955 1.9-.59.49-1.29.895-2.14 1.22-1.7.65-4.005.99-6.505.99-2.545 0-4.802-.34-6.507-.99-.85-.325-1.592-.73-2.137-1.22-.544-.49-.956-1.13-.956-1.9V14.1zm2.013.64c.346.295.893.6 1.638.87 1.484.54 3.589.89 5.949.89s4.465-.35 5.905-.89c.79-.27 1.335-.575 1.68-.87.35-.3.415-.52.415-.64s-.065-.34-.415-.64c-.345-.295-.89-.6-1.68-.87-1.44-.585-3.545-.89-5.905-.89-2.36 0-4.465.305-5.949.89-.745.27-1.292.575-1.638.87-.348.3-.413.52-.413.64s.065.34.413.64zm14.082 2.375c-1.7.62-4.04.985-6.495.985-2.5 0-4.795-.365-6.496-.985a8.184 8.184 0 01-1.504-.71V19.3c0 .155.08.355.427.71.346.31.893.63 1.636.915 1.482.56 3.577.925 5.937.925 2.36 0 4.455-.365 5.94-.925.74-.285 1.285-.605 1.635-.915.345-.355.425-.555.425-.71v-2.895c-.44.27-.95.51-1.505.71zm-14.068 8.59c.346.315.893.63 1.636.915 1.482.56 3.577.885 5.937.885 2.36 0 4.455-.325 5.94-.885.74-.285 1.285-.6 1.635-.915.345-.31.425-.555.425-.71v-3.31c-.435.28-.94.525-1.495.735-1.7.65-4.005 1.03-6.505 1.03-2.545 0-4.802-.38-6.507-1.03a10.41 10.41 0 01-1.538-.735v3.31c0 .155.126.4.472.71z" }, null, -1);
6001
+ const _hoisted_2$q = /*#__PURE__*/createElementVNode("path", { d: "M45.75 23c0 .962-.788 1.75-1.75 1.75H24.75V44a1.75 1.75 0 11-3.5 0V24.75H2c-.967 0-1.75-.782-1.75-1.749 0-.963.783-1.751 1.75-1.751h19.25V2c0-.967.783-1.749 1.75-1.749s1.75.782 1.75 1.749v19.25H44c.962 0 1.75.788 1.75 1.75z" }, null, -1);
5942
6002
  const _hoisted_3$n = [
5943
6003
  _hoisted_2$q
5944
6004
  ];
@@ -5948,11 +6008,11 @@ function render$w(_ctx, _cache) {
5948
6008
  }
5949
6009
 
5950
6010
  const _hoisted_1$t = {
5951
- viewBox: "0 0 36 21",
6011
+ viewBox: "0 0 26 27",
5952
6012
  fill: "currentColor",
5953
6013
  xmlns: "http://www.w3.org/2000/svg"
5954
6014
  };
5955
- const _hoisted_2$p = /*#__PURE__*/createElementVNode("path", { d: "M34.468 5.972l-13.901 14C19.79 20.66 18.893 21 17.997 21a3.488 3.488 0 01-2.476-1.025l-13.901-14a3.36 3.36 0 01-.857-3.81A3.516 3.516 0 013.996 0h27.902c1.415 0 2.693.851 3.235 2.16.543 1.31.341 2.817-.665 3.812z" }, null, -1);
6015
+ const _hoisted_2$p = /*#__PURE__*/createElementVNode("path", { d: "M13 13.5A6.4 6.4 0 1013 .7a6.4 6.4 0 000 12.8zm0-11.2c2.647 0 4.8 2.153 4.8 4.8 0 2.646-2.153 4.8-4.8 4.8a4.806 4.806 0 01-4.8-4.8c0-2.647 2.155-4.8 4.8-4.8zm2.535 13.6h-5.07A8.666 8.666 0 001.8 24.565c0 .957.776 1.733 1.733 1.733h18.935a1.73 1.73 0 001.732-1.733 8.666 8.666 0 00-8.665-8.665zm6.93 8.8H3.533a.134.134 0 01-.133-.135c0-3.895 3.17-7.065 7.065-7.065h5.065c3.9 0 7.07 3.17 7.07 7.065 0 .075-.06.135-.135.135z" }, null, -1);
5956
6016
  const _hoisted_3$m = [
5957
6017
  _hoisted_2$p
5958
6018
  ];
@@ -5962,11 +6022,15 @@ function render$v(_ctx, _cache) {
5962
6022
  }
5963
6023
 
5964
6024
  const _hoisted_1$s = {
5965
- xmlns: "http://www.w3.org/2000/svg",
5966
- viewBox: "0 0 320 512",
5967
- fill: "currentColor"
6025
+ viewBox: "0 0 44 44",
6026
+ fill: "currentColor",
6027
+ xmlns: "http://www.w3.org/2000/svg"
5968
6028
  };
5969
- const _hoisted_2$o = /*#__PURE__*/createElementVNode("path", { d: "M287.1 288H31.2c-28.36 0-42.73 34.5-22.62 54.63l127.1 128c12.5 12.5 32.86 12.5 45.36 0l127.1-128C330.7 322.5 316.3 288 287.1 288zM160 448L32.05 320h255.9L160 448zM32.05 224h255.9c28.36 0 42.73-34.5 22.62-54.62l-127.1-128c-12.5-12.5-32.86-12.5-45.36 0L9.304 169.4C-10.69 189.5 3.682 224 32.05 224zM160 63.97L287.1 192H31.2L160 63.97z" }, null, -1);
6029
+ const _hoisted_2$o = /*#__PURE__*/createElementVNode("path", {
6030
+ "fill-rule": "evenodd",
6031
+ "clip-rule": "evenodd",
6032
+ d: "M26.659 4.613C17.056 2.04 7.186 7.74 4.613 17.341 2.04 26.944 7.739 36.814 17.341 39.387l-1.035 3.863C4.569 40.106-2.395 28.042.749 16.306 3.894 4.57 15.957-2.395 27.694.75c11.736 3.144 18.7 15.208 15.556 26.944l-3.864-1.035c2.573-9.603-3.125-19.473-12.728-22.046z"
6033
+ }, null, -1);
5970
6034
  const _hoisted_3$l = [
5971
6035
  _hoisted_2$o
5972
6036
  ];
@@ -5976,11 +6040,11 @@ function render$u(_ctx, _cache) {
5976
6040
  }
5977
6041
 
5978
6042
  const _hoisted_1$r = {
5979
- viewBox: "0 0 46 46",
6043
+ viewBox: "0 0 26 27",
5980
6044
  fill: "currentColor",
5981
6045
  xmlns: "http://www.w3.org/2000/svg"
5982
6046
  };
5983
- const _hoisted_2$n = /*#__PURE__*/createElementVNode("path", { d: "M45.75 23c0 .962-.788 1.75-1.75 1.75H24.75V44a1.75 1.75 0 11-3.5 0V24.75H2c-.967 0-1.75-.782-1.75-1.749 0-.963.783-1.751 1.75-1.751h19.25V2c0-.967.783-1.749 1.75-1.749s1.75.782 1.75 1.749v19.25H44c.962 0 1.75.788 1.75 1.75z" }, null, -1);
6047
+ const _hoisted_2$n = /*#__PURE__*/createElementVNode("path", { d: "M15.045 2.129c-.055.053-.115.107-.17.163A11.231 11.231 0 0012.8 2.1C6.615 2.1 1.6 7.115 1.6 13.3s5.015 11.2 11.2 11.2S24 19.485 24 13.3c0-.71-.065-1.405-.19-2.075a4.99 4.99 0 00.16-.17l1.14-1.27c.32 1.115.49 2.295.49 3.515 0 7.07-5.73 12.8-12.8 12.8S0 20.37 0 13.3 5.73.5 12.8.5c1.22 0 2.355.17 3.515.488l-1.27 1.141zm-1.27 3.631l.21 1.25c-.385-.07-.78-.155-1.23-.155-3.49 0-6.4 2.91-6.4 6.4 0 3.58 2.91 6.445 6.4 6.445a6.419 6.419 0 006.445-6.445c0-.36-.04-.8-.11-1.14l1.25.21c.135.02.27.035.405.045.035.305.055.615.055.885 0 4.465-3.58 8.045-8 8.045s-8-3.58-8-8.045c0-4.375 3.58-8 8-8 .315 0 .625.063.93.099.01.135.025.271.045.406zm3.3 4.395l-3.71 3.71a.794.794 0 01-1.13 0 .794.794 0 010-1.13l3.71-3.71-.59-3.52a2.396 2.396 0 01.775-2.19l2.425-2.196c.7-.583 1.74-.288 1.99.552l.895 2.986 2.99.898c.84.25 1.135 1.29.55 1.945l-2.195 2.47c-.55.62-1.375.91-2.19.775l-3.52-.59zm1.39-1.39l2.395.4c.27.045.545-.05.73-.255l1.78-2.005-2.34-.7-2.565 2.56zm1.43-3.693l-.7-2.341-2.005 1.78a.8.8 0 00-.255.729l.4 2.395 2.56-2.563z" }, null, -1);
5984
6048
  const _hoisted_3$k = [
5985
6049
  _hoisted_2$n
5986
6050
  ];
@@ -5990,11 +6054,11 @@ function render$t(_ctx, _cache) {
5990
6054
  }
5991
6055
 
5992
6056
  const _hoisted_1$q = {
5993
- viewBox: "0 0 26 27",
6057
+ viewBox: "0 0 24 24",
5994
6058
  fill: "currentColor",
5995
6059
  xmlns: "http://www.w3.org/2000/svg"
5996
6060
  };
5997
- const _hoisted_2$m = /*#__PURE__*/createElementVNode("path", { d: "M13 13.5A6.4 6.4 0 1013 .7a6.4 6.4 0 000 12.8zm0-11.2c2.647 0 4.8 2.153 4.8 4.8 0 2.646-2.153 4.8-4.8 4.8a4.806 4.806 0 01-4.8-4.8c0-2.647 2.155-4.8 4.8-4.8zm2.535 13.6h-5.07A8.666 8.666 0 001.8 24.565c0 .957.776 1.733 1.733 1.733h18.935a1.73 1.73 0 001.732-1.733 8.666 8.666 0 00-8.665-8.665zm6.93 8.8H3.533a.134.134 0 01-.133-.135c0-3.895 3.17-7.065 7.065-7.065h5.065c3.9 0 7.07 3.17 7.07 7.065 0 .075-.06.135-.135.135z" }, null, -1);
6061
+ const _hoisted_2$m = /*#__PURE__*/createElementVNode("path", { d: "M0 12C0 5.372 5.372 0 12 0s12 5.372 12 12-5.372 12-12 12S0 18.628 0 12zm17.428-2.072a1.315 1.315 0 000-1.856 1.316 1.316 0 00-1.856 0L10.5 13.144l-2.072-2.072a1.315 1.315 0 00-1.856 0c-.511.51-.511 1.345 0 1.856l3 3c.51.511 1.345.511 1.856 0l6-6z" }, null, -1);
5998
6062
  const _hoisted_3$j = [
5999
6063
  _hoisted_2$m
6000
6064
  ];
@@ -6004,15 +6068,11 @@ function render$s(_ctx, _cache) {
6004
6068
  }
6005
6069
 
6006
6070
  const _hoisted_1$p = {
6007
- viewBox: "0 0 44 44",
6071
+ viewBox: "0 0 24 24",
6008
6072
  fill: "currentColor",
6009
6073
  xmlns: "http://www.w3.org/2000/svg"
6010
6074
  };
6011
- const _hoisted_2$l = /*#__PURE__*/createElementVNode("path", {
6012
- "fill-rule": "evenodd",
6013
- "clip-rule": "evenodd",
6014
- d: "M26.659 4.613C17.056 2.04 7.186 7.74 4.613 17.341 2.04 26.944 7.739 36.814 17.341 39.387l-1.035 3.863C4.569 40.106-2.395 28.042.749 16.306 3.894 4.57 15.957-2.395 27.694.75c11.736 3.144 18.7 15.208 15.556 26.944l-3.864-1.035c2.573-9.603-3.125-19.473-12.728-22.046z"
6015
- }, null, -1);
6075
+ const _hoisted_2$l = /*#__PURE__*/createElementVNode("path", { d: "M0 12C0 5.372 5.372 0 12 0s12 5.372 12 12-5.372 12-12 12S0 18.628 0 12zm8.203-2.245l2.208 2.203-2.208 2.245c-.436.44-.436 1.153 0 1.552.44.478 1.153.478 1.552 0l2.203-2.166 2.245 2.166c.44.478 1.153.478 1.552 0 .478-.399.478-1.111 0-1.552l-2.166-2.245 2.166-2.203c.478-.399.478-1.111 0-1.552-.399-.436-1.111-.436-1.552 0l-2.245 2.208-2.203-2.208c-.399-.436-1.111-.436-1.552 0-.436.44-.436 1.153 0 1.552z" }, null, -1);
6016
6076
  const _hoisted_3$i = [
6017
6077
  _hoisted_2$l
6018
6078
  ];
@@ -6022,11 +6082,11 @@ function render$r(_ctx, _cache) {
6022
6082
  }
6023
6083
 
6024
6084
  const _hoisted_1$o = {
6025
- viewBox: "0 0 26 27",
6085
+ viewBox: "0 0 20 20",
6026
6086
  fill: "currentColor",
6027
6087
  xmlns: "http://www.w3.org/2000/svg"
6028
6088
  };
6029
- const _hoisted_2$k = /*#__PURE__*/createElementVNode("path", { d: "M15.045 2.129c-.055.053-.115.107-.17.163A11.231 11.231 0 0012.8 2.1C6.615 2.1 1.6 7.115 1.6 13.3s5.015 11.2 11.2 11.2S24 19.485 24 13.3c0-.71-.065-1.405-.19-2.075a4.99 4.99 0 00.16-.17l1.14-1.27c.32 1.115.49 2.295.49 3.515 0 7.07-5.73 12.8-12.8 12.8S0 20.37 0 13.3 5.73.5 12.8.5c1.22 0 2.355.17 3.515.488l-1.27 1.141zm-1.27 3.631l.21 1.25c-.385-.07-.78-.155-1.23-.155-3.49 0-6.4 2.91-6.4 6.4 0 3.58 2.91 6.445 6.4 6.445a6.419 6.419 0 006.445-6.445c0-.36-.04-.8-.11-1.14l1.25.21c.135.02.27.035.405.045.035.305.055.615.055.885 0 4.465-3.58 8.045-8 8.045s-8-3.58-8-8.045c0-4.375 3.58-8 8-8 .315 0 .625.063.93.099.01.135.025.271.045.406zm3.3 4.395l-3.71 3.71a.794.794 0 01-1.13 0 .794.794 0 010-1.13l3.71-3.71-.59-3.52a2.396 2.396 0 01.775-2.19l2.425-2.196c.7-.583 1.74-.288 1.99.552l.895 2.986 2.99.898c.84.25 1.135 1.29.55 1.945l-2.195 2.47c-.55.62-1.375.91-2.19.775l-3.52-.59zm1.39-1.39l2.395.4c.27.045.545-.05.73-.255l1.78-2.005-2.34-.7-2.565 2.56zm1.43-3.693l-.7-2.341-2.005 1.78a.8.8 0 00-.255.729l.4 2.395 2.56-2.563z" }, null, -1);
6089
+ const _hoisted_2$k = /*#__PURE__*/createElementVNode("path", { d: "M9.45 12.472l-1.7 1.869V3.75a.75.75 0 10-1.5 0v10.59L4.55 12.5a.746.746 0 00-1.059-.042.75.75 0 00-.042 1.06l2.972 3.254a.774.774 0 001.102 0l2.972-3.253a.75.75 0 00-.042-1.06c-.25-.286-.725-.264-1.003.014zm7.1-5.99l-2.972-3.254a.774.774 0 00-1.102 0L9.45 6.481A.75.75 0 0010.55 7.5l1.699-1.84v10.59c0 .413.337.75.75.75.412 0 .75-.336.75-.75V5.66l1.699 1.842a.747.747 0 001.06.042.753.753 0 00.04-1.063z" }, null, -1);
6030
6090
  const _hoisted_3$h = [
6031
6091
  _hoisted_2$k
6032
6092
  ];
@@ -6036,11 +6096,11 @@ function render$q(_ctx, _cache) {
6036
6096
  }
6037
6097
 
6038
6098
  const _hoisted_1$n = {
6039
- viewBox: "0 0 24 24",
6099
+ viewBox: "0 0 16 16",
6040
6100
  fill: "currentColor",
6041
6101
  xmlns: "http://www.w3.org/2000/svg"
6042
6102
  };
6043
- const _hoisted_2$j = /*#__PURE__*/createElementVNode("path", { d: "M0 12C0 5.372 5.372 0 12 0s12 5.372 12 12-5.372 12-12 12S0 18.628 0 12zm17.428-2.072a1.315 1.315 0 000-1.856 1.316 1.316 0 00-1.856 0L10.5 13.144l-2.072-2.072a1.315 1.315 0 00-1.856 0c-.511.51-.511 1.345 0 1.856l3 3c.51.511 1.345.511 1.856 0l6-6z" }, null, -1);
6103
+ const _hoisted_2$j = /*#__PURE__*/createElementVNode("path", { d: "M13.794 9.268l-5.25 5.5a.75.75 0 01-1.087-.001l-5.25-5.5c-.285-.327-.275-.774.025-1.061a.75.75 0 011.06.025l3.958 4.147V1.75c0-.414.336-.75.722-.75.386 0 .778.336.778.75v10.628l3.956-4.146a.75.75 0 011.06-.026c.303.287.312.734.028 1.062z" }, null, -1);
6044
6104
  const _hoisted_3$g = [
6045
6105
  _hoisted_2$j
6046
6106
  ];
@@ -6054,7 +6114,7 @@ const _hoisted_1$m = {
6054
6114
  fill: "currentColor",
6055
6115
  xmlns: "http://www.w3.org/2000/svg"
6056
6116
  };
6057
- const _hoisted_2$i = /*#__PURE__*/createElementVNode("path", { d: "M0 12C0 5.372 5.372 0 12 0s12 5.372 12 12-5.372 12-12 12S0 18.628 0 12zm8.203-2.245l2.208 2.203-2.208 2.245c-.436.44-.436 1.153 0 1.552.44.478 1.153.478 1.552 0l2.203-2.166 2.245 2.166c.44.478 1.153.478 1.552 0 .478-.399.478-1.111 0-1.552l-2.166-2.245 2.166-2.203c.478-.399.478-1.111 0-1.552-.399-.436-1.111-.436-1.552 0l-2.245 2.208-2.203-2.208c-.399-.436-1.111-.436-1.552 0-.436.44-.436 1.153 0 1.552z" }, null, -1);
6117
+ const _hoisted_2$i = /*#__PURE__*/createElementVNode("path", { d: "M23.78 22.72l-6.633-6.633c1.462-1.706 2.31-3.914 2.31-6.337A9.75 9.75 0 009.708 0C4.324 0 0 4.365 0 9.75c0 5.384 4.365 9.75 9.708 9.75a9.698 9.698 0 006.337-2.35l6.633 6.632c.188.143.38.218.572.218a.747.747 0 00.53-.22.745.745 0 000-1.06zM9.75 18A8.235 8.235 0 011.5 9.75c0-4.547 3.66-8.25 8.25-8.25S18 5.16 18 9.75 14.297 18 9.75 18z" }, null, -1);
6058
6118
  const _hoisted_3$f = [
6059
6119
  _hoisted_2$i
6060
6120
  ];
@@ -6063,10 +6123,10 @@ function render$o(_ctx, _cache) {
6063
6123
  return (openBlock(), createElementBlock("svg", _hoisted_1$m, _hoisted_3$f))
6064
6124
  }
6065
6125
 
6066
- var script$l = defineComponent({
6126
+ var script$k = defineComponent({
6067
6127
  name: 'FwDropdown',
6068
6128
  components: {
6069
- ChevronDownSvg: render$C
6129
+ ChevronDownSvg: render$F
6070
6130
  },
6071
6131
  props: {
6072
6132
  /**
@@ -6183,7 +6243,7 @@ var script$l = defineComponent({
6183
6243
  }
6184
6244
  });
6185
6245
 
6186
- var _withScopeId$3 = function _withScopeId(n) {
6246
+ var _withScopeId$4 = function _withScopeId(n) {
6187
6247
  return pushScopeId("data-v-1467a810"), n = n(), popScopeId(), n;
6188
6248
  };
6189
6249
  var _hoisted_1$l = {
@@ -6194,7 +6254,7 @@ var _hoisted_2$h = {
6194
6254
  "class": "block mb-2 font-medium text-left"
6195
6255
  };
6196
6256
  var _hoisted_3$e = ["id", "aria-expanded"];
6197
- var _hoisted_4$8 = {
6257
+ var _hoisted_4$9 = {
6198
6258
  key: 0
6199
6259
  };
6200
6260
  var _hoisted_5$6 = {
@@ -6225,7 +6285,7 @@ function render$n(_ctx, _cache, $props, $setup, $data, $options) {
6225
6285
  id: "".concat(_ctx.name, "-fw-dropdown--button"),
6226
6286
  "aria-expanded": _ctx.isOpen,
6227
6287
  "aria-haspopup": "true"
6228
- }, [(_ctx$selectedOption = _ctx.selectedOption) !== null && _ctx$selectedOption !== void 0 && _ctx$selectedOption.label ? (openBlock(), createElementBlock("span", _hoisted_4$8, toDisplayString((_ctx$selectedOption2 = _ctx.selectedOption) === null || _ctx$selectedOption2 === void 0 ? void 0 : _ctx$selectedOption2.label), 1)) : (openBlock(), createElementBlock("span", _hoisted_5$6, toDisplayString(_ctx.placeholder), 1)), createVNode(_component_ChevronDownSvg, {
6288
+ }, [(_ctx$selectedOption = _ctx.selectedOption) !== null && _ctx$selectedOption !== void 0 && _ctx$selectedOption.label ? (openBlock(), createElementBlock("span", _hoisted_4$9, toDisplayString((_ctx$selectedOption2 = _ctx.selectedOption) === null || _ctx$selectedOption2 === void 0 ? void 0 : _ctx$selectedOption2.label), 1)) : (openBlock(), createElementBlock("span", _hoisted_5$6, toDisplayString(_ctx.placeholder), 1)), createVNode(_component_ChevronDownSvg, {
6229
6289
  "class": normalizeClass(["w-6 text-primary transition-transform duration-300", _ctx.isOpen ? 'rotate-180' : ''])
6230
6290
  }, null, 8, ["class"])], 10, _hoisted_3$e), createVNode(Transition, {
6231
6291
  name: "slideUpDown"
@@ -6262,14 +6322,14 @@ function render$n(_ctx, _cache, $props, $setup, $data, $options) {
6262
6322
  })])]);
6263
6323
  }
6264
6324
 
6265
- var css_248z$b = ".slideUpDown-enter-active[data-v-1467a810]{-webkit-animation:slideUpDown-1467a810 .3s;animation:slideUpDown-1467a810 .3s;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}.slideUpDown-leave-active[data-v-1467a810]{animation:slideUpDown-1467a810 .3s reverse;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@-webkit-keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}";
6266
- var stylesheet$b = ".slideUpDown-enter-active[data-v-1467a810]{-webkit-animation:slideUpDown-1467a810 .3s;animation:slideUpDown-1467a810 .3s;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}.slideUpDown-leave-active[data-v-1467a810]{animation:slideUpDown-1467a810 .3s reverse;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@-webkit-keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}";
6267
- styleInject(css_248z$b);
6325
+ var css_248z$c = ".slideUpDown-enter-active[data-v-1467a810]{-webkit-animation:slideUpDown-1467a810 .3s;animation:slideUpDown-1467a810 .3s;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}.slideUpDown-leave-active[data-v-1467a810]{animation:slideUpDown-1467a810 .3s reverse;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@-webkit-keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}";
6326
+ var stylesheet$c = ".slideUpDown-enter-active[data-v-1467a810]{-webkit-animation:slideUpDown-1467a810 .3s;animation:slideUpDown-1467a810 .3s;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}.slideUpDown-leave-active[data-v-1467a810]{animation:slideUpDown-1467a810 .3s reverse;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@-webkit-keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideUpDown-1467a810{0%{opacity:0;-webkit-transform:translate3d(0,-3%,0);transform:translate3d(0,-3%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}";
6327
+ styleInject(css_248z$c);
6268
6328
 
6269
- script$l.render = render$n;
6270
- script$l.__scopeId = "data-v-1467a810";
6329
+ script$k.render = render$n;
6330
+ script$k.__scopeId = "data-v-1467a810";
6271
6331
 
6272
- var script$k = defineComponent({
6332
+ var script$j = defineComponent({
6273
6333
  name: 'FwCard',
6274
6334
  props: {
6275
6335
  /**
@@ -6354,12 +6414,12 @@ function render$m(_ctx, _cache, $props, $setup, $data, $options) {
6354
6414
  }, 8, ["to", "href", "tabindex", "class"]);
6355
6415
  }
6356
6416
 
6357
- script$k.render = render$m;
6417
+ script$j.render = render$m;
6358
6418
 
6359
- var script$j = defineComponent({
6419
+ var script$i = defineComponent({
6360
6420
  name: 'FwLoadingSpinner',
6361
6421
  components: {
6362
- LoadingSvg: render$r
6422
+ LoadingSvg: render$u
6363
6423
  }
6364
6424
  });
6365
6425
 
@@ -6370,13 +6430,13 @@ function render$l(_ctx, _cache, $props, $setup, $data, $options) {
6370
6430
  });
6371
6431
  }
6372
6432
 
6373
- script$j.render = render$l;
6433
+ script$i.render = render$l;
6374
6434
 
6375
- var script$i = defineComponent({
6435
+ var script$h = defineComponent({
6376
6436
  name: 'FwButton',
6377
6437
  emits: ['click', 'mouseover', 'mouseout', 'focusin', 'focusout'],
6378
6438
  components: {
6379
- FwLoadingSpinner: script$j
6439
+ FwLoadingSpinner: script$i
6380
6440
  },
6381
6441
  props: {
6382
6442
  /**
@@ -6626,17 +6686,17 @@ function render$k(_ctx, _cache, $props, $setup, $data, $options) {
6626
6686
  }, 40, ["class", "type", "to", "href", "tabindex", "disabled", "target", "onClick", "onFocusin", "onFocusout", "onMouseover", "onMouseout"]);
6627
6687
  }
6628
6688
 
6629
- var css_248z$a = ".fw-button{line-height:normal}.fw-button--label-wrapper{-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:margin,padding;transition-property:margin,padding;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.fw-button--primary{background:var(--colorButtonPrimary);color:var(--colorButtonPrimaryText)}.fw-button--primary.fw-button--loading,.fw-button--primary:hover{background:var(--colorButtonPrimaryFade);border-color:var(--colorButtonPrimaryFade)}.fw-button--secondary{background:var(--colorButtonSecondary);color:var(--colorButtonSecondaryText)}.fw-button--secondary.animation--alternate.fw-button--loading,.fw-button--secondary.animation--alternate:hover{background:var(--colorButtonSecondaryText);color:var(--colorButtonSecondary)}.fw-button--secondary.animation--fade.fw-button--loading,.fw-button--secondary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}.fw-button--tertiary{background:var(--colorButtonTertiary);color:var(--colorButtonTertiaryText)}.fw-button--tertiary.animation--alternate.fw-button--loading,.fw-button--tertiary.animation--alternate:hover{background:var(--colorButtonTertiaryText);color:var(--colorButtonTertiary)}.fw-button--tertiary.animation--fade.fw-button--loading,.fw-button--tertiary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}";
6630
- var stylesheet$a = ".fw-button{line-height:normal}.fw-button--label-wrapper{-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:margin,padding;transition-property:margin,padding;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.fw-button--primary{background:var(--colorButtonPrimary);color:var(--colorButtonPrimaryText)}.fw-button--primary.fw-button--loading,.fw-button--primary:hover{background:var(--colorButtonPrimaryFade);border-color:var(--colorButtonPrimaryFade)}.fw-button--secondary{background:var(--colorButtonSecondary);color:var(--colorButtonSecondaryText)}.fw-button--secondary.animation--alternate.fw-button--loading,.fw-button--secondary.animation--alternate:hover{background:var(--colorButtonSecondaryText);color:var(--colorButtonSecondary)}.fw-button--secondary.animation--fade.fw-button--loading,.fw-button--secondary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}.fw-button--tertiary{background:var(--colorButtonTertiary);color:var(--colorButtonTertiaryText)}.fw-button--tertiary.animation--alternate.fw-button--loading,.fw-button--tertiary.animation--alternate:hover{background:var(--colorButtonTertiaryText);color:var(--colorButtonTertiary)}.fw-button--tertiary.animation--fade.fw-button--loading,.fw-button--tertiary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}";
6631
- styleInject(css_248z$a);
6689
+ var css_248z$b = ".fw-button{line-height:normal}.fw-button--label-wrapper{-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:margin,padding;transition-property:margin,padding;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.fw-button--primary{background:var(--colorButtonPrimary);color:var(--colorButtonPrimaryText)}.fw-button--primary.fw-button--loading,.fw-button--primary:hover{background:var(--colorButtonPrimaryFade);border-color:var(--colorButtonPrimaryFade)}.fw-button--secondary{background:var(--colorButtonSecondary);color:var(--colorButtonSecondaryText)}.fw-button--secondary.animation--alternate.fw-button--loading,.fw-button--secondary.animation--alternate:hover{background:var(--colorButtonSecondaryText);color:var(--colorButtonSecondary)}.fw-button--secondary.animation--fade.fw-button--loading,.fw-button--secondary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}.fw-button--tertiary{background:var(--colorButtonTertiary);color:var(--colorButtonTertiaryText)}.fw-button--tertiary.animation--alternate.fw-button--loading,.fw-button--tertiary.animation--alternate:hover{background:var(--colorButtonTertiaryText);color:var(--colorButtonTertiary)}.fw-button--tertiary.animation--fade.fw-button--loading,.fw-button--tertiary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}";
6690
+ var stylesheet$b = ".fw-button{line-height:normal}.fw-button--label-wrapper{-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:margin,padding;transition-property:margin,padding;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.fw-button--primary{background:var(--colorButtonPrimary);color:var(--colorButtonPrimaryText)}.fw-button--primary.fw-button--loading,.fw-button--primary:hover{background:var(--colorButtonPrimaryFade);border-color:var(--colorButtonPrimaryFade)}.fw-button--secondary{background:var(--colorButtonSecondary);color:var(--colorButtonSecondaryText)}.fw-button--secondary.animation--alternate.fw-button--loading,.fw-button--secondary.animation--alternate:hover{background:var(--colorButtonSecondaryText);color:var(--colorButtonSecondary)}.fw-button--secondary.animation--fade.fw-button--loading,.fw-button--secondary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}.fw-button--tertiary{background:var(--colorButtonTertiary);color:var(--colorButtonTertiaryText)}.fw-button--tertiary.animation--alternate.fw-button--loading,.fw-button--tertiary.animation--alternate:hover{background:var(--colorButtonTertiaryText);color:var(--colorButtonTertiary)}.fw-button--tertiary.animation--fade.fw-button--loading,.fw-button--tertiary.animation--fade:hover{-webkit-filter:brightness(135%);filter:brightness(135%)}";
6691
+ styleInject(css_248z$b);
6632
6692
 
6633
- script$i.render = render$k;
6693
+ script$h.render = render$k;
6634
6694
 
6635
- var script$h = defineComponent({
6695
+ var script$g = defineComponent({
6636
6696
  name: 'FwNavigationMenu',
6637
6697
  emits: ['action'],
6638
6698
  components: {
6639
- FwButton: script$i
6699
+ FwButton: script$h
6640
6700
  },
6641
6701
  props: {
6642
6702
  /**
@@ -6691,7 +6751,7 @@ var _hoisted_3$c = {
6691
6751
  key: 1,
6692
6752
  "class": "container hidden sm:flex items-center justify-start sm:ml-6"
6693
6753
  };
6694
- var _hoisted_4$7 = {
6754
+ var _hoisted_4$8 = {
6695
6755
  "class": "flex space-x-2"
6696
6756
  };
6697
6757
  var _hoisted_5$5 = {
@@ -6721,7 +6781,7 @@ function render$j(_ctx, _cache, $props, $setup, $data, $options) {
6721
6781
  var _component_FwButton = resolveComponent("FwButton");
6722
6782
  return openBlock(), createElementBlock("nav", _hoisted_1$i, [createElementVNode("div", {
6723
6783
  "class": normalizeClass(["px-6 flex-1 h-full flex bg-white items-stretch justify-between mx-auto", _ctx.containerClass])
6724
- }, [_ctx.$slots.logo ? (openBlock(), createElementBlock("div", _hoisted_2$f, [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_3$c, [createElementVNode("div", _hoisted_4$7, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
6784
+ }, [_ctx.$slots.logo ? (openBlock(), createElementBlock("div", _hoisted_2$f, [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_3$c, [createElementVNode("div", _hoisted_4$8, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
6725
6785
  return openBlock(), createBlock(_component_FwButton, {
6726
6786
  key: i,
6727
6787
  variant: "text",
@@ -6797,11 +6857,11 @@ function render$j(_ctx, _cache, $props, $setup, $data, $options) {
6797
6857
  })]);
6798
6858
  }
6799
6859
 
6800
- var css_248z$9 = ".fw-nav-menu--mobile{z-index:-1}.fw-nav-menu--mobile,.slideInLeft-enter-active{-webkit-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;transition:left .35s ease-in-out}@-webkit-keyframes slideInLeft{0%{left:100%}to{left:0}}@keyframes slideInLeft{0%{left:100%}to{left:0}}";
6801
- var stylesheet$9 = ".fw-nav-menu--mobile{z-index:-1}.fw-nav-menu--mobile,.slideInLeft-enter-active{-webkit-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;transition:left .35s ease-in-out}@-webkit-keyframes slideInLeft{0%{left:100%}to{left:0}}@keyframes slideInLeft{0%{left:100%}to{left:0}}";
6802
- styleInject(css_248z$9);
6860
+ var css_248z$a = ".fw-nav-menu--mobile{z-index:-1}.fw-nav-menu--mobile,.slideInLeft-enter-active{-webkit-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;transition:left .35s ease-in-out}@-webkit-keyframes slideInLeft{0%{left:100%}to{left:0}}@keyframes slideInLeft{0%{left:100%}to{left:0}}";
6861
+ var stylesheet$a = ".fw-nav-menu--mobile{z-index:-1}.fw-nav-menu--mobile,.slideInLeft-enter-active{-webkit-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;transition:left .35s ease-in-out}@-webkit-keyframes slideInLeft{0%{left:100%}to{left:0}}@keyframes slideInLeft{0%{left:100%}to{left:0}}";
6862
+ styleInject(css_248z$a);
6803
6863
 
6804
- script$h.render = render$j;
6864
+ script$g.render = render$j;
6805
6865
 
6806
6866
  var es_number_constructor = {};
6807
6867
 
@@ -7003,7 +7063,7 @@ if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumb
7003
7063
  defineBuiltIn$3(global$7, NUMBER, NumberWrapper, { constructor: true });
7004
7064
  }
7005
7065
 
7006
- var script$g = defineComponent({
7066
+ var script$f = defineComponent({
7007
7067
  name: 'FwTabs',
7008
7068
  emits: ['update:modelValue'],
7009
7069
  props: {
@@ -7059,7 +7119,7 @@ function render$i(_ctx, _cache, $props, $setup, $data, $options) {
7059
7119
  }), 128))])) : createCommentVNode("", true), renderSlot(_ctx.$slots, "default")]);
7060
7120
  }
7061
7121
 
7062
- script$g.render = render$i;
7122
+ script$f.render = render$i;
7063
7123
 
7064
7124
  var es_array_findIndex = {};
7065
7125
 
@@ -7127,7 +7187,7 @@ $$a({ target: 'Array', proto: true, arity: 1, forced: INCORRECT_TO_LENGTH || SIL
7127
7187
  }
7128
7188
  });
7129
7189
 
7130
- var script$f = defineComponent({
7190
+ var script$e = defineComponent({
7131
7191
  name: 'FwTab',
7132
7192
  props: {
7133
7193
  /**
@@ -7176,12 +7236,12 @@ function render$h(_ctx, _cache, $props, $setup, $data, $options) {
7176
7236
  return _ctx.isActive ? (openBlock(), createElementBlock("div", _hoisted_1$g, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true);
7177
7237
  }
7178
7238
 
7179
- script$f.render = render$h;
7239
+ script$e.render = render$h;
7180
7240
 
7181
- var script$e = defineComponent({
7241
+ var script$d = defineComponent({
7182
7242
  name: 'FwModal',
7183
7243
  components: {
7184
- FwButton: script$i
7244
+ FwButton: script$h
7185
7245
  },
7186
7246
  emits: ['cancel', 'confirm'],
7187
7247
  props: {
@@ -7290,7 +7350,7 @@ var _hoisted_2$d = {
7290
7350
  var _hoisted_3$a = {
7291
7351
  "class": "fw-modal--wrapper text-center overflow-auto flex justify-center items-center h-full"
7292
7352
  };
7293
- var _hoisted_4$6 = ["role", "aria-labelledby", "aria-describedby"];
7353
+ var _hoisted_4$7 = ["role", "aria-labelledby", "aria-describedby"];
7294
7354
  var _hoisted_5$4 = {
7295
7355
  key: 0,
7296
7356
  "class": "fw-modal--header text-center"
@@ -7370,22 +7430,22 @@ function render$g(_ctx, _cache, $props, $setup, $data, $options) {
7370
7430
  return [createTextVNode(toDisplayString(_ctx.confirmButtonText), 1)];
7371
7431
  }),
7372
7432
  _: 1
7373
- }, 8, ["variant", "aria-label"])) : createCommentVNode("", true)])) : createCommentVNode("", true)], 8, _hoisted_4$6)])])], 8, _hoisted_1$f)) : createCommentVNode("", true)];
7433
+ }, 8, ["variant", "aria-label"])) : createCommentVNode("", true)])) : createCommentVNode("", true)], 8, _hoisted_4$7)])])], 8, _hoisted_1$f)) : createCommentVNode("", true)];
7374
7434
  }),
7375
7435
  _: 3
7376
7436
  })], 8, ["to"])) : createCommentVNode("", true);
7377
7437
  }
7378
7438
 
7379
- var css_248z$8 = ".modalFadeIn-enter-active{-webkit-animation:modalFadeIn .4s;animation:modalFadeIn .4s;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.modalFadeIn-leave-active{animation:modalFadeIn .4s reverse;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}@-webkit-keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}@keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}";
7380
- var stylesheet$8 = ".modalFadeIn-enter-active{-webkit-animation:modalFadeIn .4s;animation:modalFadeIn .4s;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.modalFadeIn-leave-active{animation:modalFadeIn .4s reverse;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}@-webkit-keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}@keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}";
7381
- styleInject(css_248z$8);
7439
+ var css_248z$9 = ".modalFadeIn-enter-active{-webkit-animation:modalFadeIn .4s;animation:modalFadeIn .4s;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.modalFadeIn-leave-active{animation:modalFadeIn .4s reverse;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}@-webkit-keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}@keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}";
7440
+ var stylesheet$9 = ".modalFadeIn-enter-active{-webkit-animation:modalFadeIn .4s;animation:modalFadeIn .4s;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.modalFadeIn-leave-active{animation:modalFadeIn .4s reverse;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}@-webkit-keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}@keyframes modalFadeIn{0%{opacity:0}to{opacity:1}}";
7441
+ styleInject(css_248z$9);
7382
7442
 
7383
- script$e.render = render$g;
7443
+ script$d.render = render$g;
7384
7444
 
7385
- var script$d = defineComponent({
7445
+ var script$c = defineComponent({
7386
7446
  name: 'FwProgressBar',
7387
7447
  components: {
7388
- CheckSvg: render$E
7448
+ CheckSvg: render$H
7389
7449
  },
7390
7450
  props: {
7391
7451
  /**
@@ -7437,7 +7497,7 @@ var _hoisted_3$9 = {
7437
7497
  key: 1,
7438
7498
  "class": "text-base font-semibold text-center w-full"
7439
7499
  };
7440
- var _hoisted_4$5 = {
7500
+ var _hoisted_4$6 = {
7441
7501
  key: 0,
7442
7502
  "class": "w-full flex items-start mt-[13px] mx-[-15px]"
7443
7503
  };
@@ -7462,16 +7522,16 @@ function render$f(_ctx, _cache, $props, $setup, $data, $options) {
7462
7522
  'font-bold': step.position === _ctx.activeStep,
7463
7523
  'text-body': step.position > _ctx.activeStep
7464
7524
  }])
7465
- }, toDisplayString(step.label), 3)], 2), step.position !== _ctx.steps.length ? (openBlock(), createElementBlock("div", _hoisted_4$5, [createElementVNode("div", _hoisted_5$3, [createElementVNode("div", {
7525
+ }, toDisplayString(step.label), 3)], 2), step.position !== _ctx.steps.length ? (openBlock(), createElementBlock("div", _hoisted_4$6, [createElementVNode("div", _hoisted_5$3, [createElementVNode("div", {
7466
7526
  "class": "bg-primary text-xs leading-none py-0.5 text-center rounded transition-all",
7467
7527
  style: normalizeStyle(step.position < _ctx.activeStep ? 'width:100%;' : _ctx.calculatedProgressBar(step))
7468
7528
  }, null, 4)])])) : createCommentVNode("", true)], 2);
7469
7529
  }), 128))])]);
7470
7530
  }
7471
7531
 
7472
- script$d.render = render$f;
7532
+ script$c.render = render$f;
7473
7533
 
7474
- var script$c = defineComponent({
7534
+ var script$b = defineComponent({
7475
7535
  name: 'FwTag',
7476
7536
  props: {
7477
7537
  /**
@@ -7544,11 +7604,11 @@ function render$e(_ctx, _cache, $props, $setup, $data, $options) {
7544
7604
  }, [renderSlot(_ctx.$slots, "default")], 2);
7545
7605
  }
7546
7606
 
7547
- var css_248z$7 = ".fw-tag{line-height:normal;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}";
7548
- var stylesheet$7 = ".fw-tag{line-height:normal;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}";
7549
- styleInject(css_248z$7);
7607
+ var css_248z$8 = ".fw-tag{line-height:normal;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}";
7608
+ var stylesheet$8 = ".fw-tag{line-height:normal;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}";
7609
+ styleInject(css_248z$8);
7550
7610
 
7551
- script$c.render = render$e;
7611
+ script$b.render = render$e;
7552
7612
 
7553
7613
  var es_object_keys = {};
7554
7614
 
@@ -7763,7 +7823,7 @@ $$8({ target: 'Array', proto: true, forced: FORCED }, {
7763
7823
  }
7764
7824
  });
7765
7825
 
7766
- var script$b = defineComponent({
7826
+ var script$a = defineComponent({
7767
7827
  name: 'FwLoadingBar'
7768
7828
  });
7769
7829
 
@@ -7775,18 +7835,20 @@ function render$d(_ctx, _cache, $props, $setup, $data, $options) {
7775
7835
  return openBlock(), createElementBlock("div", _hoisted_1$d);
7776
7836
  }
7777
7837
 
7778
- var css_248z$6 = ".fw-loading-bar{-webkit-animation:fwSkeletonLoading 1.5s linear infinite;animation:fwSkeletonLoading 1.5s linear infinite;background:#e4e4e4;background-image:linear-gradient(100deg,hsla(0,0%,100%,0) 40%,hsla(0,0%,100%,.5) 50%,hsla(0,0%,100%,0) 60%);background-size:200% 200%}@-webkit-keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}@keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}";
7779
- var stylesheet$6 = ".fw-loading-bar{-webkit-animation:fwSkeletonLoading 1.5s linear infinite;animation:fwSkeletonLoading 1.5s linear infinite;background:#e4e4e4;background-image:linear-gradient(100deg,hsla(0,0%,100%,0) 40%,hsla(0,0%,100%,.5) 50%,hsla(0,0%,100%,0) 60%);background-size:200% 200%}@-webkit-keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}@keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}";
7780
- styleInject(css_248z$6);
7838
+ var css_248z$7 = ".fw-loading-bar{-webkit-animation:fwSkeletonLoading 1.5s linear infinite;animation:fwSkeletonLoading 1.5s linear infinite;background:#e4e4e4;background-image:linear-gradient(100deg,hsla(0,0%,100%,0) 40%,hsla(0,0%,100%,.5) 50%,hsla(0,0%,100%,0) 60%);background-size:200% 200%}@-webkit-keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}@keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}";
7839
+ var stylesheet$7 = ".fw-loading-bar{-webkit-animation:fwSkeletonLoading 1.5s linear infinite;animation:fwSkeletonLoading 1.5s linear infinite;background:#e4e4e4;background-image:linear-gradient(100deg,hsla(0,0%,100%,0) 40%,hsla(0,0%,100%,.5) 50%,hsla(0,0%,100%,0) 60%);background-size:200% 200%}@-webkit-keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}@keyframes fwSkeletonLoading{0%{background-position-x:200%}50%{background-position-x:100%}to{background-position-x:0}}";
7840
+ styleInject(css_248z$7);
7781
7841
 
7782
- script$b.render = render$d;
7842
+ script$a.render = render$d;
7783
7843
 
7784
- var script$a = defineComponent({
7844
+ var __default__$2 = defineComponent({
7785
7845
  name: 'FwTable',
7786
7846
  components: {
7787
- CaretDownSvg: render$v,
7788
- FwLoadingBar: script$b
7847
+ ArrowSortSvg: render$q,
7848
+ ArrowDownSvg: render$p,
7849
+ FwLoadingBar: script$a
7789
7850
  },
7851
+ emits: ['rowClicked'],
7790
7852
  props: {
7791
7853
  items: {
7792
7854
  type: Array,
@@ -7799,15 +7861,34 @@ var script$a = defineComponent({
7799
7861
  loading: {
7800
7862
  type: Boolean,
7801
7863
  "default": false
7864
+ },
7865
+ /**
7866
+ * Enable click events on rows.
7867
+ * Emits row data when clicked
7868
+ */
7869
+ clickableRows: {
7870
+ type: Boolean,
7871
+ "default": false
7872
+ },
7873
+ autoSortColumn: {
7874
+ type: Number
7802
7875
  }
7803
7876
  },
7804
- setup: function setup(props) {
7877
+ setup: function setup(props, ctx) {
7805
7878
  var columns = computed(function () {
7806
7879
  return Object.keys(props.items[0]);
7807
7880
  });
7808
7881
  var sortBy = ref('');
7809
7882
  var sortDirection = ref('asc');
7810
7883
  var currentSortedColumn = ref('');
7884
+ onMounted(function () {
7885
+ if (Number(props.autoSortColumn) >= 0) {
7886
+ sortColumn(columns.value[Number(props.autoSortColumn)]);
7887
+ }
7888
+ });
7889
+ var style = getComputedStyle(document.body);
7890
+ var colorPrimary = style.getPropertyValue('--colorPrimary');
7891
+ var bgHoverColor = "".concat(colorPrimary, "0d"); // Adds 5% transparency
7811
7892
  var sortColumn = function sortColumn(column) {
7812
7893
  if (!isColumnSortable(column)) return;
7813
7894
  currentSortedColumn.value = column;
@@ -7815,7 +7896,7 @@ var script$a = defineComponent({
7815
7896
  sortDirection.value = sortDirection.value === 'asc' ? 'desc' : 'asc';
7816
7897
  } else {
7817
7898
  sortBy.value = column;
7818
- sortDirection.value = 'asc';
7899
+ sortDirection.value = columnInitSort(column);
7819
7900
  }
7820
7901
  };
7821
7902
  var sortedData = computed(function () {
@@ -7843,10 +7924,10 @@ var script$a = defineComponent({
7843
7924
  var sortedIcon = function sortedIcon(sortDir, column) {
7844
7925
  if (currentSortedColumn.value === column) {
7845
7926
  if (sortDirection.value === sortDir) {
7846
- return 'text-body';
7927
+ return true;
7847
7928
  }
7848
7929
  }
7849
- return 'text-grey-light';
7930
+ return false;
7850
7931
  };
7851
7932
  var isColumnSortable = function isColumnSortable(column) {
7852
7933
  if (props.options && props.options[column]) {
@@ -7855,13 +7936,23 @@ var script$a = defineComponent({
7855
7936
  }
7856
7937
  return false;
7857
7938
  };
7939
+ var columnInitSort = function columnInitSort(column) {
7940
+ if (props.options && props.options[column]) {
7941
+ var _props$options$column4;
7942
+ return ((_props$options$column4 = props.options[column]) === null || _props$options$column4 === void 0 ? void 0 : _props$options$column4.initSortOrder) || 'asc';
7943
+ }
7944
+ return 'asc';
7945
+ };
7858
7946
  var isDisabled = function isDisabled(column) {
7859
- var _props$options$column4;
7860
- if (props.options && (_props$options$column4 = props.options[column]) !== null && _props$options$column4 !== void 0 && _props$options$column4.disabled) {
7947
+ var _props$options$column5;
7948
+ if (props.options && (_props$options$column5 = props.options[column]) !== null && _props$options$column5 !== void 0 && _props$options$column5.disabled) {
7861
7949
  return true;
7862
7950
  }
7863
7951
  return false;
7864
7952
  };
7953
+ var rowClicked = function rowClicked(row) {
7954
+ if (props.clickableRows) ctx.emit('rowClicked', row);
7955
+ };
7865
7956
  return {
7866
7957
  columns: columns,
7867
7958
  sortBy: sortBy,
@@ -7872,65 +7963,89 @@ var script$a = defineComponent({
7872
7963
  sortedIcon: sortedIcon,
7873
7964
  formattedText: formattedText,
7874
7965
  isColumnSortable: isColumnSortable,
7875
- isDisabled: isDisabled
7966
+ isDisabled: isDisabled,
7967
+ rowClicked: rowClicked,
7968
+ bgHoverColor: bgHoverColor
7876
7969
  };
7877
7970
  }
7878
7971
  });
7972
+ var __injectCSSVars__$2 = function __injectCSSVars__() {
7973
+ useCssVars(function (_ctx) {
7974
+ return {
7975
+ "015ddfb2": _ctx.bgHoverColor
7976
+ };
7977
+ });
7978
+ };
7979
+ var __setup__$2 = __default__$2.setup;
7980
+ __default__$2.setup = __setup__$2 ? function (props, ctx) {
7981
+ __injectCSSVars__$2();
7982
+ return __setup__$2(props, ctx);
7983
+ } : __injectCSSVars__$2;
7879
7984
 
7880
- var _hoisted_1$c = {
7881
- "class": "text-p-small bg-grey-20"
7985
+ var _withScopeId$3 = function _withScopeId(n) {
7986
+ return pushScopeId("data-v-29e0d2d4"), n = n(), popScopeId(), n;
7882
7987
  };
7883
- var _hoisted_2$b = ["tabindex", "onKeydown", "onClick"];
7884
- var _hoisted_3$8 = {
7885
- "class": "flex flex-row items-center space-x-1"
7988
+ var _hoisted_1$c = ["aria-busy"];
7989
+ var _hoisted_2$b = {
7990
+ "class": "text-p2 border-b border-grey-40"
7886
7991
  };
7887
- var _hoisted_4$4 = {
7888
- "class": "w-full"
7992
+ var _hoisted_3$8 = ["tabindex", "onKeydown", "onClick"];
7993
+ var _hoisted_4$5 = {
7994
+ "class": "flex flex-row items-center"
7889
7995
  };
7890
7996
  var _hoisted_5$2 = {
7891
- key: 0
7997
+ key: 0,
7998
+ "class": "ml-1 flex items-center justify-center w-5"
7892
7999
  };
7893
8000
  var _hoisted_6$1 = {
7894
- "class": "flex flex-col"
8001
+ "class": "text-p2 bg-white font-light"
7895
8002
  };
7896
8003
  var _hoisted_7$1 = {
7897
- "class": "text-p-small bg-white font-light"
7898
- };
7899
- var _hoisted_8$1 = {
7900
8004
  key: 0,
7901
- "class": "py-3 px-4 text-left whitespace-nowrap"
8005
+ "class": "py-4 pl-5 pr-3 text-left"
7902
8006
  };
7903
- var _hoisted_9$1 = {
8007
+ var _hoisted_8$1 = {
7904
8008
  key: 0,
7905
- "class": "py-3 px-4 text-left whitespace-nowrap"
8009
+ "class": "py-4 pl-5 pr-3 text-left"
7906
8010
  };
8011
+ var _hoisted_9$1 = ["onClick", "tabindex", "onKeydown"];
7907
8012
  var _hoisted_10 = ["innerHTML"];
7908
8013
  function render$c(_ctx, _cache, $props, $setup, $data, $options) {
7909
- var _component_CaretDownSvg = resolveComponent("CaretDownSvg");
8014
+ var _component_ArrowSortSvg = resolveComponent("ArrowSortSvg");
8015
+ var _component_ArrowDownSvg = resolveComponent("ArrowDownSvg");
7910
8016
  var _component_FwLoadingBar = resolveComponent("FwLoadingBar");
7911
8017
  return openBlock(), createElementBlock("table", {
7912
- "class": normalizeClass(["table-auto table-responsive rounded border border-grey-40 border-spacing-px border-separate bg-grey-40", _ctx.loading ? 'cursor-wait' : ''])
7913
- }, [createElementVNode("thead", _hoisted_1$c, [createElementVNode("tr", null, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, thKey) {
8018
+ "class": normalizeClass(["fw-table table-auto table-responsive rounded-md shadow-card", _ctx.loading ? 'cursor-wait' : '']),
8019
+ "aria-live": "polite",
8020
+ "aria-busy": _ctx.loading
8021
+ }, [createElementVNode("thead", _hoisted_2$b, [createElementVNode("tr", null, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, thKey) {
7914
8022
  return openBlock(), createElementBlock(Fragment, {
7915
8023
  key: thKey
7916
8024
  }, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("th", {
7917
8025
  key: 0,
7918
- "class": normalizeClass(["py-3 px-4 text-center", _ctx.isColumnSortable(column) ? 'cursor-pointer hover:bg-grey-40' : '']),
7919
- tabindex: _ctx.isColumnSortable(column) ? 1 : -1,
8026
+ "class": normalizeClass(["fw-table-head py-6 pl-5 pr-3 text-left font-medium", _ctx.isColumnSortable(column) ? 'cursor-pointer fw-table-head--sortable' : '']),
8027
+ tabindex: _ctx.isColumnSortable(column) ? 0 : -1,
7920
8028
  onKeydown: withKeys(function ($event) {
7921
8029
  return _ctx.sortColumn(column);
7922
8030
  }, ["enter", "space"]),
7923
8031
  onClick: function onClick($event) {
7924
8032
  return _ctx.sortColumn(column);
7925
8033
  }
7926
- }, [createElementVNode("div", _hoisted_3$8, [createElementVNode("span", _hoisted_4$4, toDisplayString(column), 1), _ctx.isColumnSortable(column) ? (openBlock(), createElementBlock("span", _hoisted_5$2, [createElementVNode("span", _hoisted_6$1, [createVNode(_component_CaretDownSvg, {
7927
- "class": normalizeClass(["inline-block w-[12px] rotate-180", _ctx.sortedIcon('asc', column)])
7928
- }, null, 8, ["class"]), createVNode(_component_CaretDownSvg, {
7929
- "class": normalizeClass(["inline-block w-[12px] mt-[2px]", _ctx.sortedIcon('desc', column)])
7930
- }, null, 8, ["class"])])])) : createCommentVNode("", true)])], 42, _hoisted_2$b)) : createCommentVNode("", true)], 64);
8034
+ }, [createElementVNode("div", _hoisted_4$5, [createElementVNode("span", {
8035
+ "class": normalizeClass(_ctx.sortedIcon('asc', column) || _ctx.sortedIcon('desc', column) ? 'text-primary' : '')
8036
+ }, toDisplayString(column), 3), _ctx.isColumnSortable(column) ? (openBlock(), createElementBlock("span", _hoisted_5$2, [!_ctx.sortedIcon('asc', column) && !_ctx.sortedIcon('desc', column) ? (openBlock(), createBlock(_component_ArrowSortSvg, {
8037
+ key: 0,
8038
+ "class": "inline-block w-full text-grey-base"
8039
+ })) : createCommentVNode("", true), _ctx.sortedIcon('asc', column) ? (openBlock(), createBlock(_component_ArrowDownSvg, {
8040
+ key: 1,
8041
+ "class": "inline-block w-4 text-primary rotate-180"
8042
+ })) : createCommentVNode("", true), _ctx.sortedIcon('desc', column) ? (openBlock(), createBlock(_component_ArrowDownSvg, {
8043
+ key: 2,
8044
+ "class": "inline-block w-4 text-primary"
8045
+ })) : createCommentVNode("", true)])) : createCommentVNode("", true)])], 42, _hoisted_3$8)) : createCommentVNode("", true)], 64);
7931
8046
  }), 128)), _ctx.$slots.head ? renderSlot(_ctx.$slots, "head", {
7932
8047
  key: 0
7933
- }) : createCommentVNode("", true)])]), createElementVNode("tbody", _hoisted_7$1, [_ctx.loading ? (openBlock(true), createElementBlock(Fragment, {
8048
+ }) : createCommentVNode("", true)])]), createElementVNode("tbody", _hoisted_6$1, [_ctx.loading ? (openBlock(true), createElementBlock(Fragment, {
7934
8049
  key: 0
7935
8050
  }, renderList(_ctx.sortedData, function (row, trKey) {
7936
8051
  return openBlock(), createElementBlock("tr", {
@@ -7938,44 +8053,56 @@ function render$c(_ctx, _cache, $props, $setup, $data, $options) {
7938
8053
  }, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, colKey) {
7939
8054
  return openBlock(), createElementBlock(Fragment, {
7940
8055
  key: colKey
7941
- }, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td", _hoisted_8$1, [createVNode(_component_FwLoadingBar, {
8056
+ }, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td", _hoisted_7$1, [createVNode(_component_FwLoadingBar, {
7942
8057
  "class": "w-full h-7"
7943
8058
  })])) : createCommentVNode("", true)], 64);
7944
- }), 128)), _ctx.$slots.row ? (openBlock(), createElementBlock("td", _hoisted_9$1, [createVNode(_component_FwLoadingBar, {
8059
+ }), 128)), _ctx.$slots.row ? (openBlock(), createElementBlock("td", _hoisted_8$1, [createVNode(_component_FwLoadingBar, {
7945
8060
  "class": "w-full h-7"
7946
8061
  })])) : createCommentVNode("", true)]);
7947
8062
  }), 128)) : (openBlock(true), createElementBlock(Fragment, {
7948
8063
  key: 1
7949
8064
  }, renderList(_ctx.sortedData, function (row, trKey) {
7950
8065
  return openBlock(), createElementBlock("tr", {
7951
- "class": "border-b border-grey-40 hover:bg-grey-lightest",
8066
+ "class": normalizeClass(["fw-table-row border-b border-grey-40", _ctx.clickableRows ? 'cursor-pointer' : '']),
8067
+ onClick: function onClick($event) {
8068
+ return _ctx.rowClicked(row);
8069
+ },
8070
+ tabindex: _ctx.clickableRows ? 0 : -1,
8071
+ onKeydown: withKeys(function ($event) {
8072
+ return _ctx.rowClicked(row);
8073
+ }, ["enter", "space"]),
7952
8074
  key: trKey
7953
8075
  }, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, colKey) {
7954
8076
  return openBlock(), createElementBlock(Fragment, {
7955
8077
  key: colKey
7956
8078
  }, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td", {
7957
8079
  key: 0,
7958
- "class": "py-3 px-4 text-left whitespace-nowrap",
8080
+ "class": "py-2 pl-5 pr-3 text-left",
7959
8081
  innerHTML: _ctx.formattedText(row, column)
7960
8082
  }, null, 8, _hoisted_10)) : createCommentVNode("", true)], 64);
7961
8083
  }), 128)), _ctx.$slots.row ? renderSlot(_ctx.$slots, "row", {
7962
8084
  key: 0,
7963
8085
  row: row
7964
- }) : createCommentVNode("", true)]);
7965
- }), 128))])], 2);
8086
+ }) : createCommentVNode("", true)], 42, _hoisted_9$1);
8087
+ }), 128))])], 10, _hoisted_1$c);
7966
8088
  }
7967
8089
 
7968
- script$a.render = render$c;
8090
+ var css_248z$6 = ".fw-table-head--sortable[data-v-29e0d2d4]:hover{background-color:var(--015ddfb2)}.fw-table-row[data-v-29e0d2d4]:hover{background-color:var(--015ddfb2)}";
8091
+ var stylesheet$6 = ".fw-table-head--sortable[data-v-29e0d2d4]:hover{background-color:var(--015ddfb2)}.fw-table-row[data-v-29e0d2d4]:hover{background-color:var(--015ddfb2)}";
8092
+ styleInject(css_248z$6);
8093
+
8094
+ __default__$2.render = render$c;
8095
+ __default__$2.__scopeId = "data-v-29e0d2d4";
7969
8096
 
7970
8097
  var script$9 = defineComponent({
7971
8098
  name: 'FwTableHead'
7972
8099
  });
7973
8100
 
7974
8101
  var _hoisted_1$b = {
7975
- "class": "py-3 px-4 text-center"
8102
+ "class": "py-6 px-5 text-left font-medium"
7976
8103
  };
7977
8104
  var _hoisted_2$a = {
7978
- "class": "flex flex-row items-center space-x-1"
8105
+ "class": "flex flex-row"
7979
8106
  };
7980
8107
  var _hoisted_3$7 = {
7981
8108
  key: 0,
@@ -8053,7 +8180,7 @@ var _hoisted_2$9 = {
8053
8180
  var _hoisted_3$6 = {
8054
8181
  "class": "flex flex-row items-center"
8055
8182
  };
8056
- var _hoisted_4$3 = {
8183
+ var _hoisted_4$4 = {
8057
8184
  "class": "h4 mb-0 ml-6"
8058
8185
  };
8059
8186
  var _hoisted_5$1 = {
@@ -8068,7 +8195,7 @@ function render$9(_ctx, _cache, $props, $setup, $data, $options) {
8068
8195
  "class": "fw-accordion--header px-8 py-4 bg-grey-lightest w-full border-opacity-0 hover:bg-grey-20"
8069
8196
  }, [createElementVNode("div", _hoisted_2$9, [createElementVNode("div", _hoisted_3$6, [createElementVNode("span", {
8070
8197
  "class": normalizeClass(["fw-accordion--icon", _ctx.isOpen ? 'fw-accordion--icon-open' : ''])
8071
- }, null, 2), createElementVNode("span", _hoisted_4$3, toDisplayString(_ctx.title), 1)]), _ctx.suffixTitle ? (openBlock(), createElementBlock("span", _hoisted_5$1, toDisplayString(_ctx.suffixTitle), 1)) : createCommentVNode("", true)])]), createVNode(Transition, {
8198
+ }, null, 2), createElementVNode("span", _hoisted_4$4, toDisplayString(_ctx.title), 1)]), _ctx.suffixTitle ? (openBlock(), createElementBlock("span", _hoisted_5$1, toDisplayString(_ctx.suffixTitle), 1)) : createCommentVNode("", true)])]), createVNode(Transition, {
8072
8199
  name: "slideInOut",
8073
8200
  onBeforeEnter: _ctx.transitionEnter,
8074
8201
  onEnter: _ctx.transitionEnter,
@@ -8697,8 +8824,8 @@ var script$6 = defineComponent({
8697
8824
  lazyload: lazyLoadDirective
8698
8825
  },
8699
8826
  components: {
8700
- FwLoadingBar: script$b,
8701
- FileExclamationSvg: render$H
8827
+ FwLoadingBar: script$a,
8828
+ FileExclamationSvg: render$K
8702
8829
  },
8703
8830
  props: {
8704
8831
  /**
@@ -8813,7 +8940,7 @@ script$6.render = render$8;
8813
8940
  var script$5 = defineComponent({
8814
8941
  name: 'FwLoadingCard',
8815
8942
  components: {
8816
- FwLoadingBar: script$b
8943
+ FwLoadingBar: script$a
8817
8944
  }
8818
8945
  });
8819
8946
 
@@ -8837,7 +8964,7 @@ script$5.render = render$7;
8837
8964
  var script$4 = defineComponent({
8838
8965
  name: 'FwLoadingTable',
8839
8966
  components: {
8840
- FwLoadingBar: script$b
8967
+ FwLoadingBar: script$a
8841
8968
  },
8842
8969
  props: {
8843
8970
  columns: {
@@ -8850,7 +8977,7 @@ var script$4 = defineComponent({
8850
8977
  }
8851
8978
  },
8852
8979
  setup: function setup() {
8853
- var tableClass = "fw-loading-table table-auto cursor-wait table-responsive rounded border border-grey-40\n border-spacing-px border-separate bg-grey-40";
8980
+ var tableClass = "fw-loading-table table-auto cursor-wait table-responsive rounded-md shadow-card";
8854
8981
  return {
8855
8982
  tableClass: tableClass
8856
8983
  };
@@ -8858,34 +8985,35 @@ var script$4 = defineComponent({
8858
8985
  });
8859
8986
 
8860
8987
  var _hoisted_1$6 = {
8861
- "class": "text-p-small bg-white"
8988
+ "class": "text-p-small"
8862
8989
  };
8863
8990
  var _hoisted_2$6 = {
8864
- "class": "flex flex-row items-center space-x-1"
8991
+ "class": "p-0 m-0"
8865
8992
  };
8866
8993
  var _hoisted_3$4 = {
8994
+ "class": "m-0 p-0"
8995
+ };
8996
+ var _hoisted_4$3 = {
8867
8997
  "class": "text-p-small bg-white font-light"
8868
8998
  };
8869
8999
  function render$6(_ctx, _cache, $props, $setup, $data, $options) {
8870
9000
  var _component_FwLoadingBar = resolveComponent("FwLoadingBar");
8871
9001
  return openBlock(), createElementBlock("table", {
8872
- "class": normalizeClass(_ctx.tableClass)
8873
- }, [createElementVNode("thead", _hoisted_1$6, [createElementVNode("tr", null, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, thKey) {
8874
- return openBlock(), createElementBlock("th", {
8875
- key: thKey,
8876
- "class": "py-3 px-4 text-center border-b border-b-grey-light"
8877
- }, [createElementVNode("div", _hoisted_2$6, [createVNode(_component_FwLoadingBar, {
8878
- "class": "w-full h-8"
8879
- })])]);
8880
- }), 128))])]), createElementVNode("tbody", _hoisted_3$4, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.rows, function (row, trKey) {
9002
+ "class": normalizeClass(_ctx.tableClass),
9003
+ "aria-live": "polite",
9004
+ "aria-busy": "true"
9005
+ }, [createElementVNode("thead", _hoisted_1$6, [createElementVNode("tr", _hoisted_2$6, [createElementVNode("th", _hoisted_3$4, [createVNode(_component_FwLoadingBar, {
9006
+ "class": "h-[4.5rem] py-6 rounded-b-none",
9007
+ style: normalizeStyle("width:".concat(_ctx.columns, "00%;"))
9008
+ }, null, 8, ["style"])])])]), createElementVNode("tbody", _hoisted_4$3, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.rows, function (row, trKey) {
8881
9009
  return openBlock(), createElementBlock("tr", {
8882
9010
  key: trKey
8883
9011
  }, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, colKey) {
8884
9012
  return openBlock(), createElementBlock("td", {
8885
9013
  key: colKey,
8886
- "class": "py-3 px-4 text-left whitespace-nowrap"
9014
+ "class": "py-4 pl-5 pr-3 text-left whitespace-nowrap"
8887
9015
  }, [createVNode(_component_FwLoadingBar, {
8888
- "class": "w-full h-6"
9016
+ "class": "w-full h-7"
8889
9017
  })]);
8890
9018
  }), 128))]);
8891
9019
  }), 128))])], 2);
@@ -8959,9 +9087,9 @@ $$3({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }
8959
9087
  var script$3 = defineComponent({
8960
9088
  name: 'FwToast',
8961
9089
  components: {
8962
- SolidCheckSvg: render$p,
8963
- SolidXMarkSvg: render$o,
8964
- ErrorFilledSvg: render$z
9090
+ SolidCheckSvg: render$s,
9091
+ SolidXMarkSvg: render$r,
9092
+ ErrorFilledSvg: render$C
8965
9093
  },
8966
9094
  emits: ['update:modelValue', 'dismissed'],
8967
9095
  props: {
@@ -9149,7 +9277,7 @@ script$3.render = render$5;
9149
9277
  var script$2 = defineComponent({
9150
9278
  name: 'FwTransactionsCard',
9151
9279
  components: {
9152
- FwCard: script$k,
9280
+ FwCard: script$j,
9153
9281
  FwImage: script$6
9154
9282
  },
9155
9283
  props: {
@@ -25040,8 +25168,8 @@ var script = defineComponent({
25040
25168
  name: 'FwSidebarMenu',
25041
25169
  emits: ['toggled'],
25042
25170
  components: {
25043
- FwButton: script$i,
25044
- ChevronRightSvg: render$B
25171
+ FwButton: script$h,
25172
+ ChevronRightSvg: render$E
25045
25173
  },
25046
25174
  props: {
25047
25175
  /**
@@ -25074,12 +25202,14 @@ var script = defineComponent({
25074
25202
  }
25075
25203
  },
25076
25204
  setup: function setup(props, ctx) {
25205
+ var baseClass = "h-full shadow-md bg-grey-lightest border-r border-grey-20 \n fixed top-0 left-0 transition-all duration-300";
25077
25206
  var isMenuOpen = ref(true);
25078
25207
  var toggleMenu = function toggleMenu() {
25079
25208
  isMenuOpen.value = !isMenuOpen.value;
25080
25209
  ctx.emit('toggled', isMenuOpen.value ? props.openWidth : props.closedWidth);
25081
25210
  };
25082
25211
  return {
25212
+ baseClass: baseClass,
25083
25213
  isMenuOpen: isMenuOpen,
25084
25214
  toggleMenu: toggleMenu
25085
25215
  };
@@ -25103,7 +25233,7 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
25103
25233
  var _component_FwButton = resolveComponent("FwButton");
25104
25234
  return _ctx.menuItems && ((_ctx$menuItems = _ctx.menuItems) === null || _ctx$menuItems === void 0 ? void 0 : _ctx$menuItems.length) > 0 ? (openBlock(), createElementBlock("div", {
25105
25235
  key: 0,
25106
- "class": normalizeClass(["fw-sidebar-menu h-full shadow-md bg-grey-lightest border-r border-grey-20 fixed top-0 left-0 transition-all duration-300", _ctx.isMenuOpen ? _ctx.openWidth : _ctx.closedWidth]),
25236
+ "class": normalizeClass(["fw-sidebar-menu", [_ctx.baseClass, _ctx.isMenuOpen ? _ctx.openWidth : _ctx.closedWidth]]),
25107
25237
  "aria-label": "Aside navigation menu"
25108
25238
  }, [createVNode(_component_FwButton, {
25109
25239
  variant: "primary",
@@ -25125,8 +25255,10 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
25125
25255
  }, {
25126
25256
  "default": withCtx(function () {
25127
25257
  return [_ctx.isMenuOpen ? (openBlock(), createElementBlock("div", _hoisted_1$2, [_ctx.$slots.title ? (openBlock(), createElementBlock("div", _hoisted_2$2, [renderSlot(_ctx.$slots, "title")])) : createCommentVNode("", true), createElementVNode("div", _hoisted_3$1, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
25128
- return openBlock(), createBlock(_component_FwButton, {
25129
- key: i,
25258
+ return openBlock(), createElementBlock(Fragment, {
25259
+ key: i
25260
+ }, [!item.disabled ? (openBlock(), createBlock(_component_FwButton, {
25261
+ key: 0,
25130
25262
  rounded: false,
25131
25263
  "class": "!text-left !px-4 text-grey-base",
25132
25264
  variant: "transparent",
@@ -25140,15 +25272,15 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
25140
25272
  return [createTextVNode(toDisplayString(item.label), 1)];
25141
25273
  }),
25142
25274
  _: 2
25143
- }, 1032, ["href", "to", "external"]);
25275
+ }, 1032, ["href", "to", "external"])) : createCommentVNode("", true)], 64);
25144
25276
  }), 128))])])) : createCommentVNode("", true)];
25145
25277
  }),
25146
25278
  _: 3
25147
25279
  })], 2)) : createCommentVNode("", true);
25148
25280
  }
25149
25281
 
25150
- var css_248z$2 = ".sidebarMenuSlide-enter-active{-webkit-animation:sidebarMenuSlide .1s;animation:sidebarMenuSlide .1s;-webkit-transition:opacity .1s ease-in;transition:opacity .1s ease-in;-webkit-transition-delay:10s;transition-delay:10s}.sidebarMenuSlide-leave-active{animation:sidebarMenuSlide .1s reverse;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}@-webkit-keyframes sidebarMenuSlide{0%{opacity:0}to{opacity:1}}@keyframes sidebarMenuSlide{0%{opacity:0}to{opacity:1}}";
25151
- var stylesheet$2 = ".sidebarMenuSlide-enter-active{-webkit-animation:sidebarMenuSlide .1s;animation:sidebarMenuSlide .1s;-webkit-transition:opacity .1s ease-in;transition:opacity .1s ease-in;-webkit-transition-delay:10s;transition-delay:10s}.sidebarMenuSlide-leave-active{animation:sidebarMenuSlide .1s reverse;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}@-webkit-keyframes sidebarMenuSlide{0%{opacity:0}to{opacity:1}}@keyframes sidebarMenuSlide{0%{opacity:0}to{opacity:1}}";
25282
+ var css_248z$2 = ".sidebarMenuSlide-enter-active{-webkit-transition:all .6s ease-in;transition:all .6s ease-in}.sidebarMenuSlide-leave-active{-webkit-transition:opacity 10ms ease-in;transition:opacity 10ms ease-in}.sidebarMenuSlide-enter-from,.sidebarMenuSlide-leave-to{opacity:0}.sidebarMenuSlide-enter-to,.sidebarMenuSlide-leave-from{opacity:1}";
25283
+ var stylesheet$2 = ".sidebarMenuSlide-enter-active{-webkit-transition:all .6s ease-in;transition:all .6s ease-in}.sidebarMenuSlide-leave-active{-webkit-transition:opacity 10ms ease-in;transition:opacity 10ms ease-in}.sidebarMenuSlide-enter-from,.sidebarMenuSlide-leave-to{opacity:0}.sidebarMenuSlide-enter-to,.sidebarMenuSlide-leave-from{opacity:1}";
25152
25284
  styleInject(css_248z$2);
25153
25285
 
25154
25286
  script.render = render$2;
@@ -25274,23 +25406,23 @@ __default__.__scopeId = "data-v-c32112d4";
25274
25406
  var components = /*#__PURE__*/Object.freeze({
25275
25407
  __proto__: null,
25276
25408
  FwForm: Form,
25277
- FwInput: script$n,
25278
- FwCheckbox: script$m,
25279
- FwDropdown: script$l,
25280
- FwCard: script$k,
25281
- FwButton: script$i,
25282
- FwNavigationMenu: script$h,
25283
- FwTabs: script$g,
25284
- FwTab: script$f,
25285
- FwModal: script$e,
25286
- FwProgressBar: script$d,
25287
- FwTag: script$c,
25288
- FwTable: script$a,
25409
+ FwInput: script$m,
25410
+ FwCheckbox: script$l,
25411
+ FwDropdown: script$k,
25412
+ FwCard: script$j,
25413
+ FwButton: script$h,
25414
+ FwNavigationMenu: script$g,
25415
+ FwTabs: script$f,
25416
+ FwTab: script$e,
25417
+ FwModal: script$d,
25418
+ FwProgressBar: script$c,
25419
+ FwTag: script$b,
25420
+ FwTable: __default__$2,
25289
25421
  FwTableHead: script$9,
25290
25422
  FwTableRow: script$8,
25291
25423
  FwAccordion: script$7,
25292
25424
  FwImage: script$6,
25293
- FwLoadingBar: script$b,
25425
+ FwLoadingBar: script$a,
25294
25426
  FwLoadingCard: script$5,
25295
25427
  FwLoadingTable: script$4,
25296
25428
  FwToast: script$3,
@@ -25299,7 +25431,7 @@ var components = /*#__PURE__*/Object.freeze({
25299
25431
  FwSidebarMenu: script,
25300
25432
  FwEmailPulse: __default__$1,
25301
25433
  FwSuccessPulse: __default__,
25302
- FwLoadingSpinner: script$j
25434
+ FwLoadingSpinner: script$i
25303
25435
  });
25304
25436
 
25305
25437
  function _defineProperty(obj, key, value) {
@@ -25350,7 +25482,7 @@ var modalService = function modalService(options) {
25350
25482
  }));
25351
25483
  createApp({
25352
25484
  render: function render() {
25353
- return h(script$e, props);
25485
+ return h(script$d, props);
25354
25486
  }
25355
25487
  }).mount(elementToMount);
25356
25488
  var open = function open() {
@@ -25403,4 +25535,4 @@ var install = function install(app) {
25403
25535
  });
25404
25536
  };
25405
25537
 
25406
- export { script$7 as FwAccordion, script$1 as FwBarChart, script$i as FwButton, script$k as FwCard, script$m as FwCheckbox, script$l as FwDropdown, __default__$1 as FwEmailPulse, Form as FwForm, script$6 as FwImage, script$n as FwInput, script$b as FwLoadingBar, script$5 as FwLoadingCard, script$j as FwLoadingSpinner, script$4 as FwLoadingTable, script$e as FwModal, script$h as FwNavigationMenu, script$d as FwProgressBar, script as FwSidebarMenu, __default__ as FwSuccessPulse, script$f as FwTab, script$a as FwTable, script$9 as FwTableHead, script$8 as FwTableRow, script$g as FwTabs, script$c as FwTag, script$3 as FwToast, script$2 as FwTransactionsCard, install as default, modalService, toastService };
25538
+ export { script$7 as FwAccordion, script$1 as FwBarChart, script$h as FwButton, script$j as FwCard, script$l as FwCheckbox, script$k as FwDropdown, __default__$1 as FwEmailPulse, Form as FwForm, script$6 as FwImage, script$m as FwInput, script$a as FwLoadingBar, script$5 as FwLoadingCard, script$i as FwLoadingSpinner, script$4 as FwLoadingTable, script$d as FwModal, script$g as FwNavigationMenu, script$c as FwProgressBar, script as FwSidebarMenu, __default__ as FwSuccessPulse, script$e as FwTab, __default__$2 as FwTable, script$9 as FwTableHead, script$8 as FwTableRow, script$f as FwTabs, script$b as FwTag, script$3 as FwToast, script$2 as FwTransactionsCard, install as default, modalService, toastService };