@frollo/frollo-web-ui 4.0.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js +908 -497
- package/esm/{es.number.constructor-1249bd78.js → es.number.constructor-d6ff8874.js} +13 -4
- package/esm/{es.string.iterator-284b31d4.js → es.string.iterator-590198a8.js} +1 -2
- package/esm/fw-accordion.js +61 -28
- package/esm/fw-animations.js +3 -4
- package/esm/fw-bar-chart.js +4 -4
- package/esm/{fw-button-e8b1bd62.js → fw-button-beaf20f4.js} +1 -1
- package/esm/fw-button.js +3 -3
- package/esm/fw-checkbox.js +25 -9
- package/esm/fw-drawer.js +225 -0
- package/esm/fw-dropdown.js +1 -1
- package/esm/{fw-image-3fa960e1.js → fw-image-161b667a.js} +66 -60
- package/esm/fw-image.js +6 -7
- package/esm/fw-input.js +27 -9
- package/esm/{fw-loading-spinner-304e2f95.js → fw-loading-spinner-51deaa3d.js} +1 -1
- package/esm/fw-loading.js +17 -17
- package/esm/fw-modal.js +3 -3
- package/esm/fw-navigation-menu.js +3 -3
- package/esm/fw-progress-bar.js +1 -2
- package/esm/fw-sidebar-menu.js +13 -9
- package/esm/fw-table.js +63 -41
- package/esm/fw-tabs.js +1 -2
- package/esm/fw-tag.js +93 -18
- package/esm/fw-toast.js +2 -3
- package/esm/fw-transactions-card.js +6 -7
- package/esm/get-root-colours-e2a1cb28.js +21 -0
- package/esm/{index-1a41e7bf.js → index-2766bfe4.js} +14 -14
- package/esm/{index-c6458115.js → index-3624f1c9.js} +124 -96
- package/esm/index.js +42 -39
- package/frollo-web-ui.esm.js +971 -545
- package/icons/index.ts +5 -1
- package/icons/search.svg +3 -0
- package/icons/xmark.svg +3 -0
- package/index.d.ts +446 -139
- package/package.json +1 -1
- package/types/components/fw-accordion/fw-accordion.vue.d.ts +22 -4
- package/types/components/fw-accordion/index.types.d.ts +1 -0
- package/types/components/fw-checkbox/fw-checkbox.vue.d.ts +35 -3
- package/types/components/fw-checkbox/index.types.d.ts +2 -0
- package/types/components/fw-drawer/fw-drawer.vue.d.ts +165 -0
- package/types/components/fw-drawer/index.d.ts +2 -0
- package/types/components/fw-drawer/index.types.d.ts +14 -0
- package/types/components/fw-input/fw-input.vue.d.ts +36 -2
- package/types/components/fw-input/index.types.d.ts +2 -0
- package/types/components/fw-sidebar-menu/fw-sidebar-menu.vue.d.ts +4 -3
- package/types/components/fw-sidebar-menu/index.types.d.ts +2 -1
- package/types/components/fw-table/fw-table.vue.d.ts +14 -0
- package/types/components/fw-table/index.types.d.ts +3 -1
- package/types/components/fw-tag/fw-tag.vue.d.ts +30 -8
- package/types/components/fw-tag/index.types.d.ts +4 -2
- package/types/components/index.d.ts +1 -0
- package/types/components/index.types.d.ts +1 -0
- package/types/helpers/get-root-colours.d.ts +9 -0
- package/types/icons/index.d.ts +3 -1
- package/web-components/index.js +973 -547
- package/esm/to-string-12728fd2.js +0 -13
package/frollo-web-ui.esm.js
CHANGED
|
@@ -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,
|
|
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, withDirectives, vShow, resolveDirective, 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$
|
|
5114
|
+
var script$l = defineComponent({
|
|
5115
5115
|
name: 'FwInput',
|
|
5116
5116
|
emits: ['update:modelValue'],
|
|
5117
5117
|
components: {
|
|
@@ -5182,16 +5182,32 @@ var script$m = defineComponent({
|
|
|
5182
5182
|
},
|
|
5183
5183
|
/**
|
|
5184
5184
|
* The logical tab order of the input.
|
|
5185
|
-
* Defaults to
|
|
5185
|
+
* Defaults to 0
|
|
5186
5186
|
*/
|
|
5187
5187
|
tabindex: {
|
|
5188
5188
|
type: String,
|
|
5189
|
-
"default": '
|
|
5189
|
+
"default": '0'
|
|
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
|
|
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,20 +5354,20 @@ $$d({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
|
|
|
5338
5354
|
}
|
|
5339
5355
|
});
|
|
5340
5356
|
|
|
5341
|
-
var _hoisted_1$
|
|
5357
|
+
var _hoisted_1$Y = {
|
|
5342
5358
|
"class": "fw-input w-full"
|
|
5343
5359
|
};
|
|
5344
|
-
var _hoisted_2$
|
|
5360
|
+
var _hoisted_2$U = {
|
|
5345
5361
|
"class": "flex flex-col"
|
|
5346
5362
|
};
|
|
5347
|
-
var _hoisted_3$
|
|
5363
|
+
var _hoisted_3$R = {
|
|
5348
5364
|
"class": "flex flex-row justify-between"
|
|
5349
5365
|
};
|
|
5350
|
-
var _hoisted_4$
|
|
5366
|
+
var _hoisted_4$f = ["for"];
|
|
5351
5367
|
var _hoisted_5$8 = {
|
|
5352
5368
|
key: 1
|
|
5353
5369
|
};
|
|
5354
|
-
var _hoisted_6$
|
|
5370
|
+
var _hoisted_6$7 = {
|
|
5355
5371
|
"class": "relative"
|
|
5356
5372
|
};
|
|
5357
5373
|
var _hoisted_7$6 = {
|
|
@@ -5369,12 +5385,13 @@ var _hoisted_9$5 = /*#__PURE__*/createElementVNode("svg", {
|
|
|
5369
5385
|
}, [/*#__PURE__*/createElementVNode("path", {
|
|
5370
5386
|
d: "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM232 152C232 138.8\n 242.8 128 256 128s24 10.75 24 24v128c0 13.25-10.75 24-24 24S232 293.3 232 280V152zM256 400c-17.36\n 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 385.9 273.4\n 400 256 400z"
|
|
5371
5387
|
})], -1);
|
|
5372
|
-
var _hoisted_10$
|
|
5388
|
+
var _hoisted_10$4 = [_hoisted_9$5];
|
|
5373
5389
|
var _hoisted_11$1 = {
|
|
5374
|
-
key:
|
|
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$
|
|
5404
|
+
function render$_(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5388
5405
|
var _component_InputField = resolveComponent("InputField");
|
|
5389
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5406
|
+
return openBlock(), createElementBlock("div", _hoisted_1$Y, [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$X(_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$
|
|
5419
|
+
return [createElementVNode("div", _hoisted_2$U, [createElementVNode("div", _hoisted_3$R, [_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$
|
|
5423
|
+
}, toDisplayString(_ctx.label), 9, _hoisted_4$f)) : createCommentVNode("", true), _ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_5$8, [renderSlot(_ctx.$slots, "action")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_6$7, [_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,18 +5431,19 @@ function render$X(_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),
|
|
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 () {
|
|
5422
5440
|
return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("div", {
|
|
5423
5441
|
key: 0,
|
|
5424
5442
|
"class": normalizeClass(["flex text-error absolute w-9 h-full inset-y-0 right-0 items-center pr-3 pointer-events-none", _ctx.$slots.suffix ? 'mr-8' : ''])
|
|
5425
|
-
}, _hoisted_10$
|
|
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)]),
|
|
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$X(_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,25 +5484,33 @@ function styleInject(css, ref) {
|
|
|
5466
5484
|
}
|
|
5467
5485
|
}
|
|
5468
5486
|
|
|
5469
|
-
var css_248z$
|
|
5470
|
-
var stylesheet$
|
|
5471
|
-
styleInject(css_248z$
|
|
5487
|
+
var css_248z$f = ".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$f = ".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$f);
|
|
5472
5490
|
|
|
5473
|
-
script$
|
|
5491
|
+
script$l.render = render$_;
|
|
5474
5492
|
|
|
5475
|
-
var script$
|
|
5493
|
+
var script$k = defineComponent({
|
|
5476
5494
|
name: 'FwCheckbox',
|
|
5477
5495
|
components: {
|
|
5478
5496
|
InputField: Field
|
|
5479
5497
|
},
|
|
5480
5498
|
props: {
|
|
5481
5499
|
/**
|
|
5482
|
-
* The name of the input field.
|
|
5500
|
+
* The name of the checkbox input field.
|
|
5501
|
+
* Multiple checkboxes can use the same name with a unique value.
|
|
5483
5502
|
*/
|
|
5484
5503
|
name: {
|
|
5485
5504
|
type: String,
|
|
5486
5505
|
required: true
|
|
5487
5506
|
},
|
|
5507
|
+
/**
|
|
5508
|
+
* The value of the input field. Must be unique per name.
|
|
5509
|
+
*/
|
|
5510
|
+
value: {
|
|
5511
|
+
type: String,
|
|
5512
|
+
required: false
|
|
5513
|
+
},
|
|
5488
5514
|
/**
|
|
5489
5515
|
* Label for the input. Also renders to an aria-label attribute
|
|
5490
5516
|
*/
|
|
@@ -5502,6 +5528,13 @@ var script$l = defineComponent({
|
|
|
5502
5528
|
*/
|
|
5503
5529
|
hint: {
|
|
5504
5530
|
type: String
|
|
5531
|
+
},
|
|
5532
|
+
/**
|
|
5533
|
+
* Enable or disable the error hidden element
|
|
5534
|
+
*/
|
|
5535
|
+
enableErrors: {
|
|
5536
|
+
type: Boolean,
|
|
5537
|
+
"default": true
|
|
5505
5538
|
}
|
|
5506
5539
|
},
|
|
5507
5540
|
setup: function setup() {
|
|
@@ -5513,18 +5546,19 @@ var script$l = defineComponent({
|
|
|
5513
5546
|
});
|
|
5514
5547
|
|
|
5515
5548
|
var _withScopeId$5 = function _withScopeId(n) {
|
|
5516
|
-
return pushScopeId("data-v-
|
|
5549
|
+
return pushScopeId("data-v-9ac45436"), n = n(), popScopeId(), n;
|
|
5517
5550
|
};
|
|
5518
|
-
var _hoisted_1$
|
|
5551
|
+
var _hoisted_1$X = {
|
|
5519
5552
|
"class": "fw-checkbox w-full"
|
|
5520
5553
|
};
|
|
5521
|
-
var _hoisted_2$
|
|
5554
|
+
var _hoisted_2$T = {
|
|
5522
5555
|
"class": "flex flex-col"
|
|
5523
5556
|
};
|
|
5524
|
-
var _hoisted_3$
|
|
5525
|
-
var _hoisted_4$
|
|
5557
|
+
var _hoisted_3$Q = ["for"];
|
|
5558
|
+
var _hoisted_4$e = ["value", "name", "id"];
|
|
5526
5559
|
var _hoisted_5$7 = ["innerHTML"];
|
|
5527
|
-
var _hoisted_6$
|
|
5560
|
+
var _hoisted_6$6 = {
|
|
5561
|
+
key: 0,
|
|
5528
5562
|
"class": "italic text-sm font-medium min-h-[21px]"
|
|
5529
5563
|
};
|
|
5530
5564
|
var _hoisted_7$5 = {
|
|
@@ -5534,11 +5568,11 @@ var _hoisted_7$5 = {
|
|
|
5534
5568
|
var _hoisted_8$5 = {
|
|
5535
5569
|
key: 1
|
|
5536
5570
|
};
|
|
5537
|
-
function render$
|
|
5571
|
+
function render$Z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5538
5572
|
var _component_InputField = resolveComponent("InputField");
|
|
5539
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5573
|
+
return openBlock(), createElementBlock("div", _hoisted_1$X, [createVNode(_component_InputField, {
|
|
5540
5574
|
name: _ctx.name,
|
|
5541
|
-
value: _ctx.name,
|
|
5575
|
+
value: _ctx.value ? _ctx.value : _ctx.name,
|
|
5542
5576
|
type: "checkbox",
|
|
5543
5577
|
rules: _ctx.rules
|
|
5544
5578
|
}, {
|
|
@@ -5547,20 +5581,20 @@ function render$W(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5547
5581
|
errors = _ref.errors,
|
|
5548
5582
|
errorMessage = _ref.errorMessage,
|
|
5549
5583
|
meta = _ref.meta;
|
|
5550
|
-
return [createElementVNode("div", _hoisted_2$
|
|
5584
|
+
return [createElementVNode("div", _hoisted_2$T, [createElementVNode("label", {
|
|
5551
5585
|
"for": "fw-checkbox-".concat(_ctx.name, "-").concat(_ctx.uuid),
|
|
5552
5586
|
"class": "inline-flex items-center mb-3"
|
|
5553
5587
|
}, [createElementVNode("input", mergeProps(field, {
|
|
5554
|
-
value: _ctx.name,
|
|
5588
|
+
value: _ctx.value ? _ctx.value : _ctx.name,
|
|
5555
5589
|
name: "fw-checkbox-".concat(_ctx.name, "-").concat(_ctx.uuid),
|
|
5556
5590
|
id: "fw-checkbox-".concat(_ctx.name, "-").concat(_ctx.uuid),
|
|
5557
5591
|
type: "checkbox",
|
|
5558
5592
|
"class": "text-link w-6 h-6 cursor-pointer bg-white border-grey-light border rounded"
|
|
5559
|
-
}), null, 16, _hoisted_4$
|
|
5593
|
+
}), null, 16, _hoisted_4$e), _ctx.label ? (openBlock(), createElementBlock("span", {
|
|
5560
5594
|
key: 0,
|
|
5561
5595
|
"class": "ml-2",
|
|
5562
5596
|
innerHTML: _ctx.label
|
|
5563
|
-
}, null, 8, _hoisted_5$7)) : createCommentVNode("", true)], 8, _hoisted_3$
|
|
5597
|
+
}, null, 8, _hoisted_5$7)) : createCommentVNode("", true)], 8, _hoisted_3$Q), _ctx.enableErrors ? (openBlock(), createElementBlock("div", _hoisted_6$6, [createVNode(Transition, {
|
|
5564
5598
|
name: "fwFadeIn",
|
|
5565
5599
|
mode: "out-in"
|
|
5566
5600
|
}, {
|
|
@@ -5568,18 +5602,18 @@ function render$W(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5568
5602
|
return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("span", _hoisted_7$5, toDisplayString(errorMessage || errors[0]), 1)) : _ctx.hint ? (openBlock(), createElementBlock("span", _hoisted_8$5, toDisplayString(_ctx.hint), 1)) : createCommentVNode("", true)];
|
|
5569
5603
|
}),
|
|
5570
5604
|
_: 2
|
|
5571
|
-
}, 1024)])])];
|
|
5605
|
+
}, 1024)])) : createCommentVNode("", true)])];
|
|
5572
5606
|
}),
|
|
5573
5607
|
_: 1
|
|
5574
5608
|
}, 8, ["name", "value", "rules"])]);
|
|
5575
5609
|
}
|
|
5576
5610
|
|
|
5577
|
-
var css_248z$
|
|
5578
|
-
var stylesheet$
|
|
5579
|
-
styleInject(css_248z$
|
|
5611
|
+
var css_248z$e = ".fwFadeIn-enter-active[data-v-9ac45436]{-webkit-animation:fwFadeIn-9ac45436 .35s;animation:fwFadeIn-9ac45436 .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-9ac45436]{animation:fwFadeIn-9ac45436 .35s reverse;-webkit-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-9ac45436{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-9ac45436{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-9ac45436]{-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-9ac45436]: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}";
|
|
5612
|
+
var stylesheet$e = ".fwFadeIn-enter-active[data-v-9ac45436]{-webkit-animation:fwFadeIn-9ac45436 .35s;animation:fwFadeIn-9ac45436 .35s;-webkit-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active[data-v-9ac45436]{animation:fwFadeIn-9ac45436 .35s reverse;-webkit-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn-9ac45436{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn-9ac45436{0%{opacity:0}to{opacity:1}}.fw-checkbox input[data-v-9ac45436]{-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-9ac45436]: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}";
|
|
5613
|
+
styleInject(css_248z$e);
|
|
5580
5614
|
|
|
5581
|
-
script$
|
|
5582
|
-
script$
|
|
5615
|
+
script$k.render = render$Z;
|
|
5616
|
+
script$k.__scopeId = "data-v-9ac45436";
|
|
5583
5617
|
|
|
5584
5618
|
var es_array_find = {};
|
|
5585
5619
|
|
|
@@ -5605,12 +5639,54 @@ $$c({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, {
|
|
|
5605
5639
|
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
5606
5640
|
addToUnscopables$1(FIND);
|
|
5607
5641
|
|
|
5608
|
-
const _hoisted_1$
|
|
5642
|
+
const _hoisted_1$W = {
|
|
5609
5643
|
viewBox: "0 0 52 34",
|
|
5610
5644
|
fill: "currentColor",
|
|
5611
5645
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5612
5646
|
};
|
|
5613
|
-
const _hoisted_2$
|
|
5647
|
+
const _hoisted_2$S = /*#__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);
|
|
5648
|
+
const _hoisted_3$P = [
|
|
5649
|
+
_hoisted_2$S
|
|
5650
|
+
];
|
|
5651
|
+
|
|
5652
|
+
function render$Y(_ctx, _cache) {
|
|
5653
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$W, _hoisted_3$P))
|
|
5654
|
+
}
|
|
5655
|
+
|
|
5656
|
+
const _hoisted_1$V = {
|
|
5657
|
+
viewBox: "0 0 42 55",
|
|
5658
|
+
fill: "currentColor",
|
|
5659
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5660
|
+
};
|
|
5661
|
+
const _hoisted_2$R = /*#__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);
|
|
5662
|
+
const _hoisted_3$O = [
|
|
5663
|
+
_hoisted_2$R
|
|
5664
|
+
];
|
|
5665
|
+
|
|
5666
|
+
function render$X(_ctx, _cache) {
|
|
5667
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$V, _hoisted_3$O))
|
|
5668
|
+
}
|
|
5669
|
+
|
|
5670
|
+
const _hoisted_1$U = {
|
|
5671
|
+
viewBox: "0 0 54 42",
|
|
5672
|
+
fill: "currentColor",
|
|
5673
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5674
|
+
};
|
|
5675
|
+
const _hoisted_2$Q = /*#__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);
|
|
5676
|
+
const _hoisted_3$N = [
|
|
5677
|
+
_hoisted_2$Q
|
|
5678
|
+
];
|
|
5679
|
+
|
|
5680
|
+
function render$W(_ctx, _cache) {
|
|
5681
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$U, _hoisted_3$N))
|
|
5682
|
+
}
|
|
5683
|
+
|
|
5684
|
+
const _hoisted_1$T = {
|
|
5685
|
+
viewBox: "0 0 404 146",
|
|
5686
|
+
fill: "currentColor",
|
|
5687
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5688
|
+
};
|
|
5689
|
+
const _hoisted_2$P = /*#__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
5690
|
const _hoisted_3$M = [
|
|
5615
5691
|
_hoisted_2$P
|
|
5616
5692
|
];
|
|
@@ -5620,25 +5696,27 @@ function render$V(_ctx, _cache) {
|
|
|
5620
5696
|
}
|
|
5621
5697
|
|
|
5622
5698
|
const _hoisted_1$S = {
|
|
5623
|
-
viewBox: "0 0 42 55",
|
|
5624
5699
|
fill: "currentColor",
|
|
5700
|
+
viewBox: "0 0 20 20",
|
|
5625
5701
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5626
5702
|
};
|
|
5627
|
-
const _hoisted_2$O = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5628
|
-
const _hoisted_3$L =
|
|
5629
|
-
|
|
5703
|
+
const _hoisted_2$O = /*#__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);
|
|
5704
|
+
const _hoisted_3$L = /*#__PURE__*/createElementVNode("path", { d: "M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" }, null, -1);
|
|
5705
|
+
const _hoisted_4$d = [
|
|
5706
|
+
_hoisted_2$O,
|
|
5707
|
+
_hoisted_3$L
|
|
5630
5708
|
];
|
|
5631
5709
|
|
|
5632
5710
|
function render$U(_ctx, _cache) {
|
|
5633
|
-
return (openBlock(), createElementBlock("svg", _hoisted_1$S,
|
|
5711
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$S, _hoisted_4$d))
|
|
5634
5712
|
}
|
|
5635
5713
|
|
|
5636
5714
|
const _hoisted_1$R = {
|
|
5637
|
-
viewBox: "0 0
|
|
5715
|
+
viewBox: "0 0 24 24",
|
|
5638
5716
|
fill: "currentColor",
|
|
5639
5717
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5640
5718
|
};
|
|
5641
|
-
const _hoisted_2$N = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5719
|
+
const _hoisted_2$N = /*#__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
5720
|
const _hoisted_3$K = [
|
|
5643
5721
|
_hoisted_2$N
|
|
5644
5722
|
];
|
|
@@ -5648,11 +5726,11 @@ function render$T(_ctx, _cache) {
|
|
|
5648
5726
|
}
|
|
5649
5727
|
|
|
5650
5728
|
const _hoisted_1$Q = {
|
|
5651
|
-
viewBox: "0 0 404 146",
|
|
5652
5729
|
fill: "currentColor",
|
|
5653
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5730
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5731
|
+
viewBox: "0 0 24 24"
|
|
5654
5732
|
};
|
|
5655
|
-
const _hoisted_2$M = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5733
|
+
const _hoisted_2$M = /*#__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
5734
|
const _hoisted_3$J = [
|
|
5657
5735
|
_hoisted_2$M
|
|
5658
5736
|
];
|
|
@@ -5663,26 +5741,26 @@ function render$S(_ctx, _cache) {
|
|
|
5663
5741
|
|
|
5664
5742
|
const _hoisted_1$P = {
|
|
5665
5743
|
fill: "currentColor",
|
|
5666
|
-
|
|
5667
|
-
|
|
5744
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5745
|
+
viewBox: "0 0 612 612"
|
|
5668
5746
|
};
|
|
5669
|
-
const _hoisted_2$L = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5670
|
-
const _hoisted_3$I = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5671
|
-
const _hoisted_4$
|
|
5747
|
+
const _hoisted_2$L = /*#__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);
|
|
5748
|
+
const _hoisted_3$I = /*#__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);
|
|
5749
|
+
const _hoisted_4$c = [
|
|
5672
5750
|
_hoisted_2$L,
|
|
5673
5751
|
_hoisted_3$I
|
|
5674
5752
|
];
|
|
5675
5753
|
|
|
5676
5754
|
function render$R(_ctx, _cache) {
|
|
5677
|
-
return (openBlock(), createElementBlock("svg", _hoisted_1$P, _hoisted_4$
|
|
5755
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$P, _hoisted_4$c))
|
|
5678
5756
|
}
|
|
5679
5757
|
|
|
5680
5758
|
const _hoisted_1$O = {
|
|
5681
|
-
viewBox: "0 0 24 24",
|
|
5682
5759
|
fill: "currentColor",
|
|
5683
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5760
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5761
|
+
viewBox: "0 -64 640 640"
|
|
5684
5762
|
};
|
|
5685
|
-
const _hoisted_2$K = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5763
|
+
const _hoisted_2$K = /*#__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
5764
|
const _hoisted_3$H = [
|
|
5687
5765
|
_hoisted_2$K
|
|
5688
5766
|
];
|
|
@@ -5692,41 +5770,41 @@ function render$Q(_ctx, _cache) {
|
|
|
5692
5770
|
}
|
|
5693
5771
|
|
|
5694
5772
|
const _hoisted_1$N = {
|
|
5773
|
+
viewBox: "0 0 18 18",
|
|
5695
5774
|
fill: "currentColor",
|
|
5696
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5697
|
-
viewBox: "0 0 24 24"
|
|
5775
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5698
5776
|
};
|
|
5699
|
-
const _hoisted_2$J = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5700
|
-
const _hoisted_3$G =
|
|
5701
|
-
|
|
5777
|
+
const _hoisted_2$J = /*#__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);
|
|
5778
|
+
const _hoisted_3$G = /*#__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);
|
|
5779
|
+
const _hoisted_4$b = [
|
|
5780
|
+
_hoisted_2$J,
|
|
5781
|
+
_hoisted_3$G
|
|
5702
5782
|
];
|
|
5703
5783
|
|
|
5704
5784
|
function render$P(_ctx, _cache) {
|
|
5705
|
-
return (openBlock(), createElementBlock("svg", _hoisted_1$N,
|
|
5785
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$N, _hoisted_4$b))
|
|
5706
5786
|
}
|
|
5707
5787
|
|
|
5708
5788
|
const _hoisted_1$M = {
|
|
5709
5789
|
fill: "currentColor",
|
|
5710
5790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5711
|
-
viewBox: "0 0
|
|
5791
|
+
viewBox: "0 0 576 512"
|
|
5712
5792
|
};
|
|
5713
|
-
const _hoisted_2$I = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5714
|
-
const _hoisted_3$F =
|
|
5715
|
-
|
|
5716
|
-
_hoisted_2$I,
|
|
5717
|
-
_hoisted_3$F
|
|
5793
|
+
const _hoisted_2$I = /*#__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);
|
|
5794
|
+
const _hoisted_3$F = [
|
|
5795
|
+
_hoisted_2$I
|
|
5718
5796
|
];
|
|
5719
5797
|
|
|
5720
5798
|
function render$O(_ctx, _cache) {
|
|
5721
|
-
return (openBlock(), createElementBlock("svg", _hoisted_1$M,
|
|
5799
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$M, _hoisted_3$F))
|
|
5722
5800
|
}
|
|
5723
5801
|
|
|
5724
5802
|
const _hoisted_1$L = {
|
|
5803
|
+
viewBox: "0 0 16 16",
|
|
5725
5804
|
fill: "currentColor",
|
|
5726
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5727
|
-
viewBox: "0 -64 640 640"
|
|
5805
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5728
5806
|
};
|
|
5729
|
-
const _hoisted_2$H = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5807
|
+
const _hoisted_2$H = /*#__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
5808
|
const _hoisted_3$E = [
|
|
5731
5809
|
_hoisted_2$H
|
|
5732
5810
|
];
|
|
@@ -5736,27 +5814,25 @@ function render$N(_ctx, _cache) {
|
|
|
5736
5814
|
}
|
|
5737
5815
|
|
|
5738
5816
|
const _hoisted_1$K = {
|
|
5739
|
-
viewBox: "0 0
|
|
5817
|
+
viewBox: "0 0 104 104",
|
|
5740
5818
|
fill: "currentColor",
|
|
5741
5819
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5742
5820
|
};
|
|
5743
|
-
const _hoisted_2$G = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5744
|
-
const _hoisted_3$D =
|
|
5745
|
-
|
|
5746
|
-
_hoisted_2$G,
|
|
5747
|
-
_hoisted_3$D
|
|
5821
|
+
const _hoisted_2$G = /*#__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);
|
|
5822
|
+
const _hoisted_3$D = [
|
|
5823
|
+
_hoisted_2$G
|
|
5748
5824
|
];
|
|
5749
5825
|
|
|
5750
5826
|
function render$M(_ctx, _cache) {
|
|
5751
|
-
return (openBlock(), createElementBlock("svg", _hoisted_1$K,
|
|
5827
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1$K, _hoisted_3$D))
|
|
5752
5828
|
}
|
|
5753
5829
|
|
|
5754
5830
|
const _hoisted_1$J = {
|
|
5831
|
+
viewBox: "0 0 118 104",
|
|
5755
5832
|
fill: "currentColor",
|
|
5756
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5757
|
-
viewBox: "0 0 576 512"
|
|
5833
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5758
5834
|
};
|
|
5759
|
-
const _hoisted_2$F = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5835
|
+
const _hoisted_2$F = /*#__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
5836
|
const _hoisted_3$C = [
|
|
5761
5837
|
_hoisted_2$F
|
|
5762
5838
|
];
|
|
@@ -5766,11 +5842,11 @@ function render$L(_ctx, _cache) {
|
|
|
5766
5842
|
}
|
|
5767
5843
|
|
|
5768
5844
|
const _hoisted_1$I = {
|
|
5769
|
-
viewBox: "0 0
|
|
5845
|
+
viewBox: "0 0 56 56",
|
|
5770
5846
|
fill: "currentColor",
|
|
5771
5847
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5772
5848
|
};
|
|
5773
|
-
const _hoisted_2$E = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5849
|
+
const _hoisted_2$E = /*#__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
5850
|
const _hoisted_3$B = [
|
|
5775
5851
|
_hoisted_2$E
|
|
5776
5852
|
];
|
|
@@ -5780,11 +5856,11 @@ function render$K(_ctx, _cache) {
|
|
|
5780
5856
|
}
|
|
5781
5857
|
|
|
5782
5858
|
const _hoisted_1$H = {
|
|
5783
|
-
viewBox: "0 0
|
|
5859
|
+
viewBox: "0 0 17 12",
|
|
5784
5860
|
fill: "currentColor",
|
|
5785
5861
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5786
5862
|
};
|
|
5787
|
-
const _hoisted_2$D = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5863
|
+
const _hoisted_2$D = /*#__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
5864
|
const _hoisted_3$A = [
|
|
5789
5865
|
_hoisted_2$D
|
|
5790
5866
|
];
|
|
@@ -5794,11 +5870,11 @@ function render$J(_ctx, _cache) {
|
|
|
5794
5870
|
}
|
|
5795
5871
|
|
|
5796
5872
|
const _hoisted_1$G = {
|
|
5797
|
-
viewBox: "0 0
|
|
5873
|
+
viewBox: "0 0 56 56",
|
|
5798
5874
|
fill: "currentColor",
|
|
5799
5875
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5800
5876
|
};
|
|
5801
|
-
const _hoisted_2$C = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5877
|
+
const _hoisted_2$C = /*#__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
5878
|
const _hoisted_3$z = [
|
|
5803
5879
|
_hoisted_2$C
|
|
5804
5880
|
];
|
|
@@ -5812,7 +5888,7 @@ const _hoisted_1$F = {
|
|
|
5812
5888
|
fill: "currentColor",
|
|
5813
5889
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5814
5890
|
};
|
|
5815
|
-
const _hoisted_2$B = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5891
|
+
const _hoisted_2$B = /*#__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
5892
|
const _hoisted_3$y = [
|
|
5817
5893
|
_hoisted_2$B
|
|
5818
5894
|
];
|
|
@@ -5822,11 +5898,11 @@ function render$H(_ctx, _cache) {
|
|
|
5822
5898
|
}
|
|
5823
5899
|
|
|
5824
5900
|
const _hoisted_1$E = {
|
|
5825
|
-
viewBox: "0 0
|
|
5901
|
+
viewBox: "0 0 56 56",
|
|
5826
5902
|
fill: "currentColor",
|
|
5827
5903
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5828
5904
|
};
|
|
5829
|
-
const _hoisted_2$A = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5905
|
+
const _hoisted_2$A = /*#__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
5906
|
const _hoisted_3$x = [
|
|
5831
5907
|
_hoisted_2$A
|
|
5832
5908
|
];
|
|
@@ -5840,7 +5916,7 @@ const _hoisted_1$D = {
|
|
|
5840
5916
|
fill: "currentColor",
|
|
5841
5917
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5842
5918
|
};
|
|
5843
|
-
const _hoisted_2$z = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5919
|
+
const _hoisted_2$z = /*#__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
5920
|
const _hoisted_3$w = [
|
|
5845
5921
|
_hoisted_2$z
|
|
5846
5922
|
];
|
|
@@ -5850,11 +5926,11 @@ function render$F(_ctx, _cache) {
|
|
|
5850
5926
|
}
|
|
5851
5927
|
|
|
5852
5928
|
const _hoisted_1$C = {
|
|
5853
|
-
viewBox: "0 0 56 56",
|
|
5854
5929
|
fill: "currentColor",
|
|
5855
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5930
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5931
|
+
viewBox: "0 0 512 512"
|
|
5856
5932
|
};
|
|
5857
|
-
const _hoisted_2$y = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5933
|
+
const _hoisted_2$y = /*#__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
5934
|
const _hoisted_3$v = [
|
|
5859
5935
|
_hoisted_2$y
|
|
5860
5936
|
];
|
|
@@ -5864,11 +5940,11 @@ function render$E(_ctx, _cache) {
|
|
|
5864
5940
|
}
|
|
5865
5941
|
|
|
5866
5942
|
const _hoisted_1$B = {
|
|
5867
|
-
viewBox: "0 0
|
|
5943
|
+
viewBox: "0 0 33 33",
|
|
5868
5944
|
fill: "currentColor",
|
|
5869
5945
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5870
5946
|
};
|
|
5871
|
-
const _hoisted_2$x = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5947
|
+
const _hoisted_2$x = /*#__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
5948
|
const _hoisted_3$u = [
|
|
5873
5949
|
_hoisted_2$x
|
|
5874
5950
|
];
|
|
@@ -5878,11 +5954,11 @@ function render$D(_ctx, _cache) {
|
|
|
5878
5954
|
}
|
|
5879
5955
|
|
|
5880
5956
|
const _hoisted_1$A = {
|
|
5881
|
-
viewBox: "0 0
|
|
5957
|
+
viewBox: "0 0 32 33",
|
|
5882
5958
|
fill: "currentColor",
|
|
5883
5959
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5884
5960
|
};
|
|
5885
|
-
const _hoisted_2$w = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5961
|
+
const _hoisted_2$w = /*#__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
5962
|
const _hoisted_3$t = [
|
|
5887
5963
|
_hoisted_2$w
|
|
5888
5964
|
];
|
|
@@ -5892,11 +5968,11 @@ function render$C(_ctx, _cache) {
|
|
|
5892
5968
|
}
|
|
5893
5969
|
|
|
5894
5970
|
const _hoisted_1$z = {
|
|
5971
|
+
viewBox: "0 0 32 33",
|
|
5895
5972
|
fill: "currentColor",
|
|
5896
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
5897
|
-
viewBox: "0 0 512 512"
|
|
5973
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5898
5974
|
};
|
|
5899
|
-
const _hoisted_2$v = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5975
|
+
const _hoisted_2$v = /*#__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
5976
|
const _hoisted_3$s = [
|
|
5901
5977
|
_hoisted_2$v
|
|
5902
5978
|
];
|
|
@@ -5906,11 +5982,11 @@ function render$B(_ctx, _cache) {
|
|
|
5906
5982
|
}
|
|
5907
5983
|
|
|
5908
5984
|
const _hoisted_1$y = {
|
|
5909
|
-
viewBox: "0 0
|
|
5985
|
+
viewBox: "0 0 36 21",
|
|
5910
5986
|
fill: "currentColor",
|
|
5911
5987
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5912
5988
|
};
|
|
5913
|
-
const _hoisted_2$u = /*#__PURE__*/createElementVNode("path", { d: "
|
|
5989
|
+
const _hoisted_2$u = /*#__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
5990
|
const _hoisted_3$r = [
|
|
5915
5991
|
_hoisted_2$u
|
|
5916
5992
|
];
|
|
@@ -5920,11 +5996,11 @@ function render$A(_ctx, _cache) {
|
|
|
5920
5996
|
}
|
|
5921
5997
|
|
|
5922
5998
|
const _hoisted_1$x = {
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5999
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6000
|
+
viewBox: "0 0 320 512",
|
|
6001
|
+
fill: "currentColor"
|
|
5926
6002
|
};
|
|
5927
|
-
const _hoisted_2$t = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6003
|
+
const _hoisted_2$t = /*#__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
6004
|
const _hoisted_3$q = [
|
|
5929
6005
|
_hoisted_2$t
|
|
5930
6006
|
];
|
|
@@ -5934,11 +6010,11 @@ function render$z(_ctx, _cache) {
|
|
|
5934
6010
|
}
|
|
5935
6011
|
|
|
5936
6012
|
const _hoisted_1$w = {
|
|
5937
|
-
viewBox: "0 0
|
|
6013
|
+
viewBox: "0 0 46 46",
|
|
5938
6014
|
fill: "currentColor",
|
|
5939
6015
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5940
6016
|
};
|
|
5941
|
-
const _hoisted_2$s = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6017
|
+
const _hoisted_2$s = /*#__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
6018
|
const _hoisted_3$p = [
|
|
5943
6019
|
_hoisted_2$s
|
|
5944
6020
|
];
|
|
@@ -5948,11 +6024,11 @@ function render$y(_ctx, _cache) {
|
|
|
5948
6024
|
}
|
|
5949
6025
|
|
|
5950
6026
|
const _hoisted_1$v = {
|
|
5951
|
-
viewBox: "0 0
|
|
6027
|
+
viewBox: "0 0 26 27",
|
|
5952
6028
|
fill: "currentColor",
|
|
5953
6029
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5954
6030
|
};
|
|
5955
|
-
const _hoisted_2$r = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6031
|
+
const _hoisted_2$r = /*#__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
6032
|
const _hoisted_3$o = [
|
|
5957
6033
|
_hoisted_2$r
|
|
5958
6034
|
];
|
|
@@ -5962,11 +6038,15 @@ function render$x(_ctx, _cache) {
|
|
|
5962
6038
|
}
|
|
5963
6039
|
|
|
5964
6040
|
const _hoisted_1$u = {
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
6041
|
+
viewBox: "0 0 44 44",
|
|
6042
|
+
fill: "currentColor",
|
|
6043
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
5968
6044
|
};
|
|
5969
|
-
const _hoisted_2$q = /*#__PURE__*/createElementVNode("path", {
|
|
6045
|
+
const _hoisted_2$q = /*#__PURE__*/createElementVNode("path", {
|
|
6046
|
+
"fill-rule": "evenodd",
|
|
6047
|
+
"clip-rule": "evenodd",
|
|
6048
|
+
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"
|
|
6049
|
+
}, null, -1);
|
|
5970
6050
|
const _hoisted_3$n = [
|
|
5971
6051
|
_hoisted_2$q
|
|
5972
6052
|
];
|
|
@@ -5976,11 +6056,11 @@ function render$w(_ctx, _cache) {
|
|
|
5976
6056
|
}
|
|
5977
6057
|
|
|
5978
6058
|
const _hoisted_1$t = {
|
|
5979
|
-
viewBox: "0 0
|
|
6059
|
+
viewBox: "0 0 26 27",
|
|
5980
6060
|
fill: "currentColor",
|
|
5981
6061
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5982
6062
|
};
|
|
5983
|
-
const _hoisted_2$p = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6063
|
+
const _hoisted_2$p = /*#__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
6064
|
const _hoisted_3$m = [
|
|
5985
6065
|
_hoisted_2$p
|
|
5986
6066
|
];
|
|
@@ -5990,11 +6070,11 @@ function render$v(_ctx, _cache) {
|
|
|
5990
6070
|
}
|
|
5991
6071
|
|
|
5992
6072
|
const _hoisted_1$s = {
|
|
5993
|
-
viewBox: "0 0
|
|
6073
|
+
viewBox: "0 0 24 24",
|
|
5994
6074
|
fill: "currentColor",
|
|
5995
6075
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5996
6076
|
};
|
|
5997
|
-
const _hoisted_2$o = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6077
|
+
const _hoisted_2$o = /*#__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
6078
|
const _hoisted_3$l = [
|
|
5999
6079
|
_hoisted_2$o
|
|
6000
6080
|
];
|
|
@@ -6004,15 +6084,11 @@ function render$u(_ctx, _cache) {
|
|
|
6004
6084
|
}
|
|
6005
6085
|
|
|
6006
6086
|
const _hoisted_1$r = {
|
|
6007
|
-
viewBox: "0 0
|
|
6087
|
+
viewBox: "0 0 24 24",
|
|
6008
6088
|
fill: "currentColor",
|
|
6009
6089
|
xmlns: "http://www.w3.org/2000/svg"
|
|
6010
6090
|
};
|
|
6011
|
-
const _hoisted_2$n = /*#__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);
|
|
6091
|
+
const _hoisted_2$n = /*#__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
6092
|
const _hoisted_3$k = [
|
|
6017
6093
|
_hoisted_2$n
|
|
6018
6094
|
];
|
|
@@ -6022,11 +6098,11 @@ function render$t(_ctx, _cache) {
|
|
|
6022
6098
|
}
|
|
6023
6099
|
|
|
6024
6100
|
const _hoisted_1$q = {
|
|
6025
|
-
viewBox: "0 0
|
|
6101
|
+
viewBox: "0 0 20 20",
|
|
6026
6102
|
fill: "currentColor",
|
|
6027
6103
|
xmlns: "http://www.w3.org/2000/svg"
|
|
6028
6104
|
};
|
|
6029
|
-
const _hoisted_2$m = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6105
|
+
const _hoisted_2$m = /*#__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
6106
|
const _hoisted_3$j = [
|
|
6031
6107
|
_hoisted_2$m
|
|
6032
6108
|
];
|
|
@@ -6036,11 +6112,11 @@ function render$s(_ctx, _cache) {
|
|
|
6036
6112
|
}
|
|
6037
6113
|
|
|
6038
6114
|
const _hoisted_1$p = {
|
|
6039
|
-
viewBox: "0 0
|
|
6115
|
+
viewBox: "0 0 16 16",
|
|
6040
6116
|
fill: "currentColor",
|
|
6041
6117
|
xmlns: "http://www.w3.org/2000/svg"
|
|
6042
6118
|
};
|
|
6043
|
-
const _hoisted_2$l = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6119
|
+
const _hoisted_2$l = /*#__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
6120
|
const _hoisted_3$i = [
|
|
6045
6121
|
_hoisted_2$l
|
|
6046
6122
|
];
|
|
@@ -6054,7 +6130,7 @@ const _hoisted_1$o = {
|
|
|
6054
6130
|
fill: "currentColor",
|
|
6055
6131
|
xmlns: "http://www.w3.org/2000/svg"
|
|
6056
6132
|
};
|
|
6057
|
-
const _hoisted_2$k = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6133
|
+
const _hoisted_2$k = /*#__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
6134
|
const _hoisted_3$h = [
|
|
6059
6135
|
_hoisted_2$k
|
|
6060
6136
|
];
|
|
@@ -6064,11 +6140,11 @@ function render$q(_ctx, _cache) {
|
|
|
6064
6140
|
}
|
|
6065
6141
|
|
|
6066
6142
|
const _hoisted_1$n = {
|
|
6067
|
-
viewBox: "0 0
|
|
6143
|
+
viewBox: "0 0 30 31",
|
|
6068
6144
|
fill: "currentColor",
|
|
6069
6145
|
xmlns: "http://www.w3.org/2000/svg"
|
|
6070
6146
|
};
|
|
6071
|
-
const _hoisted_2$j = /*#__PURE__*/createElementVNode("path", { d: "
|
|
6147
|
+
const _hoisted_2$j = /*#__PURE__*/createElementVNode("path", { d: "M22.28 22.78a.75.75 0 01-1.06 0L15 16.56l-6.22 6.22a.75.75 0 11-1.06-1.061l6.222-6.22L7.72 9.28a.75.75 0 111.06-1.06l6.22 6.222 6.22-6.22a.75.75 0 111.061 1.06L16.06 15.5l6.22 6.22a.744.744 0 010 1.06z" }, null, -1);
|
|
6072
6148
|
const _hoisted_3$g = [
|
|
6073
6149
|
_hoisted_2$j
|
|
6074
6150
|
];
|
|
@@ -6077,24 +6153,10 @@ function render$p(_ctx, _cache) {
|
|
|
6077
6153
|
return (openBlock(), createElementBlock("svg", _hoisted_1$n, _hoisted_3$g))
|
|
6078
6154
|
}
|
|
6079
6155
|
|
|
6080
|
-
|
|
6081
|
-
viewBox: "0 0 16 16",
|
|
6082
|
-
fill: "currentColor",
|
|
6083
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
6084
|
-
};
|
|
6085
|
-
const _hoisted_2$i = /*#__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);
|
|
6086
|
-
const _hoisted_3$f = [
|
|
6087
|
-
_hoisted_2$i
|
|
6088
|
-
];
|
|
6089
|
-
|
|
6090
|
-
function render$o(_ctx, _cache) {
|
|
6091
|
-
return (openBlock(), createElementBlock("svg", _hoisted_1$m, _hoisted_3$f))
|
|
6092
|
-
}
|
|
6093
|
-
|
|
6094
|
-
var script$k = defineComponent({
|
|
6156
|
+
var script$j = defineComponent({
|
|
6095
6157
|
name: 'FwDropdown',
|
|
6096
6158
|
components: {
|
|
6097
|
-
ChevronDownSvg: render$
|
|
6159
|
+
ChevronDownSvg: render$H
|
|
6098
6160
|
},
|
|
6099
6161
|
props: {
|
|
6100
6162
|
/**
|
|
@@ -6214,22 +6276,22 @@ var script$k = defineComponent({
|
|
|
6214
6276
|
var _withScopeId$4 = function _withScopeId(n) {
|
|
6215
6277
|
return pushScopeId("data-v-1467a810"), n = n(), popScopeId(), n;
|
|
6216
6278
|
};
|
|
6217
|
-
var _hoisted_1$
|
|
6279
|
+
var _hoisted_1$m = {
|
|
6218
6280
|
"class": "fw-dropdown relative"
|
|
6219
6281
|
};
|
|
6220
|
-
var _hoisted_2$
|
|
6282
|
+
var _hoisted_2$i = {
|
|
6221
6283
|
key: 0,
|
|
6222
6284
|
"class": "block mb-2 font-medium text-left"
|
|
6223
6285
|
};
|
|
6224
|
-
var _hoisted_3$
|
|
6225
|
-
var _hoisted_4$
|
|
6286
|
+
var _hoisted_3$f = ["id", "aria-expanded"];
|
|
6287
|
+
var _hoisted_4$a = {
|
|
6226
6288
|
key: 0
|
|
6227
6289
|
};
|
|
6228
6290
|
var _hoisted_5$6 = {
|
|
6229
6291
|
key: 1,
|
|
6230
6292
|
"class": "text-grey-base"
|
|
6231
6293
|
};
|
|
6232
|
-
var _hoisted_6$
|
|
6294
|
+
var _hoisted_6$5 = ["aria-labelledby"];
|
|
6233
6295
|
var _hoisted_7$4 = ["onClick"];
|
|
6234
6296
|
var _hoisted_8$4 = {
|
|
6235
6297
|
"class": "italic text-right text-sm font-medium min-h-[21px]"
|
|
@@ -6238,13 +6300,13 @@ var _hoisted_9$4 = {
|
|
|
6238
6300
|
key: 0,
|
|
6239
6301
|
"class": "text-error"
|
|
6240
6302
|
};
|
|
6241
|
-
var _hoisted_10$
|
|
6303
|
+
var _hoisted_10$3 = {
|
|
6242
6304
|
key: 1
|
|
6243
6305
|
};
|
|
6244
|
-
function render$
|
|
6306
|
+
function render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6245
6307
|
var _ctx$selectedOption, _ctx$selectedOption2;
|
|
6246
6308
|
var _component_ChevronDownSvg = resolveComponent("ChevronDownSvg");
|
|
6247
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
6309
|
+
return openBlock(), createElementBlock("div", _hoisted_1$m, [_ctx.label ? (openBlock(), createElementBlock("label", _hoisted_2$i, toDisplayString(_ctx.label), 1)) : createCommentVNode("", true), createElementVNode("button", {
|
|
6248
6310
|
type: "button",
|
|
6249
6311
|
"class": normalizeClass([_ctx.menuButtonClass, _ctx.isOpen ? 'border-primary' : 'border-grey-40 hover:border-grey-60']),
|
|
6250
6312
|
onClick: _cache[0] || (_cache[0] = function ($event) {
|
|
@@ -6253,9 +6315,9 @@ function render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6253
6315
|
id: "".concat(_ctx.name, "-fw-dropdown--button"),
|
|
6254
6316
|
"aria-expanded": _ctx.isOpen,
|
|
6255
6317
|
"aria-haspopup": "true"
|
|
6256
|
-
}, [(_ctx$selectedOption = _ctx.selectedOption) !== null && _ctx$selectedOption !== void 0 && _ctx$selectedOption.label ? (openBlock(), createElementBlock("span", _hoisted_4$
|
|
6318
|
+
}, [(_ctx$selectedOption = _ctx.selectedOption) !== null && _ctx$selectedOption !== void 0 && _ctx$selectedOption.label ? (openBlock(), createElementBlock("span", _hoisted_4$a, 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, {
|
|
6257
6319
|
"class": normalizeClass(["w-6 text-primary transition-transform duration-300", _ctx.isOpen ? 'rotate-180' : ''])
|
|
6258
|
-
}, null, 8, ["class"])], 10, _hoisted_3$
|
|
6320
|
+
}, null, 8, ["class"])], 10, _hoisted_3$f), createVNode(Transition, {
|
|
6259
6321
|
name: "slideUpDown"
|
|
6260
6322
|
}, {
|
|
6261
6323
|
"default": withCtx(function () {
|
|
@@ -6276,7 +6338,7 @@ function render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6276
6338
|
return _ctx.selectOption(option);
|
|
6277
6339
|
}
|
|
6278
6340
|
}, toDisplayString(option.label), 11, _hoisted_7$4);
|
|
6279
|
-
}), 128))], 10, _hoisted_6$
|
|
6341
|
+
}), 128))], 10, _hoisted_6$5)) : createCommentVNode("", true)];
|
|
6280
6342
|
}),
|
|
6281
6343
|
_: 1
|
|
6282
6344
|
}), createElementVNode("div", _hoisted_8$4, [createVNode(Transition, {
|
|
@@ -6284,20 +6346,20 @@ function render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6284
6346
|
mode: "out-in"
|
|
6285
6347
|
}, {
|
|
6286
6348
|
"default": withCtx(function () {
|
|
6287
|
-
return [(_ctx.errorMessage || _ctx.errors[0]) && _ctx.meta.touched ? (openBlock(), createElementBlock("span", _hoisted_9$4, toDisplayString(_ctx.errorMessage || _ctx.errors[0]), 1)) : _ctx.hint ? (openBlock(), createElementBlock("span", _hoisted_10$
|
|
6349
|
+
return [(_ctx.errorMessage || _ctx.errors[0]) && _ctx.meta.touched ? (openBlock(), createElementBlock("span", _hoisted_9$4, toDisplayString(_ctx.errorMessage || _ctx.errors[0]), 1)) : _ctx.hint ? (openBlock(), createElementBlock("span", _hoisted_10$3, toDisplayString(_ctx.hint), 1)) : createCommentVNode("", true)];
|
|
6288
6350
|
}),
|
|
6289
6351
|
_: 1
|
|
6290
6352
|
})])]);
|
|
6291
6353
|
}
|
|
6292
6354
|
|
|
6293
|
-
var css_248z$
|
|
6294
|
-
var stylesheet$
|
|
6295
|
-
styleInject(css_248z$
|
|
6355
|
+
var css_248z$d = ".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)}}";
|
|
6356
|
+
var stylesheet$d = ".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)}}";
|
|
6357
|
+
styleInject(css_248z$d);
|
|
6296
6358
|
|
|
6297
|
-
script$
|
|
6298
|
-
script$
|
|
6359
|
+
script$j.render = render$o;
|
|
6360
|
+
script$j.__scopeId = "data-v-1467a810";
|
|
6299
6361
|
|
|
6300
|
-
var script$
|
|
6362
|
+
var script$i = defineComponent({
|
|
6301
6363
|
name: 'FwCard',
|
|
6302
6364
|
props: {
|
|
6303
6365
|
/**
|
|
@@ -6352,16 +6414,16 @@ var script$j = defineComponent({
|
|
|
6352
6414
|
}
|
|
6353
6415
|
});
|
|
6354
6416
|
|
|
6355
|
-
var _hoisted_1$
|
|
6417
|
+
var _hoisted_1$l = {
|
|
6356
6418
|
key: 0,
|
|
6357
6419
|
"class": "fw-card--header px-8 py-4 bg-grey-lightest rounded-t border-opacity-0"
|
|
6358
6420
|
};
|
|
6359
|
-
var _hoisted_2$
|
|
6421
|
+
var _hoisted_2$h = {
|
|
6360
6422
|
key: 0,
|
|
6361
6423
|
"class": "fw-card--prefix-title text-primary"
|
|
6362
6424
|
};
|
|
6363
|
-
var _hoisted_3$
|
|
6364
|
-
function render$
|
|
6425
|
+
var _hoisted_3$e = ["innerHTML"];
|
|
6426
|
+
function render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6365
6427
|
return openBlock(), createBlock(resolveDynamicComponent(_ctx.componentName), {
|
|
6366
6428
|
to: _ctx.to ? _ctx.to : null,
|
|
6367
6429
|
href: _ctx.href ? _ctx.href : null,
|
|
@@ -6369,11 +6431,11 @@ function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6369
6431
|
"class": normalizeClass(["fw-card rounded", [_ctx.to || _ctx.href || !!_ctx.$attrs.onClick ? _ctx.linkClass : '', _ctx.isBordered ? 'border border-grey-40' : 'shadow-card']])
|
|
6370
6432
|
}, {
|
|
6371
6433
|
"default": withCtx(function () {
|
|
6372
|
-
return [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_1$
|
|
6434
|
+
return [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_1$l, [_ctx.prefixTitle ? (openBlock(), createElementBlock("span", _hoisted_2$h, toDisplayString(_ctx.prefixTitle), 1)) : createCommentVNode("", true), _ctx.title ? (openBlock(), createElementBlock("div", {
|
|
6373
6435
|
key: 1,
|
|
6374
6436
|
"class": "inline",
|
|
6375
6437
|
innerHTML: _ctx.title
|
|
6376
|
-
}, null, 8, _hoisted_3$
|
|
6438
|
+
}, null, 8, _hoisted_3$e)) : createCommentVNode("", true)])) : createCommentVNode("", true), _ctx.$slots["default"] ? (openBlock(), createElementBlock("div", {
|
|
6377
6439
|
key: 1,
|
|
6378
6440
|
"class": normalizeClass(_ctx.slotPadding ? 'p-8' : '')
|
|
6379
6441
|
}, [renderSlot(_ctx.$slots, "default")], 2)) : createCommentVNode("", true)];
|
|
@@ -6382,29 +6444,29 @@ function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6382
6444
|
}, 8, ["to", "href", "tabindex", "class"]);
|
|
6383
6445
|
}
|
|
6384
6446
|
|
|
6385
|
-
script$
|
|
6447
|
+
script$i.render = render$n;
|
|
6386
6448
|
|
|
6387
|
-
var script$
|
|
6449
|
+
var script$h = defineComponent({
|
|
6388
6450
|
name: 'FwLoadingSpinner',
|
|
6389
6451
|
components: {
|
|
6390
|
-
LoadingSvg: render$
|
|
6452
|
+
LoadingSvg: render$w
|
|
6391
6453
|
}
|
|
6392
6454
|
});
|
|
6393
6455
|
|
|
6394
|
-
function render$
|
|
6456
|
+
function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6395
6457
|
var _component_LoadingSvg = resolveComponent("LoadingSvg");
|
|
6396
6458
|
return openBlock(), createBlock(_component_LoadingSvg, {
|
|
6397
6459
|
"class": "fw-loading-spinner animate-spin"
|
|
6398
6460
|
});
|
|
6399
6461
|
}
|
|
6400
6462
|
|
|
6401
|
-
script$
|
|
6463
|
+
script$h.render = render$m;
|
|
6402
6464
|
|
|
6403
|
-
var script$
|
|
6465
|
+
var script$g = defineComponent({
|
|
6404
6466
|
name: 'FwButton',
|
|
6405
6467
|
emits: ['click', 'mouseover', 'mouseout', 'focusin', 'focusout'],
|
|
6406
6468
|
components: {
|
|
6407
|
-
FwLoadingSpinner: script$
|
|
6469
|
+
FwLoadingSpinner: script$h
|
|
6408
6470
|
},
|
|
6409
6471
|
props: {
|
|
6410
6472
|
/**
|
|
@@ -6620,11 +6682,11 @@ var script$h = defineComponent({
|
|
|
6620
6682
|
}
|
|
6621
6683
|
});
|
|
6622
6684
|
|
|
6623
|
-
var _hoisted_1$
|
|
6685
|
+
var _hoisted_1$k = {
|
|
6624
6686
|
key: 0,
|
|
6625
6687
|
"class": "fw-button--label relative"
|
|
6626
6688
|
};
|
|
6627
|
-
function render$
|
|
6689
|
+
function render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6628
6690
|
var _component_FwLoadingSpinner = resolveComponent("FwLoadingSpinner");
|
|
6629
6691
|
return openBlock(), createBlock(resolveDynamicComponent(_ctx.tagName), {
|
|
6630
6692
|
"class": normalizeClass(["fw-button", [_ctx.baseClass, _ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass, _ctx.rounded && _ctx.variant !== 'link' ? 'rounded-full' : 'rounded', _ctx.variant === 'link' ? 'pl-0 pr-0 pt-0 pb-0 font-normal rounded-1' : 'font-semibold', _ctx.animation === 'fade' ? 'animation--fade' : 'animation--alternate', _ctx.loading === true ? 'fw-button--loading cursor-progress' : 'cursor-pointer']]),
|
|
@@ -6641,7 +6703,7 @@ function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6641
6703
|
onMouseout: _ctx.onMouseout
|
|
6642
6704
|
}, {
|
|
6643
6705
|
"default": withCtx(function () {
|
|
6644
|
-
return [_ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
6706
|
+
return [_ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_1$k, [createElementVNode("div", {
|
|
6645
6707
|
"class": normalizeClass(["fw-button--label-wrapper", _ctx.loading ? _ctx.loadingSize.spacing : 'pr-0 ml-0'])
|
|
6646
6708
|
}, [renderSlot(_ctx.$slots, "default")], 2), _ctx.loading ? (openBlock(), createElementBlock("div", {
|
|
6647
6709
|
key: 0,
|
|
@@ -6654,17 +6716,17 @@ function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6654
6716
|
}, 40, ["class", "type", "to", "href", "tabindex", "disabled", "target", "onClick", "onFocusin", "onFocusout", "onMouseover", "onMouseout"]);
|
|
6655
6717
|
}
|
|
6656
6718
|
|
|
6657
|
-
var css_248z$
|
|
6658
|
-
var stylesheet$
|
|
6659
|
-
styleInject(css_248z$
|
|
6719
|
+
var css_248z$c = ".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%)}";
|
|
6720
|
+
var stylesheet$c = ".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%)}";
|
|
6721
|
+
styleInject(css_248z$c);
|
|
6660
6722
|
|
|
6661
|
-
script$
|
|
6723
|
+
script$g.render = render$l;
|
|
6662
6724
|
|
|
6663
|
-
var script$
|
|
6725
|
+
var script$f = defineComponent({
|
|
6664
6726
|
name: 'FwNavigationMenu',
|
|
6665
6727
|
emits: ['action'],
|
|
6666
6728
|
components: {
|
|
6667
|
-
FwButton: script$
|
|
6729
|
+
FwButton: script$g
|
|
6668
6730
|
},
|
|
6669
6731
|
props: {
|
|
6670
6732
|
/**
|
|
@@ -6708,25 +6770,25 @@ var script$g = defineComponent({
|
|
|
6708
6770
|
}
|
|
6709
6771
|
});
|
|
6710
6772
|
|
|
6711
|
-
var _hoisted_1$
|
|
6773
|
+
var _hoisted_1$j = {
|
|
6712
6774
|
"class": "fw-nav-menu relative z-50 h-20 shadow-md"
|
|
6713
6775
|
};
|
|
6714
|
-
var _hoisted_2$
|
|
6776
|
+
var _hoisted_2$g = {
|
|
6715
6777
|
key: 0,
|
|
6716
6778
|
"class": "flex-shrink-0 flex items-center"
|
|
6717
6779
|
};
|
|
6718
|
-
var _hoisted_3$
|
|
6780
|
+
var _hoisted_3$d = {
|
|
6719
6781
|
key: 1,
|
|
6720
6782
|
"class": "container hidden sm:flex items-center justify-start sm:ml-6"
|
|
6721
6783
|
};
|
|
6722
|
-
var _hoisted_4$
|
|
6784
|
+
var _hoisted_4$9 = {
|
|
6723
6785
|
"class": "flex space-x-2"
|
|
6724
6786
|
};
|
|
6725
6787
|
var _hoisted_5$5 = {
|
|
6726
6788
|
key: 2,
|
|
6727
6789
|
"class": "hidden sm:flex items-center justify-start sm:ml-6"
|
|
6728
6790
|
};
|
|
6729
|
-
var _hoisted_6$
|
|
6791
|
+
var _hoisted_6$4 = {
|
|
6730
6792
|
"class": "flex items-center sm:hidden"
|
|
6731
6793
|
};
|
|
6732
6794
|
var _hoisted_7$3 = /*#__PURE__*/createElementVNode("span", {
|
|
@@ -6741,15 +6803,15 @@ var _hoisted_8$3 = {
|
|
|
6741
6803
|
"aria-hidden": "true"
|
|
6742
6804
|
};
|
|
6743
6805
|
var _hoisted_9$3 = ["d"];
|
|
6744
|
-
var _hoisted_10$
|
|
6806
|
+
var _hoisted_10$2 = {
|
|
6745
6807
|
"class": "w-full flex flex-col space-y-1"
|
|
6746
6808
|
};
|
|
6747
|
-
function render$
|
|
6809
|
+
function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6748
6810
|
var _ctx$menuItems;
|
|
6749
6811
|
var _component_FwButton = resolveComponent("FwButton");
|
|
6750
|
-
return openBlock(), createElementBlock("nav", _hoisted_1$
|
|
6812
|
+
return openBlock(), createElementBlock("nav", _hoisted_1$j, [createElementVNode("div", {
|
|
6751
6813
|
"class": normalizeClass(["px-6 flex-1 h-full flex bg-white items-stretch justify-between mx-auto", _ctx.containerClass])
|
|
6752
|
-
}, [_ctx.$slots.logo ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
6814
|
+
}, [_ctx.$slots.logo ? (openBlock(), createElementBlock("div", _hoisted_2$g, [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$d, [createElementVNode("div", _hoisted_4$9, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
|
|
6753
6815
|
return openBlock(), createBlock(_component_FwButton, {
|
|
6754
6816
|
key: i,
|
|
6755
6817
|
variant: "text",
|
|
@@ -6773,7 +6835,7 @@ function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6773
6835
|
return [createTextVNode(toDisplayString(_ctx.actionLabel), 1)];
|
|
6774
6836
|
}),
|
|
6775
6837
|
_: 1
|
|
6776
|
-
}, 8, ["onClick", "aria-label"])])) : createCommentVNode("", true), createElementVNode("div", _hoisted_6$
|
|
6838
|
+
}, 8, ["onClick", "aria-label"])])) : createCommentVNode("", true), createElementVNode("div", _hoisted_6$4, [createVNode(_component_FwButton, {
|
|
6777
6839
|
variant: "text",
|
|
6778
6840
|
size: "sm",
|
|
6779
6841
|
onClick: _ctx.toggleMobileMenu
|
|
@@ -6794,7 +6856,7 @@ function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6794
6856
|
return [_ctx.menuItems && _ctx.menuItems.length > 0 && _ctx.isMobileMenuOpen ? (openBlock(), createElementBlock("div", {
|
|
6795
6857
|
key: 0,
|
|
6796
6858
|
"class": normalizeClass(["fw-nav-menu--mobile", _ctx.mobileMenuClass])
|
|
6797
|
-
}, [createElementVNode("div", _hoisted_10$
|
|
6859
|
+
}, [createElementVNode("div", _hoisted_10$2, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
|
|
6798
6860
|
return openBlock(), createBlock(_component_FwButton, {
|
|
6799
6861
|
key: i,
|
|
6800
6862
|
"class": "w-full rounded-md",
|
|
@@ -6825,11 +6887,11 @@ function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6825
6887
|
})]);
|
|
6826
6888
|
}
|
|
6827
6889
|
|
|
6828
|
-
var css_248z$
|
|
6829
|
-
var stylesheet$
|
|
6830
|
-
styleInject(css_248z$
|
|
6890
|
+
var css_248z$b = ".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}}";
|
|
6891
|
+
var stylesheet$b = ".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}}";
|
|
6892
|
+
styleInject(css_248z$b);
|
|
6831
6893
|
|
|
6832
|
-
script$
|
|
6894
|
+
script$f.render = render$k;
|
|
6833
6895
|
|
|
6834
6896
|
var es_number_constructor = {};
|
|
6835
6897
|
|
|
@@ -7031,7 +7093,7 @@ if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumb
|
|
|
7031
7093
|
defineBuiltIn$3(global$7, NUMBER, NumberWrapper, { constructor: true });
|
|
7032
7094
|
}
|
|
7033
7095
|
|
|
7034
|
-
var script$
|
|
7096
|
+
var script$e = defineComponent({
|
|
7035
7097
|
name: 'FwTabs',
|
|
7036
7098
|
emits: ['update:modelValue'],
|
|
7037
7099
|
props: {
|
|
@@ -7064,16 +7126,16 @@ var script$f = defineComponent({
|
|
|
7064
7126
|
}
|
|
7065
7127
|
});
|
|
7066
7128
|
|
|
7067
|
-
var _hoisted_1$
|
|
7129
|
+
var _hoisted_1$i = {
|
|
7068
7130
|
"class": "fw-tabs"
|
|
7069
7131
|
};
|
|
7070
|
-
var _hoisted_2$
|
|
7132
|
+
var _hoisted_2$f = {
|
|
7071
7133
|
key: 0,
|
|
7072
7134
|
"class": "flex flex-wrap -mb-px border-b border-grey-light dark:text-grey-base dark:border-grey-base"
|
|
7073
7135
|
};
|
|
7074
|
-
var _hoisted_3$
|
|
7075
|
-
function render$
|
|
7076
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
7136
|
+
var _hoisted_3$c = ["onClick"];
|
|
7137
|
+
function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7138
|
+
return openBlock(), createElementBlock("div", _hoisted_1$i, [_ctx.tabs ? (openBlock(), createElementBlock("ul", _hoisted_2$f, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.tabs, function (tab, i) {
|
|
7077
7139
|
return openBlock(), createElementBlock("li", {
|
|
7078
7140
|
"class": "mr-2",
|
|
7079
7141
|
key: i
|
|
@@ -7083,11 +7145,11 @@ function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7083
7145
|
return _ctx.selectTab(i);
|
|
7084
7146
|
},
|
|
7085
7147
|
"class": normalizeClass(["inline-block p-4 outline-primary border-b-2 border-transparent transition ease-in", _ctx.active === i ? 'font-semibold border-body' : 'hover:bg-grey-lightest'])
|
|
7086
|
-
}, toDisplayString(tab.props.label), 11, _hoisted_3$
|
|
7148
|
+
}, toDisplayString(tab.props.label), 11, _hoisted_3$c)]);
|
|
7087
7149
|
}), 128))])) : createCommentVNode("", true), renderSlot(_ctx.$slots, "default")]);
|
|
7088
7150
|
}
|
|
7089
7151
|
|
|
7090
|
-
script$
|
|
7152
|
+
script$e.render = render$j;
|
|
7091
7153
|
|
|
7092
7154
|
var es_array_findIndex = {};
|
|
7093
7155
|
|
|
@@ -7155,7 +7217,7 @@ $$a({ target: 'Array', proto: true, arity: 1, forced: INCORRECT_TO_LENGTH || SIL
|
|
|
7155
7217
|
}
|
|
7156
7218
|
});
|
|
7157
7219
|
|
|
7158
|
-
var script$
|
|
7220
|
+
var script$d = defineComponent({
|
|
7159
7221
|
name: 'FwTab',
|
|
7160
7222
|
props: {
|
|
7161
7223
|
/**
|
|
@@ -7196,20 +7258,20 @@ var script$e = defineComponent({
|
|
|
7196
7258
|
}
|
|
7197
7259
|
});
|
|
7198
7260
|
|
|
7199
|
-
var _hoisted_1$
|
|
7261
|
+
var _hoisted_1$h = {
|
|
7200
7262
|
key: 0,
|
|
7201
7263
|
"class": "fw-tab w-full"
|
|
7202
7264
|
};
|
|
7203
|
-
function render$
|
|
7204
|
-
return _ctx.isActive ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
7265
|
+
function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7266
|
+
return _ctx.isActive ? (openBlock(), createElementBlock("div", _hoisted_1$h, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true);
|
|
7205
7267
|
}
|
|
7206
7268
|
|
|
7207
|
-
script$
|
|
7269
|
+
script$d.render = render$i;
|
|
7208
7270
|
|
|
7209
|
-
var script$
|
|
7271
|
+
var script$c = defineComponent({
|
|
7210
7272
|
name: 'FwModal',
|
|
7211
7273
|
components: {
|
|
7212
|
-
FwButton: script$
|
|
7274
|
+
FwButton: script$g
|
|
7213
7275
|
},
|
|
7214
7276
|
emits: ['cancel', 'confirm'],
|
|
7215
7277
|
props: {
|
|
@@ -7311,19 +7373,19 @@ var script$d = defineComponent({
|
|
|
7311
7373
|
}
|
|
7312
7374
|
});
|
|
7313
7375
|
|
|
7314
|
-
var _hoisted_1$
|
|
7315
|
-
var _hoisted_2$
|
|
7376
|
+
var _hoisted_1$g = ["id"];
|
|
7377
|
+
var _hoisted_2$e = {
|
|
7316
7378
|
"class": "fw-modal--mask fixed z-[9999] top-0 left-0 w-full h-full bg-black bg-opacity-50"
|
|
7317
7379
|
};
|
|
7318
|
-
var _hoisted_3$
|
|
7380
|
+
var _hoisted_3$b = {
|
|
7319
7381
|
"class": "fw-modal--wrapper text-center overflow-auto flex justify-center items-center h-full"
|
|
7320
7382
|
};
|
|
7321
|
-
var _hoisted_4$
|
|
7383
|
+
var _hoisted_4$8 = ["role", "aria-labelledby", "aria-describedby"];
|
|
7322
7384
|
var _hoisted_5$4 = {
|
|
7323
7385
|
key: 0,
|
|
7324
7386
|
"class": "fw-modal--header text-center"
|
|
7325
7387
|
};
|
|
7326
|
-
var _hoisted_6$
|
|
7388
|
+
var _hoisted_6$3 = {
|
|
7327
7389
|
key: 0,
|
|
7328
7390
|
id: "modal-logo",
|
|
7329
7391
|
"class": "flex justify-center"
|
|
@@ -7331,12 +7393,12 @@ var _hoisted_6$2 = {
|
|
|
7331
7393
|
var _hoisted_7$2 = ["id"];
|
|
7332
7394
|
var _hoisted_8$2 = ["id", "innerHTML"];
|
|
7333
7395
|
var _hoisted_9$2 = ["id"];
|
|
7334
|
-
var _hoisted_10 = ["innerHTML", "id"];
|
|
7396
|
+
var _hoisted_10$1 = ["innerHTML", "id"];
|
|
7335
7397
|
var _hoisted_11 = {
|
|
7336
7398
|
key: 3,
|
|
7337
7399
|
"class": "modal-footer flex space-x-4 pt-4 justify-center"
|
|
7338
7400
|
};
|
|
7339
|
-
function render$
|
|
7401
|
+
function render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7340
7402
|
var _component_FwButton = resolveComponent("FwButton");
|
|
7341
7403
|
return _ctx.isMounted ? (openBlock(), createBlock(Teleport, {
|
|
7342
7404
|
key: 0,
|
|
@@ -7350,13 +7412,13 @@ function render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7350
7412
|
key: 0,
|
|
7351
7413
|
"class": "fw-modal z-[9999]",
|
|
7352
7414
|
id: "fw-modal-".concat(_ctx.uuid)
|
|
7353
|
-
}, [createElementVNode("div", _hoisted_2$
|
|
7415
|
+
}, [createElementVNode("div", _hoisted_2$e, [createElementVNode("div", _hoisted_3$b, [createElementVNode("div", {
|
|
7354
7416
|
role: _ctx.role,
|
|
7355
7417
|
"aria-modal": "true",
|
|
7356
7418
|
"class": "fw-modal--container p-12 m-8 inline-block w-full max-w-[540px] bg-white rounded-2xl shadow",
|
|
7357
7419
|
"aria-labelledby": _ctx.$slots.header || _ctx.header ? "modal_".concat(_ctx.uuid, "_header") : undefined,
|
|
7358
7420
|
"aria-describedby": _ctx.$slots.body ? "modal_".concat(_ctx.uuid, "_body") : undefined
|
|
7359
|
-
}, [_ctx.$slots.icon || _ctx.$slots.header || _ctx.header ? (openBlock(), createElementBlock("div", _hoisted_5$4, [_ctx.$slots.icon ? (openBlock(), createElementBlock("div", _hoisted_6$
|
|
7421
|
+
}, [_ctx.$slots.icon || _ctx.$slots.header || _ctx.header ? (openBlock(), createElementBlock("div", _hoisted_5$4, [_ctx.$slots.icon ? (openBlock(), createElementBlock("div", _hoisted_6$3, [renderSlot(_ctx.$slots, "icon")])) : createCommentVNode("", true), _ctx.$slots.header ? (openBlock(), createElementBlock("h2", {
|
|
7360
7422
|
key: 1,
|
|
7361
7423
|
id: "modal_".concat(_ctx.uuid, "_header")
|
|
7362
7424
|
}, [renderSlot(_ctx.$slots, "header")], 8, _hoisted_7$2)) : _ctx.header ? (openBlock(), createElementBlock("h2", {
|
|
@@ -7372,7 +7434,7 @@ function render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7372
7434
|
innerHTML: _ctx.body,
|
|
7373
7435
|
"class": "modal-body mt-4",
|
|
7374
7436
|
id: "modal_".concat(_ctx.uuid, "_body")
|
|
7375
|
-
}, null, 8, _hoisted_10)) : createCommentVNode("", true), _ctx.showConfirm || _ctx.showCancel ? (openBlock(), createElementBlock("div", _hoisted_11, [_ctx.showCancel ? (openBlock(), createBlock(_component_FwButton, {
|
|
7437
|
+
}, null, 8, _hoisted_10$1)) : createCommentVNode("", true), _ctx.showConfirm || _ctx.showCancel ? (openBlock(), createElementBlock("div", _hoisted_11, [_ctx.showCancel ? (openBlock(), createBlock(_component_FwButton, {
|
|
7376
7438
|
key: 0,
|
|
7377
7439
|
"class": "basis-1/2",
|
|
7378
7440
|
variant: _ctx.cancelButtonType,
|
|
@@ -7398,22 +7460,22 @@ function render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7398
7460
|
return [createTextVNode(toDisplayString(_ctx.confirmButtonText), 1)];
|
|
7399
7461
|
}),
|
|
7400
7462
|
_: 1
|
|
7401
|
-
}, 8, ["variant", "aria-label"])) : createCommentVNode("", true)])) : createCommentVNode("", true)], 8, _hoisted_4$
|
|
7463
|
+
}, 8, ["variant", "aria-label"])) : createCommentVNode("", true)])) : createCommentVNode("", true)], 8, _hoisted_4$8)])])], 8, _hoisted_1$g)) : createCommentVNode("", true)];
|
|
7402
7464
|
}),
|
|
7403
7465
|
_: 3
|
|
7404
7466
|
})], 8, ["to"])) : createCommentVNode("", true);
|
|
7405
7467
|
}
|
|
7406
7468
|
|
|
7407
|
-
var css_248z$
|
|
7408
|
-
var stylesheet$
|
|
7409
|
-
styleInject(css_248z$
|
|
7469
|
+
var css_248z$a = ".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}}";
|
|
7470
|
+
var stylesheet$a = ".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}}";
|
|
7471
|
+
styleInject(css_248z$a);
|
|
7410
7472
|
|
|
7411
|
-
script$
|
|
7473
|
+
script$c.render = render$h;
|
|
7412
7474
|
|
|
7413
|
-
var script$
|
|
7475
|
+
var script$b = defineComponent({
|
|
7414
7476
|
name: 'FwProgressBar',
|
|
7415
7477
|
components: {
|
|
7416
|
-
CheckSvg: render$
|
|
7478
|
+
CheckSvg: render$J
|
|
7417
7479
|
},
|
|
7418
7480
|
props: {
|
|
7419
7481
|
/**
|
|
@@ -7455,26 +7517,26 @@ var script$c = defineComponent({
|
|
|
7455
7517
|
}
|
|
7456
7518
|
});
|
|
7457
7519
|
|
|
7458
|
-
var _hoisted_1$
|
|
7520
|
+
var _hoisted_1$f = {
|
|
7459
7521
|
"class": "fw-progress-bar w-full mx-auto my-4"
|
|
7460
7522
|
};
|
|
7461
|
-
var _hoisted_2$
|
|
7523
|
+
var _hoisted_2$d = {
|
|
7462
7524
|
"class": "flex pb-3"
|
|
7463
7525
|
};
|
|
7464
|
-
var _hoisted_3$
|
|
7526
|
+
var _hoisted_3$a = {
|
|
7465
7527
|
key: 1,
|
|
7466
7528
|
"class": "text-base font-semibold text-center w-full"
|
|
7467
7529
|
};
|
|
7468
|
-
var _hoisted_4$
|
|
7530
|
+
var _hoisted_4$7 = {
|
|
7469
7531
|
key: 0,
|
|
7470
7532
|
"class": "w-full flex items-start mt-[13px] mx-[-15px]"
|
|
7471
7533
|
};
|
|
7472
7534
|
var _hoisted_5$3 = {
|
|
7473
7535
|
"class": "w-full bg-grey-40 rounded flex-1"
|
|
7474
7536
|
};
|
|
7475
|
-
function render$
|
|
7537
|
+
function render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7476
7538
|
var _component_CheckSvg = resolveComponent("CheckSvg");
|
|
7477
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
7539
|
+
return openBlock(), createElementBlock("div", _hoisted_1$f, [createElementVNode("div", _hoisted_2$d, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.steps, function (step) {
|
|
7478
7540
|
return openBlock(), createElementBlock("div", {
|
|
7479
7541
|
"class": normalizeClass(["flex", step.position !== _ctx.steps.length ? 'flex-1' : 'w-[70px] md:w-[96px]']),
|
|
7480
7542
|
key: step.position
|
|
@@ -7485,68 +7547,118 @@ function render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7485
7547
|
}, [step.position < _ctx.activeStep ? (openBlock(), createBlock(_component_CheckSvg, {
|
|
7486
7548
|
key: 0,
|
|
7487
7549
|
"class": "w-[18px]"
|
|
7488
|
-
})) : (openBlock(), createElementBlock("span", _hoisted_3$
|
|
7550
|
+
})) : (openBlock(), createElementBlock("span", _hoisted_3$a, toDisplayString(step.position), 1))], 2), createElementVNode("div", {
|
|
7489
7551
|
"class": normalizeClass(["m-0 md:leading-tight text-sm md:text-base", {
|
|
7490
7552
|
'font-bold': step.position === _ctx.activeStep,
|
|
7491
7553
|
'text-body': step.position > _ctx.activeStep
|
|
7492
7554
|
}])
|
|
7493
|
-
}, toDisplayString(step.label), 3)], 2), step.position !== _ctx.steps.length ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
7555
|
+
}, toDisplayString(step.label), 3)], 2), step.position !== _ctx.steps.length ? (openBlock(), createElementBlock("div", _hoisted_4$7, [createElementVNode("div", _hoisted_5$3, [createElementVNode("div", {
|
|
7494
7556
|
"class": "bg-primary text-xs leading-none py-0.5 text-center rounded transition-all",
|
|
7495
7557
|
style: normalizeStyle(step.position < _ctx.activeStep ? 'width:100%;' : _ctx.calculatedProgressBar(step))
|
|
7496
7558
|
}, null, 4)])])) : createCommentVNode("", true)], 2);
|
|
7497
7559
|
}), 128))])]);
|
|
7498
7560
|
}
|
|
7499
7561
|
|
|
7500
|
-
script$
|
|
7562
|
+
script$b.render = render$g;
|
|
7501
7563
|
|
|
7502
|
-
var
|
|
7564
|
+
var useColours = function useColours() {
|
|
7565
|
+
var style = getComputedStyle(document.body);
|
|
7566
|
+
var colorPrimary = style.getPropertyValue('--colorPrimary');
|
|
7567
|
+
var colorSecondary = style.getPropertyValue('--colorSecondary');
|
|
7568
|
+
var colorTertiary = style.getPropertyValue('--colorTertiary');
|
|
7569
|
+
var fontFamily = style.getPropertyValue('--fontFamily');
|
|
7570
|
+
var colorBody = style.getPropertyValue('--colorBody');
|
|
7571
|
+
var primaryFade40 = "".concat(colorPrimary, "66"); // Adds 40% transparency
|
|
7572
|
+
var primaryFade5 = "".concat(colorPrimary, "0d"); // Adds 5% transparency
|
|
7573
|
+
return {
|
|
7574
|
+
colorPrimary: colorPrimary,
|
|
7575
|
+
colorSecondary: colorSecondary,
|
|
7576
|
+
colorTertiary: colorTertiary,
|
|
7577
|
+
fontFamily: fontFamily,
|
|
7578
|
+
colorBody: colorBody,
|
|
7579
|
+
primaryFade5: primaryFade5,
|
|
7580
|
+
primaryFade40: primaryFade40
|
|
7581
|
+
};
|
|
7582
|
+
};
|
|
7583
|
+
|
|
7584
|
+
var __default__$4 = defineComponent({
|
|
7503
7585
|
name: 'FwTag',
|
|
7586
|
+
components: {
|
|
7587
|
+
FwButton: script$g,
|
|
7588
|
+
XMarkSvg: render$p
|
|
7589
|
+
},
|
|
7590
|
+
emits: ['dismissed'],
|
|
7504
7591
|
props: {
|
|
7505
7592
|
/**
|
|
7506
|
-
* The size of the tag. Accepts: 'xs' & '
|
|
7593
|
+
* The size of the tag. Accepts: 'xs', 'sm' & 'md'
|
|
7507
7594
|
*/
|
|
7508
7595
|
size: {
|
|
7509
7596
|
type: String,
|
|
7510
7597
|
"default": 'xs',
|
|
7511
7598
|
validator: function validator(value) {
|
|
7512
|
-
return ['xs', 'sm'].includes(value);
|
|
7599
|
+
return ['xs', 'sm', 'md'].includes(value);
|
|
7513
7600
|
}
|
|
7514
7601
|
},
|
|
7515
7602
|
/**
|
|
7516
7603
|
* The colour variant of the tag.
|
|
7517
|
-
* Accepts 'primary', 'alert', 'error', 'success'
|
|
7604
|
+
* Accepts 'primary', 'secondary', 'alert', 'error', 'success'
|
|
7518
7605
|
*/
|
|
7519
7606
|
variant: {
|
|
7520
7607
|
type: String,
|
|
7521
7608
|
"default": 'primary',
|
|
7522
7609
|
validator: function validator(value) {
|
|
7523
|
-
return ['primary', 'alert', 'error', 'success'].includes(value);
|
|
7610
|
+
return ['primary', 'secondary', 'alert', 'error', 'success'].includes(value);
|
|
7524
7611
|
}
|
|
7612
|
+
},
|
|
7613
|
+
/**
|
|
7614
|
+
* Whether the tag can be dismissed or closed.
|
|
7615
|
+
* Emits the @dismissed event
|
|
7616
|
+
*/
|
|
7617
|
+
dismissable: {
|
|
7618
|
+
type: Boolean,
|
|
7619
|
+
"default": false
|
|
7525
7620
|
}
|
|
7526
7621
|
},
|
|
7527
7622
|
setup: function setup(props) {
|
|
7528
|
-
var baseClass = ref(
|
|
7623
|
+
var baseClass = ref("\n inline-flex items-center justify-center font-semibold text-center whitespace-nowrap rounded-full shadow\n ");
|
|
7624
|
+
var _useColours = useColours(),
|
|
7625
|
+
primaryFade5 = _useColours.primaryFade5;
|
|
7529
7626
|
var tagClasses = ref({
|
|
7530
7627
|
primary: {
|
|
7531
7628
|
text: 'text-button-primary-text',
|
|
7532
|
-
background: 'bg-button-primary-bg'
|
|
7629
|
+
background: 'bg-button-primary-bg',
|
|
7630
|
+
iconType: 'primary'
|
|
7631
|
+
},
|
|
7632
|
+
secondary: {
|
|
7633
|
+
text: 'text-primary',
|
|
7634
|
+
background: 'fw-tag--secondary-bg',
|
|
7635
|
+
iconType: 'tertiary'
|
|
7533
7636
|
},
|
|
7534
7637
|
alert: {
|
|
7535
7638
|
text: 'text-white',
|
|
7536
|
-
background: 'bg-alert'
|
|
7639
|
+
background: 'bg-alert',
|
|
7640
|
+
iconType: 'error'
|
|
7537
7641
|
},
|
|
7538
7642
|
success: {
|
|
7539
7643
|
text: 'text-white',
|
|
7540
|
-
background: 'bg-success'
|
|
7644
|
+
background: 'bg-success',
|
|
7645
|
+
iconType: 'success'
|
|
7541
7646
|
},
|
|
7542
7647
|
error: {
|
|
7543
7648
|
text: 'text-white',
|
|
7544
|
-
background: 'bg-error'
|
|
7649
|
+
background: 'bg-error',
|
|
7650
|
+
iconType: 'error'
|
|
7545
7651
|
}
|
|
7546
7652
|
});
|
|
7547
7653
|
var sizes = ref({
|
|
7548
7654
|
xs: 'px-2 py-px text-xs',
|
|
7549
|
-
sm: 'px-4 py-1 text-xs'
|
|
7655
|
+
sm: 'px-4 py-1 text-xs',
|
|
7656
|
+
md: 'px-3 py-[4.75px] text-xs'
|
|
7657
|
+
});
|
|
7658
|
+
var iconSizes = ref({
|
|
7659
|
+
xs: 'w-4 h-4',
|
|
7660
|
+
sm: 'w-5 h-5',
|
|
7661
|
+
md: 'w-6 h-6'
|
|
7550
7662
|
});
|
|
7551
7663
|
var textColorClass = computed(function () {
|
|
7552
7664
|
return tagClasses.value[props.variant].text;
|
|
@@ -7554,29 +7666,68 @@ var script$b = defineComponent({
|
|
|
7554
7666
|
var bgColorClass = computed(function () {
|
|
7555
7667
|
return tagClasses.value[props.variant].background;
|
|
7556
7668
|
});
|
|
7669
|
+
var iconButtonType = computed(function () {
|
|
7670
|
+
return tagClasses.value[props.variant].iconType;
|
|
7671
|
+
});
|
|
7557
7672
|
var sizeClass = computed(function () {
|
|
7558
7673
|
return sizes.value[props.size];
|
|
7559
7674
|
});
|
|
7675
|
+
var iconSizeClass = computed(function () {
|
|
7676
|
+
return iconSizes.value[props.size];
|
|
7677
|
+
});
|
|
7560
7678
|
return {
|
|
7561
7679
|
baseClass: baseClass,
|
|
7562
7680
|
textColorClass: textColorClass,
|
|
7563
7681
|
bgColorClass: bgColorClass,
|
|
7564
|
-
sizeClass: sizeClass
|
|
7682
|
+
sizeClass: sizeClass,
|
|
7683
|
+
iconSizeClass: iconSizeClass,
|
|
7684
|
+
iconButtonType: iconButtonType,
|
|
7685
|
+
primaryFade5: primaryFade5
|
|
7565
7686
|
};
|
|
7566
7687
|
}
|
|
7567
7688
|
});
|
|
7689
|
+
var __injectCSSVars__$4 = function __injectCSSVars__() {
|
|
7690
|
+
useCssVars(function (_ctx) {
|
|
7691
|
+
return {
|
|
7692
|
+
"f1e3ea3e": _ctx.primaryFade5
|
|
7693
|
+
};
|
|
7694
|
+
});
|
|
7695
|
+
};
|
|
7696
|
+
var __setup__$4 = __default__$4.setup;
|
|
7697
|
+
__default__$4.setup = __setup__$4 ? function (props, ctx) {
|
|
7698
|
+
__injectCSSVars__$4();
|
|
7699
|
+
return __setup__$4(props, ctx);
|
|
7700
|
+
} : __injectCSSVars__$4;
|
|
7568
7701
|
|
|
7569
|
-
function render$
|
|
7702
|
+
function render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7703
|
+
var _component_XMarkSvg = resolveComponent("XMarkSvg");
|
|
7704
|
+
var _component_FwButton = resolveComponent("FwButton");
|
|
7570
7705
|
return openBlock(), createElementBlock("span", {
|
|
7571
7706
|
"class": normalizeClass(["fw-tag", [_ctx.baseClass, _ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass]])
|
|
7572
|
-
}, [renderSlot(_ctx.$slots, "default")
|
|
7707
|
+
}, [renderSlot(_ctx.$slots, "default"), _ctx.dismissable ? (openBlock(), createBlock(_component_FwButton, {
|
|
7708
|
+
key: 0,
|
|
7709
|
+
variant: _ctx.iconButtonType,
|
|
7710
|
+
tabindex: "",
|
|
7711
|
+
title: "Dismiss filter",
|
|
7712
|
+
onClick: _cache[0] || (_cache[0] = function ($event) {
|
|
7713
|
+
return _ctx.$emit('dismissed');
|
|
7714
|
+
}),
|
|
7715
|
+
"class": normalizeClass([_ctx.iconSizeClass, "ml-1 !p-0 flex items-center justify-center border-none rounded-full"])
|
|
7716
|
+
}, {
|
|
7717
|
+
"default": withCtx(function () {
|
|
7718
|
+
return [createVNode(_component_XMarkSvg, {
|
|
7719
|
+
"class": "w-full h-full font-semibold m-0"
|
|
7720
|
+
})];
|
|
7721
|
+
}),
|
|
7722
|
+
_: 1
|
|
7723
|
+
}, 8, ["variant", "class"])) : createCommentVNode("", true)], 2);
|
|
7573
7724
|
}
|
|
7574
7725
|
|
|
7575
|
-
var css_248z$
|
|
7576
|
-
var stylesheet$
|
|
7577
|
-
styleInject(css_248z$
|
|
7726
|
+
var css_248z$9 = ".fw-tag{line-height:normal;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.fw-tag--secondary-bg{background:var(--f1e3ea3e)}";
|
|
7727
|
+
var stylesheet$9 = ".fw-tag{line-height:normal;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.fw-tag--secondary-bg{background:var(--f1e3ea3e)}";
|
|
7728
|
+
styleInject(css_248z$9);
|
|
7578
7729
|
|
|
7579
|
-
|
|
7730
|
+
__default__$4.render = render$f;
|
|
7580
7731
|
|
|
7581
7732
|
var es_object_keys = {};
|
|
7582
7733
|
|
|
@@ -7795,25 +7946,25 @@ var script$a = defineComponent({
|
|
|
7795
7946
|
name: 'FwLoadingBar'
|
|
7796
7947
|
});
|
|
7797
7948
|
|
|
7798
|
-
var _hoisted_1$
|
|
7949
|
+
var _hoisted_1$e = {
|
|
7799
7950
|
"class": "fw-loading-bar rounded",
|
|
7800
7951
|
"aria-hidden": "true"
|
|
7801
7952
|
};
|
|
7802
|
-
function render$
|
|
7803
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
7953
|
+
function render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7954
|
+
return openBlock(), createElementBlock("div", _hoisted_1$e);
|
|
7804
7955
|
}
|
|
7805
7956
|
|
|
7806
|
-
var css_248z$
|
|
7807
|
-
var stylesheet$
|
|
7808
|
-
styleInject(css_248z$
|
|
7957
|
+
var css_248z$8 = ".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}}";
|
|
7958
|
+
var stylesheet$8 = ".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}}";
|
|
7959
|
+
styleInject(css_248z$8);
|
|
7809
7960
|
|
|
7810
|
-
script$a.render = render$
|
|
7961
|
+
script$a.render = render$e;
|
|
7811
7962
|
|
|
7812
|
-
var __default__$
|
|
7963
|
+
var __default__$3 = defineComponent({
|
|
7813
7964
|
name: 'FwTable',
|
|
7814
7965
|
components: {
|
|
7815
|
-
ArrowSortSvg: render$
|
|
7816
|
-
ArrowDownSvg: render$
|
|
7966
|
+
ArrowSortSvg: render$s,
|
|
7967
|
+
ArrowDownSvg: render$r,
|
|
7817
7968
|
FwLoadingBar: script$a
|
|
7818
7969
|
},
|
|
7819
7970
|
emits: ['rowClicked'],
|
|
@@ -7830,9 +7981,16 @@ var __default__$2 = defineComponent({
|
|
|
7830
7981
|
type: Boolean,
|
|
7831
7982
|
"default": false
|
|
7832
7983
|
},
|
|
7984
|
+
/**
|
|
7985
|
+
* Enable click events on rows.
|
|
7986
|
+
* Emits row data when clicked
|
|
7987
|
+
*/
|
|
7833
7988
|
clickableRows: {
|
|
7834
7989
|
type: Boolean,
|
|
7835
7990
|
"default": false
|
|
7991
|
+
},
|
|
7992
|
+
autoSortColumn: {
|
|
7993
|
+
type: Number
|
|
7836
7994
|
}
|
|
7837
7995
|
},
|
|
7838
7996
|
setup: function setup(props, ctx) {
|
|
@@ -7842,9 +8000,13 @@ var __default__$2 = defineComponent({
|
|
|
7842
8000
|
var sortBy = ref('');
|
|
7843
8001
|
var sortDirection = ref('asc');
|
|
7844
8002
|
var currentSortedColumn = ref('');
|
|
7845
|
-
|
|
7846
|
-
|
|
7847
|
-
|
|
8003
|
+
onMounted(function () {
|
|
8004
|
+
if (Number(props.autoSortColumn) >= 0) {
|
|
8005
|
+
sortColumn(columns.value[Number(props.autoSortColumn)]);
|
|
8006
|
+
}
|
|
8007
|
+
});
|
|
8008
|
+
var _useColours = useColours(),
|
|
8009
|
+
bgHoverColor = _useColours.primaryFade5;
|
|
7848
8010
|
var sortColumn = function sortColumn(column) {
|
|
7849
8011
|
if (!isColumnSortable(column)) return;
|
|
7850
8012
|
currentSortedColumn.value = column;
|
|
@@ -7852,7 +8014,7 @@ var __default__$2 = defineComponent({
|
|
|
7852
8014
|
sortDirection.value = sortDirection.value === 'asc' ? 'desc' : 'asc';
|
|
7853
8015
|
} else {
|
|
7854
8016
|
sortBy.value = column;
|
|
7855
|
-
sortDirection.value =
|
|
8017
|
+
sortDirection.value = columnInitSort(column);
|
|
7856
8018
|
}
|
|
7857
8019
|
};
|
|
7858
8020
|
var sortedData = computed(function () {
|
|
@@ -7892,9 +8054,16 @@ var __default__$2 = defineComponent({
|
|
|
7892
8054
|
}
|
|
7893
8055
|
return false;
|
|
7894
8056
|
};
|
|
8057
|
+
var columnInitSort = function columnInitSort(column) {
|
|
8058
|
+
if (props.options && props.options[column]) {
|
|
8059
|
+
var _props$options$column4;
|
|
8060
|
+
return ((_props$options$column4 = props.options[column]) === null || _props$options$column4 === void 0 ? void 0 : _props$options$column4.initSortOrder) || 'asc';
|
|
8061
|
+
}
|
|
8062
|
+
return 'asc';
|
|
8063
|
+
};
|
|
7895
8064
|
var isDisabled = function isDisabled(column) {
|
|
7896
|
-
var _props$options$
|
|
7897
|
-
if (props.options && (_props$options$
|
|
8065
|
+
var _props$options$column5;
|
|
8066
|
+
if (props.options && (_props$options$column5 = props.options[column]) !== null && _props$options$column5 !== void 0 && _props$options$column5.disabled) {
|
|
7898
8067
|
return true;
|
|
7899
8068
|
}
|
|
7900
8069
|
return false;
|
|
@@ -7918,58 +8087,61 @@ var __default__$2 = defineComponent({
|
|
|
7918
8087
|
};
|
|
7919
8088
|
}
|
|
7920
8089
|
});
|
|
7921
|
-
var __injectCSSVars__$
|
|
8090
|
+
var __injectCSSVars__$3 = function __injectCSSVars__() {
|
|
7922
8091
|
useCssVars(function (_ctx) {
|
|
7923
8092
|
return {
|
|
7924
|
-
"
|
|
8093
|
+
"14adfc52": _ctx.bgHoverColor
|
|
7925
8094
|
};
|
|
7926
8095
|
});
|
|
7927
8096
|
};
|
|
7928
|
-
var __setup__$
|
|
7929
|
-
__default__$
|
|
7930
|
-
__injectCSSVars__$
|
|
7931
|
-
return __setup__$
|
|
7932
|
-
} : __injectCSSVars__$
|
|
8097
|
+
var __setup__$3 = __default__$3.setup;
|
|
8098
|
+
__default__$3.setup = __setup__$3 ? function (props, ctx) {
|
|
8099
|
+
__injectCSSVars__$3();
|
|
8100
|
+
return __setup__$3(props, ctx);
|
|
8101
|
+
} : __injectCSSVars__$3;
|
|
7933
8102
|
|
|
7934
8103
|
var _withScopeId$3 = function _withScopeId(n) {
|
|
7935
|
-
return pushScopeId("data-v-
|
|
8104
|
+
return pushScopeId("data-v-7670383f"), n = n(), popScopeId(), n;
|
|
7936
8105
|
};
|
|
7937
|
-
var _hoisted_1$
|
|
8106
|
+
var _hoisted_1$d = ["aria-busy"];
|
|
8107
|
+
var _hoisted_2$c = {
|
|
7938
8108
|
"class": "text-p2 border-b border-grey-40"
|
|
7939
8109
|
};
|
|
7940
|
-
var
|
|
7941
|
-
var
|
|
8110
|
+
var _hoisted_3$9 = ["tabindex", "onKeydown", "onClick"];
|
|
8111
|
+
var _hoisted_4$6 = {
|
|
7942
8112
|
"class": "flex flex-row items-center"
|
|
7943
8113
|
};
|
|
7944
|
-
var
|
|
8114
|
+
var _hoisted_5$2 = {
|
|
7945
8115
|
key: 0,
|
|
7946
8116
|
"class": "ml-1 flex items-center justify-center w-5"
|
|
7947
8117
|
};
|
|
7948
|
-
var
|
|
8118
|
+
var _hoisted_6$2 = {
|
|
7949
8119
|
"class": "text-p2 bg-white font-light"
|
|
7950
8120
|
};
|
|
7951
|
-
var
|
|
8121
|
+
var _hoisted_7$1 = {
|
|
7952
8122
|
key: 0,
|
|
7953
|
-
"class": "py-4
|
|
8123
|
+
"class": "py-4 pl-5 pr-3 text-left"
|
|
7954
8124
|
};
|
|
7955
|
-
var
|
|
8125
|
+
var _hoisted_8$1 = {
|
|
7956
8126
|
key: 0,
|
|
7957
|
-
"class": "py-4
|
|
8127
|
+
"class": "py-4 pl-5 pr-3 text-left"
|
|
7958
8128
|
};
|
|
7959
|
-
var
|
|
7960
|
-
var
|
|
7961
|
-
function render$
|
|
8129
|
+
var _hoisted_9$1 = ["onClick", "tabindex", "onKeydown"];
|
|
8130
|
+
var _hoisted_10 = ["innerHTML"];
|
|
8131
|
+
function render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7962
8132
|
var _component_ArrowSortSvg = resolveComponent("ArrowSortSvg");
|
|
7963
8133
|
var _component_ArrowDownSvg = resolveComponent("ArrowDownSvg");
|
|
7964
8134
|
var _component_FwLoadingBar = resolveComponent("FwLoadingBar");
|
|
7965
8135
|
return openBlock(), createElementBlock("table", {
|
|
7966
|
-
"class": normalizeClass(["fw-table table-auto table-responsive rounded-md shadow-card", _ctx.loading ? 'cursor-wait' : ''])
|
|
7967
|
-
|
|
8136
|
+
"class": normalizeClass(["fw-table table-auto table-responsive rounded-md shadow-card", _ctx.loading ? 'cursor-wait' : '']),
|
|
8137
|
+
"aria-live": "polite",
|
|
8138
|
+
"aria-busy": _ctx.loading
|
|
8139
|
+
}, [createElementVNode("thead", _hoisted_2$c, [createElementVNode("tr", null, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, thKey) {
|
|
7968
8140
|
return openBlock(), createElementBlock(Fragment, {
|
|
7969
8141
|
key: thKey
|
|
7970
8142
|
}, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("th", {
|
|
7971
8143
|
key: 0,
|
|
7972
|
-
"class": normalizeClass(["fw-table-head py-6
|
|
8144
|
+
"class": normalizeClass(["fw-table-head py-6 pl-5 pr-3 text-left font-medium", _ctx.isColumnSortable(column) ? 'cursor-pointer fw-table-head--sortable' : '']),
|
|
7973
8145
|
tabindex: _ctx.isColumnSortable(column) ? 0 : -1,
|
|
7974
8146
|
onKeydown: withKeys(function ($event) {
|
|
7975
8147
|
return _ctx.sortColumn(column);
|
|
@@ -7977,21 +8149,21 @@ function render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7977
8149
|
onClick: function onClick($event) {
|
|
7978
8150
|
return _ctx.sortColumn(column);
|
|
7979
8151
|
}
|
|
7980
|
-
}, [createElementVNode("div",
|
|
8152
|
+
}, [createElementVNode("div", _hoisted_4$6, [createElementVNode("span", {
|
|
7981
8153
|
"class": normalizeClass(_ctx.sortedIcon('asc', column) || _ctx.sortedIcon('desc', column) ? 'text-primary' : '')
|
|
7982
|
-
}, toDisplayString(column), 3), _ctx.isColumnSortable(column) ? (openBlock(), createElementBlock("span",
|
|
8154
|
+
}, toDisplayString(column), 3), _ctx.isColumnSortable(column) ? (openBlock(), createElementBlock("span", _hoisted_5$2, [!_ctx.sortedIcon('asc', column) && !_ctx.sortedIcon('desc', column) ? (openBlock(), createBlock(_component_ArrowSortSvg, {
|
|
7983
8155
|
key: 0,
|
|
7984
8156
|
"class": "inline-block w-full text-grey-base"
|
|
7985
|
-
})) : createCommentVNode("", true), _ctx.sortedIcon('
|
|
8157
|
+
})) : createCommentVNode("", true), _ctx.sortedIcon('asc', column) ? (openBlock(), createBlock(_component_ArrowDownSvg, {
|
|
7986
8158
|
key: 1,
|
|
7987
8159
|
"class": "inline-block w-4 text-primary rotate-180"
|
|
7988
|
-
})) : createCommentVNode("", true), _ctx.sortedIcon('
|
|
8160
|
+
})) : createCommentVNode("", true), _ctx.sortedIcon('desc', column) ? (openBlock(), createBlock(_component_ArrowDownSvg, {
|
|
7989
8161
|
key: 2,
|
|
7990
8162
|
"class": "inline-block w-4 text-primary"
|
|
7991
|
-
})) : createCommentVNode("", true)])) : createCommentVNode("", true)])], 42,
|
|
8163
|
+
})) : createCommentVNode("", true)])) : createCommentVNode("", true)])], 42, _hoisted_3$9)) : createCommentVNode("", true)], 64);
|
|
7992
8164
|
}), 128)), _ctx.$slots.head ? renderSlot(_ctx.$slots, "head", {
|
|
7993
8165
|
key: 0
|
|
7994
|
-
}) : createCommentVNode("", true)])]), createElementVNode("tbody",
|
|
8166
|
+
}) : createCommentVNode("", true)])]), createElementVNode("tbody", _hoisted_6$2, [_ctx.loading ? (openBlock(true), createElementBlock(Fragment, {
|
|
7995
8167
|
key: 0
|
|
7996
8168
|
}, renderList(_ctx.sortedData, function (row, trKey) {
|
|
7997
8169
|
return openBlock(), createElementBlock("tr", {
|
|
@@ -7999,10 +8171,10 @@ function render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7999
8171
|
}, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, colKey) {
|
|
8000
8172
|
return openBlock(), createElementBlock(Fragment, {
|
|
8001
8173
|
key: colKey
|
|
8002
|
-
}, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td",
|
|
8174
|
+
}, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td", _hoisted_7$1, [createVNode(_component_FwLoadingBar, {
|
|
8003
8175
|
"class": "w-full h-7"
|
|
8004
8176
|
})])) : createCommentVNode("", true)], 64);
|
|
8005
|
-
}), 128)), _ctx.$slots.row ? (openBlock(), createElementBlock("td",
|
|
8177
|
+
}), 128)), _ctx.$slots.row ? (openBlock(), createElementBlock("td", _hoisted_8$1, [createVNode(_component_FwLoadingBar, {
|
|
8006
8178
|
"class": "w-full h-7"
|
|
8007
8179
|
})])) : createCommentVNode("", true)]);
|
|
8008
8180
|
}), 128)) : (openBlock(true), createElementBlock(Fragment, {
|
|
@@ -8023,59 +8195,59 @@ function render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8023
8195
|
key: colKey
|
|
8024
8196
|
}, [!_ctx.isDisabled(column) ? (openBlock(), createElementBlock("td", {
|
|
8025
8197
|
key: 0,
|
|
8026
|
-
"class": "py-
|
|
8198
|
+
"class": "py-2 pl-5 pr-3 text-left",
|
|
8027
8199
|
innerHTML: _ctx.formattedText(row, column)
|
|
8028
|
-
}, null, 8,
|
|
8200
|
+
}, null, 8, _hoisted_10)) : createCommentVNode("", true)], 64);
|
|
8029
8201
|
}), 128)), _ctx.$slots.row ? renderSlot(_ctx.$slots, "row", {
|
|
8030
8202
|
key: 0,
|
|
8031
8203
|
row: row
|
|
8032
|
-
}) : createCommentVNode("", true)], 42,
|
|
8033
|
-
}), 128))])],
|
|
8204
|
+
}) : createCommentVNode("", true)], 42, _hoisted_9$1);
|
|
8205
|
+
}), 128))])], 10, _hoisted_1$d);
|
|
8034
8206
|
}
|
|
8035
8207
|
|
|
8036
|
-
var css_248z$
|
|
8037
|
-
var stylesheet$
|
|
8038
|
-
styleInject(css_248z$
|
|
8208
|
+
var css_248z$7 = ".fw-table-head--sortable[data-v-7670383f]:hover{background-color:var(--14adfc52)}.fw-table-row[data-v-7670383f]:hover{background-color:var(--14adfc52)}";
|
|
8209
|
+
var stylesheet$7 = ".fw-table-head--sortable[data-v-7670383f]:hover{background-color:var(--14adfc52)}.fw-table-row[data-v-7670383f]:hover{background-color:var(--14adfc52)}";
|
|
8210
|
+
styleInject(css_248z$7);
|
|
8039
8211
|
|
|
8040
|
-
__default__$
|
|
8041
|
-
__default__$
|
|
8212
|
+
__default__$3.render = render$d;
|
|
8213
|
+
__default__$3.__scopeId = "data-v-7670383f";
|
|
8042
8214
|
|
|
8043
8215
|
var script$9 = defineComponent({
|
|
8044
8216
|
name: 'FwTableHead'
|
|
8045
8217
|
});
|
|
8046
8218
|
|
|
8047
|
-
var _hoisted_1$
|
|
8219
|
+
var _hoisted_1$c = {
|
|
8048
8220
|
"class": "py-6 px-5 text-left font-medium"
|
|
8049
8221
|
};
|
|
8050
|
-
var _hoisted_2$
|
|
8222
|
+
var _hoisted_2$b = {
|
|
8051
8223
|
"class": "flex flex-row"
|
|
8052
8224
|
};
|
|
8053
|
-
var _hoisted_3$
|
|
8225
|
+
var _hoisted_3$8 = {
|
|
8054
8226
|
key: 0,
|
|
8055
8227
|
"class": "w-full"
|
|
8056
8228
|
};
|
|
8057
|
-
function render$
|
|
8058
|
-
return openBlock(), createElementBlock("th", _hoisted_1$
|
|
8229
|
+
function render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8230
|
+
return openBlock(), createElementBlock("th", _hoisted_1$c, [createElementVNode("div", _hoisted_2$b, [_ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_3$8, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true)])]);
|
|
8059
8231
|
}
|
|
8060
8232
|
|
|
8061
|
-
script$9.render = render$
|
|
8233
|
+
script$9.render = render$c;
|
|
8062
8234
|
|
|
8063
8235
|
var script$8 = defineComponent({
|
|
8064
8236
|
name: 'FwTableRow'
|
|
8065
8237
|
});
|
|
8066
8238
|
|
|
8067
|
-
var _hoisted_1$
|
|
8239
|
+
var _hoisted_1$b = {
|
|
8068
8240
|
"class": "py-3 px-4 text-left whitespace-nowrap"
|
|
8069
8241
|
};
|
|
8070
|
-
function render$
|
|
8071
|
-
return openBlock(), createElementBlock("td", _hoisted_1$
|
|
8242
|
+
function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8243
|
+
return openBlock(), createElementBlock("td", _hoisted_1$b, [_ctx.$slots["default"] ? renderSlot(_ctx.$slots, "default", {
|
|
8072
8244
|
key: 0
|
|
8073
8245
|
}) : createCommentVNode("", true)]);
|
|
8074
8246
|
}
|
|
8075
8247
|
|
|
8076
|
-
script$8.render = render$
|
|
8248
|
+
script$8.render = render$b;
|
|
8077
8249
|
|
|
8078
|
-
var
|
|
8250
|
+
var __default__$2 = defineComponent({
|
|
8079
8251
|
name: 'FwAccordion',
|
|
8080
8252
|
props: {
|
|
8081
8253
|
/**
|
|
@@ -8096,74 +8268,106 @@ var script$7 = defineComponent({
|
|
|
8096
8268
|
isOpened: {
|
|
8097
8269
|
type: Boolean,
|
|
8098
8270
|
"default": false
|
|
8271
|
+
},
|
|
8272
|
+
/**
|
|
8273
|
+
* Whether the accordion open icon should be at the start or end
|
|
8274
|
+
*/
|
|
8275
|
+
iconPositionStart: {
|
|
8276
|
+
type: Boolean,
|
|
8277
|
+
"default": true
|
|
8099
8278
|
}
|
|
8100
8279
|
},
|
|
8101
8280
|
setup: function setup(props) {
|
|
8102
8281
|
var isOpen = ref(props.isOpened);
|
|
8103
|
-
var
|
|
8282
|
+
var _useColours = useColours(),
|
|
8283
|
+
bgHoverColor = _useColours.primaryFade5;
|
|
8284
|
+
var beforeEnter = function beforeEnter(el) {
|
|
8285
|
+
el.style.height = '0';
|
|
8286
|
+
};
|
|
8287
|
+
var enter = function enter(el) {
|
|
8104
8288
|
el.style.height = el.scrollHeight + 'px';
|
|
8105
8289
|
};
|
|
8106
|
-
var
|
|
8290
|
+
var beforeLeave = function beforeLeave(el) {
|
|
8291
|
+
el.style.height = el.scrollHeight + 'px';
|
|
8292
|
+
};
|
|
8293
|
+
var leave = function leave(el) {
|
|
8107
8294
|
el.style.height = '0';
|
|
8108
8295
|
};
|
|
8109
8296
|
return {
|
|
8110
8297
|
isOpen: isOpen,
|
|
8111
|
-
|
|
8112
|
-
|
|
8298
|
+
beforeEnter: beforeEnter,
|
|
8299
|
+
enter: enter,
|
|
8300
|
+
beforeLeave: beforeLeave,
|
|
8301
|
+
leave: leave,
|
|
8302
|
+
bgHoverColor: bgHoverColor
|
|
8113
8303
|
};
|
|
8114
8304
|
}
|
|
8115
8305
|
});
|
|
8306
|
+
var __injectCSSVars__$2 = function __injectCSSVars__() {
|
|
8307
|
+
useCssVars(function (_ctx) {
|
|
8308
|
+
return {
|
|
8309
|
+
"0ec0724b": _ctx.bgHoverColor
|
|
8310
|
+
};
|
|
8311
|
+
});
|
|
8312
|
+
};
|
|
8313
|
+
var __setup__$2 = __default__$2.setup;
|
|
8314
|
+
__default__$2.setup = __setup__$2 ? function (props, ctx) {
|
|
8315
|
+
__injectCSSVars__$2();
|
|
8316
|
+
return __setup__$2(props, ctx);
|
|
8317
|
+
} : __injectCSSVars__$2;
|
|
8116
8318
|
|
|
8117
8319
|
var _withScopeId$2 = function _withScopeId(n) {
|
|
8118
|
-
return pushScopeId("data-v-
|
|
8320
|
+
return pushScopeId("data-v-5123413b"), n = n(), popScopeId(), n;
|
|
8119
8321
|
};
|
|
8120
|
-
var _hoisted_1$
|
|
8121
|
-
"class": "fw-accordion rounded border border-grey-40"
|
|
8322
|
+
var _hoisted_1$a = {
|
|
8323
|
+
"class": "fw-accordion rounded-sm border border-grey-40"
|
|
8122
8324
|
};
|
|
8123
|
-
var _hoisted_2$
|
|
8325
|
+
var _hoisted_2$a = {
|
|
8124
8326
|
"class": "flex flex-row items-center justify-between w-full"
|
|
8125
8327
|
};
|
|
8126
|
-
var _hoisted_3$
|
|
8328
|
+
var _hoisted_3$7 = {
|
|
8127
8329
|
"class": "flex flex-row items-center"
|
|
8128
8330
|
};
|
|
8129
|
-
var _hoisted_4$
|
|
8130
|
-
"class": "h4 mb-0 ml-6"
|
|
8131
|
-
};
|
|
8132
|
-
var _hoisted_5$1 = {
|
|
8331
|
+
var _hoisted_4$5 = {
|
|
8133
8332
|
key: 0,
|
|
8134
8333
|
"class": "h4"
|
|
8135
8334
|
};
|
|
8136
|
-
function render$
|
|
8137
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
8335
|
+
function render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8336
|
+
return openBlock(), createElementBlock("div", _hoisted_1$a, [createElementVNode("button", {
|
|
8138
8337
|
onClick: _cache[0] || (_cache[0] = function ($event) {
|
|
8139
8338
|
return _ctx.isOpen = !_ctx.isOpen;
|
|
8140
8339
|
}),
|
|
8141
|
-
|
|
8142
|
-
|
|
8340
|
+
type: "button",
|
|
8341
|
+
"class": normalizeClass(["fw-accordion--header px-8 py-4 bg-white w-full transition-all duration-100 ease-in focus:outline-primary", _ctx.isOpen ? 'fw-accordion--header-open' : ''])
|
|
8342
|
+
}, [createElementVNode("div", _hoisted_2$a, [createElementVNode("div", _hoisted_3$7, [_ctx.iconPositionStart ? (openBlock(), createElementBlock("span", {
|
|
8343
|
+
key: 0,
|
|
8344
|
+
"class": normalizeClass(["fw-accordion--icon", _ctx.isOpen ? 'fw-accordion--icon-open' : ''])
|
|
8345
|
+
}, null, 2)) : createCommentVNode("", true), createElementVNode("span", {
|
|
8346
|
+
"class": normalizeClass(["h4 mb-0", _ctx.iconPositionStart ? 'ml-6' : 'ml-0'])
|
|
8347
|
+
}, toDisplayString(_ctx.title), 3)]), _ctx.suffixTitle ? (openBlock(), createElementBlock("span", _hoisted_4$5, toDisplayString(_ctx.suffixTitle), 1)) : createCommentVNode("", true), !_ctx.iconPositionStart ? (openBlock(), createElementBlock("span", {
|
|
8348
|
+
key: 1,
|
|
8143
8349
|
"class": normalizeClass(["fw-accordion--icon", _ctx.isOpen ? 'fw-accordion--icon-open' : ''])
|
|
8144
|
-
}, null, 2)
|
|
8145
|
-
name: "
|
|
8146
|
-
onBeforeEnter: _ctx.
|
|
8147
|
-
onEnter: _ctx.
|
|
8148
|
-
onBeforeLeave: _ctx.
|
|
8149
|
-
onLeave: _ctx.
|
|
8150
|
-
"class": "transition-all duration-300 ease-in
|
|
8350
|
+
}, null, 2)) : createCommentVNode("", true)])], 2), createVNode(Transition, {
|
|
8351
|
+
name: "fw-accordion-transition",
|
|
8352
|
+
onBeforeEnter: _ctx.beforeEnter,
|
|
8353
|
+
onEnter: _ctx.enter,
|
|
8354
|
+
onBeforeLeave: _ctx.beforeLeave,
|
|
8355
|
+
onLeave: _ctx.leave,
|
|
8356
|
+
"class": "transition-all duration-300 ease-in overflow-hidden"
|
|
8151
8357
|
}, {
|
|
8152
8358
|
"default": withCtx(function () {
|
|
8153
|
-
return [_ctx.$slots
|
|
8154
|
-
key: 0
|
|
8155
|
-
}) : createCommentVNode("", true)];
|
|
8359
|
+
return [withDirectives(createElementVNode("div", null, [renderSlot(_ctx.$slots, "default")], 512), [[vShow, _ctx.$slots["default"] && _ctx.isOpen]])];
|
|
8156
8360
|
}),
|
|
8157
8361
|
_: 3
|
|
8158
8362
|
}, 8, ["onBeforeEnter", "onEnter", "onBeforeLeave", "onLeave"])]);
|
|
8159
8363
|
}
|
|
8160
8364
|
|
|
8161
|
-
var css_248z$
|
|
8162
|
-
var stylesheet$
|
|
8163
|
-
styleInject(css_248z$
|
|
8365
|
+
var css_248z$6 = ".fw-accordion--header-open[data-v-5123413b],.fw-accordion--header[data-v-5123413b]:focus-visible,.fw-accordion--header[data-v-5123413b]:hover{background-color:var(--0ec0724b)}.fw-accordion--icon[data-v-5123413b]{position:relative}.fw-accordion--icon[data-v-5123413b]:after,.fw-accordion--icon[data-v-5123413b]:before{background:var(--colorBody);border-radius:3px;content:\"\";height:.2rem;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:.3s ease-in-out;transition:.3s ease-in-out;width:1rem}.fw-accordion--icon[data-v-5123413b]:after{-webkit-transform:translate(-50%,-50%) rotate(90deg);-ms-transform:translate(-50%,-50%) rotate(90deg);transform:translate(-50%,-50%) rotate(90deg)}.fw-accordion--icon-open[data-v-5123413b]:after{width:0}";
|
|
8366
|
+
var stylesheet$6 = ".fw-accordion--header-open[data-v-5123413b],.fw-accordion--header[data-v-5123413b]:focus-visible,.fw-accordion--header[data-v-5123413b]:hover{background-color:var(--0ec0724b)}.fw-accordion--icon[data-v-5123413b]{position:relative}.fw-accordion--icon[data-v-5123413b]:after,.fw-accordion--icon[data-v-5123413b]:before{background:var(--colorBody);border-radius:3px;content:\"\";height:.2rem;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:.3s ease-in-out;transition:.3s ease-in-out;width:1rem}.fw-accordion--icon[data-v-5123413b]:after{-webkit-transform:translate(-50%,-50%) rotate(90deg);-ms-transform:translate(-50%,-50%) rotate(90deg);transform:translate(-50%,-50%) rotate(90deg)}.fw-accordion--icon-open[data-v-5123413b]:after{width:0}";
|
|
8367
|
+
styleInject(css_248z$6);
|
|
8164
8368
|
|
|
8165
|
-
|
|
8166
|
-
|
|
8369
|
+
__default__$2.render = render$a;
|
|
8370
|
+
__default__$2.__scopeId = "data-v-5123413b";
|
|
8167
8371
|
|
|
8168
8372
|
var es_array_from = {};
|
|
8169
8373
|
|
|
@@ -8704,74 +8908,79 @@ $$4({ global: true, bind: true, forced: global$4.setTimeout !== setTimeout$1 },
|
|
|
8704
8908
|
setTimeout: setTimeout$1
|
|
8705
8909
|
});
|
|
8706
8910
|
|
|
8911
|
+
var handleIntersect = function handleIntersect(entries, observer) {
|
|
8912
|
+
entries.forEach(function (entry) {
|
|
8913
|
+
if (entry.isIntersecting) {
|
|
8914
|
+
loadImage(entry.target);
|
|
8915
|
+
observer.unobserve(entry.target);
|
|
8916
|
+
}
|
|
8917
|
+
});
|
|
8918
|
+
};
|
|
8919
|
+
var createObserver = function createObserver(el) {
|
|
8920
|
+
var options = {
|
|
8921
|
+
root: null,
|
|
8922
|
+
threshold: Number(el.getAttribute('threshold')) || 0
|
|
8923
|
+
};
|
|
8924
|
+
var observer = new IntersectionObserver(handleIntersect, options);
|
|
8925
|
+
observer.observe(el);
|
|
8926
|
+
};
|
|
8927
|
+
var loadImage = function loadImage(el) {
|
|
8928
|
+
var imageElement = Array.from(el.children).find(function (element) {
|
|
8929
|
+
return element.nodeName === 'IMG';
|
|
8930
|
+
});
|
|
8931
|
+
if (imageElement) {
|
|
8932
|
+
var type = el.getAttribute('type');
|
|
8933
|
+
var url = imageElement.dataset.url;
|
|
8934
|
+
var setImgError = function setImgError() {
|
|
8935
|
+
setTimeout(function () {
|
|
8936
|
+
return el.classList.add('fw-image--loaded-error');
|
|
8937
|
+
}, 100);
|
|
8938
|
+
setTimeout(function () {
|
|
8939
|
+
var _el$querySelector;
|
|
8940
|
+
return (_el$querySelector = el.querySelector('.fw-image--loading')) === null || _el$querySelector === void 0 ? void 0 : _el$querySelector.remove();
|
|
8941
|
+
}, 600);
|
|
8942
|
+
};
|
|
8943
|
+
if (url) {
|
|
8944
|
+
imageElement.src = url;
|
|
8945
|
+
} else {
|
|
8946
|
+
setImgError();
|
|
8947
|
+
}
|
|
8948
|
+
imageElement.addEventListener('load', function () {
|
|
8949
|
+
setTimeout(function () {
|
|
8950
|
+
return el.classList.add('fw-image--loaded');
|
|
8951
|
+
}, 100);
|
|
8952
|
+
setTimeout(function () {
|
|
8953
|
+
var _el$querySelector2;
|
|
8954
|
+
return (_el$querySelector2 = el.querySelector('.fw-image--loading')) === null || _el$querySelector2 === void 0 ? void 0 : _el$querySelector2.remove();
|
|
8955
|
+
}, 600);
|
|
8956
|
+
});
|
|
8957
|
+
imageElement.addEventListener('error', function () {
|
|
8958
|
+
setImgError();
|
|
8959
|
+
});
|
|
8960
|
+
if (type === 'background') {
|
|
8961
|
+
el.style.backgroundImage = "url('".concat(url, "')");
|
|
8962
|
+
imageElement.remove();
|
|
8963
|
+
}
|
|
8964
|
+
}
|
|
8965
|
+
};
|
|
8707
8966
|
var lazyLoadDirective = {
|
|
8708
8967
|
mounted: function mounted(el) {
|
|
8709
|
-
var loadImage = function loadImage() {
|
|
8710
|
-
var imageElement = Array.from(el.children).find(function (element) {
|
|
8711
|
-
return element.nodeName === 'IMG';
|
|
8712
|
-
});
|
|
8713
|
-
if (imageElement) {
|
|
8714
|
-
var type = el.getAttribute('type');
|
|
8715
|
-
var url = imageElement.dataset.url;
|
|
8716
|
-
imageElement.addEventListener('load', function () {
|
|
8717
|
-
setTimeout(function () {
|
|
8718
|
-
return el.classList.add('fw-image--loaded');
|
|
8719
|
-
}, 100);
|
|
8720
|
-
setTimeout(function () {
|
|
8721
|
-
var _el$querySelector;
|
|
8722
|
-
return (_el$querySelector = el.querySelector('.fw-image--loading')) === null || _el$querySelector === void 0 ? void 0 : _el$querySelector.remove();
|
|
8723
|
-
}, 600);
|
|
8724
|
-
});
|
|
8725
|
-
if (url) {
|
|
8726
|
-
imageElement.src = url;
|
|
8727
|
-
}
|
|
8728
|
-
if (type === 'background') {
|
|
8729
|
-
el.style.backgroundImage = "url('".concat(url, "')");
|
|
8730
|
-
imageElement.remove();
|
|
8731
|
-
}
|
|
8732
|
-
imageElement.addEventListener('error', function () {
|
|
8733
|
-
setTimeout(function () {
|
|
8734
|
-
return el.classList.add('fw-image--loaded-error');
|
|
8735
|
-
}, 100);
|
|
8736
|
-
setTimeout(function () {
|
|
8737
|
-
var _el$querySelector2;
|
|
8738
|
-
return (_el$querySelector2 = el.querySelector('.fw-image--loading')) === null || _el$querySelector2 === void 0 ? void 0 : _el$querySelector2.remove();
|
|
8739
|
-
}, 600);
|
|
8740
|
-
});
|
|
8741
|
-
}
|
|
8742
|
-
};
|
|
8743
|
-
var handleIntersect = function handleIntersect(entries, observer) {
|
|
8744
|
-
entries.forEach(function (entry) {
|
|
8745
|
-
if (entry.isIntersecting) {
|
|
8746
|
-
loadImage();
|
|
8747
|
-
observer.unobserve(el);
|
|
8748
|
-
}
|
|
8749
|
-
});
|
|
8750
|
-
};
|
|
8751
|
-
var createObserver = function createObserver() {
|
|
8752
|
-
var options = {
|
|
8753
|
-
root: null,
|
|
8754
|
-
threshold: Number(el.getAttribute('threshold')) || 0
|
|
8755
|
-
};
|
|
8756
|
-
var observer = new IntersectionObserver(handleIntersect, options);
|
|
8757
|
-
observer.observe(el);
|
|
8758
|
-
};
|
|
8759
8968
|
if (window.IntersectionObserver) {
|
|
8760
|
-
createObserver();
|
|
8969
|
+
createObserver(el);
|
|
8761
8970
|
} else {
|
|
8762
|
-
loadImage();
|
|
8971
|
+
loadImage(el);
|
|
8763
8972
|
}
|
|
8764
8973
|
}
|
|
8765
8974
|
};
|
|
8766
8975
|
|
|
8767
|
-
var script$
|
|
8976
|
+
var script$7 = defineComponent({
|
|
8768
8977
|
name: 'FwImage',
|
|
8769
8978
|
directives: {
|
|
8770
8979
|
lazyload: lazyLoadDirective
|
|
8771
8980
|
},
|
|
8772
8981
|
components: {
|
|
8773
8982
|
FwLoadingBar: script$a,
|
|
8774
|
-
FileExclamationSvg: render$
|
|
8983
|
+
FileExclamationSvg: render$M
|
|
8775
8984
|
},
|
|
8776
8985
|
props: {
|
|
8777
8986
|
/**
|
|
@@ -8825,12 +9034,12 @@ var script$6 = defineComponent({
|
|
|
8825
9034
|
}
|
|
8826
9035
|
});
|
|
8827
9036
|
|
|
8828
|
-
var _hoisted_1$
|
|
8829
|
-
var _hoisted_2$
|
|
8830
|
-
var _hoisted_3$
|
|
9037
|
+
var _hoisted_1$9 = ["type", "threshold"];
|
|
9038
|
+
var _hoisted_2$9 = ["data-url", "alt"];
|
|
9039
|
+
var _hoisted_3$6 = {
|
|
8831
9040
|
"class": "fw-image--error-wrapper flex flex-col items-center justify-center"
|
|
8832
9041
|
};
|
|
8833
|
-
function render$
|
|
9042
|
+
function render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8834
9043
|
var _component_FwLoadingBar = resolveComponent("FwLoadingBar");
|
|
8835
9044
|
var _component_FileExclamationSvg = resolveComponent("FileExclamationSvg");
|
|
8836
9045
|
var _directive_lazyload = resolveDirective("lazyload");
|
|
@@ -8863,51 +9072,52 @@ function render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8863
9072
|
}, [createElementVNode("img", {
|
|
8864
9073
|
"data-url": _ctx.src,
|
|
8865
9074
|
alt: _ctx.alt,
|
|
8866
|
-
"
|
|
8867
|
-
|
|
9075
|
+
loading: "lazy",
|
|
9076
|
+
"class": normalizeClass([_ctx.rounded ? 'rounded-full' : '', _ctx.imageClass])
|
|
9077
|
+
}, null, 10, _hoisted_2$9), createVNode(_component_FwLoadingBar, {
|
|
8868
9078
|
"class": normalizeClass(["fw-image--loading w-full h-full", {
|
|
8869
9079
|
'rounded-full': _ctx.rounded
|
|
8870
9080
|
}])
|
|
8871
9081
|
}, null, 8, ["class"]), createElementVNode("div", {
|
|
8872
|
-
"class": normalizeClass(["fw-image--error bg-grey-20", {
|
|
9082
|
+
"class": normalizeClass(["fw-image--error rounded bg-grey-20", {
|
|
8873
9083
|
'rounded-full': _ctx.rounded
|
|
8874
9084
|
}])
|
|
8875
|
-
}, [createElementVNode("div", _hoisted_3$
|
|
8876
|
-
"class": "w-full h-full scale-[0.
|
|
8877
|
-
})])], 2), renderSlot(_ctx.$slots, "default")], 42, _hoisted_1$
|
|
9085
|
+
}, [createElementVNode("div", _hoisted_3$6, [createVNode(_component_FileExclamationSvg, {
|
|
9086
|
+
"class": "w-full h-full scale-[0.25] opacity-40 text-alert max-w-[150px]"
|
|
9087
|
+
})])], 2), renderSlot(_ctx.$slots, "default")], 42, _hoisted_1$9)), [[_directive_lazyload]]);
|
|
8878
9088
|
}
|
|
8879
9089
|
|
|
8880
|
-
var css_248z$
|
|
8881
|
-
var stylesheet$
|
|
8882
|
-
styleInject(css_248z$
|
|
9090
|
+
var css_248z$5 = ".fw-image{position:relative}.fw-image img{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.fw-image img,.fw-image--error{opacity:0;visibility:hidden;width:100%}.fw-image--error{height:100%;left:0;position:relative;position:absolute;top:0;-webkit-transition:all .5s ease-in;transition:all .5s ease-in}.fw-image--error-wrapper{font-size:inherit;left:50%;position:absolute;text-align:center;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:100%}.fw-image--loading{height:100%;left:0;position:absolute!important;top:0;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;width:100%}.fw-image--loaded img,.fw-image--loading{opacity:1;visibility:visible}.fw-image--loaded .fw-image--loading{opacity:0;visibility:hidden;width:100%}.fw-image--loaded-error img{display:none}.fw-image--loaded-error .fw-image--error{opacity:1;visibility:visible}.fw-image--background{background-position:50%;background-repeat:no-repeat;background-size:cover}";
|
|
9091
|
+
var stylesheet$5 = ".fw-image{position:relative}.fw-image img{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.fw-image img,.fw-image--error{opacity:0;visibility:hidden;width:100%}.fw-image--error{height:100%;left:0;position:relative;position:absolute;top:0;-webkit-transition:all .5s ease-in;transition:all .5s ease-in}.fw-image--error-wrapper{font-size:inherit;left:50%;position:absolute;text-align:center;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:100%}.fw-image--loading{height:100%;left:0;position:absolute!important;top:0;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;width:100%}.fw-image--loaded img,.fw-image--loading{opacity:1;visibility:visible}.fw-image--loaded .fw-image--loading{opacity:0;visibility:hidden;width:100%}.fw-image--loaded-error img{display:none}.fw-image--loaded-error .fw-image--error{opacity:1;visibility:visible}.fw-image--background{background-position:50%;background-repeat:no-repeat;background-size:cover}";
|
|
9092
|
+
styleInject(css_248z$5);
|
|
8883
9093
|
|
|
8884
|
-
script$
|
|
9094
|
+
script$7.render = render$9;
|
|
8885
9095
|
|
|
8886
|
-
var script$
|
|
9096
|
+
var script$6 = defineComponent({
|
|
8887
9097
|
name: 'FwLoadingCard',
|
|
8888
9098
|
components: {
|
|
8889
9099
|
FwLoadingBar: script$a
|
|
8890
9100
|
}
|
|
8891
9101
|
});
|
|
8892
9102
|
|
|
8893
|
-
var _hoisted_1$
|
|
9103
|
+
var _hoisted_1$8 = {
|
|
8894
9104
|
"class": "fw-loading-card rounded shadow-card relative"
|
|
8895
9105
|
};
|
|
8896
|
-
var _hoisted_2$
|
|
9106
|
+
var _hoisted_2$8 = {
|
|
8897
9107
|
"class": "w-full bg-white h-12 p-3 pr-12 absolute top-0 left-0 rounded-t"
|
|
8898
9108
|
};
|
|
8899
|
-
function render$
|
|
9109
|
+
function render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8900
9110
|
var _component_FwLoadingBar = resolveComponent("FwLoadingBar");
|
|
8901
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
9111
|
+
return openBlock(), createElementBlock("div", _hoisted_1$8, [createElementVNode("div", _hoisted_2$8, [createVNode(_component_FwLoadingBar, {
|
|
8902
9112
|
"class": "w-2/4 h-5"
|
|
8903
9113
|
})]), createVNode(_component_FwLoadingBar, {
|
|
8904
9114
|
"class": "w-full h-full rounded-t-none"
|
|
8905
9115
|
})]);
|
|
8906
9116
|
}
|
|
8907
9117
|
|
|
8908
|
-
script$
|
|
9118
|
+
script$6.render = render$8;
|
|
8909
9119
|
|
|
8910
|
-
var script$
|
|
9120
|
+
var script$5 = defineComponent({
|
|
8911
9121
|
name: 'FwLoadingTable',
|
|
8912
9122
|
components: {
|
|
8913
9123
|
FwLoadingBar: script$a
|
|
@@ -8923,48 +9133,49 @@ var script$4 = defineComponent({
|
|
|
8923
9133
|
}
|
|
8924
9134
|
},
|
|
8925
9135
|
setup: function setup() {
|
|
8926
|
-
var tableClass = "fw-loading-table table-auto cursor-wait table-responsive rounded
|
|
9136
|
+
var tableClass = "fw-loading-table table-auto cursor-wait table-responsive rounded-md shadow-card";
|
|
8927
9137
|
return {
|
|
8928
9138
|
tableClass: tableClass
|
|
8929
9139
|
};
|
|
8930
9140
|
}
|
|
8931
9141
|
});
|
|
8932
9142
|
|
|
8933
|
-
var _hoisted_1$
|
|
8934
|
-
"class": "text-p-small
|
|
9143
|
+
var _hoisted_1$7 = {
|
|
9144
|
+
"class": "text-p-small"
|
|
8935
9145
|
};
|
|
8936
|
-
var _hoisted_2$
|
|
8937
|
-
"class": "
|
|
9146
|
+
var _hoisted_2$7 = {
|
|
9147
|
+
"class": "p-0 m-0"
|
|
8938
9148
|
};
|
|
8939
|
-
var _hoisted_3$
|
|
9149
|
+
var _hoisted_3$5 = {
|
|
9150
|
+
"class": "m-0 p-0"
|
|
9151
|
+
};
|
|
9152
|
+
var _hoisted_4$4 = {
|
|
8940
9153
|
"class": "text-p-small bg-white font-light"
|
|
8941
9154
|
};
|
|
8942
|
-
function render$
|
|
9155
|
+
function render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8943
9156
|
var _component_FwLoadingBar = resolveComponent("FwLoadingBar");
|
|
8944
9157
|
return openBlock(), createElementBlock("table", {
|
|
8945
|
-
"class": normalizeClass(_ctx.tableClass)
|
|
8946
|
-
|
|
8947
|
-
|
|
8948
|
-
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
})])]);
|
|
8953
|
-
}), 128))])]), createElementVNode("tbody", _hoisted_3$4, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.rows, function (row, trKey) {
|
|
9158
|
+
"class": normalizeClass(_ctx.tableClass),
|
|
9159
|
+
"aria-live": "polite",
|
|
9160
|
+
"aria-busy": "true"
|
|
9161
|
+
}, [createElementVNode("thead", _hoisted_1$7, [createElementVNode("tr", _hoisted_2$7, [createElementVNode("th", _hoisted_3$5, [createVNode(_component_FwLoadingBar, {
|
|
9162
|
+
"class": "h-[4.5rem] py-6 rounded-b-none",
|
|
9163
|
+
style: normalizeStyle("width:".concat(_ctx.columns, "00%;"))
|
|
9164
|
+
}, null, 8, ["style"])])])]), createElementVNode("tbody", _hoisted_4$4, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.rows, function (row, trKey) {
|
|
8954
9165
|
return openBlock(), createElementBlock("tr", {
|
|
8955
9166
|
key: trKey
|
|
8956
9167
|
}, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columns, function (column, colKey) {
|
|
8957
9168
|
return openBlock(), createElementBlock("td", {
|
|
8958
9169
|
key: colKey,
|
|
8959
|
-
"class": "py-
|
|
9170
|
+
"class": "py-4 pl-5 pr-3 text-left whitespace-nowrap"
|
|
8960
9171
|
}, [createVNode(_component_FwLoadingBar, {
|
|
8961
|
-
"class": "w-full h-
|
|
9172
|
+
"class": "w-full h-7"
|
|
8962
9173
|
})]);
|
|
8963
9174
|
}), 128))]);
|
|
8964
9175
|
}), 128))])], 2);
|
|
8965
9176
|
}
|
|
8966
9177
|
|
|
8967
|
-
script$
|
|
9178
|
+
script$5.render = render$7;
|
|
8968
9179
|
|
|
8969
9180
|
var es_string_includes = {};
|
|
8970
9181
|
|
|
@@ -9029,12 +9240,12 @@ $$3({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }
|
|
|
9029
9240
|
}
|
|
9030
9241
|
});
|
|
9031
9242
|
|
|
9032
|
-
var script$
|
|
9243
|
+
var script$4 = defineComponent({
|
|
9033
9244
|
name: 'FwToast',
|
|
9034
9245
|
components: {
|
|
9035
|
-
SolidCheckSvg: render$
|
|
9036
|
-
SolidXMarkSvg: render$
|
|
9037
|
-
ErrorFilledSvg: render$
|
|
9246
|
+
SolidCheckSvg: render$u,
|
|
9247
|
+
SolidXMarkSvg: render$t,
|
|
9248
|
+
ErrorFilledSvg: render$E
|
|
9038
9249
|
},
|
|
9039
9250
|
emits: ['update:modelValue', 'dismissed'],
|
|
9040
9251
|
props: {
|
|
@@ -9171,15 +9382,15 @@ var script$3 = defineComponent({
|
|
|
9171
9382
|
}
|
|
9172
9383
|
});
|
|
9173
9384
|
|
|
9174
|
-
var _hoisted_1$
|
|
9175
|
-
var _hoisted_2$
|
|
9385
|
+
var _hoisted_1$6 = ["id"];
|
|
9386
|
+
var _hoisted_2$6 = {
|
|
9176
9387
|
"class": "inline-flex items-center gap-x-4"
|
|
9177
9388
|
};
|
|
9178
|
-
var _hoisted_3$
|
|
9389
|
+
var _hoisted_3$4 = {
|
|
9179
9390
|
key: 0,
|
|
9180
9391
|
"class": "text-base mb-0"
|
|
9181
9392
|
};
|
|
9182
|
-
function render$
|
|
9393
|
+
function render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
9183
9394
|
return openBlock(), createElementBlock(Fragment, null, [_ctx.mountContainer ? (openBlock(), createBlock(Teleport, {
|
|
9184
9395
|
key: 0,
|
|
9185
9396
|
to: _ctx.element
|
|
@@ -9202,28 +9413,28 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9202
9413
|
"class": normalizeClass(["fw-toast shadow rounded", [_ctx.baseClass, _ctx.typeClasses[_ctx.type]]]),
|
|
9203
9414
|
id: "fw-toast-".concat(_ctx.uuid),
|
|
9204
9415
|
key: "fw-toast-".concat(_ctx.uuid)
|
|
9205
|
-
}, [createElementVNode("div", _hoisted_2$
|
|
9416
|
+
}, [createElementVNode("div", _hoisted_2$6, [(openBlock(), createBlock(resolveDynamicComponent(_ctx.svgComponent[_ctx.type]), {
|
|
9206
9417
|
"aria-hidden": "true",
|
|
9207
9418
|
"class": "text-white min-w-[24px] min-h-[24px] w-[24px] h-[24px]"
|
|
9208
|
-
})), _ctx.content ? (openBlock(), createElementBlock("p", _hoisted_3$
|
|
9419
|
+
})), _ctx.content ? (openBlock(), createElementBlock("p", _hoisted_3$4, toDisplayString(_ctx.content), 1)) : renderSlot(_ctx.$slots, "default", {
|
|
9209
9420
|
key: 1
|
|
9210
|
-
})])], 10, _hoisted_1$
|
|
9421
|
+
})])], 10, _hoisted_1$6)) : createCommentVNode("", true)];
|
|
9211
9422
|
}),
|
|
9212
9423
|
_: 3
|
|
9213
9424
|
}, 8, ["name"])], 8, ["to"])) : createCommentVNode("", true)], 64);
|
|
9214
9425
|
}
|
|
9215
9426
|
|
|
9216
|
-
var css_248z$
|
|
9217
|
-
var stylesheet$
|
|
9218
|
-
styleInject(css_248z$
|
|
9427
|
+
var css_248z$4 = ".fw-toast{will-change:transform}.fw-toast--container{-webkit-box-orient:vertical;-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:15px;pointer-events:none;position:fixed;-webkit-transition:all .4s ease;transition:all .4s ease}#fw-toast--container-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;bottom:50px;margin-left:20px;right:50px}#fw-toast--container-bottom-left{bottom:50px;left:50px;margin-right:20px}#fw-toast--container-bottom{-webkit-box-align:center;-ms-flex-align:center;align-items:center;bottom:50px;width:100%}#fw-toast--container-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;margin-left:20px;right:50px}#fw-toast--container-top-left,#fw-toast--container-top-right{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;top:50px}#fw-toast--container-top-left{left:50px;margin-right:20px}#fw-toast--container-top{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-orient:vertical;-webkit-box-direction:reverse;align-items:center;-ms-flex-direction:column-reverse;flex-direction:column-reverse;top:50px;width:100%}.toastSlideInRight-enter-active{-webkit-animation:toastSlideInRight .4s;animation:toastSlideInRight .4s;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInRight-leave-active{animation:toastSlideInRight .4s reverse;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInLeft-enter-active{-webkit-animation:toastSlideInLeft .4s;animation:toastSlideInLeft .4s;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInLeft-leave-active{animation:toastSlideInLeft .4s reverse;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInCenter-enter-active{-webkit-animation:toastSlideInCenter .4s;animation:toastSlideInCenter .4s;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInCenter-leave-active{animation:toastSlideInCenter .4s reverse;-webkit-transition:all .4s ease;transition:all .4s ease}@-webkit-keyframes toastSlideInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}40%{opacity:1;-webkit-transform:translateX(-3%);transform:translateX(-3%)}70%{-webkit-transform:translateX(1%);transform:translateX(1%)}90%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes toastSlideInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}40%{opacity:1;-webkit-transform:translateX(-3%);transform:translateX(-3%)}70%{-webkit-transform:translateX(1%);transform:translateX(1%)}90%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes toastSlideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}40%{opacity:1;-webkit-transform:translateX(3%);transform:translateX(3%)}70%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}90%{-webkit-transform:translateX(1%);transform:translateX(1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes toastSlideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}40%{opacity:1;-webkit-transform:translateX(3%);transform:translateX(3%)}70%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}90%{-webkit-transform:translateX(1%);transform:translateX(1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes toastSlideInCenter{0%{opacity:0;scale:0}to{opacity:1;scale:1}}@keyframes toastSlideInCenter{0%{opacity:0;scale:0}to{opacity:1;scale:1}}";
|
|
9428
|
+
var stylesheet$4 = ".fw-toast{will-change:transform}.fw-toast--container{-webkit-box-orient:vertical;-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:15px;pointer-events:none;position:fixed;-webkit-transition:all .4s ease;transition:all .4s ease}#fw-toast--container-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;bottom:50px;margin-left:20px;right:50px}#fw-toast--container-bottom-left{bottom:50px;left:50px;margin-right:20px}#fw-toast--container-bottom{-webkit-box-align:center;-ms-flex-align:center;align-items:center;bottom:50px;width:100%}#fw-toast--container-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;margin-left:20px;right:50px}#fw-toast--container-top-left,#fw-toast--container-top-right{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;top:50px}#fw-toast--container-top-left{left:50px;margin-right:20px}#fw-toast--container-top{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-orient:vertical;-webkit-box-direction:reverse;align-items:center;-ms-flex-direction:column-reverse;flex-direction:column-reverse;top:50px;width:100%}.toastSlideInRight-enter-active{-webkit-animation:toastSlideInRight .4s;animation:toastSlideInRight .4s;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInRight-leave-active{animation:toastSlideInRight .4s reverse;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInLeft-enter-active{-webkit-animation:toastSlideInLeft .4s;animation:toastSlideInLeft .4s;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInLeft-leave-active{animation:toastSlideInLeft .4s reverse;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInCenter-enter-active{-webkit-animation:toastSlideInCenter .4s;animation:toastSlideInCenter .4s;-webkit-transition:all .4s ease;transition:all .4s ease}.toastSlideInCenter-leave-active{animation:toastSlideInCenter .4s reverse;-webkit-transition:all .4s ease;transition:all .4s ease}@-webkit-keyframes toastSlideInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}40%{opacity:1;-webkit-transform:translateX(-3%);transform:translateX(-3%)}70%{-webkit-transform:translateX(1%);transform:translateX(1%)}90%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes toastSlideInRight{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}40%{opacity:1;-webkit-transform:translateX(-3%);transform:translateX(-3%)}70%{-webkit-transform:translateX(1%);transform:translateX(1%)}90%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes toastSlideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}40%{opacity:1;-webkit-transform:translateX(3%);transform:translateX(3%)}70%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}90%{-webkit-transform:translateX(1%);transform:translateX(1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes toastSlideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}40%{opacity:1;-webkit-transform:translateX(3%);transform:translateX(3%)}70%{-webkit-transform:translateX(-1%);transform:translateX(-1%)}90%{-webkit-transform:translateX(1%);transform:translateX(1%)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes toastSlideInCenter{0%{opacity:0;scale:0}to{opacity:1;scale:1}}@keyframes toastSlideInCenter{0%{opacity:0;scale:0}to{opacity:1;scale:1}}";
|
|
9429
|
+
styleInject(css_248z$4);
|
|
9219
9430
|
|
|
9220
|
-
script$
|
|
9431
|
+
script$4.render = render$6;
|
|
9221
9432
|
|
|
9222
|
-
var script$
|
|
9433
|
+
var script$3 = defineComponent({
|
|
9223
9434
|
name: 'FwTransactionsCard',
|
|
9224
9435
|
components: {
|
|
9225
|
-
FwCard: script$
|
|
9226
|
-
FwImage: script$
|
|
9436
|
+
FwCard: script$i,
|
|
9437
|
+
FwImage: script$7
|
|
9227
9438
|
},
|
|
9228
9439
|
props: {
|
|
9229
9440
|
/**
|
|
@@ -9256,22 +9467,22 @@ var script$2 = defineComponent({
|
|
|
9256
9467
|
}
|
|
9257
9468
|
});
|
|
9258
9469
|
|
|
9259
|
-
var _hoisted_1$
|
|
9470
|
+
var _hoisted_1$5 = /*#__PURE__*/createElementVNode("div", {
|
|
9260
9471
|
"class": "absolute top-0 left-0 w-full h-full rounded-lg bg-primary opacity-5 pointer-events-none"
|
|
9261
9472
|
}, null, -1);
|
|
9262
|
-
var _hoisted_2$
|
|
9473
|
+
var _hoisted_2$5 = {
|
|
9263
9474
|
"class": "flex flex-row w-full items-center py-3 px-4"
|
|
9264
9475
|
};
|
|
9265
|
-
var _hoisted_3$
|
|
9476
|
+
var _hoisted_3$3 = {
|
|
9266
9477
|
"class": "flex flex-col w-full flex-1 ml-2"
|
|
9267
9478
|
};
|
|
9268
|
-
var _hoisted_4$
|
|
9479
|
+
var _hoisted_4$3 = {
|
|
9269
9480
|
"class": "flex flex-row justify-between gap-x-2 items-center w-full"
|
|
9270
9481
|
};
|
|
9271
|
-
var _hoisted_5 = {
|
|
9482
|
+
var _hoisted_5$1 = {
|
|
9272
9483
|
"class": "text-left"
|
|
9273
9484
|
};
|
|
9274
|
-
var _hoisted_6 = {
|
|
9485
|
+
var _hoisted_6$1 = {
|
|
9275
9486
|
"class": "text-p2 font-semibold mb-0"
|
|
9276
9487
|
};
|
|
9277
9488
|
var _hoisted_7 = ["innerHTML"];
|
|
@@ -9282,7 +9493,7 @@ var _hoisted_8 = {
|
|
|
9282
9493
|
var _hoisted_9 = {
|
|
9283
9494
|
"class": "text-p2 font-semibold mb-0"
|
|
9284
9495
|
};
|
|
9285
|
-
function render$
|
|
9496
|
+
function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
9286
9497
|
var _component_FwImage = resolveComponent("FwImage");
|
|
9287
9498
|
var _component_FwCard = resolveComponent("FwCard");
|
|
9288
9499
|
return openBlock(), createBlock(_component_FwCard, {
|
|
@@ -9290,13 +9501,13 @@ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9290
9501
|
"slot-padding": false
|
|
9291
9502
|
}, {
|
|
9292
9503
|
"default": withCtx(function () {
|
|
9293
|
-
return [_hoisted_1$
|
|
9504
|
+
return [_hoisted_1$5, createElementVNode("div", _hoisted_2$5, [_ctx.imageUrl ? (openBlock(), createBlock(_component_FwImage, {
|
|
9294
9505
|
key: 0,
|
|
9295
9506
|
src: _ctx.imageUrl,
|
|
9296
9507
|
type: "background",
|
|
9297
9508
|
rounded: true,
|
|
9298
9509
|
"class": "w-9 h-9"
|
|
9299
|
-
}, null, 8, ["src"])) : createCommentVNode("", true), createElementVNode("div", _hoisted_3$
|
|
9510
|
+
}, null, 8, ["src"])) : createCommentVNode("", true), createElementVNode("div", _hoisted_3$3, [createElementVNode("div", _hoisted_4$3, [createElementVNode("div", _hoisted_5$1, [createElementVNode("p", _hoisted_6$1, toDisplayString(_ctx.title), 1), _ctx.subTitle ? (openBlock(), createElementBlock("p", {
|
|
9300
9511
|
key: 0,
|
|
9301
9512
|
innerHTML: _ctx.subTitle,
|
|
9302
9513
|
"class": "text-p-small text-grey-base mb-0"
|
|
@@ -9306,7 +9517,7 @@ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9306
9517
|
});
|
|
9307
9518
|
}
|
|
9308
9519
|
|
|
9309
|
-
script$
|
|
9520
|
+
script$3.render = render$5;
|
|
9310
9521
|
|
|
9311
9522
|
function _arrayWithoutHoles(arr) {
|
|
9312
9523
|
if (Array.isArray(arr)) return _arrayLikeToArray(arr);
|
|
@@ -24871,7 +25082,7 @@ const Bubble = /* #__PURE__ */ createTypedChart("bubble", BubbleController);
|
|
|
24871
25082
|
const Scatter = /* #__PURE__ */ createTypedChart("scatter", ScatterController);
|
|
24872
25083
|
|
|
24873
25084
|
Chart$1.register(BarElement, CategoryScale, LinearScale);
|
|
24874
|
-
var script$
|
|
25085
|
+
var script$2 = defineComponent({
|
|
24875
25086
|
name: 'FwBarChart',
|
|
24876
25087
|
components: {
|
|
24877
25088
|
BarChart: Bar
|
|
@@ -24955,12 +25166,12 @@ var script$1 = defineComponent({
|
|
|
24955
25166
|
return strToNumber(singleY);
|
|
24956
25167
|
})) || [];
|
|
24957
25168
|
});
|
|
24958
|
-
var
|
|
24959
|
-
|
|
24960
|
-
|
|
24961
|
-
|
|
24962
|
-
|
|
24963
|
-
|
|
25169
|
+
var _useColours = useColours(),
|
|
25170
|
+
colorPrimary = _useColours.colorPrimary,
|
|
25171
|
+
colorBody = _useColours.colorBody,
|
|
25172
|
+
fontFamily = _useColours.fontFamily,
|
|
25173
|
+
bgColor = _useColours.primaryFade5,
|
|
25174
|
+
primaryFade = _useColours.primaryFade40;
|
|
24964
25175
|
var maxY = computed(function () {
|
|
24965
25176
|
return Math.max.apply(Math, _toConsumableArray(yModel.value));
|
|
24966
25177
|
});
|
|
@@ -25081,14 +25292,14 @@ var script$1 = defineComponent({
|
|
|
25081
25292
|
}
|
|
25082
25293
|
});
|
|
25083
25294
|
|
|
25084
|
-
var _hoisted_1$
|
|
25295
|
+
var _hoisted_1$4 = {
|
|
25085
25296
|
key: 0
|
|
25086
25297
|
};
|
|
25087
|
-
var _hoisted_2$
|
|
25298
|
+
var _hoisted_2$4 = {
|
|
25088
25299
|
key: 1,
|
|
25089
25300
|
"class": "font-normal"
|
|
25090
25301
|
};
|
|
25091
|
-
function render$
|
|
25302
|
+
function render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25092
25303
|
var _component_BarChart = resolveComponent("BarChart");
|
|
25093
25304
|
return _ctx.xModel.length > 0 && _ctx.yModel.length > 0 ? (openBlock(), createElementBlock("div", {
|
|
25094
25305
|
key: 0,
|
|
@@ -25098,7 +25309,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25098
25309
|
key: 0,
|
|
25099
25310
|
"class": "flex flex-row justify-between items-start border-b",
|
|
25100
25311
|
style: normalizeStyle("border-color: ".concat(_ctx.primaryFade))
|
|
25101
|
-
}, [_ctx.title ? (openBlock(), createElementBlock("h3", _hoisted_1$
|
|
25312
|
+
}, [_ctx.title ? (openBlock(), createElementBlock("h3", _hoisted_1$4, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true), _ctx.yMarker ? (openBlock(), createElementBlock("h3", _hoisted_2$4, toDisplayString(_ctx.yMarker), 1)) : createCommentVNode("", true)], 4)) : createCommentVNode("", true), createVNode(_component_BarChart, {
|
|
25102
25313
|
id: "fw-bar-chart-canvas-".concat(_ctx.uuid),
|
|
25103
25314
|
"class": "text-primary",
|
|
25104
25315
|
options: _ctx.chartOptions,
|
|
@@ -25107,14 +25318,14 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25107
25318
|
}, null, 8, ["id", "options", "data"])], 4)) : createCommentVNode("", true);
|
|
25108
25319
|
}
|
|
25109
25320
|
|
|
25110
|
-
script$
|
|
25321
|
+
script$2.render = render$4;
|
|
25111
25322
|
|
|
25112
|
-
var script = defineComponent({
|
|
25323
|
+
var script$1 = defineComponent({
|
|
25113
25324
|
name: 'FwSidebarMenu',
|
|
25114
25325
|
emits: ['toggled'],
|
|
25115
25326
|
components: {
|
|
25116
|
-
FwButton: script$
|
|
25117
|
-
ChevronRightSvg: render$
|
|
25327
|
+
FwButton: script$g,
|
|
25328
|
+
ChevronRightSvg: render$G
|
|
25118
25329
|
},
|
|
25119
25330
|
props: {
|
|
25120
25331
|
/**
|
|
@@ -25147,36 +25358,38 @@ var script = defineComponent({
|
|
|
25147
25358
|
}
|
|
25148
25359
|
},
|
|
25149
25360
|
setup: function setup(props, ctx) {
|
|
25361
|
+
var baseClass = "h-full shadow-md bg-grey-lightest border-r border-grey-20 \n fixed top-0 left-0 transition-all duration-300";
|
|
25150
25362
|
var isMenuOpen = ref(true);
|
|
25151
25363
|
var toggleMenu = function toggleMenu() {
|
|
25152
25364
|
isMenuOpen.value = !isMenuOpen.value;
|
|
25153
25365
|
ctx.emit('toggled', isMenuOpen.value ? props.openWidth : props.closedWidth);
|
|
25154
25366
|
};
|
|
25155
25367
|
return {
|
|
25368
|
+
baseClass: baseClass,
|
|
25156
25369
|
isMenuOpen: isMenuOpen,
|
|
25157
25370
|
toggleMenu: toggleMenu
|
|
25158
25371
|
};
|
|
25159
25372
|
}
|
|
25160
25373
|
});
|
|
25161
25374
|
|
|
25162
|
-
var _hoisted_1$
|
|
25375
|
+
var _hoisted_1$3 = {
|
|
25163
25376
|
key: 0,
|
|
25164
25377
|
"class": "flex flex-col px-4 py-8"
|
|
25165
25378
|
};
|
|
25166
|
-
var _hoisted_2$
|
|
25379
|
+
var _hoisted_2$3 = {
|
|
25167
25380
|
key: 0,
|
|
25168
25381
|
"class": "text-left px-4 pb-6"
|
|
25169
25382
|
};
|
|
25170
|
-
var _hoisted_3$
|
|
25383
|
+
var _hoisted_3$2 = {
|
|
25171
25384
|
"class": "flex flex-col space-y-1"
|
|
25172
25385
|
};
|
|
25173
|
-
function render$
|
|
25386
|
+
function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25174
25387
|
var _ctx$menuItems;
|
|
25175
25388
|
var _component_ChevronRightSvg = resolveComponent("ChevronRightSvg");
|
|
25176
25389
|
var _component_FwButton = resolveComponent("FwButton");
|
|
25177
25390
|
return _ctx.menuItems && ((_ctx$menuItems = _ctx.menuItems) === null || _ctx$menuItems === void 0 ? void 0 : _ctx$menuItems.length) > 0 ? (openBlock(), createElementBlock("div", {
|
|
25178
25391
|
key: 0,
|
|
25179
|
-
"class": normalizeClass(["fw-sidebar-menu
|
|
25392
|
+
"class": normalizeClass(["fw-sidebar-menu", [_ctx.baseClass, _ctx.isMenuOpen ? _ctx.openWidth : _ctx.closedWidth]]),
|
|
25180
25393
|
"aria-label": "Aside navigation menu"
|
|
25181
25394
|
}, [createVNode(_component_FwButton, {
|
|
25182
25395
|
variant: "primary",
|
|
@@ -25197,9 +25410,11 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25197
25410
|
name: "sidebarMenuSlide"
|
|
25198
25411
|
}, {
|
|
25199
25412
|
"default": withCtx(function () {
|
|
25200
|
-
return [_ctx.isMenuOpen ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
25201
|
-
return openBlock(),
|
|
25202
|
-
key: i
|
|
25413
|
+
return [_ctx.isMenuOpen ? (openBlock(), createElementBlock("div", _hoisted_1$3, [_ctx.$slots.title ? (openBlock(), createElementBlock("div", _hoisted_2$3, [renderSlot(_ctx.$slots, "title")])) : createCommentVNode("", true), createElementVNode("div", _hoisted_3$2, [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.menuItems, function (item, i) {
|
|
25414
|
+
return openBlock(), createElementBlock(Fragment, {
|
|
25415
|
+
key: i
|
|
25416
|
+
}, [!item.disabled ? (openBlock(), createBlock(_component_FwButton, {
|
|
25417
|
+
key: 0,
|
|
25203
25418
|
rounded: false,
|
|
25204
25419
|
"class": "!text-left !px-4 text-grey-base",
|
|
25205
25420
|
variant: "transparent",
|
|
@@ -25213,15 +25428,225 @@ function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25213
25428
|
return [createTextVNode(toDisplayString(item.label), 1)];
|
|
25214
25429
|
}),
|
|
25215
25430
|
_: 2
|
|
25216
|
-
}, 1032, ["href", "to", "external"]);
|
|
25431
|
+
}, 1032, ["href", "to", "external"])) : createCommentVNode("", true)], 64);
|
|
25217
25432
|
}), 128))])])) : createCommentVNode("", true)];
|
|
25218
25433
|
}),
|
|
25219
25434
|
_: 3
|
|
25220
25435
|
})], 2)) : createCommentVNode("", true);
|
|
25221
25436
|
}
|
|
25222
25437
|
|
|
25223
|
-
var css_248z$
|
|
25224
|
-
var stylesheet$
|
|
25438
|
+
var css_248z$3 = ".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}";
|
|
25439
|
+
var stylesheet$3 = ".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}";
|
|
25440
|
+
styleInject(css_248z$3);
|
|
25441
|
+
|
|
25442
|
+
script$1.render = render$3;
|
|
25443
|
+
|
|
25444
|
+
var script = defineComponent({
|
|
25445
|
+
name: 'FwDrawer',
|
|
25446
|
+
components: {
|
|
25447
|
+
FwButton: script$g,
|
|
25448
|
+
XMarkSvg: render$p
|
|
25449
|
+
},
|
|
25450
|
+
emits: ['update:modelValue', 'cancel', 'confirm'],
|
|
25451
|
+
props: {
|
|
25452
|
+
/**
|
|
25453
|
+
* The drawer's v-model. Controls the visibility of the drawer.
|
|
25454
|
+
*/
|
|
25455
|
+
modelValue: {
|
|
25456
|
+
type: Boolean
|
|
25457
|
+
},
|
|
25458
|
+
/**
|
|
25459
|
+
* The header title of the drawer
|
|
25460
|
+
*/
|
|
25461
|
+
header: {
|
|
25462
|
+
type: String
|
|
25463
|
+
},
|
|
25464
|
+
/**
|
|
25465
|
+
* The body description of the drawer
|
|
25466
|
+
*/
|
|
25467
|
+
body: {
|
|
25468
|
+
type: String
|
|
25469
|
+
},
|
|
25470
|
+
/**
|
|
25471
|
+
* The aria role of the drawer container. Defaults to `dialog`
|
|
25472
|
+
*/
|
|
25473
|
+
role: {
|
|
25474
|
+
type: String,
|
|
25475
|
+
"default": 'dialog'
|
|
25476
|
+
},
|
|
25477
|
+
/**
|
|
25478
|
+
* Whether to show the cancel button
|
|
25479
|
+
*/
|
|
25480
|
+
showCancel: {
|
|
25481
|
+
type: Boolean,
|
|
25482
|
+
"default": false
|
|
25483
|
+
},
|
|
25484
|
+
/**
|
|
25485
|
+
* Whether to show the confirm button
|
|
25486
|
+
*/
|
|
25487
|
+
showConfirm: {
|
|
25488
|
+
type: Boolean,
|
|
25489
|
+
"default": true
|
|
25490
|
+
},
|
|
25491
|
+
/**
|
|
25492
|
+
* Custom text for the cancel button
|
|
25493
|
+
*/
|
|
25494
|
+
cancelButtonText: {
|
|
25495
|
+
type: String,
|
|
25496
|
+
"default": 'Cancel'
|
|
25497
|
+
},
|
|
25498
|
+
/**
|
|
25499
|
+
* Button variant for the cancel button
|
|
25500
|
+
*/
|
|
25501
|
+
cancelButtonType: {
|
|
25502
|
+
type: String,
|
|
25503
|
+
"default": 'secondary',
|
|
25504
|
+
validator: function validator(value) {
|
|
25505
|
+
return ['primary', 'secondary', 'tertiary', 'error', 'success', 'link', 'text', 'transparent'].includes(value);
|
|
25506
|
+
}
|
|
25507
|
+
},
|
|
25508
|
+
/**
|
|
25509
|
+
* Custom text for the confirm button
|
|
25510
|
+
*/
|
|
25511
|
+
confirmButtonText: {
|
|
25512
|
+
type: String,
|
|
25513
|
+
"default": 'Confirm'
|
|
25514
|
+
},
|
|
25515
|
+
/**
|
|
25516
|
+
* Button variant for the confirm button
|
|
25517
|
+
*/
|
|
25518
|
+
confirmButtonType: {
|
|
25519
|
+
type: String,
|
|
25520
|
+
"default": 'primary',
|
|
25521
|
+
validator: function validator(value) {
|
|
25522
|
+
return ['primary', 'secondary', 'tertiary', 'error', 'success', 'link', 'text', 'transparent'].includes(value);
|
|
25523
|
+
}
|
|
25524
|
+
}
|
|
25525
|
+
},
|
|
25526
|
+
setup: function setup(props, ctx) {
|
|
25527
|
+
var baseDrawerClass = "fixed shadow-card top-0 right-0 z-40 h-screen bg-white";
|
|
25528
|
+
var drawerFooterClass = "\n sticky bottom-0 w-full shadow-card bg-white p-4\n ";
|
|
25529
|
+
var isMounted = ref(false);
|
|
25530
|
+
var uuid = uniqueId();
|
|
25531
|
+
var isOpen = computed({
|
|
25532
|
+
get: function get() {
|
|
25533
|
+
return props.modelValue;
|
|
25534
|
+
},
|
|
25535
|
+
set: function set(state) {
|
|
25536
|
+
return ctx.emit('update:modelValue', state);
|
|
25537
|
+
}
|
|
25538
|
+
});
|
|
25539
|
+
var onConfirmed = function onConfirmed() {
|
|
25540
|
+
ctx.emit('confirm');
|
|
25541
|
+
isOpen.value = false;
|
|
25542
|
+
};
|
|
25543
|
+
var onCancelled = function onCancelled() {
|
|
25544
|
+
ctx.emit('cancel');
|
|
25545
|
+
isOpen.value = false;
|
|
25546
|
+
};
|
|
25547
|
+
onMounted(function () {
|
|
25548
|
+
isMounted.value = true;
|
|
25549
|
+
});
|
|
25550
|
+
return {
|
|
25551
|
+
baseDrawerClass: baseDrawerClass,
|
|
25552
|
+
drawerFooterClass: drawerFooterClass,
|
|
25553
|
+
isOpen: isOpen,
|
|
25554
|
+
uuid: uuid,
|
|
25555
|
+
isMounted: isMounted,
|
|
25556
|
+
onConfirmed: onConfirmed,
|
|
25557
|
+
onCancelled: onCancelled
|
|
25558
|
+
};
|
|
25559
|
+
}
|
|
25560
|
+
});
|
|
25561
|
+
|
|
25562
|
+
var _hoisted_1$2 = ["id"];
|
|
25563
|
+
var _hoisted_2$2 = {
|
|
25564
|
+
"class": "flex flex-row justify-between items-center p-4"
|
|
25565
|
+
};
|
|
25566
|
+
var _hoisted_3$1 = ["id"];
|
|
25567
|
+
var _hoisted_4$2 = ["id"];
|
|
25568
|
+
var _hoisted_5 = {
|
|
25569
|
+
key: 0,
|
|
25570
|
+
"class": "flex items-center"
|
|
25571
|
+
};
|
|
25572
|
+
var _hoisted_6 = {
|
|
25573
|
+
key: 1,
|
|
25574
|
+
"class": "flex items-center space-x-2"
|
|
25575
|
+
};
|
|
25576
|
+
function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25577
|
+
var _component_XMarkSvg = resolveComponent("XMarkSvg");
|
|
25578
|
+
var _component_FwButton = resolveComponent("FwButton");
|
|
25579
|
+
return openBlock(), createBlock(Transition, {
|
|
25580
|
+
name: "drawerSlideInOut",
|
|
25581
|
+
appear: ""
|
|
25582
|
+
}, {
|
|
25583
|
+
"default": withCtx(function () {
|
|
25584
|
+
return [_ctx.isOpen ? (openBlock(), createElementBlock("div", {
|
|
25585
|
+
key: 0,
|
|
25586
|
+
id: "fw-drawer-".concat(_ctx.uuid),
|
|
25587
|
+
"class": normalizeClass(["fw-drawer", _ctx.baseDrawerClass]),
|
|
25588
|
+
tabindex: "-1",
|
|
25589
|
+
"aria-labelledby": "drawer-label"
|
|
25590
|
+
}, [createElementVNode("div", _hoisted_2$2, [_ctx.$slots.header ? (openBlock(), createElementBlock("h3", {
|
|
25591
|
+
key: 0,
|
|
25592
|
+
id: "drawer_".concat(_ctx.uuid, "_header"),
|
|
25593
|
+
"class": "inline-flex items-center mb-0 text-body font-semibold"
|
|
25594
|
+
}, [renderSlot(_ctx.$slots, "header")], 8, _hoisted_3$1)) : createCommentVNode("", true), createVNode(_component_FwButton, {
|
|
25595
|
+
variant: "primary",
|
|
25596
|
+
tabindex: "",
|
|
25597
|
+
title: "Close drawer",
|
|
25598
|
+
onClick: _cache[0] || (_cache[0] = function ($event) {
|
|
25599
|
+
return _ctx.onCancelled();
|
|
25600
|
+
}),
|
|
25601
|
+
"class": "inline-block w-9 h-9 !p-0 shadow inline-flex items-center justify-center rounded-full"
|
|
25602
|
+
}, {
|
|
25603
|
+
"default": withCtx(function () {
|
|
25604
|
+
return [createVNode(_component_XMarkSvg, {
|
|
25605
|
+
"class": "w-6 h-6 inline-block m-0 transition-rotate duration-200"
|
|
25606
|
+
})];
|
|
25607
|
+
}),
|
|
25608
|
+
_: 1
|
|
25609
|
+
})]), _ctx.$slots.body ? (openBlock(), createElementBlock("div", {
|
|
25610
|
+
key: 0,
|
|
25611
|
+
"class": "fw-drawer-body h-screen overflow-y-scroll pb-[155px]",
|
|
25612
|
+
id: "drawer_".concat(_ctx.uuid, "_body")
|
|
25613
|
+
}, [renderSlot(_ctx.$slots, "body")], 8, _hoisted_4$2)) : createCommentVNode("", true), _ctx.$slots.footer || _ctx.showConfirm || _ctx.showCancel ? (openBlock(), createElementBlock("div", {
|
|
25614
|
+
key: 1,
|
|
25615
|
+
"class": normalizeClass(["fw-drawer-footer", _ctx.drawerFooterClass])
|
|
25616
|
+
}, [_ctx.$slots.footer ? (openBlock(), createElementBlock("div", _hoisted_5, [renderSlot(_ctx.$slots, "footer")])) : (openBlock(), createElementBlock("div", _hoisted_6, [_ctx.showCancel ? (openBlock(), createBlock(_component_FwButton, {
|
|
25617
|
+
key: 0,
|
|
25618
|
+
"class": "basis-1/2",
|
|
25619
|
+
variant: _ctx.cancelButtonType,
|
|
25620
|
+
"aria-label": _ctx.cancelButtonText,
|
|
25621
|
+
onClick: _cache[1] || (_cache[1] = function ($event) {
|
|
25622
|
+
return _ctx.onCancelled();
|
|
25623
|
+
})
|
|
25624
|
+
}, {
|
|
25625
|
+
"default": withCtx(function () {
|
|
25626
|
+
return [createTextVNode(toDisplayString(_ctx.cancelButtonText), 1)];
|
|
25627
|
+
}),
|
|
25628
|
+
_: 1
|
|
25629
|
+
}, 8, ["variant", "aria-label"])) : createCommentVNode("", true), _ctx.showConfirm ? (openBlock(), createBlock(_component_FwButton, {
|
|
25630
|
+
key: 1,
|
|
25631
|
+
"class": "basis-1/2",
|
|
25632
|
+
variant: _ctx.confirmButtonType,
|
|
25633
|
+
"aria-label": _ctx.confirmButtonText,
|
|
25634
|
+
onClick: _cache[2] || (_cache[2] = function ($event) {
|
|
25635
|
+
return _ctx.onConfirmed();
|
|
25636
|
+
})
|
|
25637
|
+
}, {
|
|
25638
|
+
"default": withCtx(function () {
|
|
25639
|
+
return [createTextVNode(toDisplayString(_ctx.confirmButtonText), 1)];
|
|
25640
|
+
}),
|
|
25641
|
+
_: 1
|
|
25642
|
+
}, 8, ["variant", "aria-label"])) : createCommentVNode("", true)]))], 2)) : createCommentVNode("", true)], 10, _hoisted_1$2)) : createCommentVNode("", true)];
|
|
25643
|
+
}),
|
|
25644
|
+
_: 3
|
|
25645
|
+
});
|
|
25646
|
+
}
|
|
25647
|
+
|
|
25648
|
+
var css_248z$2 = ".drawerSlideInOut-enter-active{-webkit-animation:drawerSlideInOut .4s;animation:drawerSlideInOut .4s;-webkit-transition:all .4s ease-in;transition:all .4s ease-in}.drawerSlideInOut-leave-active{animation:drawerSlideInOut .4s reverse;-webkit-transition:all .4s ease-in-out;transition:all .4s ease-in-out}@-webkit-keyframes drawerSlideInOut{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes drawerSlideInOut{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}";
|
|
25649
|
+
var stylesheet$2 = ".drawerSlideInOut-enter-active{-webkit-animation:drawerSlideInOut .4s;animation:drawerSlideInOut .4s;-webkit-transition:all .4s ease-in;transition:all .4s ease-in}.drawerSlideInOut-leave-active{animation:drawerSlideInOut .4s reverse;-webkit-transition:all .4s ease-in-out;transition:all .4s ease-in-out}@-webkit-keyframes drawerSlideInOut{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes drawerSlideInOut{0%{opacity:0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}";
|
|
25225
25650
|
styleInject(css_248z$2);
|
|
25226
25651
|
|
|
25227
25652
|
script.render = render$2;
|
|
@@ -25347,32 +25772,33 @@ __default__.__scopeId = "data-v-c32112d4";
|
|
|
25347
25772
|
var components = /*#__PURE__*/Object.freeze({
|
|
25348
25773
|
__proto__: null,
|
|
25349
25774
|
FwForm: Form,
|
|
25350
|
-
FwInput: script$
|
|
25351
|
-
FwCheckbox: script$
|
|
25352
|
-
FwDropdown: script$
|
|
25353
|
-
FwCard: script$
|
|
25354
|
-
FwButton: script$
|
|
25355
|
-
FwNavigationMenu: script$
|
|
25356
|
-
FwTabs: script$
|
|
25357
|
-
FwTab: script$
|
|
25358
|
-
FwModal: script$
|
|
25359
|
-
FwProgressBar: script$
|
|
25360
|
-
FwTag:
|
|
25361
|
-
FwTable: __default__$
|
|
25775
|
+
FwInput: script$l,
|
|
25776
|
+
FwCheckbox: script$k,
|
|
25777
|
+
FwDropdown: script$j,
|
|
25778
|
+
FwCard: script$i,
|
|
25779
|
+
FwButton: script$g,
|
|
25780
|
+
FwNavigationMenu: script$f,
|
|
25781
|
+
FwTabs: script$e,
|
|
25782
|
+
FwTab: script$d,
|
|
25783
|
+
FwModal: script$c,
|
|
25784
|
+
FwProgressBar: script$b,
|
|
25785
|
+
FwTag: __default__$4,
|
|
25786
|
+
FwTable: __default__$3,
|
|
25362
25787
|
FwTableHead: script$9,
|
|
25363
25788
|
FwTableRow: script$8,
|
|
25364
|
-
FwAccordion:
|
|
25365
|
-
FwImage: script$
|
|
25789
|
+
FwAccordion: __default__$2,
|
|
25790
|
+
FwImage: script$7,
|
|
25366
25791
|
FwLoadingBar: script$a,
|
|
25367
|
-
FwLoadingCard: script$
|
|
25368
|
-
FwLoadingTable: script$
|
|
25369
|
-
FwToast: script$
|
|
25370
|
-
FwTransactionsCard: script$
|
|
25371
|
-
FwBarChart: script$
|
|
25372
|
-
FwSidebarMenu: script,
|
|
25792
|
+
FwLoadingCard: script$6,
|
|
25793
|
+
FwLoadingTable: script$5,
|
|
25794
|
+
FwToast: script$4,
|
|
25795
|
+
FwTransactionsCard: script$3,
|
|
25796
|
+
FwBarChart: script$2,
|
|
25797
|
+
FwSidebarMenu: script$1,
|
|
25798
|
+
FwDrawer: script,
|
|
25373
25799
|
FwEmailPulse: __default__$1,
|
|
25374
25800
|
FwSuccessPulse: __default__,
|
|
25375
|
-
FwLoadingSpinner: script$
|
|
25801
|
+
FwLoadingSpinner: script$h
|
|
25376
25802
|
});
|
|
25377
25803
|
|
|
25378
25804
|
function _defineProperty(obj, key, value) {
|
|
@@ -25423,7 +25849,7 @@ var modalService = function modalService(options) {
|
|
|
25423
25849
|
}));
|
|
25424
25850
|
createApp({
|
|
25425
25851
|
render: function render() {
|
|
25426
|
-
return h(script$
|
|
25852
|
+
return h(script$c, props);
|
|
25427
25853
|
}
|
|
25428
25854
|
}).mount(elementToMount);
|
|
25429
25855
|
var open = function open() {
|
|
@@ -25447,7 +25873,7 @@ var toastService = function toastService() {
|
|
|
25447
25873
|
}));
|
|
25448
25874
|
createApp({
|
|
25449
25875
|
render: function render() {
|
|
25450
|
-
return h(script$
|
|
25876
|
+
return h(script$4, props);
|
|
25451
25877
|
}
|
|
25452
25878
|
}).mount(elementToMount);
|
|
25453
25879
|
};
|
|
@@ -25476,4 +25902,4 @@ var install = function install(app) {
|
|
|
25476
25902
|
});
|
|
25477
25903
|
};
|
|
25478
25904
|
|
|
25479
|
-
export {
|
|
25905
|
+
export { __default__$2 as FwAccordion, script$2 as FwBarChart, script$g as FwButton, script$i as FwCard, script$k as FwCheckbox, script as FwDrawer, script$j as FwDropdown, __default__$1 as FwEmailPulse, Form as FwForm, script$7 as FwImage, script$l as FwInput, script$a as FwLoadingBar, script$6 as FwLoadingCard, script$h as FwLoadingSpinner, script$5 as FwLoadingTable, script$c as FwModal, script$f as FwNavigationMenu, script$b as FwProgressBar, script$1 as FwSidebarMenu, __default__ as FwSuccessPulse, script$d as FwTab, __default__$3 as FwTable, script$9 as FwTableHead, script$8 as FwTableRow, script$e as FwTabs, __default__$4 as FwTag, script$4 as FwToast, script$3 as FwTransactionsCard, install as default, modalService, toastService };
|