@vcita/design-system 0.3.13 → 0.3.14
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/CHANGELOG.MD +10 -0
- package/config/locales/ds.en.yml +2 -0
- package/dist/@vcita/design-system.esm.js +1082 -707
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +953 -614
- package/init/SvgIcons.js +1 -0
- package/package.json +1 -1
- package/src/components/VcAvatar/VcAvatar.stories.js +13 -2
- package/src/components/VcAvatar/VcAvatar.vue +56 -20
- package/src/components/VcBanner/VcBanner.stories.js +11 -0
- package/src/components/VcBanner/VcBanner.vue +23 -18
- package/src/components/VcCheckbox/VcCheckbox.stories.js +2 -0
- package/src/components/VcCheckbox/VcCheckbox.vue +19 -14
- package/src/components/VcEmptyState/VcEmptyState.stories.js +18 -9
- package/src/components/VcEmptyState/VcEmptyState.vue +24 -15
- package/src/components/VcExpansionCard/VcExpansionCard.stories.js +35 -2
- package/src/components/VcExpansionCard/VcExpansionCard.vue +63 -53
- package/src/components/VcIconWithTooltip/VcIconWithTooltip.spec.js +1 -1
- package/src/components/VcImage/VcImage.spec.js +46 -0
- package/src/components/VcImage/VcImage.stories.js +34 -0
- package/src/components/VcImage/VcImage.vue +40 -0
- package/src/components/VcTooltip/VcTooltip.stories.js +3 -1
- package/src/components/VcTooltip/VcTooltip.vue +5 -0
- package/src/components/index.js +3 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.spec.js +93 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.stories.js +56 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.vue +112 -0
- package/src/components/listBox/VcListbox/VcListbox.spec.js +131 -0
- package/src/components/listBox/VcListbox/VcListbox.stories.js +79 -0
- package/src/components/listBox/VcListbox/VcListbox.vue +141 -0
- package/src/components/modal/VcNoticeModal/VcNoticeModal.stories.js +20 -19
- package/src/components/modal/VcNoticeModal/VcNoticeModal.vue +17 -6
- package/src/components/wizard/VcStepsBar/VcStepsBar.vue +26 -24
- package/src/components/wizard/VcWizard/VcWizard.spec.js +1 -1
- package/src/components/wizard/VcWizard/VcWizard.stories.js +1 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VDialog, VBtn, VLayout, VAlert, VTooltip, VIcon, VSubheader, VListItem, VList, VBottomSheet, VListItemTitle, VMenu, VStepperStep, VStepper, VProgressCircular, VCol, VRow, VContainer, VSwitch, VTextField, VTextarea, VSnackbar, VCard,
|
|
1
|
+
import { VDialog, VBtn, VLayout, VAlert, VTooltip, VIcon, VSubheader, VListItem, VList, VBottomSheet, VListItemTitle, VMenu, VStepperStep, VStepper, VProgressCircular, VCheckbox, VDivider, VCol, VRow, VContainer, VSwitch, VTextField, VTextarea, VSnackbar, VCard, VStepperContent, VStepperItems } from 'vuetify/lib';
|
|
2
2
|
|
|
3
3
|
//
|
|
4
4
|
//
|
|
@@ -11,7 +11,7 @@ import { VDialog, VBtn, VLayout, VAlert, VTooltip, VIcon, VSubheader, VListItem,
|
|
|
11
11
|
//
|
|
12
12
|
//
|
|
13
13
|
//
|
|
14
|
-
var script$
|
|
14
|
+
var script$I = {
|
|
15
15
|
components: {
|
|
16
16
|
VDialog: VDialog
|
|
17
17
|
},
|
|
@@ -168,10 +168,10 @@ function addStyle(id, css) {
|
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
/* script */
|
|
171
|
-
const __vue_script__$
|
|
171
|
+
const __vue_script__$I = script$I;
|
|
172
172
|
/* template */
|
|
173
173
|
|
|
174
|
-
var __vue_render__$
|
|
174
|
+
var __vue_render__$F = function () {
|
|
175
175
|
var _vm = this;
|
|
176
176
|
|
|
177
177
|
var _h = _vm.$createElement;
|
|
@@ -206,10 +206,10 @@ var __vue_render__$C = function () {
|
|
|
206
206
|
}, [_vm._t("default")], 2);
|
|
207
207
|
};
|
|
208
208
|
|
|
209
|
-
var __vue_staticRenderFns__$
|
|
209
|
+
var __vue_staticRenderFns__$F = [];
|
|
210
210
|
/* style */
|
|
211
211
|
|
|
212
|
-
const __vue_inject_styles__$
|
|
212
|
+
const __vue_inject_styles__$I = function (inject) {
|
|
213
213
|
if (!inject) return;
|
|
214
214
|
inject("data-v-2f9f1f74_0", {
|
|
215
215
|
source: ".VcModalWrapper{position:relative;width:auto;background-color:var(--modal-bg-color);box-shadow:var(--modal-box-shadow)}@media screen and (min-width:960px){.VcModalWrapper{margin:0 24px}.VcModalWrapper.offset{left:var(--modal-desktop-offset)}#app[dir=rtl] .VcModalWrapper.offset{left:auto;right:var(--modal-desktop-offset)}}",
|
|
@@ -220,23 +220,23 @@ const __vue_inject_styles__$F = function (inject) {
|
|
|
220
220
|
/* scoped */
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
const __vue_scope_id__$
|
|
223
|
+
const __vue_scope_id__$I = undefined;
|
|
224
224
|
/* module identifier */
|
|
225
225
|
|
|
226
|
-
const __vue_module_identifier__$
|
|
226
|
+
const __vue_module_identifier__$I = undefined;
|
|
227
227
|
/* functional template */
|
|
228
228
|
|
|
229
|
-
const __vue_is_functional_template__$
|
|
229
|
+
const __vue_is_functional_template__$I = false;
|
|
230
230
|
/* style inject SSR */
|
|
231
231
|
|
|
232
232
|
/* style inject shadow dom */
|
|
233
233
|
|
|
234
|
-
const __vue_component__$
|
|
235
|
-
render: __vue_render__$
|
|
236
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
237
|
-
}, __vue_inject_styles__$
|
|
234
|
+
const __vue_component__$I = /*#__PURE__*/normalizeComponent({
|
|
235
|
+
render: __vue_render__$F,
|
|
236
|
+
staticRenderFns: __vue_staticRenderFns__$F
|
|
237
|
+
}, __vue_inject_styles__$I, __vue_script__$I, __vue_scope_id__$I, __vue_is_functional_template__$I, __vue_module_identifier__$I, false, createInjector, undefined, undefined);
|
|
238
238
|
|
|
239
|
-
var script$
|
|
239
|
+
var script$H = {
|
|
240
240
|
name: "VcIcon",
|
|
241
241
|
render: function (createElement) {
|
|
242
242
|
const props = {
|
|
@@ -248,28 +248,28 @@ var script$E = {
|
|
|
248
248
|
};
|
|
249
249
|
|
|
250
250
|
/* script */
|
|
251
|
-
const __vue_script__$
|
|
251
|
+
const __vue_script__$H = script$H;
|
|
252
252
|
/* template */
|
|
253
253
|
|
|
254
254
|
/* style */
|
|
255
255
|
|
|
256
|
-
const __vue_inject_styles__$
|
|
256
|
+
const __vue_inject_styles__$H = undefined;
|
|
257
257
|
/* scoped */
|
|
258
258
|
|
|
259
|
-
const __vue_scope_id__$
|
|
259
|
+
const __vue_scope_id__$H = undefined;
|
|
260
260
|
/* module identifier */
|
|
261
261
|
|
|
262
|
-
const __vue_module_identifier__$
|
|
262
|
+
const __vue_module_identifier__$H = undefined;
|
|
263
263
|
/* functional template */
|
|
264
264
|
|
|
265
|
-
const __vue_is_functional_template__$
|
|
265
|
+
const __vue_is_functional_template__$H = undefined;
|
|
266
266
|
/* style inject */
|
|
267
267
|
|
|
268
268
|
/* style inject SSR */
|
|
269
269
|
|
|
270
270
|
/* style inject shadow dom */
|
|
271
271
|
|
|
272
|
-
const __vue_component__$
|
|
272
|
+
const __vue_component__$H = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$H, __vue_script__$H, __vue_scope_id__$H, __vue_is_functional_template__$H, __vue_module_identifier__$H, false, undefined, undefined, undefined);
|
|
273
273
|
|
|
274
274
|
//
|
|
275
275
|
//
|
|
@@ -297,7 +297,7 @@ const __vue_component__$E = /*#__PURE__*/normalizeComponent({}, __vue_inject_sty
|
|
|
297
297
|
//
|
|
298
298
|
//
|
|
299
299
|
//
|
|
300
|
-
var script$
|
|
300
|
+
var script$G = {
|
|
301
301
|
components: {
|
|
302
302
|
VBtn: VBtn
|
|
303
303
|
},
|
|
@@ -375,10 +375,10 @@ var script$D = {
|
|
|
375
375
|
};
|
|
376
376
|
|
|
377
377
|
/* script */
|
|
378
|
-
const __vue_script__$
|
|
378
|
+
const __vue_script__$G = script$G;
|
|
379
379
|
/* template */
|
|
380
380
|
|
|
381
|
-
var __vue_render__$
|
|
381
|
+
var __vue_render__$E = function () {
|
|
382
382
|
var _vm = this;
|
|
383
383
|
|
|
384
384
|
var _h = _vm.$createElement;
|
|
@@ -414,10 +414,10 @@ var __vue_render__$B = function () {
|
|
|
414
414
|
}, [_vm._t("prepend"), _vm._v("\n " + _vm._s(_vm.label || _vm.$slots.default && _vm.$slots.default[0].text || '') + "\n "), _vm._t("append")], 2);
|
|
415
415
|
};
|
|
416
416
|
|
|
417
|
-
var __vue_staticRenderFns__$
|
|
417
|
+
var __vue_staticRenderFns__$E = [];
|
|
418
418
|
/* style */
|
|
419
419
|
|
|
420
|
-
const __vue_inject_styles__$
|
|
420
|
+
const __vue_inject_styles__$G = function (inject) {
|
|
421
421
|
if (!inject) return;
|
|
422
422
|
inject("data-v-b69a1aa2_0", {
|
|
423
423
|
source: ".VcButton[data-v-b69a1aa2]{letter-spacing:.003em}.VcButton[data-v-b69a1aa2]:disabled{background-color:var(--gray-lighten-2);color:var(--gray-darken-2)}",
|
|
@@ -428,28 +428,28 @@ const __vue_inject_styles__$D = function (inject) {
|
|
|
428
428
|
/* scoped */
|
|
429
429
|
|
|
430
430
|
|
|
431
|
-
const __vue_scope_id__$
|
|
431
|
+
const __vue_scope_id__$G = "data-v-b69a1aa2";
|
|
432
432
|
/* module identifier */
|
|
433
433
|
|
|
434
|
-
const __vue_module_identifier__$
|
|
434
|
+
const __vue_module_identifier__$G = undefined;
|
|
435
435
|
/* functional template */
|
|
436
436
|
|
|
437
|
-
const __vue_is_functional_template__$
|
|
437
|
+
const __vue_is_functional_template__$G = false;
|
|
438
438
|
/* style inject SSR */
|
|
439
439
|
|
|
440
440
|
/* style inject shadow dom */
|
|
441
441
|
|
|
442
|
-
const __vue_component__$
|
|
443
|
-
render: __vue_render__$
|
|
444
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
445
|
-
}, __vue_inject_styles__$
|
|
442
|
+
const __vue_component__$G = /*#__PURE__*/normalizeComponent({
|
|
443
|
+
render: __vue_render__$E,
|
|
444
|
+
staticRenderFns: __vue_staticRenderFns__$E
|
|
445
|
+
}, __vue_inject_styles__$G, __vue_script__$G, __vue_scope_id__$G, __vue_is_functional_template__$G, __vue_module_identifier__$G, false, createInjector, undefined, undefined);
|
|
446
446
|
|
|
447
|
-
var script$
|
|
447
|
+
var script$F = {
|
|
448
448
|
name: 'VcModalContainer',
|
|
449
449
|
components: {
|
|
450
|
-
VcButton: __vue_component__$
|
|
451
|
-
VcModalWrapper: __vue_component__$
|
|
452
|
-
VcIcon: __vue_component__$
|
|
450
|
+
VcButton: __vue_component__$G,
|
|
451
|
+
VcModalWrapper: __vue_component__$I,
|
|
452
|
+
VcIcon: __vue_component__$H,
|
|
453
453
|
VLayout: VLayout
|
|
454
454
|
},
|
|
455
455
|
props: {
|
|
@@ -495,10 +495,10 @@ var script$C = {
|
|
|
495
495
|
};
|
|
496
496
|
|
|
497
497
|
/* script */
|
|
498
|
-
const __vue_script__$
|
|
498
|
+
const __vue_script__$F = script$F;
|
|
499
499
|
/* template */
|
|
500
500
|
|
|
501
|
-
var __vue_render__$
|
|
501
|
+
var __vue_render__$D = function () {
|
|
502
502
|
var _vm = this;
|
|
503
503
|
|
|
504
504
|
var _h = _vm.$createElement;
|
|
@@ -571,10 +571,10 @@ var __vue_render__$A = function () {
|
|
|
571
571
|
}, [_vm._t("footer")], 2)])]], 2) : _vm._e();
|
|
572
572
|
};
|
|
573
573
|
|
|
574
|
-
var __vue_staticRenderFns__$
|
|
574
|
+
var __vue_staticRenderFns__$D = [];
|
|
575
575
|
/* style */
|
|
576
576
|
|
|
577
|
-
const __vue_inject_styles__$
|
|
577
|
+
const __vue_inject_styles__$F = function (inject) {
|
|
578
578
|
if (!inject) return;
|
|
579
579
|
inject("data-v-6b2b8919_0", {
|
|
580
580
|
source: ".VcModalContainer{overflow-y:hidden;height:auto;min-height:100px;min-width:300px;display:flex}.VcModalContainer.sm{width:var(--modal-width-small)}.VcModalContainer.md{width:var(--modal-width-medium)}.VcModalContainer.lg{width:var(--modal-width-large)}.VcModalContainer.responsive{width:100%;margin:0 24px}.VcModalContainer .VcModalContainerContent,.VcModalContainer footer,.VcModalContainer header{flex-shrink:0}.VcModalContainer header{display:flex;justify-content:space-between}.VcModalContainer header .VcModalCloseButton{position:absolute;right:5px;top:var(--size-value2)}.VcModalContainer header .VcModalCloseButton .VcIcon{font-size:22px}.VcModalContainer header.showDivider{border-bottom:1px solid rgba(0,0,0,.12)}.VcModalContainer .VcModalContainerContent{overflow-y:auto;height:calc(100% - 138px);line-height:var(--size-value6);flex-grow:1;font-size:var(--font-size-small);padding:0 var(--size-value6) var(--size-value6)}.VcModalContainer footer{padding:var(--size-value3) var(--size-value4) var(--size-value3);text-align:right}#app[dir=rtl] .VcModalContainer footer{text-align:left}.VcModalContainer footer.showDivider{border-top:1px solid rgba(0,0,0,.12)}@media screen and (min-width:960px){.VcModalContainer footer{padding:var(--size-value3) var(--size-value6) var(--size-value3)}}.VcModalContainer.notice header,.VcModalContainer.prominent header{font-weight:var(--font-weight-xl);font-size:var(--font-size-medium2);padding-bottom:0;padding-top:var(--size-value10)}.VcModalContainer.notice .VcModalContainerContent,.VcModalContainer.prominent .VcModalContainerContent{padding:0;min-height:168px;height:calc(100% - 497px)}@media screen and (min-width:960px){.VcModalContainer.notice .VcModalContainerContent,.VcModalContainer.prominent .VcModalContainerContent{margin-bottom:var(--size-value2)}}.VcModalContainer.notice footer,.VcModalContainer.prominent footer{padding-top:var(--size-value3);padding-bottom:0}.VcModalContainer.notice.responsive .VcModalContainerContent,.VcModalContainer.notice.sm .VcModalContainerContent,.VcModalContainer.prominent.responsive .VcModalContainerContent,.VcModalContainer.prominent.sm .VcModalContainerContent{margin-left:var(--size-value6);padding-right:var(--size-value6)}.VcModalContainer.notice.md .VcModalContainerContent,.VcModalContainer.prominent.md .VcModalContainerContent{margin-left:var(--size-value10);padding-right:var(--size-value10)}.VcModalContainer.notice.lg header,.VcModalContainer.prominent.lg header{height:initial}.VcModalContainer.notice.lg .VcModalContainerContent,.VcModalContainer.prominent.lg .VcModalContainerContent{min-height:0;margin-left:var(--size-value16);padding-right:var(--size-value16)}.VcModalContainer.prominent .VcModalContainerContent{margin-bottom:var(--size-value6)}.VcModalContainer.input.responsive{height:100%;margin:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.VcModalContainer.input .VcModalContainerContent{height:auto;padding:0}",
|
|
@@ -585,23 +585,23 @@ const __vue_inject_styles__$C = function (inject) {
|
|
|
585
585
|
/* scoped */
|
|
586
586
|
|
|
587
587
|
|
|
588
|
-
const __vue_scope_id__$
|
|
588
|
+
const __vue_scope_id__$F = undefined;
|
|
589
589
|
/* module identifier */
|
|
590
590
|
|
|
591
|
-
const __vue_module_identifier__$
|
|
591
|
+
const __vue_module_identifier__$F = undefined;
|
|
592
592
|
/* functional template */
|
|
593
593
|
|
|
594
|
-
const __vue_is_functional_template__$
|
|
594
|
+
const __vue_is_functional_template__$F = false;
|
|
595
595
|
/* style inject SSR */
|
|
596
596
|
|
|
597
597
|
/* style inject shadow dom */
|
|
598
598
|
|
|
599
|
-
const __vue_component__$
|
|
600
|
-
render: __vue_render__$
|
|
601
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
602
|
-
}, __vue_inject_styles__$
|
|
599
|
+
const __vue_component__$F = /*#__PURE__*/normalizeComponent({
|
|
600
|
+
render: __vue_render__$D,
|
|
601
|
+
staticRenderFns: __vue_staticRenderFns__$D
|
|
602
|
+
}, __vue_inject_styles__$F, __vue_script__$F, __vue_scope_id__$F, __vue_is_functional_template__$F, __vue_module_identifier__$F, false, createInjector, undefined, undefined);
|
|
603
603
|
|
|
604
|
-
var script$
|
|
604
|
+
var script$E = {
|
|
605
605
|
name: "VcLayout",
|
|
606
606
|
render: function (createElement) {
|
|
607
607
|
// `<v-layout><slot></slot></v-layout>`
|
|
@@ -615,34 +615,34 @@ var script$B = {
|
|
|
615
615
|
};
|
|
616
616
|
|
|
617
617
|
/* script */
|
|
618
|
-
const __vue_script__$
|
|
618
|
+
const __vue_script__$E = script$E;
|
|
619
619
|
/* template */
|
|
620
620
|
|
|
621
621
|
/* style */
|
|
622
622
|
|
|
623
|
-
const __vue_inject_styles__$
|
|
623
|
+
const __vue_inject_styles__$E = undefined;
|
|
624
624
|
/* scoped */
|
|
625
625
|
|
|
626
|
-
const __vue_scope_id__$
|
|
626
|
+
const __vue_scope_id__$E = "data-v-0751575a";
|
|
627
627
|
/* module identifier */
|
|
628
628
|
|
|
629
|
-
const __vue_module_identifier__$
|
|
629
|
+
const __vue_module_identifier__$E = undefined;
|
|
630
630
|
/* functional template */
|
|
631
631
|
|
|
632
|
-
const __vue_is_functional_template__$
|
|
632
|
+
const __vue_is_functional_template__$E = undefined;
|
|
633
633
|
/* style inject */
|
|
634
634
|
|
|
635
635
|
/* style inject SSR */
|
|
636
636
|
|
|
637
637
|
/* style inject shadow dom */
|
|
638
638
|
|
|
639
|
-
const __vue_component__$
|
|
639
|
+
const __vue_component__$E = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$E, __vue_script__$E, __vue_scope_id__$E, __vue_is_functional_template__$E, __vue_module_identifier__$E, false, undefined, undefined, undefined);
|
|
640
640
|
|
|
641
|
-
var script$
|
|
641
|
+
var script$D = {
|
|
642
642
|
name: "VcModalFooter",
|
|
643
643
|
components: {
|
|
644
|
-
VcLayout: __vue_component__$
|
|
645
|
-
VcButton: __vue_component__$
|
|
644
|
+
VcLayout: __vue_component__$E,
|
|
645
|
+
VcButton: __vue_component__$G
|
|
646
646
|
},
|
|
647
647
|
props: {
|
|
648
648
|
direction: {
|
|
@@ -667,10 +667,10 @@ var script$A = {
|
|
|
667
667
|
};
|
|
668
668
|
|
|
669
669
|
/* script */
|
|
670
|
-
const __vue_script__$
|
|
670
|
+
const __vue_script__$D = script$D;
|
|
671
671
|
/* template */
|
|
672
672
|
|
|
673
|
-
var __vue_render__$
|
|
673
|
+
var __vue_render__$C = function () {
|
|
674
674
|
var _vm = this;
|
|
675
675
|
|
|
676
676
|
var _h = _vm.$createElement;
|
|
@@ -703,10 +703,10 @@ var __vue_render__$z = function () {
|
|
|
703
703
|
}), 1);
|
|
704
704
|
};
|
|
705
705
|
|
|
706
|
-
var __vue_staticRenderFns__$
|
|
706
|
+
var __vue_staticRenderFns__$C = [];
|
|
707
707
|
/* style */
|
|
708
708
|
|
|
709
|
-
const __vue_inject_styles__$
|
|
709
|
+
const __vue_inject_styles__$D = function (inject) {
|
|
710
710
|
if (!inject) return;
|
|
711
711
|
inject("data-v-daacbd22_0", {
|
|
712
712
|
source: ".VcModalFooter.vertical .VcFooterButton[data-v-daacbd22]{width:100%;margin-bottom:var(--size-value2)}.VcModalFooter.vertical .VcFooterButton[data-v-daacbd22]:last-of-type{margin-bottom:0}@media screen and (min-width:960px){.VcModalFooter.vertical .VcFooterButton[data-v-daacbd22]{width:auto}}.VcModalFooter.horizontal .VcFooterButton[data-v-daacbd22]{flex-basis:0;flex-grow:1}.VcModalFooter.horizontal .VcFooterButton[data-v-daacbd22]:first-of-type{margin-left:0}.VcModalFooter.horizontal .VcFooterButton[data-v-daacbd22]:last-of-type{margin-right:0}@media screen and (min-width:960px){.VcModalFooter.horizontal .VcFooterButton[data-v-daacbd22]{flex-basis:auto;flex-grow:0}}.VcModalFooter .VcFooterButton[data-v-daacbd22]{margin-left:var(--size-value1);margin-right:var(--size-value1)}",
|
|
@@ -717,28 +717,28 @@ const __vue_inject_styles__$A = function (inject) {
|
|
|
717
717
|
/* scoped */
|
|
718
718
|
|
|
719
719
|
|
|
720
|
-
const __vue_scope_id__$
|
|
720
|
+
const __vue_scope_id__$D = "data-v-daacbd22";
|
|
721
721
|
/* module identifier */
|
|
722
722
|
|
|
723
|
-
const __vue_module_identifier__$
|
|
723
|
+
const __vue_module_identifier__$D = undefined;
|
|
724
724
|
/* functional template */
|
|
725
725
|
|
|
726
|
-
const __vue_is_functional_template__$
|
|
726
|
+
const __vue_is_functional_template__$D = false;
|
|
727
727
|
/* style inject SSR */
|
|
728
728
|
|
|
729
729
|
/* style inject shadow dom */
|
|
730
730
|
|
|
731
|
-
const __vue_component__$
|
|
732
|
-
render: __vue_render__$
|
|
733
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
734
|
-
}, __vue_inject_styles__$
|
|
731
|
+
const __vue_component__$D = /*#__PURE__*/normalizeComponent({
|
|
732
|
+
render: __vue_render__$C,
|
|
733
|
+
staticRenderFns: __vue_staticRenderFns__$C
|
|
734
|
+
}, __vue_inject_styles__$D, __vue_script__$D, __vue_scope_id__$D, __vue_is_functional_template__$D, __vue_module_identifier__$D, false, createInjector, undefined, undefined);
|
|
735
735
|
|
|
736
|
-
var script$
|
|
736
|
+
var script$C = {
|
|
737
737
|
name: "VcModalHeader",
|
|
738
738
|
components: {
|
|
739
|
-
VcLayout: __vue_component__$
|
|
740
|
-
VcIcon: __vue_component__$
|
|
741
|
-
VcButton: __vue_component__$
|
|
739
|
+
VcLayout: __vue_component__$E,
|
|
740
|
+
VcIcon: __vue_component__$H,
|
|
741
|
+
VcButton: __vue_component__$G
|
|
742
742
|
},
|
|
743
743
|
props: {
|
|
744
744
|
topTitle: {
|
|
@@ -776,10 +776,10 @@ var script$z = {
|
|
|
776
776
|
};
|
|
777
777
|
|
|
778
778
|
/* script */
|
|
779
|
-
const __vue_script__$
|
|
779
|
+
const __vue_script__$C = script$C;
|
|
780
780
|
/* template */
|
|
781
781
|
|
|
782
|
-
var __vue_render__$
|
|
782
|
+
var __vue_render__$B = function () {
|
|
783
783
|
var _vm = this;
|
|
784
784
|
|
|
785
785
|
var _h = _vm.$createElement;
|
|
@@ -852,10 +852,10 @@ var __vue_render__$y = function () {
|
|
|
852
852
|
}, [_vm._v(_vm._s(_vm.subtitle))]) : _vm._e()])], 1)], 2);
|
|
853
853
|
};
|
|
854
854
|
|
|
855
|
-
var __vue_staticRenderFns__$
|
|
855
|
+
var __vue_staticRenderFns__$B = [];
|
|
856
856
|
/* style */
|
|
857
857
|
|
|
858
|
-
const __vue_inject_styles__$
|
|
858
|
+
const __vue_inject_styles__$C = function (inject) {
|
|
859
859
|
if (!inject) return;
|
|
860
860
|
inject("data-v-407bef94_0", {
|
|
861
861
|
source: ".VcHeader[data-v-407bef94]{font-size:var(--font-size-small2);padding:var(--size-value4) var(--size-value6) var(--size-value4);line-height:24px;font-weight:var(--font-weight-large2)}@media screen and (min-width:960px){.VcHeader[data-v-407bef94]{font-weight:var(--font-weight-large);font-size:var(--font-size-medium)}}.VcHeader .VcHeaderImage[data-v-407bef94]{width:32px;margin-right:var(--size-value3);padding:5px;border:1px solid rgba(0,0,0,.12);box-sizing:border-box;border-radius:6px}.VcHeader .VcHeaderTopTitle[data-v-407bef94]{font-size:11px;font-weight:var(--font-weight-medium);line-height:12px;color:rgba(0,0,0,.54)}.VcHeader .VcHeaderTitleWithPadding[data-v-407bef94]{padding-left:var(--size-value6)}.VcHeader .VcHeaderSubtitle[data-v-407bef94]{font-size:15px;font-weight:var(--font-weight-medium);color:rgba(0,0,0,.87);padding-left:var(--size-value2)}.VcHeader.confirm[data-v-407bef94]{font-size:var(--font-size-medium);font-weight:var(--font-weight-large2);padding-bottom:var(--size-value1);padding-top:var(--size-value6)}@media screen and (min-width:960px){.VcHeader.confirm[data-v-407bef94]{padding-bottom:var(--size-value1)}}.VcHeader.confirm .VcHeaderButton[data-v-407bef94],.VcHeader.input .VcHeaderButton[data-v-407bef94]{max-height:24px;margin-right:var(--size-value3)}.VcHeader.confirm .VcHeaderIcon[data-v-407bef94],.VcHeader.input .VcHeaderIcon[data-v-407bef94]{padding-right:var(--size-value3);font-size:var(--font-size-medium)}.VcHeader.input[data-v-407bef94]{transform:translateX(-8px)}@media screen and (min-width:960px){.VcHeader.input[data-v-407bef94]{transform:translateX(0);padding-bottom:var(--size-value3)}}",
|
|
@@ -866,30 +866,30 @@ const __vue_inject_styles__$z = function (inject) {
|
|
|
866
866
|
/* scoped */
|
|
867
867
|
|
|
868
868
|
|
|
869
|
-
const __vue_scope_id__$
|
|
869
|
+
const __vue_scope_id__$C = "data-v-407bef94";
|
|
870
870
|
/* module identifier */
|
|
871
871
|
|
|
872
|
-
const __vue_module_identifier__$
|
|
872
|
+
const __vue_module_identifier__$C = undefined;
|
|
873
873
|
/* functional template */
|
|
874
874
|
|
|
875
|
-
const __vue_is_functional_template__$
|
|
875
|
+
const __vue_is_functional_template__$C = false;
|
|
876
876
|
/* style inject SSR */
|
|
877
877
|
|
|
878
878
|
/* style inject shadow dom */
|
|
879
879
|
|
|
880
|
-
const __vue_component__$
|
|
881
|
-
render: __vue_render__$
|
|
882
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
883
|
-
}, __vue_inject_styles__$
|
|
880
|
+
const __vue_component__$C = /*#__PURE__*/normalizeComponent({
|
|
881
|
+
render: __vue_render__$B,
|
|
882
|
+
staticRenderFns: __vue_staticRenderFns__$B
|
|
883
|
+
}, __vue_inject_styles__$C, __vue_script__$C, __vue_scope_id__$C, __vue_is_functional_template__$C, __vue_module_identifier__$C, false, createInjector, undefined, undefined);
|
|
884
884
|
|
|
885
|
-
var script$
|
|
885
|
+
var script$B = {
|
|
886
886
|
name: "VcConfirmModal",
|
|
887
887
|
components: {
|
|
888
|
-
VcModalHeader: __vue_component__$
|
|
889
|
-
VcLayout: __vue_component__$
|
|
890
|
-
VcModalFooter: __vue_component__$
|
|
891
|
-
VcIcon: __vue_component__$
|
|
892
|
-
VcModalContainer: __vue_component__$
|
|
888
|
+
VcModalHeader: __vue_component__$C,
|
|
889
|
+
VcLayout: __vue_component__$E,
|
|
890
|
+
VcModalFooter: __vue_component__$D,
|
|
891
|
+
VcIcon: __vue_component__$H,
|
|
892
|
+
VcModalContainer: __vue_component__$F
|
|
893
893
|
},
|
|
894
894
|
props: {
|
|
895
895
|
showDialog: {
|
|
@@ -946,10 +946,10 @@ var script$y = {
|
|
|
946
946
|
};
|
|
947
947
|
|
|
948
948
|
/* script */
|
|
949
|
-
const __vue_script__$
|
|
949
|
+
const __vue_script__$B = script$B;
|
|
950
950
|
/* template */
|
|
951
951
|
|
|
952
|
-
var __vue_render__$
|
|
952
|
+
var __vue_render__$A = function () {
|
|
953
953
|
var _vm = this;
|
|
954
954
|
|
|
955
955
|
var _h = _vm.$createElement;
|
|
@@ -1033,31 +1033,31 @@ var __vue_render__$x = function () {
|
|
|
1033
1033
|
});
|
|
1034
1034
|
};
|
|
1035
1035
|
|
|
1036
|
-
var __vue_staticRenderFns__$
|
|
1036
|
+
var __vue_staticRenderFns__$A = [];
|
|
1037
1037
|
/* style */
|
|
1038
1038
|
|
|
1039
|
-
const __vue_inject_styles__$
|
|
1039
|
+
const __vue_inject_styles__$B = undefined;
|
|
1040
1040
|
/* scoped */
|
|
1041
1041
|
|
|
1042
|
-
const __vue_scope_id__$
|
|
1042
|
+
const __vue_scope_id__$B = "data-v-43bbc80a";
|
|
1043
1043
|
/* module identifier */
|
|
1044
1044
|
|
|
1045
|
-
const __vue_module_identifier__$
|
|
1045
|
+
const __vue_module_identifier__$B = undefined;
|
|
1046
1046
|
/* functional template */
|
|
1047
1047
|
|
|
1048
|
-
const __vue_is_functional_template__$
|
|
1048
|
+
const __vue_is_functional_template__$B = false;
|
|
1049
1049
|
/* style inject */
|
|
1050
1050
|
|
|
1051
1051
|
/* style inject SSR */
|
|
1052
1052
|
|
|
1053
1053
|
/* style inject shadow dom */
|
|
1054
1054
|
|
|
1055
|
-
const __vue_component__$
|
|
1056
|
-
render: __vue_render__$
|
|
1057
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1058
|
-
}, __vue_inject_styles__$
|
|
1055
|
+
const __vue_component__$B = /*#__PURE__*/normalizeComponent({
|
|
1056
|
+
render: __vue_render__$A,
|
|
1057
|
+
staticRenderFns: __vue_staticRenderFns__$A
|
|
1058
|
+
}, __vue_inject_styles__$B, __vue_script__$B, __vue_scope_id__$B, __vue_is_functional_template__$B, __vue_module_identifier__$B, false, undefined, undefined, undefined);
|
|
1059
1059
|
|
|
1060
|
-
var script$
|
|
1060
|
+
var script$A = {
|
|
1061
1061
|
name: "VcForm",
|
|
1062
1062
|
methods: {
|
|
1063
1063
|
validate() {
|
|
@@ -1077,38 +1077,38 @@ var script$x = {
|
|
|
1077
1077
|
};
|
|
1078
1078
|
|
|
1079
1079
|
/* script */
|
|
1080
|
-
const __vue_script__$
|
|
1080
|
+
const __vue_script__$A = script$A;
|
|
1081
1081
|
/* template */
|
|
1082
1082
|
|
|
1083
1083
|
/* style */
|
|
1084
1084
|
|
|
1085
|
-
const __vue_inject_styles__$
|
|
1085
|
+
const __vue_inject_styles__$A = undefined;
|
|
1086
1086
|
/* scoped */
|
|
1087
1087
|
|
|
1088
|
-
const __vue_scope_id__$
|
|
1088
|
+
const __vue_scope_id__$A = "data-v-398cf17d";
|
|
1089
1089
|
/* module identifier */
|
|
1090
1090
|
|
|
1091
|
-
const __vue_module_identifier__$
|
|
1091
|
+
const __vue_module_identifier__$A = undefined;
|
|
1092
1092
|
/* functional template */
|
|
1093
1093
|
|
|
1094
|
-
const __vue_is_functional_template__$
|
|
1094
|
+
const __vue_is_functional_template__$A = undefined;
|
|
1095
1095
|
/* style inject */
|
|
1096
1096
|
|
|
1097
1097
|
/* style inject SSR */
|
|
1098
1098
|
|
|
1099
1099
|
/* style inject shadow dom */
|
|
1100
1100
|
|
|
1101
|
-
const __vue_component__$
|
|
1101
|
+
const __vue_component__$A = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$A, __vue_script__$A, __vue_scope_id__$A, __vue_is_functional_template__$A, __vue_module_identifier__$A, false, undefined, undefined, undefined);
|
|
1102
1102
|
|
|
1103
|
-
var script$
|
|
1103
|
+
var script$z = {
|
|
1104
1104
|
name: "VcInputModal",
|
|
1105
1105
|
components: {
|
|
1106
|
-
VcForm: __vue_component__$
|
|
1107
|
-
VcLayout: __vue_component__$
|
|
1108
|
-
VcModalFooter: __vue_component__$
|
|
1109
|
-
VcIcon: __vue_component__$
|
|
1110
|
-
VcModalContainer: __vue_component__$
|
|
1111
|
-
VcModalHeader: __vue_component__$
|
|
1106
|
+
VcForm: __vue_component__$A,
|
|
1107
|
+
VcLayout: __vue_component__$E,
|
|
1108
|
+
VcModalFooter: __vue_component__$D,
|
|
1109
|
+
VcIcon: __vue_component__$H,
|
|
1110
|
+
VcModalContainer: __vue_component__$F,
|
|
1111
|
+
VcModalHeader: __vue_component__$C
|
|
1112
1112
|
},
|
|
1113
1113
|
props: {
|
|
1114
1114
|
showDialog: {
|
|
@@ -1189,10 +1189,10 @@ var script$w = {
|
|
|
1189
1189
|
};
|
|
1190
1190
|
|
|
1191
1191
|
/* script */
|
|
1192
|
-
const __vue_script__$
|
|
1192
|
+
const __vue_script__$z = script$z;
|
|
1193
1193
|
/* template */
|
|
1194
1194
|
|
|
1195
|
-
var __vue_render__$
|
|
1195
|
+
var __vue_render__$z = function () {
|
|
1196
1196
|
var _vm = this;
|
|
1197
1197
|
|
|
1198
1198
|
var _h = _vm.$createElement;
|
|
@@ -1294,10 +1294,10 @@ var __vue_render__$w = function () {
|
|
|
1294
1294
|
});
|
|
1295
1295
|
};
|
|
1296
1296
|
|
|
1297
|
-
var __vue_staticRenderFns__$
|
|
1297
|
+
var __vue_staticRenderFns__$z = [];
|
|
1298
1298
|
/* style */
|
|
1299
1299
|
|
|
1300
|
-
const __vue_inject_styles__$
|
|
1300
|
+
const __vue_inject_styles__$z = function (inject) {
|
|
1301
1301
|
if (!inject) return;
|
|
1302
1302
|
inject("data-v-3ed487e3_0", {
|
|
1303
1303
|
source: ".VcInputForm-layout .VcInputForm-main[data-v-3ed487e3]{width:100%;max-width:100%;padding:var(--size-value6)}.VcInputForm-layout .VcInputForm-additional[data-v-3ed487e3]{min-width:324px;padding:var(--size-value6);background:#f8f9fb;border-left:1px solid rgba(0,0,0,.12)}",
|
|
@@ -1308,37 +1308,119 @@ const __vue_inject_styles__$w = function (inject) {
|
|
|
1308
1308
|
/* scoped */
|
|
1309
1309
|
|
|
1310
1310
|
|
|
1311
|
-
const __vue_scope_id__$
|
|
1311
|
+
const __vue_scope_id__$z = "data-v-3ed487e3";
|
|
1312
1312
|
/* module identifier */
|
|
1313
1313
|
|
|
1314
|
-
const __vue_module_identifier__$
|
|
1314
|
+
const __vue_module_identifier__$z = undefined;
|
|
1315
1315
|
/* functional template */
|
|
1316
1316
|
|
|
1317
|
-
const __vue_is_functional_template__$
|
|
1317
|
+
const __vue_is_functional_template__$z = false;
|
|
1318
1318
|
/* style inject SSR */
|
|
1319
1319
|
|
|
1320
1320
|
/* style inject shadow dom */
|
|
1321
1321
|
|
|
1322
|
-
const __vue_component__$
|
|
1323
|
-
render: __vue_render__$
|
|
1324
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1325
|
-
}, __vue_inject_styles__$
|
|
1322
|
+
const __vue_component__$z = /*#__PURE__*/normalizeComponent({
|
|
1323
|
+
render: __vue_render__$z,
|
|
1324
|
+
staticRenderFns: __vue_staticRenderFns__$z
|
|
1325
|
+
}, __vue_inject_styles__$z, __vue_script__$z, __vue_scope_id__$z, __vue_is_functional_template__$z, __vue_module_identifier__$z, false, createInjector, undefined, undefined);
|
|
1326
1326
|
|
|
1327
|
-
|
|
1327
|
+
//
|
|
1328
|
+
//
|
|
1329
|
+
//
|
|
1330
|
+
//
|
|
1331
|
+
//
|
|
1332
|
+
//
|
|
1333
|
+
//
|
|
1334
|
+
var script$y = {
|
|
1335
|
+
name: "VcImage",
|
|
1336
|
+
props: {
|
|
1337
|
+
image: {
|
|
1338
|
+
type: [String, Object],
|
|
1339
|
+
required: true
|
|
1340
|
+
},
|
|
1341
|
+
dataQa: {
|
|
1342
|
+
type: String,
|
|
1343
|
+
default: 'VcImage'
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
};
|
|
1347
|
+
|
|
1348
|
+
/* script */
|
|
1349
|
+
const __vue_script__$y = script$y;
|
|
1350
|
+
/* template */
|
|
1351
|
+
|
|
1352
|
+
var __vue_render__$y = function () {
|
|
1353
|
+
var _vm = this;
|
|
1354
|
+
|
|
1355
|
+
var _h = _vm.$createElement;
|
|
1356
|
+
|
|
1357
|
+
var _c = _vm._self._c || _h;
|
|
1358
|
+
|
|
1359
|
+
return _c('div', {
|
|
1360
|
+
staticClass: "VcBannerImage d-none d-md-block",
|
|
1361
|
+
attrs: {
|
|
1362
|
+
"data-qa": _vm.dataQa
|
|
1363
|
+
}
|
|
1364
|
+
}, [_vm.image && typeof _vm.image === 'string' ? _c('img', {
|
|
1365
|
+
staticClass: "image",
|
|
1366
|
+
attrs: {
|
|
1367
|
+
"src": _vm.image
|
|
1368
|
+
}
|
|
1369
|
+
}) : _c(_vm.image, {
|
|
1370
|
+
tag: "component",
|
|
1371
|
+
staticClass: "VcBannerImage d-none d-md-block"
|
|
1372
|
+
})], 1);
|
|
1373
|
+
};
|
|
1374
|
+
|
|
1375
|
+
var __vue_staticRenderFns__$y = [];
|
|
1376
|
+
/* style */
|
|
1377
|
+
|
|
1378
|
+
const __vue_inject_styles__$y = function (inject) {
|
|
1379
|
+
if (!inject) return;
|
|
1380
|
+
inject("data-v-5c2181b6_0", {
|
|
1381
|
+
source: ".VcBannerImage[data-v-5c2181b6]{height:100%}.VcBannerImage[data-v-5c2181b6] img{max-width:100%;height:100%}.VcBannerImage[data-v-5c2181b6] svg{max-width:100%;height:100%}",
|
|
1382
|
+
map: undefined,
|
|
1383
|
+
media: undefined
|
|
1384
|
+
});
|
|
1385
|
+
};
|
|
1386
|
+
/* scoped */
|
|
1387
|
+
|
|
1388
|
+
|
|
1389
|
+
const __vue_scope_id__$y = "data-v-5c2181b6";
|
|
1390
|
+
/* module identifier */
|
|
1391
|
+
|
|
1392
|
+
const __vue_module_identifier__$y = undefined;
|
|
1393
|
+
/* functional template */
|
|
1394
|
+
|
|
1395
|
+
const __vue_is_functional_template__$y = false;
|
|
1396
|
+
/* style inject SSR */
|
|
1397
|
+
|
|
1398
|
+
/* style inject shadow dom */
|
|
1399
|
+
|
|
1400
|
+
const __vue_component__$y = /*#__PURE__*/normalizeComponent({
|
|
1401
|
+
render: __vue_render__$y,
|
|
1402
|
+
staticRenderFns: __vue_staticRenderFns__$y
|
|
1403
|
+
}, __vue_inject_styles__$y, __vue_script__$y, __vue_scope_id__$y, __vue_is_functional_template__$y, __vue_module_identifier__$y, false, createInjector, undefined, undefined);
|
|
1404
|
+
|
|
1405
|
+
var script$x = {
|
|
1328
1406
|
name: "VcNoticeModal",
|
|
1329
1407
|
components: {
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1408
|
+
VcImage: __vue_component__$y,
|
|
1409
|
+
VcLayout: __vue_component__$E,
|
|
1410
|
+
VcModalFooter: __vue_component__$D,
|
|
1411
|
+
VcModalContainer: __vue_component__$F
|
|
1333
1412
|
},
|
|
1334
1413
|
props: {
|
|
1335
1414
|
showDialog: {
|
|
1336
1415
|
type: Boolean,
|
|
1337
1416
|
required: true
|
|
1338
1417
|
},
|
|
1418
|
+
image: {
|
|
1419
|
+
type: [String, Object]
|
|
1420
|
+
},
|
|
1339
1421
|
icon: {
|
|
1340
|
-
type: String,
|
|
1341
|
-
|
|
1422
|
+
type: [String, Object],
|
|
1423
|
+
comment: 'deprecated'
|
|
1342
1424
|
},
|
|
1343
1425
|
titleText: {
|
|
1344
1426
|
type: String,
|
|
@@ -1375,14 +1457,21 @@ var script$v = {
|
|
|
1375
1457
|
type: String,
|
|
1376
1458
|
required: false
|
|
1377
1459
|
}
|
|
1460
|
+
},
|
|
1461
|
+
computed: {
|
|
1462
|
+
currentImage() {
|
|
1463
|
+
// for backward compatibility
|
|
1464
|
+
return this.image || this.icon;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1378
1467
|
}
|
|
1379
1468
|
};
|
|
1380
1469
|
|
|
1381
1470
|
/* script */
|
|
1382
|
-
const __vue_script__$
|
|
1471
|
+
const __vue_script__$x = script$x;
|
|
1383
1472
|
/* template */
|
|
1384
1473
|
|
|
1385
|
-
var __vue_render__$
|
|
1474
|
+
var __vue_render__$x = function () {
|
|
1386
1475
|
var _vm = this;
|
|
1387
1476
|
|
|
1388
1477
|
var _h = _vm.$createElement;
|
|
@@ -1412,15 +1501,15 @@ var __vue_render__$v = function () {
|
|
|
1412
1501
|
"column": "",
|
|
1413
1502
|
"align-content-center": ""
|
|
1414
1503
|
}
|
|
1415
|
-
}, [_c('
|
|
1504
|
+
}, [_c('VcImage', {
|
|
1416
1505
|
staticClass: "VcNoticeImage",
|
|
1417
1506
|
class: "" + _vm.size,
|
|
1418
1507
|
attrs: {
|
|
1419
|
-
"
|
|
1508
|
+
"image": _vm.currentImage
|
|
1420
1509
|
}
|
|
1421
1510
|
}), _vm._v(" "), _c('div', {
|
|
1422
1511
|
staticClass: "VcNoticeHeaderText"
|
|
1423
|
-
}, [_vm._v(_vm._s(_vm.titleText))])]), _vm._v(" "), _c('VcLayout', {
|
|
1512
|
+
}, [_vm._v(_vm._s(_vm.titleText))])], 1), _vm._v(" "), _c('VcLayout', {
|
|
1424
1513
|
class: "VcNoticeSubtitle " + _vm.flavor,
|
|
1425
1514
|
attrs: {
|
|
1426
1515
|
"column": ""
|
|
@@ -1469,13 +1558,13 @@ var __vue_render__$v = function () {
|
|
|
1469
1558
|
});
|
|
1470
1559
|
};
|
|
1471
1560
|
|
|
1472
|
-
var __vue_staticRenderFns__$
|
|
1561
|
+
var __vue_staticRenderFns__$x = [];
|
|
1473
1562
|
/* style */
|
|
1474
1563
|
|
|
1475
|
-
const __vue_inject_styles__$
|
|
1564
|
+
const __vue_inject_styles__$x = function (inject) {
|
|
1476
1565
|
if (!inject) return;
|
|
1477
|
-
inject("data-v-
|
|
1478
|
-
source: ".VcNoticeImage[data-v-
|
|
1566
|
+
inject("data-v-d8b2c82a_0", {
|
|
1567
|
+
source: ".VcNoticeImage[data-v-d8b2c82a]{margin-bottom:var(--size-value4)}.VcNoticeImage.md[data-v-d8b2c82a],.VcNoticeImage.responsive[data-v-d8b2c82a],.VcNoticeImage.sm[data-v-d8b2c82a]{height:160px}.VcNoticeImage.lg[data-v-d8b2c82a]{height:208px}.VcNoticeContent[data-v-d8b2c82a],.VcNoticeHeader[data-v-d8b2c82a],.VcNoticeSubtitle[data-v-d8b2c82a]{text-align:center;line-height:24px}.VcNoticeHeader[data-v-d8b2c82a]{text-align:center;align-items:center;font-size:18px;font-weight:600;line-height:28px}@media screen and (min-width:960px){.VcNoticeHeader[data-v-d8b2c82a]{font-size:24px;font-weight:800;line-height:var(--size-value10)}}.VcNoticeHeader .VcNoticeHeaderText[data-v-d8b2c82a]{padding-bottom:var(--size-value2)}.VcNoticeHeader.prominent .VcNoticeHeaderText[data-v-d8b2c82a]{font-size:18px;font-weight:600}.VcNoticeSubtitle[data-v-d8b2c82a]{font-size:15px;font-weight:var(--font-weight-medium);line-height:var(--size-value6)}@media screen and (min-width:960px){.VcNoticeSubtitle[data-v-d8b2c82a]{font-size:var(--font-size-small)}}.VcNoticeSubtitle.prominent[data-v-d8b2c82a]{font-size:15px}.VcNoticeContent[data-v-d8b2c82a]{background:#eafcf2;border:1px solid #cff8e1;box-sizing:border-box;border-radius:8px;padding:var(--size-value3) var(--size-value4);margin-top:var(--size-value4);line-height:20px;font-size:13px}@media screen and (min-width:960px){.VcNoticeContent[data-v-d8b2c82a]{line-height:21px;font-size:14px}}.VcNoticeFooter[data-v-d8b2c82a]{padding-bottom:var(--size-value10)}",
|
|
1479
1568
|
map: undefined,
|
|
1480
1569
|
media: undefined
|
|
1481
1570
|
});
|
|
@@ -1483,28 +1572,28 @@ const __vue_inject_styles__$v = function (inject) {
|
|
|
1483
1572
|
/* scoped */
|
|
1484
1573
|
|
|
1485
1574
|
|
|
1486
|
-
const __vue_scope_id__$
|
|
1575
|
+
const __vue_scope_id__$x = "data-v-d8b2c82a";
|
|
1487
1576
|
/* module identifier */
|
|
1488
1577
|
|
|
1489
|
-
const __vue_module_identifier__$
|
|
1578
|
+
const __vue_module_identifier__$x = undefined;
|
|
1490
1579
|
/* functional template */
|
|
1491
1580
|
|
|
1492
|
-
const __vue_is_functional_template__$
|
|
1581
|
+
const __vue_is_functional_template__$x = false;
|
|
1493
1582
|
/* style inject SSR */
|
|
1494
1583
|
|
|
1495
1584
|
/* style inject shadow dom */
|
|
1496
1585
|
|
|
1497
|
-
const __vue_component__$
|
|
1498
|
-
render: __vue_render__$
|
|
1499
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1500
|
-
}, __vue_inject_styles__$
|
|
1586
|
+
const __vue_component__$x = /*#__PURE__*/normalizeComponent({
|
|
1587
|
+
render: __vue_render__$x,
|
|
1588
|
+
staticRenderFns: __vue_staticRenderFns__$x
|
|
1589
|
+
}, __vue_inject_styles__$x, __vue_script__$x, __vue_scope_id__$x, __vue_is_functional_template__$x, __vue_module_identifier__$x, false, createInjector, undefined, undefined);
|
|
1501
1590
|
|
|
1502
|
-
var script$
|
|
1591
|
+
var script$w = {
|
|
1503
1592
|
name: "VcAlert",
|
|
1504
1593
|
components: {
|
|
1505
|
-
VcIcon: __vue_component__$
|
|
1506
|
-
VcButton: __vue_component__$
|
|
1507
|
-
VcLayout: __vue_component__$
|
|
1594
|
+
VcIcon: __vue_component__$H,
|
|
1595
|
+
VcButton: __vue_component__$G,
|
|
1596
|
+
VcLayout: __vue_component__$E,
|
|
1508
1597
|
VAlert: VAlert
|
|
1509
1598
|
},
|
|
1510
1599
|
props: {
|
|
@@ -1600,10 +1689,10 @@ var script$u = {
|
|
|
1600
1689
|
};
|
|
1601
1690
|
|
|
1602
1691
|
/* script */
|
|
1603
|
-
const __vue_script__$
|
|
1692
|
+
const __vue_script__$w = script$w;
|
|
1604
1693
|
/* template */
|
|
1605
1694
|
|
|
1606
|
-
var __vue_render__$
|
|
1695
|
+
var __vue_render__$w = function () {
|
|
1607
1696
|
var _vm = this;
|
|
1608
1697
|
|
|
1609
1698
|
var _h = _vm.$createElement;
|
|
@@ -1673,10 +1762,10 @@ var __vue_render__$u = function () {
|
|
|
1673
1762
|
}) : _vm._e()], 1);
|
|
1674
1763
|
};
|
|
1675
1764
|
|
|
1676
|
-
var __vue_staticRenderFns__$
|
|
1765
|
+
var __vue_staticRenderFns__$w = [];
|
|
1677
1766
|
/* style */
|
|
1678
1767
|
|
|
1679
|
-
const __vue_inject_styles__$
|
|
1768
|
+
const __vue_inject_styles__$w = function (inject) {
|
|
1680
1769
|
if (!inject) return;
|
|
1681
1770
|
inject("data-v-285965af_0", {
|
|
1682
1771
|
source: ".dialog-alert{padding:var(--size-value3);margin:var(--size-value0)}.dialog-alert__close-btn{margin-inline-end:var(--size-value7)}.dialog-alert .alert-content{padding-inline-end:var(--size-value9)}.dialog-alert .v-alert__icon{margin-inline-end:var(--size-value2);font-size:var(--size-value5);height:var(--size-value5);min-width:var(--size-value5)}.dialog-alert .close-button{position:absolute;width:var(--size-value6);height:var(--size-value6);top:var(--size-value3);right:var(--size-value3)}#app[dir=rtl] .dialog-alert .close-button{right:auto;left:var(--size-value3)}.dialog-alert .close-button .v-btn__content{opacity:unset}.dialog-alert .close-button:hover{background-color:rgba(0,0,0,.07)}.dialog-alert .close-button .v-icon{margin-right:var(--size-value0)}.dialog-alert .close-button .v-icon svg{fill:var(--gray-darken-2);width:var(--size-value4);height:var(--size-value4)}.dialog-alert.stripe.v-alert{border-radius:var(--size-value0);border-top:none;border-left:none;border-right:none}.dialog-alert.inline.v-alert{border-radius:var(--size-value0);border:none;padding:var(--size-value0);background-color:transparent}.dialog-alert.vcita-alert-attention{border:1px solid var(--red-lighten-2);background-color:var(--red-lighten-3)}.dialog-alert.vcita-alert-attention .v-icon svg.vc-attention-fill,.dialog-alert.vcita-alert-attention .v-icon svg.vc-notif{fill:var(--red)}.dialog-alert.vcita-alert-warning{border:1px solid var(--yellow-lighten-2);background-color:var(--yellow-lighten-3)}.dialog-alert.vcita-alert-warning .v-alert__wrapper .v-icon svg.vc-notif,.dialog-alert.vcita-alert-warning .v-alert__wrapper .v-icon svg.vc-warning-fill{fill:var(--yellow)}.dialog-alert.vcita-alert-info{border:1px solid var(--blue-lighten-2);background-color:var(--blue-lighten-3)}.dialog-alert.vcita-alert-info .v-alert__wrapper .v-icon svg.vc-info-fill,.dialog-alert.vcita-alert-info .v-alert__wrapper .v-icon svg.vc-notif{fill:var(--blue)}.dialog-alert.vcita-alert-success{border:1px solid var(--green-lighten-2);background-color:var(--green-lighten-3)}.dialog-alert.vcita-alert-success .v-icon svg.vc-check-fill,.dialog-alert.vcita-alert-success .v-icon svg.vc-notif{fill:var(--green)}.dialog-alert .v-alert__wrapper .v-icon__component{height:var(--size-value4);width:var(--size-value4)}.dialog-alert .v-alert__wrapper .v-icon__component svg.vc-notif{font-size:var(--size-value4);height:var(--size-value4);min-width:var(--size-value4)}.dialog-alert .v-alert__wrapper .v-icon__component svg.arrow-right{fill:var(--blue)}.dialog-alert .alert-header{font-weight:700;font-size:var(--font-size-x-small);line-height:var(--size-value5);letter-spacing:.003em;margin-bottom:var(--size-value1);color:var(--gray-darken-5)}.dialog-alert .alert-header:after{content:\" \";padding-right:var(--size-value1)}.dialog-alert .alert-body{font-size:var(--font-size-x-small);line-height:var(--size-value5);letter-spacing:-.01em;color:var(--gray-darken-5)}.dialog-alert .alert-body a{color:-webkit-link}.dialog-alert .VcButton .v-icon{margin-right:initial;align-items:initial}.dialog-alert .VcButton.action-button{height:var(--size-value6);color:var(--blue)!important;font-weight:var(--font-weight-large);font-size:var(--font-size-x-small);line-height:var(--size-value6);margin-top:var(--size-value1);padding:var(--size-value0)}.dialog-alert .VcButton.action-button span.v-btn__content{opacity:unset!important}.dialog-alert .VcButton.action-button span.v-btn__content .v-icon:before{content:\" \";padding-right:var(--size-value1)}",
|
|
@@ -1687,24 +1776,22 @@ const __vue_inject_styles__$u = function (inject) {
|
|
|
1687
1776
|
/* scoped */
|
|
1688
1777
|
|
|
1689
1778
|
|
|
1690
|
-
const __vue_scope_id__$
|
|
1779
|
+
const __vue_scope_id__$w = undefined;
|
|
1691
1780
|
/* module identifier */
|
|
1692
1781
|
|
|
1693
|
-
const __vue_module_identifier__$
|
|
1782
|
+
const __vue_module_identifier__$w = undefined;
|
|
1694
1783
|
/* functional template */
|
|
1695
1784
|
|
|
1696
|
-
const __vue_is_functional_template__$
|
|
1785
|
+
const __vue_is_functional_template__$w = false;
|
|
1697
1786
|
/* style inject SSR */
|
|
1698
1787
|
|
|
1699
1788
|
/* style inject shadow dom */
|
|
1700
1789
|
|
|
1701
|
-
const __vue_component__$
|
|
1702
|
-
render: __vue_render__$
|
|
1703
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1704
|
-
}, __vue_inject_styles__$
|
|
1705
|
-
|
|
1706
|
-
//
|
|
1707
|
-
//
|
|
1790
|
+
const __vue_component__$w = /*#__PURE__*/normalizeComponent({
|
|
1791
|
+
render: __vue_render__$w,
|
|
1792
|
+
staticRenderFns: __vue_staticRenderFns__$w
|
|
1793
|
+
}, __vue_inject_styles__$w, __vue_script__$w, __vue_scope_id__$w, __vue_is_functional_template__$w, __vue_module_identifier__$w, false, createInjector, undefined, undefined);
|
|
1794
|
+
|
|
1708
1795
|
//
|
|
1709
1796
|
//
|
|
1710
1797
|
//
|
|
@@ -1748,7 +1835,10 @@ const __vue_component__$u = /*#__PURE__*/normalizeComponent({
|
|
|
1748
1835
|
//
|
|
1749
1836
|
//
|
|
1750
1837
|
//
|
|
1751
|
-
|
|
1838
|
+
//
|
|
1839
|
+
//
|
|
1840
|
+
//
|
|
1841
|
+
var script$v = {
|
|
1752
1842
|
components: {
|
|
1753
1843
|
VTooltip: VTooltip
|
|
1754
1844
|
},
|
|
@@ -1790,6 +1880,10 @@ var script$t = {
|
|
|
1790
1880
|
type: Boolean,
|
|
1791
1881
|
default: false
|
|
1792
1882
|
},
|
|
1883
|
+
disabled: {
|
|
1884
|
+
type: Boolean,
|
|
1885
|
+
default: false
|
|
1886
|
+
},
|
|
1793
1887
|
dataQa: {
|
|
1794
1888
|
type: String,
|
|
1795
1889
|
default: 'vc-tooltip'
|
|
@@ -1805,10 +1899,10 @@ var script$t = {
|
|
|
1805
1899
|
};
|
|
1806
1900
|
|
|
1807
1901
|
/* script */
|
|
1808
|
-
const __vue_script__$
|
|
1902
|
+
const __vue_script__$v = script$v;
|
|
1809
1903
|
/* template */
|
|
1810
1904
|
|
|
1811
|
-
var __vue_render__$
|
|
1905
|
+
var __vue_render__$v = function () {
|
|
1812
1906
|
var _vm = this;
|
|
1813
1907
|
|
|
1814
1908
|
var _h = _vm.$createElement;
|
|
@@ -1824,6 +1918,7 @@ var __vue_render__$t = function () {
|
|
|
1824
1918
|
"bottom": _vm.bottom,
|
|
1825
1919
|
"nudge-left": _vm.nudgeLeft,
|
|
1826
1920
|
"nudge-right": _vm.nudgeRight,
|
|
1921
|
+
"disabled": _vm.disabled,
|
|
1827
1922
|
"data-qa": _vm.dataQa
|
|
1828
1923
|
},
|
|
1829
1924
|
scopedSlots: _vm._u([{
|
|
@@ -1860,12 +1955,12 @@ var __vue_render__$t = function () {
|
|
|
1860
1955
|
})])])])], 1);
|
|
1861
1956
|
};
|
|
1862
1957
|
|
|
1863
|
-
var __vue_staticRenderFns__$
|
|
1958
|
+
var __vue_staticRenderFns__$v = [];
|
|
1864
1959
|
/* style */
|
|
1865
1960
|
|
|
1866
|
-
const __vue_inject_styles__$
|
|
1961
|
+
const __vue_inject_styles__$v = function (inject) {
|
|
1867
1962
|
if (!inject) return;
|
|
1868
|
-
inject("data-v-
|
|
1963
|
+
inject("data-v-09191fda_0", {
|
|
1869
1964
|
source: ":root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-tooltip{padding:0;border-radius:var(--border-radius)}.vc-tooltip .dark-tooltip{background-color:rgba(0,0,0,.97);font-size:var(--size-value3);font-weight:400;border-radius:var(--size-value1);padding:var(--size-value2)}.vc-tooltip .tooltip-wrapper{background:var(--modal-bg-color);box-shadow:0 5px 5px -3px rgba(0,0,0,.1),0 8px 10px 1px rgba(0,0,0,.06),0 3px 14px 2px rgba(0,0,0,.06);border-radius:var(--border-radius)}.vc-tooltip .tooltip-wrapper .tooltip-header{color:var(--gray-darken-5);font-size:var(--font-size-small2);border-radius:var(--border-radius) var(--border-radius) 0 0;font-weight:var(--font-weight-large);padding:var(--size-value3) var(--size-value4)}.vc-tooltip .tooltip-wrapper .tooltip-header.alert{background-color:var(--red-lighten-3)}.vc-tooltip .tooltip-wrapper .tooltip-header.information{background-color:var(--blue-lighten-3)}.vc-tooltip .tooltip-wrapper .tooltip-content{display:block;font-size:var(--font-size-x-small);padding:var(--size-value3) var(--size-value4) var(--size-value4)}.vc-tooltip .tooltip-wrapper .tooltip-content .content-text{color:var(--gray-darken-5);max-width:fit-content;min-width:250px;word-wrap:break-word}",
|
|
1870
1965
|
map: undefined,
|
|
1871
1966
|
media: undefined
|
|
@@ -1874,26 +1969,26 @@ const __vue_inject_styles__$t = function (inject) {
|
|
|
1874
1969
|
/* scoped */
|
|
1875
1970
|
|
|
1876
1971
|
|
|
1877
|
-
const __vue_scope_id__$
|
|
1972
|
+
const __vue_scope_id__$v = undefined;
|
|
1878
1973
|
/* module identifier */
|
|
1879
1974
|
|
|
1880
|
-
const __vue_module_identifier__$
|
|
1975
|
+
const __vue_module_identifier__$v = undefined;
|
|
1881
1976
|
/* functional template */
|
|
1882
1977
|
|
|
1883
|
-
const __vue_is_functional_template__$
|
|
1978
|
+
const __vue_is_functional_template__$v = false;
|
|
1884
1979
|
/* style inject SSR */
|
|
1885
1980
|
|
|
1886
1981
|
/* style inject shadow dom */
|
|
1887
1982
|
|
|
1888
|
-
const __vue_component__$
|
|
1889
|
-
render: __vue_render__$
|
|
1890
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1891
|
-
}, __vue_inject_styles__$
|
|
1983
|
+
const __vue_component__$v = /*#__PURE__*/normalizeComponent({
|
|
1984
|
+
render: __vue_render__$v,
|
|
1985
|
+
staticRenderFns: __vue_staticRenderFns__$v
|
|
1986
|
+
}, __vue_inject_styles__$v, __vue_script__$v, __vue_scope_id__$v, __vue_is_functional_template__$v, __vue_module_identifier__$v, false, createInjector, undefined, undefined);
|
|
1892
1987
|
|
|
1893
|
-
var script$
|
|
1988
|
+
var script$u = {
|
|
1894
1989
|
name: "VcIconWithTooltip",
|
|
1895
1990
|
components: {
|
|
1896
|
-
VcTooltip: __vue_component__$
|
|
1991
|
+
VcTooltip: __vue_component__$v,
|
|
1897
1992
|
VIcon: VIcon
|
|
1898
1993
|
},
|
|
1899
1994
|
props: {
|
|
@@ -1953,10 +2048,10 @@ var script$s = {
|
|
|
1953
2048
|
};
|
|
1954
2049
|
|
|
1955
2050
|
/* script */
|
|
1956
|
-
const __vue_script__$
|
|
2051
|
+
const __vue_script__$u = script$u;
|
|
1957
2052
|
/* template */
|
|
1958
2053
|
|
|
1959
|
-
var __vue_render__$
|
|
2054
|
+
var __vue_render__$u = function () {
|
|
1960
2055
|
var _vm = this;
|
|
1961
2056
|
|
|
1962
2057
|
var _h = _vm.$createElement;
|
|
@@ -1986,10 +2081,10 @@ var __vue_render__$s = function () {
|
|
|
1986
2081
|
}, [_vm._v("\n " + _vm._s(_vm.getIcon) + "\n ")])]], 2);
|
|
1987
2082
|
};
|
|
1988
2083
|
|
|
1989
|
-
var __vue_staticRenderFns__$
|
|
2084
|
+
var __vue_staticRenderFns__$u = [];
|
|
1990
2085
|
/* style */
|
|
1991
2086
|
|
|
1992
|
-
const __vue_inject_styles__$
|
|
2087
|
+
const __vue_inject_styles__$u = function (inject) {
|
|
1993
2088
|
if (!inject) return;
|
|
1994
2089
|
inject("data-v-7193d7d6_0", {
|
|
1995
2090
|
source: ":root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.tooltip-icon{cursor:pointer}.tooltip-icon .vc-question{fill:rgba(0,0,0,.4)}.tooltip-icon .vc-question-fill{fill:var(--gray-darken-4)}.tooltip-icon .vc-info-fill,.tooltip-icon .vc-information{fill:var(--v-info-base)}.tooltip-icon .vc-attention,.tooltip-icon .vc-attention-fill{fill:var(--red)}.tooltip-icon.vc-default .vc-info-fill,.tooltip-icon.vc-default .vc-information{fill:rgba(0,0,0,.4)}.tooltip-icon.vc-default_hovering .vc-info-fill,.tooltip-icon.vc-default_hovering .vc-information{fill:var(--gray-darken-4)}",
|
|
@@ -2000,50 +2095,25 @@ const __vue_inject_styles__$s = function (inject) {
|
|
|
2000
2095
|
/* scoped */
|
|
2001
2096
|
|
|
2002
2097
|
|
|
2003
|
-
const __vue_scope_id__$
|
|
2098
|
+
const __vue_scope_id__$u = undefined;
|
|
2004
2099
|
/* module identifier */
|
|
2005
2100
|
|
|
2006
|
-
const __vue_module_identifier__$
|
|
2101
|
+
const __vue_module_identifier__$u = undefined;
|
|
2007
2102
|
/* functional template */
|
|
2008
2103
|
|
|
2009
|
-
const __vue_is_functional_template__$
|
|
2104
|
+
const __vue_is_functional_template__$u = false;
|
|
2010
2105
|
/* style inject SSR */
|
|
2011
2106
|
|
|
2012
2107
|
/* style inject shadow dom */
|
|
2013
2108
|
|
|
2014
|
-
const __vue_component__$
|
|
2015
|
-
render: __vue_render__$
|
|
2016
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2017
|
-
}, __vue_inject_styles__$
|
|
2109
|
+
const __vue_component__$u = /*#__PURE__*/normalizeComponent({
|
|
2110
|
+
render: __vue_render__$u,
|
|
2111
|
+
staticRenderFns: __vue_staticRenderFns__$u
|
|
2112
|
+
}, __vue_inject_styles__$u, __vue_script__$u, __vue_scope_id__$u, __vue_is_functional_template__$u, __vue_module_identifier__$u, false, createInjector, undefined, undefined);
|
|
2018
2113
|
|
|
2019
|
-
|
|
2020
|
-
//
|
|
2021
|
-
//
|
|
2022
|
-
//
|
|
2023
|
-
//
|
|
2024
|
-
//
|
|
2025
|
-
//
|
|
2026
|
-
//
|
|
2027
|
-
//
|
|
2028
|
-
//
|
|
2029
|
-
//
|
|
2030
|
-
//
|
|
2031
|
-
//
|
|
2032
|
-
//
|
|
2033
|
-
//
|
|
2034
|
-
//
|
|
2035
|
-
//
|
|
2036
|
-
//
|
|
2037
|
-
//
|
|
2038
|
-
//
|
|
2039
|
-
//
|
|
2040
|
-
//
|
|
2041
|
-
//
|
|
2042
|
-
//
|
|
2043
|
-
//
|
|
2044
|
-
//
|
|
2045
|
-
var script$r = {
|
|
2114
|
+
var script$t = {
|
|
2046
2115
|
components: {
|
|
2116
|
+
VcImage: __vue_component__$y,
|
|
2047
2117
|
VIcon: VIcon,
|
|
2048
2118
|
VTooltip: VTooltip
|
|
2049
2119
|
},
|
|
@@ -2081,10 +2151,9 @@ var script$r = {
|
|
|
2081
2151
|
},
|
|
2082
2152
|
|
|
2083
2153
|
name: "VcAvatar",
|
|
2084
|
-
|
|
2085
2154
|
props: {
|
|
2086
2155
|
imagePath: {
|
|
2087
|
-
type: String
|
|
2156
|
+
type: [String, Object]
|
|
2088
2157
|
},
|
|
2089
2158
|
name: {
|
|
2090
2159
|
type: String
|
|
@@ -2115,15 +2184,34 @@ var script$r = {
|
|
|
2115
2184
|
type: String,
|
|
2116
2185
|
default: ''
|
|
2117
2186
|
},
|
|
2187
|
+
showBorder: {
|
|
2188
|
+
type: Boolean,
|
|
2189
|
+
default: true
|
|
2190
|
+
},
|
|
2191
|
+
disabled: {
|
|
2192
|
+
type: Boolean,
|
|
2193
|
+
default: false
|
|
2194
|
+
},
|
|
2118
2195
|
dataQa: {
|
|
2119
2196
|
type: String,
|
|
2120
2197
|
default: 'VcAvatar'
|
|
2121
2198
|
}
|
|
2122
2199
|
},
|
|
2123
|
-
|
|
2124
2200
|
computed: {
|
|
2201
|
+
setLightModeClass() {
|
|
2202
|
+
return this.lightMode && !this.imagePath ? "light-mode" : "";
|
|
2203
|
+
},
|
|
2204
|
+
|
|
2205
|
+
setShowBorder() {
|
|
2206
|
+
return this.showBorder ? 'show-border' : '';
|
|
2207
|
+
},
|
|
2208
|
+
|
|
2209
|
+
setdisabled() {
|
|
2210
|
+
return this.disabled ? 'vc-disabled' : '';
|
|
2211
|
+
},
|
|
2212
|
+
|
|
2125
2213
|
computedClasses() {
|
|
2126
|
-
return this.colorClass
|
|
2214
|
+
return `${this.colorClass} ${this.size} ${this.setLightModeClass} ${this.setShowBorder} ${this.setdisabled}`;
|
|
2127
2215
|
},
|
|
2128
2216
|
|
|
2129
2217
|
computedBadgeClass() {
|
|
@@ -2139,7 +2227,6 @@ var script$r = {
|
|
|
2139
2227
|
}
|
|
2140
2228
|
|
|
2141
2229
|
},
|
|
2142
|
-
|
|
2143
2230
|
methods: {
|
|
2144
2231
|
getInitials(name) {
|
|
2145
2232
|
let split = name.trim().split(' ').filter(Boolean);
|
|
@@ -2162,10 +2249,10 @@ var script$r = {
|
|
|
2162
2249
|
};
|
|
2163
2250
|
|
|
2164
2251
|
/* script */
|
|
2165
|
-
const __vue_script__$
|
|
2252
|
+
const __vue_script__$t = script$t;
|
|
2166
2253
|
/* template */
|
|
2167
2254
|
|
|
2168
|
-
var __vue_render__$
|
|
2255
|
+
var __vue_render__$t = function () {
|
|
2169
2256
|
var _vm = this;
|
|
2170
2257
|
|
|
2171
2258
|
var _h = _vm.$createElement;
|
|
@@ -2187,13 +2274,13 @@ var __vue_render__$r = function () {
|
|
|
2187
2274
|
fn: function (ref) {
|
|
2188
2275
|
var on = ref.on;
|
|
2189
2276
|
ref.attrs;
|
|
2190
|
-
return [_vm.imagePath ? _c('
|
|
2277
|
+
return [_vm.imagePath ? _c('VcImage', _vm._g({
|
|
2191
2278
|
staticClass: "avatar-image",
|
|
2192
2279
|
attrs: {
|
|
2193
2280
|
"data-qa": "avatarImage",
|
|
2194
|
-
"
|
|
2281
|
+
"image": _vm.imagePath
|
|
2195
2282
|
}
|
|
2196
|
-
}, _vm.lightMode && _vm.lightModeTooltip && on)) : !_vm.imagePath && _vm.name || _vm.text ? _c('div', _vm._g({
|
|
2283
|
+
}, _vm.lightMode && _vm.lightModeTooltip && on)) : _vm._e(), _vm._v(" "), !_vm.imagePath && _vm.name || _vm.text ? _c('div', _vm._g({
|
|
2197
2284
|
staticClass: "avatar-initials",
|
|
2198
2285
|
attrs: {
|
|
2199
2286
|
"data-qa": "avatar-initials"
|
|
@@ -2215,13 +2302,13 @@ var __vue_render__$r = function () {
|
|
|
2215
2302
|
}, [_vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.lightModeTooltip))])])], 1);
|
|
2216
2303
|
};
|
|
2217
2304
|
|
|
2218
|
-
var __vue_staticRenderFns__$
|
|
2305
|
+
var __vue_staticRenderFns__$t = [];
|
|
2219
2306
|
/* style */
|
|
2220
2307
|
|
|
2221
|
-
const __vue_inject_styles__$
|
|
2308
|
+
const __vue_inject_styles__$t = function (inject) {
|
|
2222
2309
|
if (!inject) return;
|
|
2223
|
-
inject("data-v-
|
|
2224
|
-
source: ".avatar-wrapper[data-v-
|
|
2310
|
+
inject("data-v-7c46a152_0", {
|
|
2311
|
+
source: "[data-v-7c46a152]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.avatar-wrapper[data-v-7c46a152]{position:relative;border-radius:50%;background-color:#a7a9ac;text-align:center;color:var(--modal-bg-color)}.avatar-wrapper.show-border[data-v-7c46a152]{border:1px solid var(--modal-bg-color)}.avatar-wrapper.vc-disabled[data-v-7c46a152]{filter:grayscale(100%)}.avatar-wrapper.light-mode[data-v-7c46a152]{border:1px solid rgba(0,0,0,.3);color:rgba(0,0,0,.3);background-color:var(--modal-bg-color)}.avatar-wrapper.x-sm[data-v-7c46a152]{height:var(--avatar-x-sm);width:var(--avatar-x-sm);font-size:var(--font-size-xxx-small)}.avatar-wrapper.sm[data-v-7c46a152]{height:var(--avatar-sm);width:var(--avatar-sm);font-size:var(--font-size-xx-small)}.avatar-wrapper.md[data-v-7c46a152]{height:var(--avatar-md);width:var(--avatar-md);font-size:var(--font-size-small)}.avatar-wrapper.lg[data-v-7c46a152]{height:var(--avatar-lg);width:var(--avatar-lg);font-size:var(--font-size-small3)}.avatar-wrapper .avatar-image[data-v-7c46a152]{display:block;margin:auto;height:100%;width:100%;object-fit:cover;border-radius:50%;overflow:hidden}.avatar-wrapper .avatar-image[data-v-7c46a152] svg{height:100%}.avatar-wrapper .avatar-image[data-v-7c46a152] img{height:100%}.avatar-wrapper .avatar-initials[data-v-7c46a152]{position:relative;top:50%;font-weight:var(--font-weight-medium2);transform:translateY(-50%)}.avatar-wrapper .badge[data-v-7c46a152]{fill:#fff;position:absolute;--gap:0;height:var(--size-value4);width:var(--size-value4);border-radius:50%;bottom:calc(var(--gap) * -1);left:calc(var(--gap) * -1)}.avatar-wrapper .badge.x-sm[data-v-7c46a152]{--gap:var(--size-value1)}.avatar-wrapper .badge.sm[data-v-7c46a152]{--gap:var(--size-value1)}.avatar-wrapper .badge.md[data-v-7c46a152]{--gap:2px}.avatar-wrapper .badge.lg[data-v-7c46a152]{--gap:var(--size-value0)}.avatar-wrapper .badge.right[data-v-7c46a152]{left:unset;right:calc(var(--gap) * -1)}.avatar-wrapper .badge.confirmed[data-v-7c46a152]{border:2px var(--modal-bg-color) solid}.color-0[data-v-7c46a152]{background-color:#fed62f}.color-1[data-v-7c46a152]{background-color:#fec22e}.color-2[data-v-7c46a152]{background-color:#feac2a}.color-3[data-v-7c46a152]{background-color:#fe9a28}.color-4[data-v-7c46a152]{background-color:#fd7024}.color-5[data-v-7c46a152]{background-color:#fd5b32}.color-6[data-v-7c46a152]{background-color:#f2483f}.color-7[data-v-7c46a152]{background-color:#dc331b}.color-8[data-v-7c46a152]{background-color:#d41419}.color-9[data-v-7c46a152]{background-color:#e72866}.color-10[data-v-7c46a152]{background-color:#c41c63}.color-11[data-v-7c46a152]{background-color:#9b2bae}.color-12[data-v-7c46a152]{background-color:#673bb5}.color-13[data-v-7c46a152]{background-color:#7c4efc}.color-14[data-v-7c46a152]{background-color:#4051b3}.color-15[data-v-7c46a152]{background-color:#311b92}.color-16[data-v-7c46a152]{background-color:#2d62fb}.color-17[data-v-7c46a152]{background-color:#5c6bc0}.color-18[data-v-7c46a152]{background-color:#17a8f1}.color-19[data-v-7c46a152]{background-color:#17bbd2}.color-20[data-v-7c46a152]{background-color:#14abbf}.color-21[data-v-7c46a152]{background-color:#0f9587}.color-22[data-v-7c46a152]{background-color:#16bea5}.color-23[data-v-7c46a152]{background-color:#4eae53}.color-24[data-v-7c46a152]{background-color:#3a8d3f}.color-25[data-v-7c46a152]{background-color:#8cc250}.color-26[data-v-7c46a152]{background-color:#66bb6a}.color-27[data-v-7c46a152]{background-color:#880e4f}.color-28[data-v-7c46a152]{background-color:#1565c0}.color-29[data-v-7c46a152]{background-color:#1e88e5}",
|
|
2225
2312
|
map: undefined,
|
|
2226
2313
|
media: undefined
|
|
2227
2314
|
});
|
|
@@ -2229,29 +2316,29 @@ const __vue_inject_styles__$r = function (inject) {
|
|
|
2229
2316
|
/* scoped */
|
|
2230
2317
|
|
|
2231
2318
|
|
|
2232
|
-
const __vue_scope_id__$
|
|
2319
|
+
const __vue_scope_id__$t = "data-v-7c46a152";
|
|
2233
2320
|
/* module identifier */
|
|
2234
2321
|
|
|
2235
|
-
const __vue_module_identifier__$
|
|
2322
|
+
const __vue_module_identifier__$t = undefined;
|
|
2236
2323
|
/* functional template */
|
|
2237
2324
|
|
|
2238
|
-
const __vue_is_functional_template__$
|
|
2325
|
+
const __vue_is_functional_template__$t = false;
|
|
2239
2326
|
/* style inject SSR */
|
|
2240
2327
|
|
|
2241
2328
|
/* style inject shadow dom */
|
|
2242
2329
|
|
|
2243
|
-
const __vue_component__$
|
|
2244
|
-
render: __vue_render__$
|
|
2245
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2246
|
-
}, __vue_inject_styles__$
|
|
2330
|
+
const __vue_component__$t = /*#__PURE__*/normalizeComponent({
|
|
2331
|
+
render: __vue_render__$t,
|
|
2332
|
+
staticRenderFns: __vue_staticRenderFns__$t
|
|
2333
|
+
}, __vue_inject_styles__$t, __vue_script__$t, __vue_scope_id__$t, __vue_is_functional_template__$t, __vue_module_identifier__$t, false, createInjector, undefined, undefined);
|
|
2247
2334
|
|
|
2248
|
-
var script$
|
|
2335
|
+
var script$s = {
|
|
2249
2336
|
name: "VcBottomActions",
|
|
2250
2337
|
components: {
|
|
2251
|
-
VcLayout: __vue_component__$
|
|
2252
|
-
VcButton: __vue_component__$
|
|
2253
|
-
VcIcon: __vue_component__$
|
|
2254
|
-
VcAvatar: __vue_component__$
|
|
2338
|
+
VcLayout: __vue_component__$E,
|
|
2339
|
+
VcButton: __vue_component__$G,
|
|
2340
|
+
VcIcon: __vue_component__$H,
|
|
2341
|
+
VcAvatar: __vue_component__$t,
|
|
2255
2342
|
VSubheader: VSubheader,
|
|
2256
2343
|
VListItem: VListItem,
|
|
2257
2344
|
VList: VList,
|
|
@@ -2293,10 +2380,10 @@ var script$q = {
|
|
|
2293
2380
|
};
|
|
2294
2381
|
|
|
2295
2382
|
/* script */
|
|
2296
|
-
const __vue_script__$
|
|
2383
|
+
const __vue_script__$s = script$s;
|
|
2297
2384
|
/* template */
|
|
2298
2385
|
|
|
2299
|
-
var __vue_render__$
|
|
2386
|
+
var __vue_render__$s = function () {
|
|
2300
2387
|
var _vm = this;
|
|
2301
2388
|
|
|
2302
2389
|
var _h = _vm.$createElement;
|
|
@@ -2382,10 +2469,10 @@ var __vue_render__$q = function () {
|
|
|
2382
2469
|
}), 1)], 1)], 1);
|
|
2383
2470
|
};
|
|
2384
2471
|
|
|
2385
|
-
var __vue_staticRenderFns__$
|
|
2472
|
+
var __vue_staticRenderFns__$s = [];
|
|
2386
2473
|
/* style */
|
|
2387
2474
|
|
|
2388
|
-
const __vue_inject_styles__$
|
|
2475
|
+
const __vue_inject_styles__$s = function (inject) {
|
|
2389
2476
|
if (!inject) return;
|
|
2390
2477
|
inject("data-v-51eeacd7_0", {
|
|
2391
2478
|
source: ":root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-bottom-sheet{box-shadow:0 1px 10px rgba(0,0,0,.12),0 4px 5px rgba(0,0,0,.14),0 2px 4px -1px rgba(0,0,0,.2);margin:var(--size-value3) var(--size-value3) var(--size-value5)!important;border-radius:var(--modal-border-radius)!important}.vc-bottom-sheet .v-sheet.v-list{border-radius:var(--modal-border-radius);padding-top:var(--size-value0)}.vc-bottom-sheet .v-sheet.v-list .subheader{border-bottom:1px solid rgba(0,0,0,.12);padding:var(--size-value3) var(--size-value4);color:var(--gray-darken-5)}.vc-bottom-sheet .v-sheet.v-list .subheader .avatar{margin-inline-end:var(--size-value3)}.vc-bottom-sheet .v-sheet.v-list .subheader .vc-title{font-weight:var(--font-weight-medium2);font-size:var(--font-size-x-small)}.vc-bottom-sheet .v-sheet.v-list .subheader .button-close-wrapper{flex-grow:1;justify-content:flex-end}.vc-bottom-sheet .v-sheet.v-list .subheader .button-close-wrapper .close-button{justify-content:flex-end;padding:var(--size-value0)}.vc-bottom-sheet .v-sheet.v-list .subheader .button-close-wrapper .close-button .v-btn__content{opacity:unset}.vc-bottom-sheet .v-sheet.v-list .subheader .button-close-wrapper .close-button .v-icon svg{fill:rgba(0,0,0,.4);width:var(--size-value4);height:var(--size-value4)}.vc-bottom-sheet .v-sheet.v-list .items-wrapper{padding:var(--size-value1) var(--size-value0)}.vc-bottom-sheet .v-sheet.v-list .items-wrapper .sheet-item{min-height:var(--size-value10)}.vc-bottom-sheet .v-sheet.v-list .items-wrapper .sheet-item .option-title{font-size:var(--font-size-x-small);font-weight:var(--font-weight-medium2);letter-spacing:-.2px}.vc-bottom-sheet .v-sheet.v-list .items-wrapper .sheet-item .option-title .icon-item{vertical-align:sub;margin-inline-end:var(--size-value3)}",
|
|
@@ -2396,28 +2483,28 @@ const __vue_inject_styles__$q = function (inject) {
|
|
|
2396
2483
|
/* scoped */
|
|
2397
2484
|
|
|
2398
2485
|
|
|
2399
|
-
const __vue_scope_id__$
|
|
2486
|
+
const __vue_scope_id__$s = undefined;
|
|
2400
2487
|
/* module identifier */
|
|
2401
2488
|
|
|
2402
|
-
const __vue_module_identifier__$
|
|
2489
|
+
const __vue_module_identifier__$s = undefined;
|
|
2403
2490
|
/* functional template */
|
|
2404
2491
|
|
|
2405
|
-
const __vue_is_functional_template__$
|
|
2492
|
+
const __vue_is_functional_template__$s = false;
|
|
2406
2493
|
/* style inject SSR */
|
|
2407
2494
|
|
|
2408
2495
|
/* style inject shadow dom */
|
|
2409
2496
|
|
|
2410
|
-
const __vue_component__$
|
|
2411
|
-
render: __vue_render__$
|
|
2412
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2413
|
-
}, __vue_inject_styles__$
|
|
2497
|
+
const __vue_component__$s = /*#__PURE__*/normalizeComponent({
|
|
2498
|
+
render: __vue_render__$s,
|
|
2499
|
+
staticRenderFns: __vue_staticRenderFns__$s
|
|
2500
|
+
}, __vue_inject_styles__$s, __vue_script__$s, __vue_scope_id__$s, __vue_is_functional_template__$s, __vue_module_identifier__$s, false, createInjector, undefined, undefined);
|
|
2414
2501
|
|
|
2415
|
-
var script$
|
|
2502
|
+
var script$r = {
|
|
2416
2503
|
name: "VcActionList",
|
|
2417
2504
|
components: {
|
|
2418
|
-
VcLayout: __vue_component__$
|
|
2419
|
-
VcButton: __vue_component__$
|
|
2420
|
-
VcIcon: __vue_component__$
|
|
2505
|
+
VcLayout: __vue_component__$E,
|
|
2506
|
+
VcButton: __vue_component__$G,
|
|
2507
|
+
VcIcon: __vue_component__$H,
|
|
2421
2508
|
VListItemTitle: VListItemTitle,
|
|
2422
2509
|
VListItem: VListItem,
|
|
2423
2510
|
VList: VList,
|
|
@@ -2443,10 +2530,10 @@ var script$p = {
|
|
|
2443
2530
|
};
|
|
2444
2531
|
|
|
2445
2532
|
/* script */
|
|
2446
|
-
const __vue_script__$
|
|
2533
|
+
const __vue_script__$r = script$r;
|
|
2447
2534
|
/* template */
|
|
2448
2535
|
|
|
2449
|
-
var __vue_render__$
|
|
2536
|
+
var __vue_render__$r = function () {
|
|
2450
2537
|
var _vm = this;
|
|
2451
2538
|
|
|
2452
2539
|
var _h = _vm.$createElement;
|
|
@@ -2498,10 +2585,10 @@ var __vue_render__$p = function () {
|
|
|
2498
2585
|
}), 1)], 1)], 1);
|
|
2499
2586
|
};
|
|
2500
2587
|
|
|
2501
|
-
var __vue_staticRenderFns__$
|
|
2588
|
+
var __vue_staticRenderFns__$r = [];
|
|
2502
2589
|
/* style */
|
|
2503
2590
|
|
|
2504
|
-
const __vue_inject_styles__$
|
|
2591
|
+
const __vue_inject_styles__$r = function (inject) {
|
|
2505
2592
|
if (!inject) return;
|
|
2506
2593
|
inject("data-v-e0ece422_0", {
|
|
2507
2594
|
source: ":root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-action-list{box-shadow:0 1px 10px rgba(0,0,0,.12),0 4px 5px rgba(0,0,0,.14),0 2px 4px -1px rgba(0,0,0,.2);border-radius:var(--modal-border-radius)}.vc-action-list .v-list{border-radius:var(--modal-border-radius);padding:var(--size-value1) 0}.vc-action-list .v-list .items-wrapper .sheet-item{min-height:var(--size-value10)}.vc-action-list .v-list .items-wrapper .sheet-item .option-title{font-size:var(--font-size-x-small);font-weight:var(--font-weight-medium2);letter-spacing:-.2px}.vc-action-list .v-list .items-wrapper .sheet-item .option-title .icon-item{vertical-align:sub;margin-inline-end:var(--size-value3)}",
|
|
@@ -2512,28 +2599,28 @@ const __vue_inject_styles__$p = function (inject) {
|
|
|
2512
2599
|
/* scoped */
|
|
2513
2600
|
|
|
2514
2601
|
|
|
2515
|
-
const __vue_scope_id__$
|
|
2602
|
+
const __vue_scope_id__$r = undefined;
|
|
2516
2603
|
/* module identifier */
|
|
2517
2604
|
|
|
2518
|
-
const __vue_module_identifier__$
|
|
2605
|
+
const __vue_module_identifier__$r = undefined;
|
|
2519
2606
|
/* functional template */
|
|
2520
2607
|
|
|
2521
|
-
const __vue_is_functional_template__$
|
|
2608
|
+
const __vue_is_functional_template__$r = false;
|
|
2522
2609
|
/* style inject SSR */
|
|
2523
2610
|
|
|
2524
2611
|
/* style inject shadow dom */
|
|
2525
2612
|
|
|
2526
|
-
const __vue_component__$
|
|
2527
|
-
render: __vue_render__$
|
|
2528
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2529
|
-
}, __vue_inject_styles__$
|
|
2613
|
+
const __vue_component__$r = /*#__PURE__*/normalizeComponent({
|
|
2614
|
+
render: __vue_render__$r,
|
|
2615
|
+
staticRenderFns: __vue_staticRenderFns__$r
|
|
2616
|
+
}, __vue_inject_styles__$r, __vue_script__$r, __vue_scope_id__$r, __vue_is_functional_template__$r, __vue_module_identifier__$r, false, createInjector, undefined, undefined);
|
|
2530
2617
|
|
|
2531
|
-
var script$
|
|
2618
|
+
var script$q = {
|
|
2532
2619
|
name: "VcActions",
|
|
2533
2620
|
components: {
|
|
2534
|
-
VcIcon: __vue_component__$
|
|
2535
|
-
VcActionList: __vue_component__$
|
|
2536
|
-
VcBottomActions: __vue_component__$
|
|
2621
|
+
VcIcon: __vue_component__$H,
|
|
2622
|
+
VcActionList: __vue_component__$r,
|
|
2623
|
+
VcBottomActions: __vue_component__$s
|
|
2537
2624
|
},
|
|
2538
2625
|
|
|
2539
2626
|
data() {
|
|
@@ -2586,10 +2673,10 @@ var script$o = {
|
|
|
2586
2673
|
};
|
|
2587
2674
|
|
|
2588
2675
|
/* script */
|
|
2589
|
-
const __vue_script__$
|
|
2676
|
+
const __vue_script__$q = script$q;
|
|
2590
2677
|
/* template */
|
|
2591
2678
|
|
|
2592
|
-
var __vue_render__$
|
|
2679
|
+
var __vue_render__$q = function () {
|
|
2593
2680
|
var _vm = this;
|
|
2594
2681
|
|
|
2595
2682
|
var _h = _vm.$createElement;
|
|
@@ -2633,29 +2720,29 @@ var __vue_render__$o = function () {
|
|
|
2633
2720
|
}, 'component', _vm.$props, false));
|
|
2634
2721
|
};
|
|
2635
2722
|
|
|
2636
|
-
var __vue_staticRenderFns__$
|
|
2723
|
+
var __vue_staticRenderFns__$q = [];
|
|
2637
2724
|
/* style */
|
|
2638
2725
|
|
|
2639
|
-
const __vue_inject_styles__$
|
|
2726
|
+
const __vue_inject_styles__$q = undefined;
|
|
2640
2727
|
/* scoped */
|
|
2641
2728
|
|
|
2642
|
-
const __vue_scope_id__$
|
|
2729
|
+
const __vue_scope_id__$q = undefined;
|
|
2643
2730
|
/* module identifier */
|
|
2644
2731
|
|
|
2645
|
-
const __vue_module_identifier__$
|
|
2732
|
+
const __vue_module_identifier__$q = undefined;
|
|
2646
2733
|
/* functional template */
|
|
2647
2734
|
|
|
2648
|
-
const __vue_is_functional_template__$
|
|
2735
|
+
const __vue_is_functional_template__$q = false;
|
|
2649
2736
|
/* style inject */
|
|
2650
2737
|
|
|
2651
2738
|
/* style inject SSR */
|
|
2652
2739
|
|
|
2653
2740
|
/* style inject shadow dom */
|
|
2654
2741
|
|
|
2655
|
-
const __vue_component__$
|
|
2656
|
-
render: __vue_render__$
|
|
2657
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2658
|
-
}, __vue_inject_styles__$
|
|
2742
|
+
const __vue_component__$q = /*#__PURE__*/normalizeComponent({
|
|
2743
|
+
render: __vue_render__$q,
|
|
2744
|
+
staticRenderFns: __vue_staticRenderFns__$q
|
|
2745
|
+
}, __vue_inject_styles__$q, __vue_script__$q, __vue_scope_id__$q, __vue_is_functional_template__$q, __vue_module_identifier__$q, false, undefined, undefined, undefined);
|
|
2659
2746
|
|
|
2660
2747
|
//
|
|
2661
2748
|
//
|
|
@@ -2678,7 +2765,9 @@ const __vue_component__$o = /*#__PURE__*/normalizeComponent({
|
|
|
2678
2765
|
//
|
|
2679
2766
|
//
|
|
2680
2767
|
//
|
|
2681
|
-
|
|
2768
|
+
//
|
|
2769
|
+
//
|
|
2770
|
+
var script$p = {
|
|
2682
2771
|
components: {
|
|
2683
2772
|
VStepperStep: VStepperStep,
|
|
2684
2773
|
VStepper: VStepper
|
|
@@ -2687,7 +2776,7 @@ var script$n = {
|
|
|
2687
2776
|
name: "VcStepsBar",
|
|
2688
2777
|
|
|
2689
2778
|
model: {
|
|
2690
|
-
prop:
|
|
2779
|
+
prop: "currentStep"
|
|
2691
2780
|
},
|
|
2692
2781
|
|
|
2693
2782
|
props: {
|
|
@@ -2702,11 +2791,11 @@ var script$n = {
|
|
|
2702
2791
|
},
|
|
2703
2792
|
title: {
|
|
2704
2793
|
type: String,
|
|
2705
|
-
default:
|
|
2794
|
+
default: ""
|
|
2706
2795
|
},
|
|
2707
2796
|
dataQa: {
|
|
2708
2797
|
type: String,
|
|
2709
|
-
default:
|
|
2798
|
+
default: "vc-steps-bar"
|
|
2710
2799
|
}
|
|
2711
2800
|
},
|
|
2712
2801
|
|
|
@@ -2729,7 +2818,7 @@ var script$n = {
|
|
|
2729
2818
|
},
|
|
2730
2819
|
|
|
2731
2820
|
shareStep(step) {
|
|
2732
|
-
this.$emit(
|
|
2821
|
+
this.$emit("input", step);
|
|
2733
2822
|
}
|
|
2734
2823
|
|
|
2735
2824
|
},
|
|
@@ -2751,10 +2840,10 @@ var script$n = {
|
|
|
2751
2840
|
};
|
|
2752
2841
|
|
|
2753
2842
|
/* script */
|
|
2754
|
-
const __vue_script__$
|
|
2843
|
+
const __vue_script__$p = script$p;
|
|
2755
2844
|
/* template */
|
|
2756
2845
|
|
|
2757
|
-
var __vue_render__$
|
|
2846
|
+
var __vue_render__$p = function () {
|
|
2758
2847
|
var _vm = this;
|
|
2759
2848
|
|
|
2760
2849
|
var _h = _vm.$createElement;
|
|
@@ -2789,17 +2878,17 @@ var __vue_render__$n = function () {
|
|
|
2789
2878
|
"complete": _vm.lastCompleted > index + 1,
|
|
2790
2879
|
"step": index + 1
|
|
2791
2880
|
}
|
|
2792
|
-
}, [_vm._v("\n " + _vm._s(step.name) + "\n ")])];
|
|
2881
|
+
}, [_vm._v("\n " + _vm._s(step.title ? step.title : step.name) + "\n ")])];
|
|
2793
2882
|
})], 2)], 1);
|
|
2794
2883
|
};
|
|
2795
2884
|
|
|
2796
|
-
var __vue_staticRenderFns__$
|
|
2885
|
+
var __vue_staticRenderFns__$p = [];
|
|
2797
2886
|
/* style */
|
|
2798
2887
|
|
|
2799
|
-
const __vue_inject_styles__$
|
|
2888
|
+
const __vue_inject_styles__$p = function (inject) {
|
|
2800
2889
|
if (!inject) return;
|
|
2801
|
-
inject("data-v-
|
|
2802
|
-
source: "[data-v-
|
|
2890
|
+
inject("data-v-d21a486c_0", {
|
|
2891
|
+
source: "[data-v-d21a486c]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-stepper-container[data-v-d21a486c]{height:100%;padding-block-start:var(--size-value4);padding-inline-start:var(--size-value10)}.vc-stepper.v-stepper[data-v-d21a486c]{box-shadow:none}.vc-stepper.v-stepper .stepper-title[data-v-d21a486c]{margin-block-end:var(--size-value6);font-weight:var(--font-weight-large2);font-size:var(--font-size-medium);letter-spacing:.03em;color:var(--gray-darken-5)}.vc-stepper.v-stepper .v-stepper__step[data-v-d21a486c]{padding:var(--size-value0);width:fit-content;align-items:flex-start;margin-block-end:var(--size-value1)}.vc-stepper.v-stepper .v-stepper__step[data-v-d21a486c] .v-stepper__label{padding-inline-end:var(--size-value6);text-shadow:none;font-size:var(--font-size-small2);letter-spacing:.01em;line-height:var(--size-value6);padding-bottom:var(--size-value7)}.vc-stepper.v-stepper .v-stepper__step[data-v-d21a486c] span.v-stepper__step__step{height:var(--size-value5);min-width:var(--size-value5);width:var(--size-value5);margin-inline-end:var(--size-value3);margin-inline-start:var(--size-value0);margin-block:2px;font-size:var(--font-size-xx-small);font-weight:var(--font-weight-medium2)}.vc-stepper.v-stepper .v-stepper__step[data-v-d21a486c]:not(.v-stepper__step--active):not(.v-stepper__step--complete) span.v-stepper__step__step{background-color:var(--gray-lighten-2);color:var(--gray-darken-2)}.vc-stepper.v-stepper .v-stepper__step[data-v-d21a486c]:not(.v-stepper__step--active):not(.v-stepper__step--complete) .v-stepper__label{color:var(--gray-darken-4)}.vc-stepper.v-stepper .v-stepper__step.v-stepper__step--active[data-v-d21a486c]:not(.v-stepper__step--complete) span.v-stepper__step__step{background-color:var(--v-secondary-base)!important}.vc-stepper.v-stepper .v-stepper__step.v-stepper__step--active[data-v-d21a486c]:not(.v-stepper__step--complete) .v-stepper__label{color:var(--gray-darken-5);font-weight:var(--font-weight-large)}.vc-stepper.v-stepper .v-stepper__step.v-stepper__step--complete[data-v-d21a486c] span.v-stepper__step__step{background-color:var(--green)!important}.vc-stepper.v-stepper .v-stepper__step.v-stepper__step--complete[data-v-d21a486c] span.v-stepper__step__step i{font-size:var(--size-value3)}.vc-stepper.v-stepper .v-stepper__step.v-stepper__step--complete[data-v-d21a486c] .v-stepper__label{color:var(--gray-darken-5)}.vc-stepper.v-stepper .v-stepper__step.v-stepper__step--complete.v-stepper__step--active[data-v-d21a486c] .v-stepper__label{font-weight:var(--font-weight-large)}.vc-stepper.v-stepper .v-stepper__step[data-v-d21a486c]:not(:last-child)::after{content:\"\";border-inline-start:2px solid var(--gray-lighten-1);position:absolute;top:0;margin-inline-start:9px;height:-webkit-fill-available;margin-top:var(--size-value7)}",
|
|
2803
2892
|
map: undefined,
|
|
2804
2893
|
media: undefined
|
|
2805
2894
|
});
|
|
@@ -2807,21 +2896,21 @@ const __vue_inject_styles__$n = function (inject) {
|
|
|
2807
2896
|
/* scoped */
|
|
2808
2897
|
|
|
2809
2898
|
|
|
2810
|
-
const __vue_scope_id__$
|
|
2899
|
+
const __vue_scope_id__$p = "data-v-d21a486c";
|
|
2811
2900
|
/* module identifier */
|
|
2812
2901
|
|
|
2813
|
-
const __vue_module_identifier__$
|
|
2902
|
+
const __vue_module_identifier__$p = undefined;
|
|
2814
2903
|
/* functional template */
|
|
2815
2904
|
|
|
2816
|
-
const __vue_is_functional_template__$
|
|
2905
|
+
const __vue_is_functional_template__$p = false;
|
|
2817
2906
|
/* style inject SSR */
|
|
2818
2907
|
|
|
2819
2908
|
/* style inject shadow dom */
|
|
2820
2909
|
|
|
2821
|
-
const __vue_component__$
|
|
2822
|
-
render: __vue_render__$
|
|
2823
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2824
|
-
}, __vue_inject_styles__$
|
|
2910
|
+
const __vue_component__$p = /*#__PURE__*/normalizeComponent({
|
|
2911
|
+
render: __vue_render__$p,
|
|
2912
|
+
staticRenderFns: __vue_staticRenderFns__$p
|
|
2913
|
+
}, __vue_inject_styles__$p, __vue_script__$p, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, createInjector, undefined, undefined);
|
|
2825
2914
|
|
|
2826
2915
|
//
|
|
2827
2916
|
//
|
|
@@ -2838,7 +2927,7 @@ const __vue_component__$n = /*#__PURE__*/normalizeComponent({
|
|
|
2838
2927
|
//
|
|
2839
2928
|
//
|
|
2840
2929
|
//
|
|
2841
|
-
var script$
|
|
2930
|
+
var script$o = {
|
|
2842
2931
|
components: {
|
|
2843
2932
|
VProgressCircular: VProgressCircular
|
|
2844
2933
|
},
|
|
@@ -2907,10 +2996,10 @@ var script$m = {
|
|
|
2907
2996
|
};
|
|
2908
2997
|
|
|
2909
2998
|
/* script */
|
|
2910
|
-
const __vue_script__$
|
|
2999
|
+
const __vue_script__$o = script$o;
|
|
2911
3000
|
/* template */
|
|
2912
3001
|
|
|
2913
|
-
var __vue_render__$
|
|
3002
|
+
var __vue_render__$o = function () {
|
|
2914
3003
|
var _vm = this;
|
|
2915
3004
|
|
|
2916
3005
|
var _h = _vm.$createElement;
|
|
@@ -2931,10 +3020,10 @@ var __vue_render__$m = function () {
|
|
|
2931
3020
|
}, [_vm._v("\n " + _vm._s(_vm.currentStep) + " / " + _vm._s(_vm.steps) + "\n ")]) : _vm._e()]);
|
|
2932
3021
|
};
|
|
2933
3022
|
|
|
2934
|
-
var __vue_staticRenderFns__$
|
|
3023
|
+
var __vue_staticRenderFns__$o = [];
|
|
2935
3024
|
/* style */
|
|
2936
3025
|
|
|
2937
|
-
const __vue_inject_styles__$
|
|
3026
|
+
const __vue_inject_styles__$o = function (inject) {
|
|
2938
3027
|
if (!inject) return;
|
|
2939
3028
|
inject("data-v-5c278fc2_0", {
|
|
2940
3029
|
source: "[data-v-5c278fc2]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-progress-circular .vc-progress-counter[data-v-5c278fc2]{font-size:var(--font-size-x-small);font-weight:var(--font-weight-medium2);color:var(--gray-darken-5)}.vc-progress-circular[data-v-5c278fc2] .v-progress-circular__underlay{stroke:var(--neutral-lighten-1)}",
|
|
@@ -2945,27 +3034,27 @@ const __vue_inject_styles__$m = function (inject) {
|
|
|
2945
3034
|
/* scoped */
|
|
2946
3035
|
|
|
2947
3036
|
|
|
2948
|
-
const __vue_scope_id__$
|
|
3037
|
+
const __vue_scope_id__$o = "data-v-5c278fc2";
|
|
2949
3038
|
/* module identifier */
|
|
2950
3039
|
|
|
2951
|
-
const __vue_module_identifier__$
|
|
3040
|
+
const __vue_module_identifier__$o = undefined;
|
|
2952
3041
|
/* functional template */
|
|
2953
3042
|
|
|
2954
|
-
const __vue_is_functional_template__$
|
|
3043
|
+
const __vue_is_functional_template__$o = false;
|
|
2955
3044
|
/* style inject SSR */
|
|
2956
3045
|
|
|
2957
3046
|
/* style inject shadow dom */
|
|
2958
3047
|
|
|
2959
|
-
const __vue_component__$
|
|
2960
|
-
render: __vue_render__$
|
|
2961
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2962
|
-
}, __vue_inject_styles__$
|
|
3048
|
+
const __vue_component__$o = /*#__PURE__*/normalizeComponent({
|
|
3049
|
+
render: __vue_render__$o,
|
|
3050
|
+
staticRenderFns: __vue_staticRenderFns__$o
|
|
3051
|
+
}, __vue_inject_styles__$o, __vue_script__$o, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, createInjector, undefined, undefined);
|
|
2963
3052
|
|
|
2964
|
-
var script$
|
|
3053
|
+
var script$n = {
|
|
2965
3054
|
name: "VcMobileWizardProgress",
|
|
2966
3055
|
components: {
|
|
2967
|
-
VcLayout: __vue_component__$
|
|
2968
|
-
VcProgressCircular: __vue_component__$
|
|
3056
|
+
VcLayout: __vue_component__$E,
|
|
3057
|
+
VcProgressCircular: __vue_component__$o
|
|
2969
3058
|
},
|
|
2970
3059
|
model: {
|
|
2971
3060
|
prop: 'currentStep'
|
|
@@ -3021,10 +3110,10 @@ var script$l = {
|
|
|
3021
3110
|
};
|
|
3022
3111
|
|
|
3023
3112
|
/* script */
|
|
3024
|
-
const __vue_script__$
|
|
3113
|
+
const __vue_script__$n = script$n;
|
|
3025
3114
|
/* template */
|
|
3026
3115
|
|
|
3027
|
-
var __vue_render__$
|
|
3116
|
+
var __vue_render__$n = function () {
|
|
3028
3117
|
var _vm = this;
|
|
3029
3118
|
|
|
3030
3119
|
var _h = _vm.$createElement;
|
|
@@ -3060,10 +3149,10 @@ var __vue_render__$l = function () {
|
|
|
3060
3149
|
}, [_vm._v(_vm._s(_vm.nextStepName))]) : _vm._e()])], 1);
|
|
3061
3150
|
};
|
|
3062
3151
|
|
|
3063
|
-
var __vue_staticRenderFns__$
|
|
3152
|
+
var __vue_staticRenderFns__$n = [];
|
|
3064
3153
|
/* style */
|
|
3065
3154
|
|
|
3066
|
-
const __vue_inject_styles__$
|
|
3155
|
+
const __vue_inject_styles__$n = function (inject) {
|
|
3067
3156
|
if (!inject) return;
|
|
3068
3157
|
inject("data-v-4fe04d36_0", {
|
|
3069
3158
|
source: "[data-v-4fe04d36]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-mobile-wizard-progress[data-v-4fe04d36]{padding:var(--size-value4);background-color:var(--neutral-lighten-3);width:100%;max-height:84px}.vc-mobile-wizard-progress .titles-container[data-v-4fe04d36]{margin:var(--size-value0) var(--size-value4)}.vc-mobile-wizard-progress .titles-container .current-step[data-v-4fe04d36]{font-weight:var(--font-weight-large2);font-size:var(--font-size-small2)}.vc-mobile-wizard-progress .titles-container .next-step[data-v-4fe04d36]{font-size:var(--font-size-x-small);color:var(--gray-darken-4)}",
|
|
@@ -3074,24 +3163,446 @@ const __vue_inject_styles__$l = function (inject) {
|
|
|
3074
3163
|
/* scoped */
|
|
3075
3164
|
|
|
3076
3165
|
|
|
3077
|
-
const __vue_scope_id__$
|
|
3166
|
+
const __vue_scope_id__$n = "data-v-4fe04d36";
|
|
3078
3167
|
/* module identifier */
|
|
3079
3168
|
|
|
3080
|
-
const __vue_module_identifier__$
|
|
3169
|
+
const __vue_module_identifier__$n = undefined;
|
|
3081
3170
|
/* functional template */
|
|
3082
3171
|
|
|
3083
|
-
const __vue_is_functional_template__$
|
|
3172
|
+
const __vue_is_functional_template__$n = false;
|
|
3084
3173
|
/* style inject SSR */
|
|
3085
3174
|
|
|
3086
3175
|
/* style inject shadow dom */
|
|
3087
3176
|
|
|
3088
|
-
const __vue_component__$
|
|
3089
|
-
render: __vue_render__$
|
|
3090
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3091
|
-
}, __vue_inject_styles__$
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3177
|
+
const __vue_component__$n = /*#__PURE__*/normalizeComponent({
|
|
3178
|
+
render: __vue_render__$n,
|
|
3179
|
+
staticRenderFns: __vue_staticRenderFns__$n
|
|
3180
|
+
}, __vue_inject_styles__$n, __vue_script__$n, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, createInjector, undefined, undefined);
|
|
3181
|
+
|
|
3182
|
+
var script$m = {
|
|
3183
|
+
name: 'VcCheckbox',
|
|
3184
|
+
components: {
|
|
3185
|
+
VcIcon: __vue_component__$H,
|
|
3186
|
+
VcAvatar: __vue_component__$t,
|
|
3187
|
+
VcTooltip: __vue_component__$v,
|
|
3188
|
+
VCheckbox: VCheckbox
|
|
3189
|
+
},
|
|
3190
|
+
computed: {
|
|
3191
|
+
selected: {
|
|
3192
|
+
get() {
|
|
3193
|
+
return this.checked;
|
|
3194
|
+
},
|
|
3195
|
+
|
|
3196
|
+
set(val) {
|
|
3197
|
+
this.$emit('change', val);
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
}
|
|
3201
|
+
},
|
|
3202
|
+
props: {
|
|
3203
|
+
label: {
|
|
3204
|
+
type: String,
|
|
3205
|
+
required: false
|
|
3206
|
+
},
|
|
3207
|
+
tooltip: {
|
|
3208
|
+
type: String,
|
|
3209
|
+
required: false
|
|
3210
|
+
},
|
|
3211
|
+
avatar: {
|
|
3212
|
+
type: Object,
|
|
3213
|
+
required: false
|
|
3214
|
+
},
|
|
3215
|
+
disabled: {
|
|
3216
|
+
type: Boolean,
|
|
3217
|
+
default: false
|
|
3218
|
+
},
|
|
3219
|
+
indeterminate: {
|
|
3220
|
+
type: Boolean,
|
|
3221
|
+
default: false
|
|
3222
|
+
},
|
|
3223
|
+
checked: {
|
|
3224
|
+
type: [Boolean, Array],
|
|
3225
|
+
default: false
|
|
3226
|
+
},
|
|
3227
|
+
value: {
|
|
3228
|
+
type: [String, Boolean, Number],
|
|
3229
|
+
default: false
|
|
3230
|
+
},
|
|
3231
|
+
showAvatarBorder: {
|
|
3232
|
+
type: Boolean,
|
|
3233
|
+
default: true
|
|
3234
|
+
},
|
|
3235
|
+
dataQa: {
|
|
3236
|
+
type: String,
|
|
3237
|
+
default: 'VcCheckbox'
|
|
3238
|
+
}
|
|
3239
|
+
}
|
|
3240
|
+
};
|
|
3241
|
+
|
|
3242
|
+
/* script */
|
|
3243
|
+
const __vue_script__$m = script$m;
|
|
3244
|
+
/* template */
|
|
3245
|
+
|
|
3246
|
+
var __vue_render__$m = function () {
|
|
3247
|
+
var _vm = this;
|
|
3248
|
+
|
|
3249
|
+
var _h = _vm.$createElement;
|
|
3250
|
+
|
|
3251
|
+
var _c = _vm._self._c || _h;
|
|
3252
|
+
|
|
3253
|
+
return _c('v-checkbox', {
|
|
3254
|
+
staticClass: "vc-checkbox d-flex align-center",
|
|
3255
|
+
attrs: {
|
|
3256
|
+
"hide-details": "true",
|
|
3257
|
+
"disabled": _vm.disabled,
|
|
3258
|
+
"ripple": false,
|
|
3259
|
+
"on-icon": "check",
|
|
3260
|
+
"off-icon": "",
|
|
3261
|
+
"indeterminate-icon": "$indeterminate",
|
|
3262
|
+
"indeterminate": _vm.indeterminate,
|
|
3263
|
+
"color": "white",
|
|
3264
|
+
"label": _vm.label,
|
|
3265
|
+
"value": _vm.value,
|
|
3266
|
+
"data-qa": _vm.dataQa
|
|
3267
|
+
},
|
|
3268
|
+
scopedSlots: _vm._u([{
|
|
3269
|
+
key: "label",
|
|
3270
|
+
fn: function () {
|
|
3271
|
+
return [_c('div', {
|
|
3272
|
+
staticClass: "d-flex align-center"
|
|
3273
|
+
}, [_vm.avatar && _vm.label ? _c('VcAvatar', {
|
|
3274
|
+
staticClass: "ms-1 me-3",
|
|
3275
|
+
attrs: {
|
|
3276
|
+
"image-path": _vm.avatar.path,
|
|
3277
|
+
"name": _vm.avatar.name,
|
|
3278
|
+
"color-id": _vm.avatar.colorId,
|
|
3279
|
+
"disabled": _vm.disabled,
|
|
3280
|
+
"show-border": _vm.showAvatarBorder,
|
|
3281
|
+
"size": "x-sm"
|
|
3282
|
+
}
|
|
3283
|
+
}) : _vm._e(), _vm._v(" "), _vm.label ? _c('span', {
|
|
3284
|
+
staticClass: "checkbox-label"
|
|
3285
|
+
}, [_vm._v(_vm._s(_vm.label))]) : _vm._e(), _vm._v(" "), _vm.tooltip && _vm.label ? _c('VcTooltip', {
|
|
3286
|
+
attrs: {
|
|
3287
|
+
"dark": "",
|
|
3288
|
+
"content": _vm.tooltip,
|
|
3289
|
+
"bottom": ""
|
|
3290
|
+
}
|
|
3291
|
+
}, [_c('VcIcon', {
|
|
3292
|
+
staticClass: "tooltip-icon ms-2",
|
|
3293
|
+
attrs: {
|
|
3294
|
+
"size": "16"
|
|
3295
|
+
}
|
|
3296
|
+
}, [_vm._v("$info")])], 1) : _vm._e()], 1)];
|
|
3297
|
+
},
|
|
3298
|
+
proxy: true
|
|
3299
|
+
}]),
|
|
3300
|
+
model: {
|
|
3301
|
+
value: _vm.selected,
|
|
3302
|
+
callback: function ($$v) {
|
|
3303
|
+
_vm.selected = $$v;
|
|
3304
|
+
},
|
|
3305
|
+
expression: "selected"
|
|
3306
|
+
}
|
|
3307
|
+
});
|
|
3308
|
+
};
|
|
3309
|
+
|
|
3310
|
+
var __vue_staticRenderFns__$m = [];
|
|
3311
|
+
/* style */
|
|
3312
|
+
|
|
3313
|
+
const __vue_inject_styles__$m = function (inject) {
|
|
3314
|
+
if (!inject) return;
|
|
3315
|
+
inject("data-v-347ec55e_0", {
|
|
3316
|
+
source: ".vc-checkbox[data-v-347ec55e]{font-family:var(--primary-font-family)}.vc-checkbox[data-v-347ec55e] .v-input__slot .v-input--selection-controls__input{width:var(--size-value4);height:var(--size-value4)}.vc-checkbox[data-v-347ec55e] .v-input__slot .v-input--selection-controls__input .v-icon{color:transparent;border:1px solid rgba(0,0,0,.2);box-sizing:border-box;border-radius:2px;font-size:var(--font-size-small);font-weight:700}.vc-checkbox[data-v-347ec55e] .checkbox-label{font-weight:var(--font-weight-medium2);font-size:var(--font-size-x-small)}.vc-checkbox[data-v-347ec55e]:not(.v-input--is-disabled) .checkbox-label{color:var(--gray-darken-5)}.vc-checkbox[data-v-347ec55e] .tooltip-icon{color:var(--gray-darken-3)}.vc-checkbox[data-v-347ec55e] .avatar-wrapper .avatar-initials{font-size:var(--font-size-xxx-small);font-weight:var(--font-weight-medium2)}.vc-checkbox[data-v-347ec55e].v-input--indeterminate:not(.v-input--is-disabled) .v-input--selection-controls__input .v-icon{background-color:var(--green);color:#fff}.vc-checkbox[data-v-347ec55e].v-input--is-label-active:not(.v-input--is-disabled) .v-input--selection-controls__input .v-icon{background-color:var(--green);color:#fff;border:none}.vc-checkbox[data-v-347ec55e]:not(.v-input--is-disabled):hover:not(:active) .v-input--selection-controls__input .v-icon{background-color:rgba(0,0,0,.03)}.vc-checkbox[data-v-347ec55e].v-input--indeterminate:not(.v-input--is-disabled):hover .v-input--selection-controls__input .v-icon,.vc-checkbox[data-v-347ec55e].v-input--is-label-active:not(.v-input--is-disabled):hover .v-input--selection-controls__input .v-icon{background-color:rgba(84,210,140,.76)}.vc-checkbox[data-v-347ec55e].v-input--indeterminate:not(.v-input--is-disabled):active .v-input--selection-controls__input .v-icon,.vc-checkbox[data-v-347ec55e].v-input--is-label-active:not(.v-input--is-disabled):active .v-input--selection-controls__input .v-icon{background-color:rgba(84,210,140,.5)}.vc-checkbox[data-v-347ec55e]:not(.v-input--is-label-active):not(.v-input--indeterminate):not(.v-input--is-disabled):active .v-input--selection-controls__input .v-icon{background:rgba(0,0,0,.12)}.vc-checkbox[data-v-347ec55e]:not(.v-input--is-disabled):focus .v-input--selection-controls__input .v-icon{box-shadow:0 0 0 3px var(--v-secondary-lighten1)}.vc-checkbox[data-v-347ec55e].v-input--is-disabled .v-input--selection-controls__input .v-icon{background:rgba(0,0,0,.07)}.vc-checkbox[data-v-347ec55e].v-input--is-disabled.v-input--is-label-active .v-input--selection-controls__input .v-icon{border:none}",
|
|
3317
|
+
map: undefined,
|
|
3318
|
+
media: undefined
|
|
3319
|
+
});
|
|
3320
|
+
};
|
|
3321
|
+
/* scoped */
|
|
3322
|
+
|
|
3323
|
+
|
|
3324
|
+
const __vue_scope_id__$m = "data-v-347ec55e";
|
|
3325
|
+
/* module identifier */
|
|
3326
|
+
|
|
3327
|
+
const __vue_module_identifier__$m = undefined;
|
|
3328
|
+
/* functional template */
|
|
3329
|
+
|
|
3330
|
+
const __vue_is_functional_template__$m = false;
|
|
3331
|
+
/* style inject SSR */
|
|
3332
|
+
|
|
3333
|
+
/* style inject shadow dom */
|
|
3334
|
+
|
|
3335
|
+
const __vue_component__$m = /*#__PURE__*/normalizeComponent({
|
|
3336
|
+
render: __vue_render__$m,
|
|
3337
|
+
staticRenderFns: __vue_staticRenderFns__$m
|
|
3338
|
+
}, __vue_inject_styles__$m, __vue_script__$m, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, createInjector, undefined, undefined);
|
|
3339
|
+
|
|
3340
|
+
var script$l = {
|
|
3341
|
+
name: "VcChecklistItem",
|
|
3342
|
+
components: {
|
|
3343
|
+
VcLayout: __vue_component__$E,
|
|
3344
|
+
VcCheckbox: __vue_component__$m,
|
|
3345
|
+
VcTooltip: __vue_component__$v
|
|
3346
|
+
},
|
|
3347
|
+
model: {
|
|
3348
|
+
prop: 'checked'
|
|
3349
|
+
},
|
|
3350
|
+
props: {
|
|
3351
|
+
checked: {
|
|
3352
|
+
type: Boolean,
|
|
3353
|
+
default: false
|
|
3354
|
+
},
|
|
3355
|
+
label: {
|
|
3356
|
+
type: String,
|
|
3357
|
+
required: true
|
|
3358
|
+
},
|
|
3359
|
+
avatar: {
|
|
3360
|
+
type: Object,
|
|
3361
|
+
default: undefined
|
|
3362
|
+
},
|
|
3363
|
+
disabled: {
|
|
3364
|
+
type: Boolean,
|
|
3365
|
+
default: false
|
|
3366
|
+
},
|
|
3367
|
+
tooltipContent: {
|
|
3368
|
+
type: String,
|
|
3369
|
+
default: ''
|
|
3370
|
+
},
|
|
3371
|
+
dataQa: {
|
|
3372
|
+
type: String,
|
|
3373
|
+
default: 'VcChecklistItem'
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3376
|
+
computed: {
|
|
3377
|
+
getAvatar() {
|
|
3378
|
+
if (this.avatar && Object.keys(this.avatar).length) {
|
|
3379
|
+
return {
|
|
3380
|
+
name: this.label,
|
|
3381
|
+
...this.avatar
|
|
3382
|
+
};
|
|
3383
|
+
}
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
},
|
|
3387
|
+
methods: {
|
|
3388
|
+
onChange(val) {
|
|
3389
|
+
this.$emit('change', {
|
|
3390
|
+
checked: val
|
|
3391
|
+
});
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
}
|
|
3395
|
+
};
|
|
3396
|
+
|
|
3397
|
+
/* script */
|
|
3398
|
+
const __vue_script__$l = script$l;
|
|
3399
|
+
/* template */
|
|
3400
|
+
|
|
3401
|
+
var __vue_render__$l = function () {
|
|
3402
|
+
var _vm = this;
|
|
3403
|
+
|
|
3404
|
+
var _h = _vm.$createElement;
|
|
3405
|
+
|
|
3406
|
+
var _c = _vm._self._c || _h;
|
|
3407
|
+
|
|
3408
|
+
return _c('VcTooltip', {
|
|
3409
|
+
staticClass: "VcChecklistItem-wrapper",
|
|
3410
|
+
attrs: {
|
|
3411
|
+
"content": _vm.tooltipContent,
|
|
3412
|
+
"dark": "",
|
|
3413
|
+
"disabled": !_vm.tooltipContent || !_vm.disabled
|
|
3414
|
+
}
|
|
3415
|
+
}, [[_c('VcLayout', {
|
|
3416
|
+
staticClass: "VcChecklistItem",
|
|
3417
|
+
class: {
|
|
3418
|
+
'disabled': _vm.disabled
|
|
3419
|
+
},
|
|
3420
|
+
attrs: {
|
|
3421
|
+
"data-qa": _vm.dataQa
|
|
3422
|
+
}
|
|
3423
|
+
}, [_c('VcCheckbox', {
|
|
3424
|
+
attrs: {
|
|
3425
|
+
"checked": _vm.checked,
|
|
3426
|
+
"avatar": _vm.getAvatar,
|
|
3427
|
+
"label": _vm.label,
|
|
3428
|
+
"show-avatar-border": false,
|
|
3429
|
+
"disabled": _vm.disabled,
|
|
3430
|
+
"data-qa": _vm.dataQa + "-checkbox"
|
|
3431
|
+
},
|
|
3432
|
+
on: {
|
|
3433
|
+
"change": _vm.onChange
|
|
3434
|
+
}
|
|
3435
|
+
})], 1)]], 2);
|
|
3436
|
+
};
|
|
3437
|
+
|
|
3438
|
+
var __vue_staticRenderFns__$l = [];
|
|
3439
|
+
/* style */
|
|
3440
|
+
|
|
3441
|
+
const __vue_inject_styles__$l = function (inject) {
|
|
3442
|
+
if (!inject) return;
|
|
3443
|
+
inject("data-v-03c417f7_0", {
|
|
3444
|
+
source: "[data-v-03c417f7]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.VcChecklistItem-wrapper[data-v-03c417f7]{width:100%}.VcChecklistItem-wrapper .VcChecklistItem[data-v-03c417f7]{padding:var(--size-value2) var(--size-value4)}.VcChecklistItem-wrapper .VcChecklistItem.disabled[data-v-03c417f7]{background-color:var(--gray-lighten-3)}.VcChecklistItem-wrapper .VcChecklistItem .vc-checkbox[data-v-03c417f7]{flex:1 1 auto;padding:var(--size-value0);margin:var(--size-value0)}.VcChecklistItem-wrapper .VcChecklistItem[data-v-03c417f7]:hover{background-color:var(--gray-lighten-3)}.VcChecklistItem-wrapper .VcChecklistItem[data-v-03c417f7]:focus{box-shadow:0 0 0 2px var(--v-secondary-lighten1)}.VcChecklistItem-wrapper .VcChecklistItem[data-v-03c417f7]:active{background-color:var(--v-secondary-lighten3)}",
|
|
3445
|
+
map: undefined,
|
|
3446
|
+
media: undefined
|
|
3447
|
+
});
|
|
3448
|
+
};
|
|
3449
|
+
/* scoped */
|
|
3450
|
+
|
|
3451
|
+
|
|
3452
|
+
const __vue_scope_id__$l = "data-v-03c417f7";
|
|
3453
|
+
/* module identifier */
|
|
3454
|
+
|
|
3455
|
+
const __vue_module_identifier__$l = undefined;
|
|
3456
|
+
/* functional template */
|
|
3457
|
+
|
|
3458
|
+
const __vue_is_functional_template__$l = false;
|
|
3459
|
+
/* style inject SSR */
|
|
3460
|
+
|
|
3461
|
+
/* style inject shadow dom */
|
|
3462
|
+
|
|
3463
|
+
const __vue_component__$l = /*#__PURE__*/normalizeComponent({
|
|
3464
|
+
render: __vue_render__$l,
|
|
3465
|
+
staticRenderFns: __vue_staticRenderFns__$l
|
|
3466
|
+
}, __vue_inject_styles__$l, __vue_script__$l, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, createInjector, undefined, undefined);
|
|
3467
|
+
|
|
3468
|
+
var script$k = {
|
|
3469
|
+
name: "VcListbox",
|
|
3470
|
+
components: {
|
|
3471
|
+
VcChecklistItem: __vue_component__$l,
|
|
3472
|
+
VcIcon: __vue_component__$H,
|
|
3473
|
+
VListItem: VListItem,
|
|
3474
|
+
VDivider: VDivider,
|
|
3475
|
+
VList: VList
|
|
3476
|
+
},
|
|
3477
|
+
props: {
|
|
3478
|
+
items: {
|
|
3479
|
+
type: Array,
|
|
3480
|
+
required: true,
|
|
3481
|
+
validator: items => items.every(item => item.label)
|
|
3482
|
+
},
|
|
3483
|
+
addAnother: {
|
|
3484
|
+
type: Boolean,
|
|
3485
|
+
default: false
|
|
3486
|
+
},
|
|
3487
|
+
addAnotherLabel: {
|
|
3488
|
+
type: String,
|
|
3489
|
+
default: ""
|
|
3490
|
+
},
|
|
3491
|
+
title: {
|
|
3492
|
+
type: String,
|
|
3493
|
+
default: ''
|
|
3494
|
+
},
|
|
3495
|
+
dataQa: {
|
|
3496
|
+
type: String,
|
|
3497
|
+
default: 'VcListbox'
|
|
3498
|
+
}
|
|
3499
|
+
},
|
|
3500
|
+
computed: {
|
|
3501
|
+
getAddAnotherLabel() {
|
|
3502
|
+
return this.addAnotherLabel || this.$dst('ds.listbox.add');
|
|
3503
|
+
}
|
|
3504
|
+
|
|
3505
|
+
}
|
|
3506
|
+
};
|
|
3507
|
+
|
|
3508
|
+
/* script */
|
|
3509
|
+
const __vue_script__$k = script$k;
|
|
3510
|
+
/* template */
|
|
3511
|
+
|
|
3512
|
+
var __vue_render__$k = function () {
|
|
3513
|
+
var _vm = this;
|
|
3514
|
+
|
|
3515
|
+
var _h = _vm.$createElement;
|
|
3516
|
+
|
|
3517
|
+
var _c = _vm._self._c || _h;
|
|
3518
|
+
|
|
3519
|
+
return _c('div', [_vm.title ? _c('div', {
|
|
3520
|
+
staticClass: "vc-list-title",
|
|
3521
|
+
attrs: {
|
|
3522
|
+
"data-qa": _vm.dataQa + "-title"
|
|
3523
|
+
}
|
|
3524
|
+
}, [_vm._v("\n " + _vm._s(_vm.title) + "\n ")]) : _vm._e(), _vm._v(" "), _c('v-list', {
|
|
3525
|
+
staticClass: "VcListbox",
|
|
3526
|
+
attrs: {
|
|
3527
|
+
"data-qa": _vm.dataQa
|
|
3528
|
+
}
|
|
3529
|
+
}, [_c('div', {
|
|
3530
|
+
staticClass: "vc-overflow"
|
|
3531
|
+
}, _vm._l(_vm.items, function (item, index) {
|
|
3532
|
+
return _c('v-list-item', {
|
|
3533
|
+
key: index,
|
|
3534
|
+
staticClass: "vc-list-item",
|
|
3535
|
+
attrs: {
|
|
3536
|
+
"tabindex": index
|
|
3537
|
+
}
|
|
3538
|
+
}, [_c('VcChecklistItem', _vm._b({
|
|
3539
|
+
attrs: {
|
|
3540
|
+
"data-qa": _vm.dataQa + "-" + index
|
|
3541
|
+
},
|
|
3542
|
+
on: {
|
|
3543
|
+
"change": function (args) {
|
|
3544
|
+
return _vm.$emit('change', Object.assign({}, args, {
|
|
3545
|
+
id: index
|
|
3546
|
+
}));
|
|
3547
|
+
}
|
|
3548
|
+
}
|
|
3549
|
+
}, 'VcChecklistItem', item, false))], 1);
|
|
3550
|
+
}), 1), _vm._v(" "), _vm.addAnother ? _c('div', {
|
|
3551
|
+
attrs: {
|
|
3552
|
+
"data-qa": _vm.dataQa + "-increase"
|
|
3553
|
+
}
|
|
3554
|
+
}, [_c('v-divider', {
|
|
3555
|
+
staticClass: "divider"
|
|
3556
|
+
}), _vm._v(" "), _c('v-list-item', {
|
|
3557
|
+
staticClass: "last-item",
|
|
3558
|
+
attrs: {
|
|
3559
|
+
"align-baseline": ""
|
|
3560
|
+
},
|
|
3561
|
+
on: {
|
|
3562
|
+
"click": function ($event) {
|
|
3563
|
+
return _vm.$emit('addNew');
|
|
3564
|
+
}
|
|
3565
|
+
}
|
|
3566
|
+
}, [_c('VcIcon', {
|
|
3567
|
+
staticClass: "add-another-icon",
|
|
3568
|
+
attrs: {
|
|
3569
|
+
"dense": ""
|
|
3570
|
+
}
|
|
3571
|
+
}, [_vm._v("$plus")]), _vm._v(" "), _c('span', {
|
|
3572
|
+
staticClass: "add-another-label"
|
|
3573
|
+
}, [_vm._v(_vm._s(_vm.getAddAnotherLabel))])], 1)], 1) : _vm._e()])], 1);
|
|
3574
|
+
};
|
|
3575
|
+
|
|
3576
|
+
var __vue_staticRenderFns__$k = [];
|
|
3577
|
+
/* style */
|
|
3578
|
+
|
|
3579
|
+
const __vue_inject_styles__$k = function (inject) {
|
|
3580
|
+
if (!inject) return;
|
|
3581
|
+
inject("data-v-1518d320_0", {
|
|
3582
|
+
source: "[data-v-1518d320]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--size-value0:0px;--size-value1:4px;--size-value2:8px;--size-value3:12px;--size-value4:16px;--size-value5:20px;--size-value6:24px;--size-value7:28px;--size-value8:32px;--size-value9:36px;--size-value10:40px;--size-value11:44px;--size-value12:48px;--size-value13:52px;--size-value14:56px;--size-value15:60px;--size-value16:64px;--size-value17:68px;--size-value18:72px;--size-value19:76px;--size-value20:80px;--border-radius:6px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-list-title[data-v-1518d320]{font-weight:var(--font-weight-medium2);font-size:var(--font-size-small2);line-height:var(--size-value5);margin-block-end:var(--size-value3)}.VcListbox[data-v-1518d320]{padding-block:var(--size-value1);margin-block:var(--size-value1);border:1px solid var(--gray-lighten-1);box-sizing:border-box;border-radius:var(--border-radius);width:fit-content;box-shadow:none!important}.VcListbox .vc-overflow[data-v-1518d320]{overflow:auto;max-height:160px}.VcListbox .vc-overflow .vc-list-item[data-v-1518d320]{padding:var(--size-value0);min-height:unset}.VcListbox .divider[data-v-1518d320]{border-color:var(--gray-lighten-1)}.VcListbox .last-item[data-v-1518d320]{cursor:pointer;min-height:var(--size-value10)}.VcListbox .last-item[data-v-1518d320]:hover{background-color:var(--gray-lighten-3)}.VcListbox .last-item .add-another-label[data-v-1518d320]{font-weight:var(--font-weight-medium2);font-size:var(--font-size-x-small);line-height:var(--size-value5);color:var(--gray-darken-5)}.VcListbox .last-item .add-another-icon[data-v-1518d320]{margin-inline-end:var(--size-value3);cursor:pointer}.VcListbox .last-item .add-another-icon[data-v-1518d320] .v-icon__component{height:unset;width:unset}.VcListbox .last-item .add-another-icon[data-v-1518d320] .v-icon__component svg{width:var(--size-value3)}",
|
|
3583
|
+
map: undefined,
|
|
3584
|
+
media: undefined
|
|
3585
|
+
});
|
|
3586
|
+
};
|
|
3587
|
+
/* scoped */
|
|
3588
|
+
|
|
3589
|
+
|
|
3590
|
+
const __vue_scope_id__$k = "data-v-1518d320";
|
|
3591
|
+
/* module identifier */
|
|
3592
|
+
|
|
3593
|
+
const __vue_module_identifier__$k = undefined;
|
|
3594
|
+
/* functional template */
|
|
3595
|
+
|
|
3596
|
+
const __vue_is_functional_template__$k = false;
|
|
3597
|
+
/* style inject SSR */
|
|
3598
|
+
|
|
3599
|
+
/* style inject shadow dom */
|
|
3600
|
+
|
|
3601
|
+
const __vue_component__$k = /*#__PURE__*/normalizeComponent({
|
|
3602
|
+
render: __vue_render__$k,
|
|
3603
|
+
staticRenderFns: __vue_staticRenderFns__$k
|
|
3604
|
+
}, __vue_inject_styles__$k, __vue_script__$k, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, createInjector, undefined, undefined);
|
|
3605
|
+
|
|
3095
3606
|
//
|
|
3096
3607
|
//
|
|
3097
3608
|
//
|
|
@@ -3112,7 +3623,9 @@ const __vue_component__$l = /*#__PURE__*/normalizeComponent({
|
|
|
3112
3623
|
//
|
|
3113
3624
|
//
|
|
3114
3625
|
//
|
|
3115
|
-
|
|
3626
|
+
//
|
|
3627
|
+
//
|
|
3628
|
+
var script$j = {
|
|
3116
3629
|
components: {
|
|
3117
3630
|
VCol: VCol,
|
|
3118
3631
|
VRow: VRow,
|
|
@@ -3198,10 +3711,10 @@ var script$k = {
|
|
|
3198
3711
|
};
|
|
3199
3712
|
|
|
3200
3713
|
/* script */
|
|
3201
|
-
const __vue_script__$
|
|
3714
|
+
const __vue_script__$j = script$j;
|
|
3202
3715
|
/* template */
|
|
3203
3716
|
|
|
3204
|
-
var __vue_render__$
|
|
3717
|
+
var __vue_render__$j = function () {
|
|
3205
3718
|
var _vm = this;
|
|
3206
3719
|
|
|
3207
3720
|
var _h = _vm.$createElement;
|
|
@@ -3248,10 +3761,10 @@ var __vue_render__$k = function () {
|
|
|
3248
3761
|
}), 1);
|
|
3249
3762
|
};
|
|
3250
3763
|
|
|
3251
|
-
var __vue_staticRenderFns__$
|
|
3764
|
+
var __vue_staticRenderFns__$j = [];
|
|
3252
3765
|
/* style */
|
|
3253
3766
|
|
|
3254
|
-
const __vue_inject_styles__$
|
|
3767
|
+
const __vue_inject_styles__$j = function (inject) {
|
|
3255
3768
|
if (!inject) return;
|
|
3256
3769
|
inject("data-v-284ef818_0", {
|
|
3257
3770
|
source: ".VcButtonGroup[data-v-284ef818]{font-weight:var(--font-weight-medium2);font-size:13px}.VcButtonGroup .button-group-row[data-v-284ef818]{margin:0}.VcButtonGroup .button-item[data-v-284ef818]{cursor:pointer;transition:.3s background-color,color ease-out;min-height:40px;border-color:#d6dbe6;border-style:solid;border-width:0;color:rgba(0,0,0,.62);border-right-width:1px;border-bottom-width:1px;padding:0 12px}.VcButtonGroup .button-item .button-label[data-v-284ef818]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.VcButtonGroup .button-item.left[data-v-284ef818]{border-left-width:1px}.VcButtonGroup .button-item.top[data-v-284ef818]{border-top-width:1px}.VcButtonGroup .button-item.bottom[data-v-284ef818]:not(.top):not(.selected){border-top-width:0}.VcButtonGroup .button-item.top.left[data-v-284ef818]{border-top-left-radius:6px}.VcButtonGroup .button-item.top.right[data-v-284ef818]{border-top-right-radius:6px}.VcButtonGroup .button-item.bottom.left[data-v-284ef818]{border-bottom-left-radius:6px}.VcButtonGroup .button-item.bottom.right[data-v-284ef818]{border-bottom-right-radius:6px}.VcButtonGroup .button-item[data-v-284ef818]:hover{background-color:rgba(0,0,0,.03)}.VcButtonGroup .button-item[data-v-284ef818]:focus{box-shadow:0 0 0 3px var(--v-secondary-lighten1)}.VcButtonGroup .button-item.selected[data-v-284ef818]{border:2px solid var(--v-secondary-base);font-weight:600}.VcButtonGroup .button-item.selected[data-v-284ef818]:hover{background:rgba(0,0,0,.03)}.VcButtonGroup .button-item[data-v-284ef818]:active{background:rgba(0,0,0,.12)}.VcButtonGroup .button-item.disabled[data-v-284ef818]{background:rgba(0,0,0,.07);color:rgba(0,0,0,.4);pointer-events:none}",
|
|
@@ -3262,21 +3775,21 @@ const __vue_inject_styles__$k = function (inject) {
|
|
|
3262
3775
|
/* scoped */
|
|
3263
3776
|
|
|
3264
3777
|
|
|
3265
|
-
const __vue_scope_id__$
|
|
3778
|
+
const __vue_scope_id__$j = "data-v-284ef818";
|
|
3266
3779
|
/* module identifier */
|
|
3267
3780
|
|
|
3268
|
-
const __vue_module_identifier__$
|
|
3781
|
+
const __vue_module_identifier__$j = undefined;
|
|
3269
3782
|
/* functional template */
|
|
3270
3783
|
|
|
3271
|
-
const __vue_is_functional_template__$
|
|
3784
|
+
const __vue_is_functional_template__$j = false;
|
|
3272
3785
|
/* style inject SSR */
|
|
3273
3786
|
|
|
3274
3787
|
/* style inject shadow dom */
|
|
3275
3788
|
|
|
3276
|
-
const __vue_component__$
|
|
3277
|
-
render: __vue_render__$
|
|
3278
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3279
|
-
}, __vue_inject_styles__$
|
|
3789
|
+
const __vue_component__$j = /*#__PURE__*/normalizeComponent({
|
|
3790
|
+
render: __vue_render__$j,
|
|
3791
|
+
staticRenderFns: __vue_staticRenderFns__$j
|
|
3792
|
+
}, __vue_inject_styles__$j, __vue_script__$j, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, createInjector, undefined, undefined);
|
|
3280
3793
|
|
|
3281
3794
|
//
|
|
3282
3795
|
//
|
|
@@ -3287,7 +3800,7 @@ const __vue_component__$k = /*#__PURE__*/normalizeComponent({
|
|
|
3287
3800
|
//
|
|
3288
3801
|
//
|
|
3289
3802
|
//
|
|
3290
|
-
var script$
|
|
3803
|
+
var script$i = {
|
|
3291
3804
|
components: {
|
|
3292
3805
|
VProgressCircular: VProgressCircular
|
|
3293
3806
|
},
|
|
@@ -3315,10 +3828,10 @@ var script$j = {
|
|
|
3315
3828
|
};
|
|
3316
3829
|
|
|
3317
3830
|
/* script */
|
|
3318
|
-
const __vue_script__$
|
|
3831
|
+
const __vue_script__$i = script$i;
|
|
3319
3832
|
/* template */
|
|
3320
3833
|
|
|
3321
|
-
var __vue_render__$
|
|
3834
|
+
var __vue_render__$i = function () {
|
|
3322
3835
|
var _vm = this;
|
|
3323
3836
|
|
|
3324
3837
|
var _h = _vm.$createElement;
|
|
@@ -3336,33 +3849,33 @@ var __vue_render__$j = function () {
|
|
|
3336
3849
|
});
|
|
3337
3850
|
};
|
|
3338
3851
|
|
|
3339
|
-
var __vue_staticRenderFns__$
|
|
3852
|
+
var __vue_staticRenderFns__$i = [];
|
|
3340
3853
|
/* style */
|
|
3341
3854
|
|
|
3342
|
-
const __vue_inject_styles__$
|
|
3855
|
+
const __vue_inject_styles__$i = undefined;
|
|
3343
3856
|
/* scoped */
|
|
3344
3857
|
|
|
3345
|
-
const __vue_scope_id__$
|
|
3858
|
+
const __vue_scope_id__$i = undefined;
|
|
3346
3859
|
/* module identifier */
|
|
3347
3860
|
|
|
3348
|
-
const __vue_module_identifier__$
|
|
3861
|
+
const __vue_module_identifier__$i = undefined;
|
|
3349
3862
|
/* functional template */
|
|
3350
3863
|
|
|
3351
|
-
const __vue_is_functional_template__$
|
|
3864
|
+
const __vue_is_functional_template__$i = false;
|
|
3352
3865
|
/* style inject */
|
|
3353
3866
|
|
|
3354
3867
|
/* style inject SSR */
|
|
3355
3868
|
|
|
3356
3869
|
/* style inject shadow dom */
|
|
3357
3870
|
|
|
3358
|
-
const __vue_component__$
|
|
3359
|
-
render: __vue_render__$
|
|
3360
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3361
|
-
}, __vue_inject_styles__$
|
|
3871
|
+
const __vue_component__$i = /*#__PURE__*/normalizeComponent({
|
|
3872
|
+
render: __vue_render__$i,
|
|
3873
|
+
staticRenderFns: __vue_staticRenderFns__$i
|
|
3874
|
+
}, __vue_inject_styles__$i, __vue_script__$i, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, undefined, undefined, undefined);
|
|
3362
3875
|
|
|
3363
|
-
var script$
|
|
3876
|
+
var script$h = {
|
|
3364
3877
|
components: {
|
|
3365
|
-
VcIcon: __vue_component__$
|
|
3878
|
+
VcIcon: __vue_component__$H,
|
|
3366
3879
|
VSwitch: VSwitch
|
|
3367
3880
|
},
|
|
3368
3881
|
name: "VcSwitch",
|
|
@@ -3400,10 +3913,10 @@ var script$i = {
|
|
|
3400
3913
|
};
|
|
3401
3914
|
|
|
3402
3915
|
/* script */
|
|
3403
|
-
const __vue_script__$
|
|
3916
|
+
const __vue_script__$h = script$h;
|
|
3404
3917
|
/* template */
|
|
3405
3918
|
|
|
3406
|
-
var __vue_render__$
|
|
3919
|
+
var __vue_render__$h = function () {
|
|
3407
3920
|
var _vm = this;
|
|
3408
3921
|
|
|
3409
3922
|
var _h = _vm.$createElement;
|
|
@@ -3453,10 +3966,10 @@ var __vue_render__$i = function () {
|
|
|
3453
3966
|
}, [_vm._v("$close_button")]) : _vm._e()], 1);
|
|
3454
3967
|
};
|
|
3455
3968
|
|
|
3456
|
-
var __vue_staticRenderFns__$
|
|
3969
|
+
var __vue_staticRenderFns__$h = [];
|
|
3457
3970
|
/* style */
|
|
3458
3971
|
|
|
3459
|
-
const __vue_inject_styles__$
|
|
3972
|
+
const __vue_inject_styles__$h = function (inject) {
|
|
3460
3973
|
if (!inject) return;
|
|
3461
3974
|
inject("data-v-13c7166f_0", {
|
|
3462
3975
|
source: ".switchContainer .VcSwitch[data-v-13c7166f]{padding:0;margin:0}.switchContainer .VcSwitch[data-v-13c7166f] label{font-size:var(--font-size-small);font-weight:var(--font-weight-medium);line-height:var(--size-value6);color:rgba(0,0,0,.87)}.switchContainer .VcSwitch[data-v-13c7166f] input{height:var(--size-value5)}.switchContainer .VcSwitch[data-v-13c7166f] .v-input--selection-controls__input{margin-left:0;margin-right:var(--size-value3);height:var(--size-value5);width:var(--size-value8)}#app[dir=rtl] .switchContainer .VcSwitch[data-v-13c7166f] .v-input--selection-controls__input{margin-left:var(--size-value3)}#app[dir=rtl] .switchContainer .VcSwitch[data-v-13c7166f] .v-input--selection-controls__input{margin-right:0}.switchContainer .VcSwitch[data-v-13c7166f] .v-input--switch__track{top:0;left:0}#app[dir=rtl] .switchContainer .VcSwitch[data-v-13c7166f] .v-input--switch__track{left:auto;right:0}.switchContainer .VcSwitch[data-v-13c7166f] .v-input--selection-controls__ripple{left:-10px;height:25px;width:25px}#app[dir=rtl] .switchContainer .VcSwitch[data-v-13c7166f] .v-input--selection-controls__ripple{left:auto;right:-10px}.switchContainer .VcSwitch[data-v-13c7166f] .v-input--switch__thumb{height:14px;width:14px;background-color:#fff;top:calc(50% - 7px);transform:translateX(3px)!important;box-shadow:var(--shadow-5)}#app[dir=rtl] .switchContainer .VcSwitch[data-v-13c7166f] .v-input--switch__thumb{transform:translateX(-3px)!important}.switchContainer .VcSwitch.v-input--is-disabled[data-v-13c7166f] {opacity:1}.switchContainer .VcSwitch.v-input--is-disabled[data-v-13c7166f] .v-input--switch__track{color:var(--gray-lighten-2)!important}.switchContainer .VcSwitch.v-input--is-disabled[data-v-13c7166f] .v-input--switch__thumb{background-color:var(--gray)!important;box-shadow:none}.switchContainer .VcSwitch.is-active[data-v-13c7166f] .v-input--switch__track{opacity:1;background-color:currentColor}.switchContainer .VcSwitch.is-active[data-v-13c7166f] .v-input--selection-controls__ripple{transform:translateX(14px)!important}#app[dir=rtl] .switchContainer .VcSwitch.is-active[data-v-13c7166f] .v-input--selection-controls__ripple{transform:translateX(-14px)!important}.switchContainer .VcSwitch.is-active[data-v-13c7166f] .v-input--switch__thumb{transform:translateX(17px)!important}#app[dir=rtl] .switchContainer .VcSwitch.is-active[data-v-13c7166f] .v-input--switch__thumb{transform:translateX(-17px)!important}.switchContainer .VcSwitch.with-icon[data-v-13c7166f] input{height:var(--size-value6)}.switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--selection-controls__input{margin-left:0;margin-right:var(--size-value3);height:var(--size-value6);width:var(--size-value12)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--selection-controls__input{margin-left:var(--size-value3)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--selection-controls__input{margin-right:0}.switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--switch__track{top:0;left:0;height:var(--size-value6);width:var(--size-value12)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--switch__track{left:auto;right:0}.switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--selection-controls__ripple{left:-9px;height:29px;width:29px;top:calc(50% - 21.5px)}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--selection-controls__ripple{left:auto;right:-9px}.switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--switch__thumb{height:18px;width:18px;top:calc(50% - 9px);transform:translateX(3.5px)!important}#app[dir=rtl] .switchContainer .VcSwitch.with-icon[data-v-13c7166f] .v-input--switch__thumb{transform:translateX(-3.5px)!important}.switchContainer .VcSwitch.with-icon.v-input--is-disabled[data-v-13c7166f] {opacity:1}.switchContainer .VcSwitch.with-icon.v-input--is-disabled[data-v-13c7166f] .v-input--switch__track{color:var(--gray-lighten-2)!important}.switchContainer .VcSwitch.with-icon.v-input--is-disabled[data-v-13c7166f] .v-input--switch__thumb{background-color:var(--gray)!important;box-shadow:none}.switchContainer .VcSwitch.with-icon.v-input--is-disabled+.VcSwitchIcon[data-v-13c7166f]{fill:var(--gray-lighten-2)!important}.switchContainer .VcSwitch.with-icon.is-active[data-v-13c7166f] .v-input--switch__track{opacity:1;background-color:currentColor}.switchContainer .VcSwitch.with-icon.is-active[data-v-13c7166f] .v-input--selection-controls__ripple{transform:translateX(23.5px)!important}#app[dir=rtl] .switchContainer .VcSwitch.with-icon.is-active[data-v-13c7166f] .v-input--selection-controls__ripple{transform:translateX(-23.5px)!important}.switchContainer .VcSwitch.with-icon.is-active[data-v-13c7166f] .v-input--switch__thumb{transform:translateX(26px)!important}#app[dir=rtl] .switchContainer .VcSwitch.with-icon.is-active[data-v-13c7166f] .v-input--switch__thumb{transform:translateX(-26px)!important}.switchContainer .VcSwitchIcon[data-v-13c7166f]{position:relative}.switchContainer .VcSwitchIconV[data-v-13c7166f]{left:30px;top:-47px;margin-bottom:-47px;fill:var(--v-secondary-base)}.switchContainer .VcSwitchIconX[data-v-13c7166f]{left:7.4px;top:-51px;margin-bottom:-51px;fill:var(--neutral-lighten-1)}.switchContainer.with-icon[data-v-13c7166f]{height:var(--size-value6)}",
|
|
@@ -3467,26 +3980,26 @@ const __vue_inject_styles__$i = function (inject) {
|
|
|
3467
3980
|
/* scoped */
|
|
3468
3981
|
|
|
3469
3982
|
|
|
3470
|
-
const __vue_scope_id__$
|
|
3983
|
+
const __vue_scope_id__$h = "data-v-13c7166f";
|
|
3471
3984
|
/* module identifier */
|
|
3472
3985
|
|
|
3473
|
-
const __vue_module_identifier__$
|
|
3986
|
+
const __vue_module_identifier__$h = undefined;
|
|
3474
3987
|
/* functional template */
|
|
3475
3988
|
|
|
3476
|
-
const __vue_is_functional_template__$
|
|
3989
|
+
const __vue_is_functional_template__$h = false;
|
|
3477
3990
|
/* style inject SSR */
|
|
3478
3991
|
|
|
3479
3992
|
/* style inject shadow dom */
|
|
3480
3993
|
|
|
3481
|
-
const __vue_component__$
|
|
3482
|
-
render: __vue_render__$
|
|
3483
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3484
|
-
}, __vue_inject_styles__$
|
|
3994
|
+
const __vue_component__$h = /*#__PURE__*/normalizeComponent({
|
|
3995
|
+
render: __vue_render__$h,
|
|
3996
|
+
staticRenderFns: __vue_staticRenderFns__$h
|
|
3997
|
+
}, __vue_inject_styles__$h, __vue_script__$h, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, createInjector, undefined, undefined);
|
|
3485
3998
|
|
|
3486
|
-
var script$
|
|
3999
|
+
var script$g = {
|
|
3487
4000
|
components: {
|
|
3488
|
-
VcIcon: __vue_component__$
|
|
3489
|
-
VcSwitch: __vue_component__$
|
|
4001
|
+
VcIcon: __vue_component__$H,
|
|
4002
|
+
VcSwitch: __vue_component__$h,
|
|
3490
4003
|
VContainer: VContainer
|
|
3491
4004
|
},
|
|
3492
4005
|
name: 'VcListEntity',
|
|
@@ -3511,10 +4024,10 @@ var script$h = {
|
|
|
3511
4024
|
};
|
|
3512
4025
|
|
|
3513
4026
|
/* script */
|
|
3514
|
-
const __vue_script__$
|
|
4027
|
+
const __vue_script__$g = script$g;
|
|
3515
4028
|
/* template */
|
|
3516
4029
|
|
|
3517
|
-
var __vue_render__$
|
|
4030
|
+
var __vue_render__$g = function () {
|
|
3518
4031
|
var _vm = this;
|
|
3519
4032
|
|
|
3520
4033
|
var _h = _vm.$createElement;
|
|
@@ -3560,10 +4073,10 @@ var __vue_render__$h = function () {
|
|
|
3560
4073
|
})], 1)])])], 1);
|
|
3561
4074
|
};
|
|
3562
4075
|
|
|
3563
|
-
var __vue_staticRenderFns__$
|
|
4076
|
+
var __vue_staticRenderFns__$g = [];
|
|
3564
4077
|
/* style */
|
|
3565
4078
|
|
|
3566
|
-
const __vue_inject_styles__$
|
|
4079
|
+
const __vue_inject_styles__$g = function (inject) {
|
|
3567
4080
|
if (!inject) return;
|
|
3568
4081
|
inject("data-v-03298204_0", {
|
|
3569
4082
|
source: ".listEntity .sl-title{font-size:var(--font-size-x-small);line-height:var(--size-value4);font-weight:var(--font-weight-medium2);margin:0 8px}.listEntity .sl-row{min-width:100%}",
|
|
@@ -3574,26 +4087,27 @@ const __vue_inject_styles__$h = function (inject) {
|
|
|
3574
4087
|
/* scoped */
|
|
3575
4088
|
|
|
3576
4089
|
|
|
3577
|
-
const __vue_scope_id__$
|
|
4090
|
+
const __vue_scope_id__$g = undefined;
|
|
3578
4091
|
/* module identifier */
|
|
3579
4092
|
|
|
3580
|
-
const __vue_module_identifier__$
|
|
4093
|
+
const __vue_module_identifier__$g = undefined;
|
|
3581
4094
|
/* functional template */
|
|
3582
4095
|
|
|
3583
|
-
const __vue_is_functional_template__$
|
|
4096
|
+
const __vue_is_functional_template__$g = false;
|
|
3584
4097
|
/* style inject SSR */
|
|
3585
4098
|
|
|
3586
4099
|
/* style inject shadow dom */
|
|
3587
4100
|
|
|
3588
|
-
const __vue_component__$
|
|
3589
|
-
render: __vue_render__$
|
|
3590
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3591
|
-
}, __vue_inject_styles__$
|
|
4101
|
+
const __vue_component__$g = /*#__PURE__*/normalizeComponent({
|
|
4102
|
+
render: __vue_render__$g,
|
|
4103
|
+
staticRenderFns: __vue_staticRenderFns__$g
|
|
4104
|
+
}, __vue_inject_styles__$g, __vue_script__$g, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, createInjector, undefined, undefined);
|
|
3592
4105
|
|
|
3593
|
-
var script$
|
|
4106
|
+
var script$f = {
|
|
3594
4107
|
components: {
|
|
3595
|
-
|
|
3596
|
-
|
|
4108
|
+
VcImage: __vue_component__$y,
|
|
4109
|
+
VcIcon: __vue_component__$H,
|
|
4110
|
+
VcSwitch: __vue_component__$h,
|
|
3597
4111
|
VContainer: VContainer
|
|
3598
4112
|
},
|
|
3599
4113
|
name: 'VcExpansionCard',
|
|
@@ -3628,10 +4142,10 @@ var script$g = {
|
|
|
3628
4142
|
};
|
|
3629
4143
|
|
|
3630
4144
|
/* script */
|
|
3631
|
-
const __vue_script__$
|
|
4145
|
+
const __vue_script__$f = script$f;
|
|
3632
4146
|
/* template */
|
|
3633
4147
|
|
|
3634
|
-
var __vue_render__$
|
|
4148
|
+
var __vue_render__$f = function () {
|
|
3635
4149
|
var _vm = this;
|
|
3636
4150
|
|
|
3637
4151
|
var _h = _vm.$createElement;
|
|
@@ -3652,28 +4166,22 @@ var __vue_render__$g = function () {
|
|
|
3652
4166
|
"fluid": ""
|
|
3653
4167
|
}
|
|
3654
4168
|
}, [_c('div', {
|
|
3655
|
-
staticClass: "d-flex flex-wrap justify-space-between align-center"
|
|
3656
|
-
staticStyle: {
|
|
3657
|
-
"min-width": "100%"
|
|
3658
|
-
}
|
|
4169
|
+
staticClass: "expansionCardTitle d-flex flex-wrap justify-space-between align-center"
|
|
3659
4170
|
}, [_c('div', {
|
|
3660
|
-
staticClass: "justify-start d-flex align-center"
|
|
3661
|
-
|
|
3662
|
-
"min-width": "92px"
|
|
3663
|
-
}
|
|
3664
|
-
}, [_c('img', {
|
|
4171
|
+
staticClass: "logo-area justify-start d-flex align-center"
|
|
4172
|
+
}, [_c('VcImage', {
|
|
3665
4173
|
staticClass: "VcLogoImage",
|
|
3666
4174
|
attrs: {
|
|
3667
|
-
"
|
|
4175
|
+
"image": _vm.fromLogo
|
|
3668
4176
|
}
|
|
3669
4177
|
}), _vm._v(" "), _c('VcIcon', {
|
|
3670
4178
|
attrs: {
|
|
3671
4179
|
"size": "12"
|
|
3672
4180
|
}
|
|
3673
|
-
}, [_vm._v("$chevron_left")]), _vm._v(" "), _c('
|
|
4181
|
+
}, [_vm._v("$chevron_left")]), _vm._v(" "), _c('VcImage', {
|
|
3674
4182
|
staticClass: "VcLogoImage",
|
|
3675
4183
|
attrs: {
|
|
3676
|
-
"
|
|
4184
|
+
"image": _vm.toLogo
|
|
3677
4185
|
}
|
|
3678
4186
|
})], 1), _vm._v(" "), _c('div', {
|
|
3679
4187
|
staticClass: "d-flex justify-end",
|
|
@@ -3710,13 +4218,17 @@ var __vue_render__$g = function () {
|
|
|
3710
4218
|
})])]), _vm._v(" "), _vm.value ? _vm._t("content") : _vm._e()], 2)], 1);
|
|
3711
4219
|
};
|
|
3712
4220
|
|
|
3713
|
-
var __vue_staticRenderFns__$
|
|
4221
|
+
var __vue_staticRenderFns__$f = [];
|
|
3714
4222
|
/* style */
|
|
3715
4223
|
|
|
3716
|
-
const __vue_inject_styles__$
|
|
4224
|
+
const __vue_inject_styles__$f = function (inject) {
|
|
3717
4225
|
if (!inject) return;
|
|
3718
|
-
inject("data-v-
|
|
3719
|
-
source: ".expansionCard{border-radius:6px;border:1px solid;border-color:var(--gray-darken-1)!important;margin:var(--size-value5) 0}.expansionCard.is-active{border-color:var(--v-secondary-base)!important}.expansionCard .ec-title{font-size:var(--font-size-small2);line-height:var(--size-value6);margin:var(--size-value3) 0}.expansionCard .
|
|
4226
|
+
inject("data-v-0528d794_0", {
|
|
4227
|
+
source: ".expansionCard[data-v-0528d794]{border-radius:6px;border:1px solid;border-color:var(--gray-darken-1)!important;margin:var(--size-value5) 0}.expansionCard.is-active[data-v-0528d794]{border-color:var(--v-secondary-base)!important}.expansionCard .ec-title[data-v-0528d794]{font-size:var(--font-size-small2);line-height:var(--size-value6);margin:var(--size-value3) 0}.expansionCard .VcLogoImage[data-v-0528d794]{width:var(--size-value7);height:var(--size-value7);margin:0 6px;border:1px solid var(--gray-lighten-1);box-sizing:border-box;border-radius:6px}.expansionCard .ec-text.full-width[data-v-0528d794]{width:100%}.expansionCard .ec-text.order-1[data-v-0528d794]{flex-grow:1}.expansionCardTitle[data-v-0528d794]{min-width:100%}.logo-area[data-v-0528d794]{min-width:92px}",
|
|
4228
|
+
map: undefined,
|
|
4229
|
+
media: undefined
|
|
4230
|
+
}), inject("data-v-0528d794_1", {
|
|
4231
|
+
source: ".expansionCard .vc-chevron-left{fill:var(--gray-darken-1)!important}",
|
|
3720
4232
|
map: undefined,
|
|
3721
4233
|
media: undefined
|
|
3722
4234
|
});
|
|
@@ -3724,21 +4236,21 @@ const __vue_inject_styles__$g = function (inject) {
|
|
|
3724
4236
|
/* scoped */
|
|
3725
4237
|
|
|
3726
4238
|
|
|
3727
|
-
const __vue_scope_id__$
|
|
4239
|
+
const __vue_scope_id__$f = "data-v-0528d794";
|
|
3728
4240
|
/* module identifier */
|
|
3729
4241
|
|
|
3730
|
-
const __vue_module_identifier__$
|
|
4242
|
+
const __vue_module_identifier__$f = undefined;
|
|
3731
4243
|
/* functional template */
|
|
3732
4244
|
|
|
3733
|
-
const __vue_is_functional_template__$
|
|
4245
|
+
const __vue_is_functional_template__$f = false;
|
|
3734
4246
|
/* style inject SSR */
|
|
3735
4247
|
|
|
3736
4248
|
/* style inject shadow dom */
|
|
3737
4249
|
|
|
3738
|
-
const __vue_component__$
|
|
3739
|
-
render: __vue_render__$
|
|
3740
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3741
|
-
}, __vue_inject_styles__$
|
|
4250
|
+
const __vue_component__$f = /*#__PURE__*/normalizeComponent({
|
|
4251
|
+
render: __vue_render__$f,
|
|
4252
|
+
staticRenderFns: __vue_staticRenderFns__$f
|
|
4253
|
+
}, __vue_inject_styles__$f, __vue_script__$f, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
|
|
3742
4254
|
|
|
3743
4255
|
//
|
|
3744
4256
|
//
|
|
@@ -3759,7 +4271,7 @@ const __vue_component__$g = /*#__PURE__*/normalizeComponent({
|
|
|
3759
4271
|
//
|
|
3760
4272
|
//
|
|
3761
4273
|
//
|
|
3762
|
-
var script$
|
|
4274
|
+
var script$e = {
|
|
3763
4275
|
components: {
|
|
3764
4276
|
VTextField: VTextField
|
|
3765
4277
|
},
|
|
@@ -3807,10 +4319,10 @@ var script$f = {
|
|
|
3807
4319
|
};
|
|
3808
4320
|
|
|
3809
4321
|
/* script */
|
|
3810
|
-
const __vue_script__$
|
|
4322
|
+
const __vue_script__$e = script$e;
|
|
3811
4323
|
/* template */
|
|
3812
4324
|
|
|
3813
|
-
var __vue_render__$
|
|
4325
|
+
var __vue_render__$e = function () {
|
|
3814
4326
|
var _vm = this;
|
|
3815
4327
|
|
|
3816
4328
|
var _h = _vm.$createElement;
|
|
@@ -3842,10 +4354,10 @@ var __vue_render__$f = function () {
|
|
|
3842
4354
|
});
|
|
3843
4355
|
};
|
|
3844
4356
|
|
|
3845
|
-
var __vue_staticRenderFns__$
|
|
4357
|
+
var __vue_staticRenderFns__$e = [];
|
|
3846
4358
|
/* style */
|
|
3847
4359
|
|
|
3848
|
-
const __vue_inject_styles__$
|
|
4360
|
+
const __vue_inject_styles__$e = function (inject) {
|
|
3849
4361
|
if (!inject) return;
|
|
3850
4362
|
inject("data-v-027a8ee5_0", {
|
|
3851
4363
|
source: ".VcTextInput.v-text-field[data-v-027a8ee5]{font-family:var(--primary-font-family)}.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot{padding:0 var(--size-value3);height:var(--size-value13);background:#fff;border:1px solid var(--gray-lighten-1);box-sizing:border-box;border-radius:6px}.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot label{font-size:var(--font-size-small2);line-height:var(--size-value5);color:var(--gray-darken-3);font-weight:var(--font-weight-medium)}.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot input{font-weight:var(--font-weight-medium2);font-size:var(--font-size-small2);line-height:var(--size-value5);color:var(--gray-darken-5)}.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:after,.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:before{display:none}.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:hover{border-color:var(--gray-darken-3)}.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:active,.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:focus,.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:focus-within{border:1px solid var(--v-secondary-base);box-shadow:0 0 0 3px var(--v-secondary-lighten1)}.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:active input,.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:focus input,.VcTextInput.v-text-field[data-v-027a8ee5] .v-input__slot:focus-within input{color:var(--gray-darken-3)}.VcTextInput.v-text-field[data-v-027a8ee5].error--text .v-input__slot{border-color:var(--red);color:unset;box-shadow:unset;font-size:var(--font-size-xx-small);line-height:var(--size-value4)}.VcTextInput.v-text-field[data-v-027a8ee5].v-input--is-focused label,.VcTextInput.v-text-field[data-v-027a8ee5].v-input--is-label-active label{font-size:var(--font-size-small);line-height:1.17;letter-spacing:-.3px;color:var(--gray-darken-4)!important;transform:translateY(-100%) scale(.85);top:var(--size-value2)}.VcTextInput.v-text-field[data-v-027a8ee5].v-input--is-focused .v-text-field__slot,.VcTextInput.v-text-field[data-v-027a8ee5].v-input--is-label-active .v-text-field__slot{margin-bottom:-14px}.VcTextInput.v-text-field[data-v-027a8ee5].v-input--is-disabled .v-input__slot{background:var(--gray-lighten-3);border:1px solid var(--gray-lighten-1)}.VcTextInput.v-text-field[data-v-027a8ee5].v-input--is-disabled .v-input__slot input,.VcTextInput.v-text-field[data-v-027a8ee5].v-input--is-disabled .v-input__slot label{color:var(--gray-darken-2)}.VcTextInput.v-text-field[data-v-027a8ee5]:not(.v-input--is-label-active):not(.v-input--is-focused) input{padding:var(--size-value2) 0}.VcTextInput.v-text-field[data-v-027a8ee5] .v-messages__message{line-height:var(--size-value4)}",
|
|
@@ -3856,21 +4368,21 @@ const __vue_inject_styles__$f = function (inject) {
|
|
|
3856
4368
|
/* scoped */
|
|
3857
4369
|
|
|
3858
4370
|
|
|
3859
|
-
const __vue_scope_id__$
|
|
4371
|
+
const __vue_scope_id__$e = "data-v-027a8ee5";
|
|
3860
4372
|
/* module identifier */
|
|
3861
4373
|
|
|
3862
|
-
const __vue_module_identifier__$
|
|
4374
|
+
const __vue_module_identifier__$e = undefined;
|
|
3863
4375
|
/* functional template */
|
|
3864
4376
|
|
|
3865
|
-
const __vue_is_functional_template__$
|
|
4377
|
+
const __vue_is_functional_template__$e = false;
|
|
3866
4378
|
/* style inject SSR */
|
|
3867
4379
|
|
|
3868
4380
|
/* style inject shadow dom */
|
|
3869
4381
|
|
|
3870
|
-
const __vue_component__$
|
|
3871
|
-
render: __vue_render__$
|
|
3872
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3873
|
-
}, __vue_inject_styles__$
|
|
4382
|
+
const __vue_component__$e = /*#__PURE__*/normalizeComponent({
|
|
4383
|
+
render: __vue_render__$e,
|
|
4384
|
+
staticRenderFns: __vue_staticRenderFns__$e
|
|
4385
|
+
}, __vue_inject_styles__$e, __vue_script__$e, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, createInjector, undefined, undefined);
|
|
3874
4386
|
|
|
3875
4387
|
//
|
|
3876
4388
|
//
|
|
@@ -3888,7 +4400,7 @@ const __vue_component__$f = /*#__PURE__*/normalizeComponent({
|
|
|
3888
4400
|
//
|
|
3889
4401
|
//
|
|
3890
4402
|
//
|
|
3891
|
-
var script$
|
|
4403
|
+
var script$d = {
|
|
3892
4404
|
components: {
|
|
3893
4405
|
VTextarea: VTextarea
|
|
3894
4406
|
},
|
|
@@ -3931,10 +4443,10 @@ var script$e = {
|
|
|
3931
4443
|
};
|
|
3932
4444
|
|
|
3933
4445
|
/* script */
|
|
3934
|
-
const __vue_script__$
|
|
4446
|
+
const __vue_script__$d = script$d;
|
|
3935
4447
|
/* template */
|
|
3936
4448
|
|
|
3937
|
-
var __vue_render__$
|
|
4449
|
+
var __vue_render__$d = function () {
|
|
3938
4450
|
var _vm = this;
|
|
3939
4451
|
|
|
3940
4452
|
var _h = _vm.$createElement;
|
|
@@ -3964,10 +4476,10 @@ var __vue_render__$e = function () {
|
|
|
3964
4476
|
});
|
|
3965
4477
|
};
|
|
3966
4478
|
|
|
3967
|
-
var __vue_staticRenderFns__$
|
|
4479
|
+
var __vue_staticRenderFns__$d = [];
|
|
3968
4480
|
/* style */
|
|
3969
4481
|
|
|
3970
|
-
const __vue_inject_styles__$
|
|
4482
|
+
const __vue_inject_styles__$d = function (inject) {
|
|
3971
4483
|
if (!inject) return;
|
|
3972
4484
|
inject("data-v-021f98ca_0", {
|
|
3973
4485
|
source: "[data-v-021f98ca].VcTextArea.v-text-field .v-text-field__slot:first-child{margin-inline-start:12px;margin-top:3px}[data-v-021f98ca].VcTextArea.v-text-field.v-input--is-focused label,[data-v-021f98ca].VcTextArea.v-text-field.v-input--is-label-active label{font-size:12px;color:rgba(0,0,0,.62)!important;transform:translateY(-18px) scale(.85)}[data-v-021f98ca].VcTextArea.v-text-field.v-input--is-focused .v-input__slot{border-color:var(--v-secondary-base);box-shadow:0 0 0 3px var(--v-secondary-lighten1);transition:box-shadow .1s!important}[data-v-021f98ca].VcTextArea.v-text-field:not(.v-text-field--outlined) .v-text-field__slot{transition:margin-bottom .1s}[data-v-021f98ca].VcTextArea.v-text-field:not(.v-text-field--outlined).v-input--is-focused label,[data-v-021f98ca].VcTextArea.v-text-field:not(.v-text-field--outlined).v-input--is-label-active label{font-size:12px;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.17;letter-spacing:-.3px;color:rgba(0,0,0,.62)!important;transform:translateY(-100%) scale(.85);top:24px}[data-v-021f98ca].VcTextArea.v-text-field .v-input__slot{border-radius:6px;background-color:#fff!important;position:relative!important;border:solid 1px rgba(0,0,0,.12);transition:border-color .1s!important}[data-v-021f98ca].VcTextArea.v-text-field .v-input__slot:hover:not(.v-input--is-focused.v-input__slot):not(.error--text.v-input__slot){border-color:#757575}[data-v-021f98ca].VcTextArea.v-text-field .v-input__slot:after,[data-v-021f98ca].VcTextArea.v-text-field .v-input__slot:before{display:none}[data-v-021f98ca].VcTextArea.v-text-field textarea{font-size:15px!important;font-weight:500;margin-top:0;line-height:1.5;margin-top:20px}[data-v-021f98ca].VcTextArea.v-text-field .v-text-field__prefix{color:rgba(0,0,0,.54)!important}[data-v-021f98ca].VcTextArea.v-text-field.error--text .v-input__slot{border:1px solid var(--v-danger-base);box-shadow:none}[data-v-021f98ca].VcTextArea.v-text-field.v-input--is-disabled .v-input__slot{background-color:rgba(0,0,0,.03)!important}",
|
|
@@ -3978,26 +4490,26 @@ const __vue_inject_styles__$e = function (inject) {
|
|
|
3978
4490
|
/* scoped */
|
|
3979
4491
|
|
|
3980
4492
|
|
|
3981
|
-
const __vue_scope_id__$
|
|
4493
|
+
const __vue_scope_id__$d = "data-v-021f98ca";
|
|
3982
4494
|
/* module identifier */
|
|
3983
4495
|
|
|
3984
|
-
const __vue_module_identifier__$
|
|
4496
|
+
const __vue_module_identifier__$d = undefined;
|
|
3985
4497
|
/* functional template */
|
|
3986
4498
|
|
|
3987
|
-
const __vue_is_functional_template__$
|
|
4499
|
+
const __vue_is_functional_template__$d = false;
|
|
3988
4500
|
/* style inject SSR */
|
|
3989
4501
|
|
|
3990
4502
|
/* style inject shadow dom */
|
|
3991
4503
|
|
|
3992
|
-
const __vue_component__$
|
|
3993
|
-
render: __vue_render__$
|
|
3994
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3995
|
-
}, __vue_inject_styles__$
|
|
4504
|
+
const __vue_component__$d = /*#__PURE__*/normalizeComponent({
|
|
4505
|
+
render: __vue_render__$d,
|
|
4506
|
+
staticRenderFns: __vue_staticRenderFns__$d
|
|
4507
|
+
}, __vue_inject_styles__$d, __vue_script__$d, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, createInjector, undefined, undefined);
|
|
3996
4508
|
|
|
3997
|
-
var script$
|
|
4509
|
+
var script$c = {
|
|
3998
4510
|
name: 'VcToast',
|
|
3999
4511
|
components: {
|
|
4000
|
-
VcAlert: __vue_component__$
|
|
4512
|
+
VcAlert: __vue_component__$w,
|
|
4001
4513
|
VSnackbar: VSnackbar
|
|
4002
4514
|
},
|
|
4003
4515
|
props: {
|
|
@@ -4018,10 +4530,10 @@ var script$d = {
|
|
|
4018
4530
|
};
|
|
4019
4531
|
|
|
4020
4532
|
/* script */
|
|
4021
|
-
const __vue_script__$
|
|
4533
|
+
const __vue_script__$c = script$c;
|
|
4022
4534
|
/* template */
|
|
4023
4535
|
|
|
4024
|
-
var __vue_render__$
|
|
4536
|
+
var __vue_render__$c = function () {
|
|
4025
4537
|
var _vm = this;
|
|
4026
4538
|
|
|
4027
4539
|
var _h = _vm.$createElement;
|
|
@@ -4043,10 +4555,10 @@ var __vue_render__$d = function () {
|
|
|
4043
4555
|
}, 'VcAlert', _vm.$attrs, false))], 1);
|
|
4044
4556
|
};
|
|
4045
4557
|
|
|
4046
|
-
var __vue_staticRenderFns__$
|
|
4558
|
+
var __vue_staticRenderFns__$c = [];
|
|
4047
4559
|
/* style */
|
|
4048
4560
|
|
|
4049
|
-
const __vue_inject_styles__$
|
|
4561
|
+
const __vue_inject_styles__$c = function (inject) {
|
|
4050
4562
|
if (!inject) return;
|
|
4051
4563
|
inject("data-v-2d3e5bbe_0", {
|
|
4052
4564
|
source: "[data-v-2d3e5bbe] .v-snack__action{display:none}[data-v-2d3e5bbe] .v-snack__wrapper.theme--dark{background-color:unset}[data-v-2d3e5bbe] .v-alert{margin-bottom:0}[data-v-2d3e5bbe] .v-sheet.v-snack__wrapper:not(.v-sheet--outlined){box-shadow:none}",
|
|
@@ -4057,21 +4569,21 @@ const __vue_inject_styles__$d = function (inject) {
|
|
|
4057
4569
|
/* scoped */
|
|
4058
4570
|
|
|
4059
4571
|
|
|
4060
|
-
const __vue_scope_id__$
|
|
4572
|
+
const __vue_scope_id__$c = "data-v-2d3e5bbe";
|
|
4061
4573
|
/* module identifier */
|
|
4062
4574
|
|
|
4063
|
-
const __vue_module_identifier__$
|
|
4575
|
+
const __vue_module_identifier__$c = undefined;
|
|
4064
4576
|
/* functional template */
|
|
4065
4577
|
|
|
4066
|
-
const __vue_is_functional_template__$
|
|
4578
|
+
const __vue_is_functional_template__$c = false;
|
|
4067
4579
|
/* style inject SSR */
|
|
4068
4580
|
|
|
4069
4581
|
/* style inject shadow dom */
|
|
4070
4582
|
|
|
4071
|
-
const __vue_component__$
|
|
4072
|
-
render: __vue_render__$
|
|
4073
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
4074
|
-
}, __vue_inject_styles__$
|
|
4583
|
+
const __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
4584
|
+
render: __vue_render__$c,
|
|
4585
|
+
staticRenderFns: __vue_staticRenderFns__$c
|
|
4586
|
+
}, __vue_inject_styles__$c, __vue_script__$c, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
|
|
4075
4587
|
|
|
4076
4588
|
//
|
|
4077
4589
|
//
|
|
@@ -4085,7 +4597,7 @@ const __vue_component__$d = /*#__PURE__*/normalizeComponent({
|
|
|
4085
4597
|
//
|
|
4086
4598
|
//
|
|
4087
4599
|
//
|
|
4088
|
-
var script$
|
|
4600
|
+
var script$b = {
|
|
4089
4601
|
components: {
|
|
4090
4602
|
VCard: VCard
|
|
4091
4603
|
},
|
|
@@ -4109,10 +4621,10 @@ var script$c = {
|
|
|
4109
4621
|
};
|
|
4110
4622
|
|
|
4111
4623
|
/* script */
|
|
4112
|
-
const __vue_script__$
|
|
4624
|
+
const __vue_script__$b = script$b;
|
|
4113
4625
|
/* template */
|
|
4114
4626
|
|
|
4115
|
-
var __vue_render__$
|
|
4627
|
+
var __vue_render__$b = function () {
|
|
4116
4628
|
var _vm = this;
|
|
4117
4629
|
|
|
4118
4630
|
var _h = _vm.$createElement;
|
|
@@ -4146,165 +4658,13 @@ var __vue_render__$c = function () {
|
|
|
4146
4658
|
}) : _vm._e(), _vm._v(" "), _vm._t("default")], 2);
|
|
4147
4659
|
};
|
|
4148
4660
|
|
|
4149
|
-
var __vue_staticRenderFns__$c = [];
|
|
4150
|
-
/* style */
|
|
4151
|
-
|
|
4152
|
-
const __vue_inject_styles__$c = function (inject) {
|
|
4153
|
-
if (!inject) return;
|
|
4154
|
-
inject("data-v-11425092_0", {
|
|
4155
|
-
source: ".VcCard[data-v-11425092]{position:relative;padding:16px 24px;border:1px solid var(--gray-lighten-1);box-sizing:border-box;box-shadow:none;overflow:hidden;transition:box-shadow .4s}.VcCard.elevation[data-v-11425092]{border:0;box-shadow:var(--shadow-2)}.VcCard.elevation[data-v-11425092]:hover{box-shadow:var(--shadow-5)}.VcCard.dash[data-v-11425092]{border-top:0}.VcCard__dash[data-v-11425092]{position:absolute;top:0;left:-5px;width:110%;border:0;height:5px}",
|
|
4156
|
-
map: undefined,
|
|
4157
|
-
media: undefined
|
|
4158
|
-
});
|
|
4159
|
-
};
|
|
4160
|
-
/* scoped */
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
const __vue_scope_id__$c = "data-v-11425092";
|
|
4164
|
-
/* module identifier */
|
|
4165
|
-
|
|
4166
|
-
const __vue_module_identifier__$c = undefined;
|
|
4167
|
-
/* functional template */
|
|
4168
|
-
|
|
4169
|
-
const __vue_is_functional_template__$c = false;
|
|
4170
|
-
/* style inject SSR */
|
|
4171
|
-
|
|
4172
|
-
/* style inject shadow dom */
|
|
4173
|
-
|
|
4174
|
-
const __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
4175
|
-
render: __vue_render__$c,
|
|
4176
|
-
staticRenderFns: __vue_staticRenderFns__$c
|
|
4177
|
-
}, __vue_inject_styles__$c, __vue_script__$c, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
|
|
4178
|
-
|
|
4179
|
-
var script$b = {
|
|
4180
|
-
name: 'VcCheckbox',
|
|
4181
|
-
components: {
|
|
4182
|
-
VcIcon: __vue_component__$E,
|
|
4183
|
-
VcAvatar: __vue_component__$r,
|
|
4184
|
-
VcTooltip: __vue_component__$t,
|
|
4185
|
-
VCheckbox: VCheckbox
|
|
4186
|
-
},
|
|
4187
|
-
computed: {
|
|
4188
|
-
selected: {
|
|
4189
|
-
get() {
|
|
4190
|
-
return this.checked;
|
|
4191
|
-
},
|
|
4192
|
-
|
|
4193
|
-
set(val) {
|
|
4194
|
-
this.$emit('change', val);
|
|
4195
|
-
}
|
|
4196
|
-
|
|
4197
|
-
}
|
|
4198
|
-
},
|
|
4199
|
-
props: {
|
|
4200
|
-
label: {
|
|
4201
|
-
type: String,
|
|
4202
|
-
required: false
|
|
4203
|
-
},
|
|
4204
|
-
tooltip: {
|
|
4205
|
-
type: String,
|
|
4206
|
-
required: false
|
|
4207
|
-
},
|
|
4208
|
-
avatar: {
|
|
4209
|
-
type: Object,
|
|
4210
|
-
required: false
|
|
4211
|
-
},
|
|
4212
|
-
disabled: {
|
|
4213
|
-
type: Boolean,
|
|
4214
|
-
default: false
|
|
4215
|
-
},
|
|
4216
|
-
indeterminate: {
|
|
4217
|
-
type: Boolean,
|
|
4218
|
-
default: false
|
|
4219
|
-
},
|
|
4220
|
-
checked: {
|
|
4221
|
-
type: [Boolean, Array],
|
|
4222
|
-
default: false
|
|
4223
|
-
},
|
|
4224
|
-
value: {
|
|
4225
|
-
type: [String, Boolean, Number],
|
|
4226
|
-
default: false
|
|
4227
|
-
},
|
|
4228
|
-
dataQa: {
|
|
4229
|
-
type: String,
|
|
4230
|
-
default: 'VcCheckbox'
|
|
4231
|
-
}
|
|
4232
|
-
}
|
|
4233
|
-
};
|
|
4234
|
-
|
|
4235
|
-
/* script */
|
|
4236
|
-
const __vue_script__$b = script$b;
|
|
4237
|
-
/* template */
|
|
4238
|
-
|
|
4239
|
-
var __vue_render__$b = function () {
|
|
4240
|
-
var _vm = this;
|
|
4241
|
-
|
|
4242
|
-
var _h = _vm.$createElement;
|
|
4243
|
-
|
|
4244
|
-
var _c = _vm._self._c || _h;
|
|
4245
|
-
|
|
4246
|
-
return _c('v-checkbox', {
|
|
4247
|
-
staticClass: "vc-checkbox d-flex align-center",
|
|
4248
|
-
attrs: {
|
|
4249
|
-
"hide-details": "true",
|
|
4250
|
-
"disabled": _vm.disabled,
|
|
4251
|
-
"ripple": false,
|
|
4252
|
-
"on-icon": "check",
|
|
4253
|
-
"off-icon": "",
|
|
4254
|
-
"indeterminate-icon": "$indeterminate",
|
|
4255
|
-
"indeterminate": _vm.indeterminate,
|
|
4256
|
-
"color": "white",
|
|
4257
|
-
"label": _vm.label,
|
|
4258
|
-
"value": _vm.value,
|
|
4259
|
-
"data-qa": _vm.dataQa
|
|
4260
|
-
},
|
|
4261
|
-
scopedSlots: _vm._u([{
|
|
4262
|
-
key: "label",
|
|
4263
|
-
fn: function () {
|
|
4264
|
-
return [_c('div', {
|
|
4265
|
-
staticClass: "d-flex align-center"
|
|
4266
|
-
}, [_vm.avatar && _vm.label ? _c('VcAvatar', {
|
|
4267
|
-
staticClass: "ms-1 me-3",
|
|
4268
|
-
attrs: {
|
|
4269
|
-
"image-path": _vm.avatar.path,
|
|
4270
|
-
"name": _vm.avatar.name,
|
|
4271
|
-
"color-id": _vm.avatar.colorId,
|
|
4272
|
-
"size": "x-sm"
|
|
4273
|
-
}
|
|
4274
|
-
}) : _vm._e(), _vm._v(" "), _vm.label ? _c('span', {
|
|
4275
|
-
staticClass: "checkbox-label"
|
|
4276
|
-
}, [_vm._v(_vm._s(_vm.label))]) : _vm._e(), _vm._v(" "), _vm.tooltip && _vm.label ? _c('VcTooltip', {
|
|
4277
|
-
attrs: {
|
|
4278
|
-
"dark": "",
|
|
4279
|
-
"content": _vm.tooltip,
|
|
4280
|
-
"bottom": ""
|
|
4281
|
-
}
|
|
4282
|
-
}, [_c('VcIcon', {
|
|
4283
|
-
staticClass: "tooltip-icon ms-2",
|
|
4284
|
-
attrs: {
|
|
4285
|
-
"size": "16"
|
|
4286
|
-
}
|
|
4287
|
-
}, [_vm._v("$info")])], 1) : _vm._e()], 1)];
|
|
4288
|
-
},
|
|
4289
|
-
proxy: true
|
|
4290
|
-
}]),
|
|
4291
|
-
model: {
|
|
4292
|
-
value: _vm.selected,
|
|
4293
|
-
callback: function ($$v) {
|
|
4294
|
-
_vm.selected = $$v;
|
|
4295
|
-
},
|
|
4296
|
-
expression: "selected"
|
|
4297
|
-
}
|
|
4298
|
-
});
|
|
4299
|
-
};
|
|
4300
|
-
|
|
4301
4661
|
var __vue_staticRenderFns__$b = [];
|
|
4302
4662
|
/* style */
|
|
4303
4663
|
|
|
4304
4664
|
const __vue_inject_styles__$b = function (inject) {
|
|
4305
4665
|
if (!inject) return;
|
|
4306
|
-
inject("data-v-
|
|
4307
|
-
source: ".
|
|
4666
|
+
inject("data-v-11425092_0", {
|
|
4667
|
+
source: ".VcCard[data-v-11425092]{position:relative;padding:16px 24px;border:1px solid var(--gray-lighten-1);box-sizing:border-box;box-shadow:none;overflow:hidden;transition:box-shadow .4s}.VcCard.elevation[data-v-11425092]{border:0;box-shadow:var(--shadow-2)}.VcCard.elevation[data-v-11425092]:hover{box-shadow:var(--shadow-5)}.VcCard.dash[data-v-11425092]{border-top:0}.VcCard__dash[data-v-11425092]{position:absolute;top:0;left:-5px;width:110%;border:0;height:5px}",
|
|
4308
4668
|
map: undefined,
|
|
4309
4669
|
media: undefined
|
|
4310
4670
|
});
|
|
@@ -4312,7 +4672,7 @@ const __vue_inject_styles__$b = function (inject) {
|
|
|
4312
4672
|
/* scoped */
|
|
4313
4673
|
|
|
4314
4674
|
|
|
4315
|
-
const __vue_scope_id__$b = "data-v-
|
|
4675
|
+
const __vue_scope_id__$b = "data-v-11425092";
|
|
4316
4676
|
/* module identifier */
|
|
4317
4677
|
|
|
4318
4678
|
const __vue_module_identifier__$b = undefined;
|
|
@@ -4331,10 +4691,10 @@ const __vue_component__$b = /*#__PURE__*/normalizeComponent({
|
|
|
4331
4691
|
var script$a = {
|
|
4332
4692
|
name: "FilterPanel",
|
|
4333
4693
|
components: {
|
|
4334
|
-
VcLayout: __vue_component__$
|
|
4335
|
-
VcIcon: __vue_component__$
|
|
4336
|
-
VcButton: __vue_component__$
|
|
4337
|
-
VcLoader: __vue_component__$
|
|
4694
|
+
VcLayout: __vue_component__$E,
|
|
4695
|
+
VcIcon: __vue_component__$H,
|
|
4696
|
+
VcButton: __vue_component__$G,
|
|
4697
|
+
VcLoader: __vue_component__$i
|
|
4338
4698
|
},
|
|
4339
4699
|
props: {
|
|
4340
4700
|
title: {
|
|
@@ -4592,9 +4952,9 @@ const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
|
|
|
4592
4952
|
var script$7 = {
|
|
4593
4953
|
name: "ListItem",
|
|
4594
4954
|
components: {
|
|
4595
|
-
VcLayout: __vue_component__$
|
|
4596
|
-
VcCheckbox: __vue_component__$
|
|
4597
|
-
VcActions: __vue_component__$
|
|
4955
|
+
VcLayout: __vue_component__$E,
|
|
4956
|
+
VcCheckbox: __vue_component__$m,
|
|
4957
|
+
VcActions: __vue_component__$q
|
|
4598
4958
|
},
|
|
4599
4959
|
props: {
|
|
4600
4960
|
showSelect: {
|
|
@@ -4705,7 +5065,7 @@ const __vue_component__$7 = /*#__PURE__*/normalizeComponent({
|
|
|
4705
5065
|
var script$6 = {
|
|
4706
5066
|
name: "VcGroupHeader",
|
|
4707
5067
|
components: {
|
|
4708
|
-
VcLayout: __vue_component__$
|
|
5068
|
+
VcLayout: __vue_component__$E
|
|
4709
5069
|
},
|
|
4710
5070
|
props: {
|
|
4711
5071
|
title: {
|
|
@@ -4827,9 +5187,10 @@ const __vue_component__$5 = /*#__PURE__*/normalizeComponent({
|
|
|
4827
5187
|
var script$4 = {
|
|
4828
5188
|
name: 'VcEmptyState',
|
|
4829
5189
|
components: {
|
|
5190
|
+
VcImage: __vue_component__$y,
|
|
4830
5191
|
VcSvg: __vue_component__$5,
|
|
4831
|
-
VcButton: __vue_component__$
|
|
4832
|
-
VcLayout: __vue_component__$
|
|
5192
|
+
VcButton: __vue_component__$G,
|
|
5193
|
+
VcLayout: __vue_component__$E,
|
|
4833
5194
|
VcLink: __vue_component__$8
|
|
4834
5195
|
},
|
|
4835
5196
|
props: {
|
|
@@ -4838,13 +5199,17 @@ var script$4 = {
|
|
|
4838
5199
|
default: 'md',
|
|
4839
5200
|
validator: prop => ['sm', 'md', 'lg'].includes(prop)
|
|
4840
5201
|
},
|
|
5202
|
+
image: {
|
|
5203
|
+
type: [String, Object],
|
|
5204
|
+
comment: 'This is the standard way to pass the image, the icon and svg props are for backward compatibility'
|
|
5205
|
+
},
|
|
4841
5206
|
icon: {
|
|
4842
|
-
type: String,
|
|
4843
|
-
comment: 'url to some image'
|
|
5207
|
+
type: [String, Object],
|
|
5208
|
+
comment: 'url to some image, deprecated'
|
|
4844
5209
|
},
|
|
4845
5210
|
svg: {
|
|
4846
|
-
type: String,
|
|
4847
|
-
comment: 'using the svgImage design system object'
|
|
5211
|
+
type: [String, Object],
|
|
5212
|
+
comment: 'using the svgImage design system object, deprecated'
|
|
4848
5213
|
},
|
|
4849
5214
|
title: {
|
|
4850
5215
|
type: String,
|
|
@@ -4870,6 +5235,13 @@ var script$4 = {
|
|
|
4870
5235
|
type: String,
|
|
4871
5236
|
default: 'VcEmptyState'
|
|
4872
5237
|
}
|
|
5238
|
+
},
|
|
5239
|
+
computed: {
|
|
5240
|
+
currentImage() {
|
|
5241
|
+
// for backward compatibility
|
|
5242
|
+
return this.image || this.icon || this.svg;
|
|
5243
|
+
}
|
|
5244
|
+
|
|
4873
5245
|
}
|
|
4874
5246
|
};
|
|
4875
5247
|
|
|
@@ -4895,15 +5267,10 @@ var __vue_render__$4 = function () {
|
|
|
4895
5267
|
"column": "",
|
|
4896
5268
|
"align-content-center": ""
|
|
4897
5269
|
}
|
|
4898
|
-
}, [_vm.
|
|
4899
|
-
staticClass: "VcEmptyStateImage",
|
|
4900
|
-
attrs: {
|
|
4901
|
-
"src": _vm.icon
|
|
4902
|
-
}
|
|
4903
|
-
}) : _vm._e(), _vm._v(" "), _vm.svg ? _c('VcSvg', {
|
|
5270
|
+
}, [_vm.currentImage ? _c('VcImage', {
|
|
4904
5271
|
staticClass: "VcEmptyStateImage",
|
|
4905
5272
|
attrs: {
|
|
4906
|
-
"
|
|
5273
|
+
"image": _vm.currentImage
|
|
4907
5274
|
}
|
|
4908
5275
|
}) : _vm._e(), _vm._v(" "), _c('div', {
|
|
4909
5276
|
staticClass: "VcEmptyStateTitle"
|
|
@@ -4930,7 +5297,7 @@ var __vue_render__$4 = function () {
|
|
|
4930
5297
|
return _vm.$emit('click');
|
|
4931
5298
|
}
|
|
4932
5299
|
}
|
|
4933
|
-
}, [_vm._v(_vm._s(_vm.button))]) : _vm._e(), _vm._v(" "), _vm.linkLabel && _vm.linkUrl ? _c('VcLink', {
|
|
5300
|
+
}, [_vm._v("\n " + _vm._s(_vm.button) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.linkLabel && _vm.linkUrl ? _c('VcLink', {
|
|
4934
5301
|
attrs: {
|
|
4935
5302
|
"url": _vm.linkUrl,
|
|
4936
5303
|
"label": _vm.linkLabel
|
|
@@ -4944,8 +5311,8 @@ var __vue_staticRenderFns__$4 = [];
|
|
|
4944
5311
|
|
|
4945
5312
|
const __vue_inject_styles__$4 = function (inject) {
|
|
4946
5313
|
if (!inject) return;
|
|
4947
|
-
inject("data-v-
|
|
4948
|
-
source: ".VcEmptyState[data-v-
|
|
5314
|
+
inject("data-v-5412fef9_0", {
|
|
5315
|
+
source: ".VcEmptyState[data-v-5412fef9],.VcEmptyStateSubtitle[data-v-5412fef9]{text-align:center;line-height:var(--size-value6)}.VcEmptyState[data-v-5412fef9]{text-align:center}.VcEmptyState .VcEmptyStateImage[data-v-5412fef9]{margin-bottom:var(--size-value4);height:160px}.VcEmptyState .VcEmptyStateTitle[data-v-5412fef9]{font-weight:var(--font-weight-xl);line-height:22px;padding-bottom:var(--size-value1);font-size:var(--font-size-small2)}.VcEmptyState .VcEmptyStateSubtitle[data-v-5412fef9]{font-size:var(--font-size-x-small)}.VcEmptyState .VcEmptyStateButton[data-v-5412fef9]{margin-top:var(--size-value4)}.sm .VcEmptyStateImage[data-v-5412fef9]{height:48px;margin-bottom:var(--size-value8)}.sm .VcEmptyStateImage[data-v-5412fef9] svg{width:48px}.lg .VcEmptyStateImage[data-v-5412fef9]{height:280px;margin-bottom:var(--size-value8)}.lg .VcEmptyStateImage[data-v-5412fef9] svg{width:280px}.lg .VcEmptyStateTitle[data-v-5412fef9]{font-weight:var(--font-weight-large);line-height:22px;padding-bottom:var(--size-value2);font-size:var(--font-size-medium1)}",
|
|
4949
5316
|
map: undefined,
|
|
4950
5317
|
media: undefined
|
|
4951
5318
|
});
|
|
@@ -4953,7 +5320,7 @@ const __vue_inject_styles__$4 = function (inject) {
|
|
|
4953
5320
|
/* scoped */
|
|
4954
5321
|
|
|
4955
5322
|
|
|
4956
|
-
const __vue_scope_id__$4 = "data-v-
|
|
5323
|
+
const __vue_scope_id__$4 = "data-v-5412fef9";
|
|
4957
5324
|
/* module identifier */
|
|
4958
5325
|
|
|
4959
5326
|
const __vue_module_identifier__$4 = undefined;
|
|
@@ -4972,7 +5339,8 @@ const __vue_component__$4 = /*#__PURE__*/normalizeComponent({
|
|
|
4972
5339
|
var script$3 = {
|
|
4973
5340
|
name: "VcBanner",
|
|
4974
5341
|
components: {
|
|
4975
|
-
|
|
5342
|
+
VcImage: __vue_component__$y,
|
|
5343
|
+
VcButton: __vue_component__$G
|
|
4976
5344
|
},
|
|
4977
5345
|
props: {
|
|
4978
5346
|
dataQa: {
|
|
@@ -4980,7 +5348,8 @@ var script$3 = {
|
|
|
4980
5348
|
default: 'VcBanner'
|
|
4981
5349
|
},
|
|
4982
5350
|
image: {
|
|
4983
|
-
type: String
|
|
5351
|
+
type: [String, Object],
|
|
5352
|
+
required: true
|
|
4984
5353
|
},
|
|
4985
5354
|
backgroundColor: {
|
|
4986
5355
|
type: String,
|
|
@@ -5017,12 +5386,12 @@ var __vue_render__$3 = function () {
|
|
|
5017
5386
|
attrs: {
|
|
5018
5387
|
"data-qa": _vm.dataQa
|
|
5019
5388
|
}
|
|
5020
|
-
}, [
|
|
5389
|
+
}, [_c('VcImage', {
|
|
5021
5390
|
staticClass: "d-none d-md-block",
|
|
5022
5391
|
attrs: {
|
|
5023
|
-
"
|
|
5392
|
+
"image": _vm.image
|
|
5024
5393
|
}
|
|
5025
|
-
})
|
|
5394
|
+
}), _vm._v(" "), _c('div', {
|
|
5026
5395
|
staticClass: "text-container px-md-8 flex-grow-1"
|
|
5027
5396
|
}, [_c('div', {
|
|
5028
5397
|
staticClass: "banner-title pb-2 pb-md-0"
|
|
@@ -5039,7 +5408,7 @@ var __vue_render__$3 = function () {
|
|
|
5039
5408
|
return _vm.$emit('onAction');
|
|
5040
5409
|
}
|
|
5041
5410
|
}
|
|
5042
|
-
}, [_vm._v(_vm._s(_vm.buttonLabel))]) : _vm._e()], 1);
|
|
5411
|
+
}, [_vm._v("\n " + _vm._s(_vm.buttonLabel) + "\n ")]) : _vm._e()], 1);
|
|
5043
5412
|
};
|
|
5044
5413
|
|
|
5045
5414
|
var __vue_staticRenderFns__$3 = [];
|
|
@@ -5047,8 +5416,8 @@ var __vue_staticRenderFns__$3 = [];
|
|
|
5047
5416
|
|
|
5048
5417
|
const __vue_inject_styles__$3 = function (inject) {
|
|
5049
5418
|
if (!inject) return;
|
|
5050
|
-
inject("data-v-
|
|
5051
|
-
source: ".VcBanner[data-v-
|
|
5419
|
+
inject("data-v-464e58dc_0", {
|
|
5420
|
+
source: ".VcBanner[data-v-464e58dc]{height:128px;box-sizing:border-box;box-shadow:var(--shadow-10)}@media screen and (min-width:960px){.VcBanner[data-v-464e58dc]{box-shadow:unset;border-radius:var(--size-value3);border:1px solid var(--neutral-lighten-2)}}.VcBanner .text-container[data-v-464e58dc]{color:var(--gray-darken-5)}.VcBanner .text-container .banner-title[data-v-464e58dc]{font-weight:var(--font-weight-large2);font-size:var(--font-size-small3);line-height:22px}@media screen and (min-width:960px){.VcBanner .text-container .banner-title[data-v-464e58dc]{font-size:var(--font-size-medium2);line-height:var(--size-value8)}}.VcBanner .text-container .banner-subtitle[data-v-464e58dc]{font-size:var(--font-size-small2);line-height:var(--size-value5);font-weight:var(--font-weight-medium)}",
|
|
5052
5421
|
map: undefined,
|
|
5053
5422
|
media: undefined
|
|
5054
5423
|
});
|
|
@@ -5056,7 +5425,7 @@ const __vue_inject_styles__$3 = function (inject) {
|
|
|
5056
5425
|
/* scoped */
|
|
5057
5426
|
|
|
5058
5427
|
|
|
5059
|
-
const __vue_scope_id__$3 = "data-v-
|
|
5428
|
+
const __vue_scope_id__$3 = "data-v-464e58dc";
|
|
5060
5429
|
/* module identifier */
|
|
5061
5430
|
|
|
5062
5431
|
const __vue_module_identifier__$3 = undefined;
|
|
@@ -5075,8 +5444,8 @@ const __vue_component__$3 = /*#__PURE__*/normalizeComponent({
|
|
|
5075
5444
|
var script$2 = {
|
|
5076
5445
|
name: "VcWizardCtaContainer",
|
|
5077
5446
|
components: {
|
|
5078
|
-
VcButton: __vue_component__$
|
|
5079
|
-
VcLayout: __vue_component__$
|
|
5447
|
+
VcButton: __vue_component__$G,
|
|
5448
|
+
VcLayout: __vue_component__$E
|
|
5080
5449
|
},
|
|
5081
5450
|
props: {
|
|
5082
5451
|
isBackDisplayed: {
|
|
@@ -5201,8 +5570,8 @@ var script$1 = {
|
|
|
5201
5570
|
}
|
|
5202
5571
|
},
|
|
5203
5572
|
components: {
|
|
5204
|
-
VcLayout: __vue_component__$
|
|
5205
|
-
VcLoader: __vue_component__$
|
|
5573
|
+
VcLayout: __vue_component__$E,
|
|
5574
|
+
VcLoader: __vue_component__$i,
|
|
5206
5575
|
VStepperContent: VStepperContent,
|
|
5207
5576
|
VStepperItems: VStepperItems,
|
|
5208
5577
|
VStepper: VStepper
|
|
@@ -5395,9 +5764,9 @@ const __vue_component__$1 = /*#__PURE__*/normalizeComponent({
|
|
|
5395
5764
|
var script = {
|
|
5396
5765
|
name: "VcWizard",
|
|
5397
5766
|
components: {
|
|
5398
|
-
VcStepsBar: __vue_component__$
|
|
5767
|
+
VcStepsBar: __vue_component__$p,
|
|
5399
5768
|
VcStepperContent: __vue_component__$1,
|
|
5400
|
-
VcMobileWizardProgress: __vue_component__$
|
|
5769
|
+
VcMobileWizardProgress: __vue_component__$n,
|
|
5401
5770
|
VcWizardCtaContainer: __vue_component__$2,
|
|
5402
5771
|
VLayout: VLayout
|
|
5403
5772
|
},
|
|
@@ -5585,35 +5954,37 @@ const __vue_component__ = /*#__PURE__*/normalizeComponent({
|
|
|
5585
5954
|
|
|
5586
5955
|
var components$1 = /*#__PURE__*/Object.freeze({
|
|
5587
5956
|
__proto__: null,
|
|
5588
|
-
VcConfirmModal: __vue_component__$
|
|
5589
|
-
VcInputModal: __vue_component__$
|
|
5590
|
-
VcNoticeModal: __vue_component__$
|
|
5591
|
-
VcModalFooter: __vue_component__$
|
|
5592
|
-
VcModalHeader: __vue_component__$
|
|
5593
|
-
VcAlert: __vue_component__$
|
|
5594
|
-
VcTooltip: __vue_component__$
|
|
5595
|
-
VcIconWithTooltip: __vue_component__$
|
|
5596
|
-
VcBottomActions: __vue_component__$
|
|
5597
|
-
VcActionList: __vue_component__$
|
|
5598
|
-
VcActions: __vue_component__$
|
|
5599
|
-
VcStepsBar: __vue_component__$
|
|
5600
|
-
VcMobileWizardProgress: __vue_component__$
|
|
5601
|
-
VcProgressCircular: __vue_component__$
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5957
|
+
VcConfirmModal: __vue_component__$B,
|
|
5958
|
+
VcInputModal: __vue_component__$z,
|
|
5959
|
+
VcNoticeModal: __vue_component__$x,
|
|
5960
|
+
VcModalFooter: __vue_component__$D,
|
|
5961
|
+
VcModalHeader: __vue_component__$C,
|
|
5962
|
+
VcAlert: __vue_component__$w,
|
|
5963
|
+
VcTooltip: __vue_component__$v,
|
|
5964
|
+
VcIconWithTooltip: __vue_component__$u,
|
|
5965
|
+
VcBottomActions: __vue_component__$s,
|
|
5966
|
+
VcActionList: __vue_component__$r,
|
|
5967
|
+
VcActions: __vue_component__$q,
|
|
5968
|
+
VcStepsBar: __vue_component__$p,
|
|
5969
|
+
VcMobileWizardProgress: __vue_component__$n,
|
|
5970
|
+
VcProgressCircular: __vue_component__$o,
|
|
5971
|
+
VcChecklistItem: __vue_component__$l,
|
|
5972
|
+
VcListbox: __vue_component__$k,
|
|
5973
|
+
VcButton: __vue_component__$G,
|
|
5974
|
+
VcButtonGroup: __vue_component__$j,
|
|
5975
|
+
VcForm: __vue_component__$A,
|
|
5976
|
+
VcIcon: __vue_component__$H,
|
|
5977
|
+
VcLayout: __vue_component__$E,
|
|
5978
|
+
VcLoader: __vue_component__$i,
|
|
5979
|
+
VcSwitch: __vue_component__$h,
|
|
5980
|
+
VcListEntity: __vue_component__$g,
|
|
5981
|
+
VcExpansionCard: __vue_component__$f,
|
|
5982
|
+
VcTextField: __vue_component__$e,
|
|
5983
|
+
VcAvatar: __vue_component__$t,
|
|
5984
|
+
VcTextArea: __vue_component__$d,
|
|
5985
|
+
VcToast: __vue_component__$c,
|
|
5986
|
+
VcCard: __vue_component__$b,
|
|
5987
|
+
VcCheckbox: __vue_component__$m,
|
|
5617
5988
|
VcFilterPanel: __vue_component__$a,
|
|
5618
5989
|
VcFocusArea: __vue_component__$9,
|
|
5619
5990
|
VcLink: __vue_component__$8,
|
|
@@ -5623,7 +5994,8 @@ var components$1 = /*#__PURE__*/Object.freeze({
|
|
|
5623
5994
|
VcSvg: __vue_component__$5,
|
|
5624
5995
|
VcBanner: __vue_component__$3,
|
|
5625
5996
|
VcWizardCtaContainer: __vue_component__$2,
|
|
5626
|
-
VcWizard: __vue_component__
|
|
5997
|
+
VcWizard: __vue_component__,
|
|
5998
|
+
VcImage: __vue_component__$y
|
|
5627
5999
|
});
|
|
5628
6000
|
|
|
5629
6001
|
// Import vue components
|
|
@@ -5637,35 +6009,37 @@ const install = function installdesignSystem(Vue) {
|
|
|
5637
6009
|
var components = /*#__PURE__*/Object.freeze({
|
|
5638
6010
|
__proto__: null,
|
|
5639
6011
|
'default': install,
|
|
5640
|
-
VcConfirmModal: __vue_component__$
|
|
5641
|
-
VcInputModal: __vue_component__$
|
|
5642
|
-
VcNoticeModal: __vue_component__$
|
|
5643
|
-
VcModalFooter: __vue_component__$
|
|
5644
|
-
VcModalHeader: __vue_component__$
|
|
5645
|
-
VcAlert: __vue_component__$
|
|
5646
|
-
VcTooltip: __vue_component__$
|
|
5647
|
-
VcIconWithTooltip: __vue_component__$
|
|
5648
|
-
VcBottomActions: __vue_component__$
|
|
5649
|
-
VcActionList: __vue_component__$
|
|
5650
|
-
VcActions: __vue_component__$
|
|
5651
|
-
VcStepsBar: __vue_component__$
|
|
5652
|
-
VcMobileWizardProgress: __vue_component__$
|
|
5653
|
-
VcProgressCircular: __vue_component__$
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
6012
|
+
VcConfirmModal: __vue_component__$B,
|
|
6013
|
+
VcInputModal: __vue_component__$z,
|
|
6014
|
+
VcNoticeModal: __vue_component__$x,
|
|
6015
|
+
VcModalFooter: __vue_component__$D,
|
|
6016
|
+
VcModalHeader: __vue_component__$C,
|
|
6017
|
+
VcAlert: __vue_component__$w,
|
|
6018
|
+
VcTooltip: __vue_component__$v,
|
|
6019
|
+
VcIconWithTooltip: __vue_component__$u,
|
|
6020
|
+
VcBottomActions: __vue_component__$s,
|
|
6021
|
+
VcActionList: __vue_component__$r,
|
|
6022
|
+
VcActions: __vue_component__$q,
|
|
6023
|
+
VcStepsBar: __vue_component__$p,
|
|
6024
|
+
VcMobileWizardProgress: __vue_component__$n,
|
|
6025
|
+
VcProgressCircular: __vue_component__$o,
|
|
6026
|
+
VcChecklistItem: __vue_component__$l,
|
|
6027
|
+
VcListbox: __vue_component__$k,
|
|
6028
|
+
VcButton: __vue_component__$G,
|
|
6029
|
+
VcButtonGroup: __vue_component__$j,
|
|
6030
|
+
VcForm: __vue_component__$A,
|
|
6031
|
+
VcIcon: __vue_component__$H,
|
|
6032
|
+
VcLayout: __vue_component__$E,
|
|
6033
|
+
VcLoader: __vue_component__$i,
|
|
6034
|
+
VcSwitch: __vue_component__$h,
|
|
6035
|
+
VcListEntity: __vue_component__$g,
|
|
6036
|
+
VcExpansionCard: __vue_component__$f,
|
|
6037
|
+
VcTextField: __vue_component__$e,
|
|
6038
|
+
VcAvatar: __vue_component__$t,
|
|
6039
|
+
VcTextArea: __vue_component__$d,
|
|
6040
|
+
VcToast: __vue_component__$c,
|
|
6041
|
+
VcCard: __vue_component__$b,
|
|
6042
|
+
VcCheckbox: __vue_component__$m,
|
|
5669
6043
|
VcFilterPanel: __vue_component__$a,
|
|
5670
6044
|
VcFocusArea: __vue_component__$9,
|
|
5671
6045
|
VcLink: __vue_component__$8,
|
|
@@ -5675,7 +6049,8 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
5675
6049
|
VcSvg: __vue_component__$5,
|
|
5676
6050
|
VcBanner: __vue_component__$3,
|
|
5677
6051
|
VcWizardCtaContainer: __vue_component__$2,
|
|
5678
|
-
VcWizard: __vue_component__
|
|
6052
|
+
VcWizard: __vue_component__,
|
|
6053
|
+
VcImage: __vue_component__$y
|
|
5679
6054
|
});
|
|
5680
6055
|
|
|
5681
6056
|
// iife/cjs usage extends esm default export - so import it all
|