@vcita/design-system 0.0.12-prod.beta.27 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -21
- package/dist/@vcita/design-system.esm.js +519 -676
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +449 -608
- package/init/DesignSystem.js +77 -0
- package/init/VcSvg/VcSvg.stories.js +25 -0
- package/{src/components → init}/VcSvg/VcSvg.vue +0 -0
- package/init/vuetify.config.js +132 -0
- package/package.json +6 -5
- package/src/assets/logo.png +0 -0
- package/src/assets/logo.svg +1 -0
- package/src/components/VcActionList/VcActionList.spec.js +57 -0
- package/src/components/VcActionList/VcActionList.stories.js +56 -0
- package/src/components/VcActionList/VcActionList.vue +1 -1
- package/src/components/VcActions/VcActions.spec.js +153 -0
- package/src/components/VcActions/VcActions.stories.js +103 -0
- package/src/components/VcActions/VcActions.vue +14 -6
- package/src/components/VcAlert/VcAlert.spec.js +162 -0
- package/src/components/VcAlert/VcAlert.stories.js +105 -0
- package/src/components/VcAlert/VcAlert.vue +7 -8
- package/src/components/VcAutoComplete/VcAutoComplete.spec.js +67 -0
- package/src/components/VcAutoComplete/VcAutoComplete.stories.js +99 -0
- package/src/components/VcAvatar/VcAvatar.spec.js +110 -0
- package/src/components/VcAvatar/VcAvatar.stories.js +101 -0
- package/src/components/VcBottomActions/VcBottomActions.spec.js +64 -0
- package/src/components/VcBottomActions/VcBottomActions.stories.js +103 -0
- package/src/components/VcBottomActions/VcBottomActions.vue +4 -4
- package/src/components/VcButton/VcButton.spec.js +181 -0
- package/src/components/VcButton/VcButton.stories.js +123 -0
- package/src/components/VcButton/VcButton.stories.mdx.old +40 -0
- package/src/components/VcButtonGroup/VcButtonGroup.spec.js +209 -0
- package/src/components/VcButtonGroup/VcButtonGroup.stories.js +109 -0
- package/src/components/VcButtonGroup/VcButtonGroup.vue +5 -1
- package/src/components/VcCard/VcCard.spec.js +38 -0
- package/src/components/VcCard/VcCard.stories.js +28 -0
- package/src/components/VcCard/VcCard.vue +46 -0
- package/src/components/VcExpansionPanels/VcExpansionPanels.stories.js +36 -0
- package/src/components/VcForm/VcForm.spec.js +38 -0
- package/src/components/VcForm/VcForm.stories.js +44 -0
- package/src/components/VcHourInput/VcHourInput.stories.js +36 -0
- package/src/components/VcIcon/VcIcon.spec.js +38 -0
- package/src/components/VcIcon/VcIcon.stories.js +53 -0
- package/src/components/VcIconWithTooltip/VcIconWithTooltip.spec.js +156 -0
- package/src/components/VcIconWithTooltip/VcIconWithTooltip.stories.js +77 -0
- package/src/components/VcIconWithTooltip/VcIconWithTooltip.vue +7 -6
- package/src/components/VcLayout/VcLayout.spec.js +38 -0
- package/src/components/VcLayout/VcLayout.stories.js +26 -0
- package/src/components/VcLoader/VcLoader.spec.js +38 -0
- package/src/components/VcLoader/VcLoader.stories.js +30 -0
- package/src/components/VcLoader/VcLoader.vue +1 -1
- package/src/components/VcMenu/VcMenu.spec.js +38 -0
- package/src/components/VcMenu/VcMenu.stories.js +45 -0
- package/src/components/VcSwitch/VcSwitch.spec.js +38 -0
- package/src/components/VcSwitch/VcSwitch.stories.js +87 -0
- package/src/components/VcSwitch/VcSwitch.vue +14 -1
- package/src/components/VcTextArea/VcTextArea.spec.js +41 -0
- package/src/components/VcTextArea/VcTextArea.stories.js +144 -0
- package/src/components/VcTextArea/VcTextArea.vue +21 -10
- package/src/components/VcTextField/VcTextField.spec.js +170 -0
- package/src/components/VcTextField/VcTextField.stories.js +65 -0
- package/src/components/VcTextField/VcTextField.vue +4 -3
- package/src/components/VcToast/VcToast.spec.js +75 -0
- package/src/components/VcToast/VcToast.stories.js +80 -0
- package/src/components/VcToast/VcToast.vue +11 -15
- package/src/components/VcTooltip/VcTooltip.spec.js +58 -0
- package/src/components/VcTooltip/VcTooltip.stories.js +163 -0
- package/src/components/VcTooltip/VcTooltip.vue +4 -4
- package/src/components/index.js +26 -0
- package/src/components/modal/VcConfirmModal/VcConfirmModal.spec.js +48 -0
- package/src/components/modal/VcConfirmModal/VcConfirmModal.stories.js +142 -0
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.spec.js +49 -0
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.stories.js +53 -0
- package/src/components/modal/VcInputModal/VcInputModal.spec.js +79 -0
- package/src/components/modal/VcInputModal/VcInputModal.stories.js +188 -0
- package/src/components/modal/VcNoticeModal/VcNoticeModal.spec.js +54 -0
- package/src/components/modal/VcNoticeModal/VcNoticeModal.stories.js +136 -0
- package/src/components/modal/elements/VcModalContainer.spec.js +38 -0
- package/src/components/modal/elements/VcModalContainer.stories.js +49 -0
- package/src/components/modal/elements/VcModalFooter.spec.js +82 -0
- package/src/components/modal/elements/VcModalFooter.stories.js +47 -0
- package/src/components/modal/elements/VcModalHeader.spec.js +103 -0
- package/src/components/modal/elements/VcModalHeader.stories.js +91 -0
- package/src/components/modal/elements/VcModalWrapper.spec.js +38 -0
- package/src/components/modal/elements/VcModalWrapper.stories.js +34 -0
- package/src/entry.esm.js +16 -0
- package/src/entry.js +13 -0
- package/src/scss/_i18n-mixins.scss +174 -0
- package/src/scss/mixins.scss +7 -0
- package/src/stories/assets/HeaderImage.svg +9 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/rabbit.svg +17 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/stories/colors.stories.mdx +78 -0
- package/src/stories/welcome.stories.mdx +210 -0
- package/styles/variables.scss +65 -7
- package/utils/colorUtil.js +41 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var lib=require('vuetify/lib')
|
|
1
|
+
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var lib=require('vuetify/lib');function ownKeys(object, enumerableOnly) {
|
|
2
2
|
var keys = Object.keys(object);
|
|
3
3
|
|
|
4
4
|
if (Object.getOwnPropertySymbols) {
|
|
@@ -119,7 +119,7 @@ function _nonIterableRest() {
|
|
|
119
119
|
//
|
|
120
120
|
//
|
|
121
121
|
//
|
|
122
|
-
var script$
|
|
122
|
+
var script$p = {
|
|
123
123
|
components: {
|
|
124
124
|
VDialog: lib.VDialog
|
|
125
125
|
},
|
|
@@ -249,10 +249,10 @@ function renderStyles(styles) {
|
|
|
249
249
|
}
|
|
250
250
|
return css;
|
|
251
251
|
}/* script */
|
|
252
|
-
var __vue_script__$
|
|
252
|
+
var __vue_script__$p = script$p;
|
|
253
253
|
/* template */
|
|
254
254
|
|
|
255
|
-
var __vue_render__$
|
|
255
|
+
var __vue_render__$m = function __vue_render__() {
|
|
256
256
|
var _vm = this;
|
|
257
257
|
|
|
258
258
|
var _h = _vm.$createElement;
|
|
@@ -287,10 +287,10 @@ var __vue_render__$l = function __vue_render__() {
|
|
|
287
287
|
}, [_vm._t("default")], 2);
|
|
288
288
|
};
|
|
289
289
|
|
|
290
|
-
var __vue_staticRenderFns__$
|
|
290
|
+
var __vue_staticRenderFns__$m = [];
|
|
291
291
|
/* style */
|
|
292
292
|
|
|
293
|
-
var __vue_inject_styles__$
|
|
293
|
+
var __vue_inject_styles__$p = function __vue_inject_styles__(inject) {
|
|
294
294
|
if (!inject) return;
|
|
295
295
|
inject("data-v-f5aa52c8_0", {
|
|
296
296
|
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;left:var(--modal-desktop-offset)}#app[dir=rtl] .VcModalWrapper{left:auto;right:var(--modal-desktop-offset)}}",
|
|
@@ -301,19 +301,19 @@ var __vue_inject_styles__$o = function __vue_inject_styles__(inject) {
|
|
|
301
301
|
/* scoped */
|
|
302
302
|
|
|
303
303
|
|
|
304
|
-
var __vue_scope_id__$
|
|
304
|
+
var __vue_scope_id__$p = undefined;
|
|
305
305
|
/* module identifier */
|
|
306
306
|
|
|
307
|
-
var __vue_module_identifier__$
|
|
307
|
+
var __vue_module_identifier__$p = "data-v-f5aa52c8";
|
|
308
308
|
/* functional template */
|
|
309
309
|
|
|
310
|
-
var __vue_is_functional_template__$
|
|
310
|
+
var __vue_is_functional_template__$p = false;
|
|
311
311
|
/* style inject shadow dom */
|
|
312
312
|
|
|
313
|
-
var __vue_component__$
|
|
314
|
-
render: __vue_render__$
|
|
315
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
316
|
-
}, __vue_inject_styles__$
|
|
313
|
+
var __vue_component__$p = /*#__PURE__*/normalizeComponent({
|
|
314
|
+
render: __vue_render__$m,
|
|
315
|
+
staticRenderFns: __vue_staticRenderFns__$m
|
|
316
|
+
}, __vue_inject_styles__$p, __vue_script__$p, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, undefined, createInjectorSSR, undefined);var script$o = {
|
|
317
317
|
name: "VcIcon",
|
|
318
318
|
render: function render(createElement) {
|
|
319
319
|
var props = {
|
|
@@ -322,28 +322,28 @@ var __vue_component__$o = /*#__PURE__*/normalizeComponent({
|
|
|
322
322
|
return createElement('v-icon', props, this.$slots.default);
|
|
323
323
|
}
|
|
324
324
|
};/* script */
|
|
325
|
-
var __vue_script__$
|
|
325
|
+
var __vue_script__$o = script$o;
|
|
326
326
|
/* template */
|
|
327
327
|
|
|
328
328
|
/* style */
|
|
329
329
|
|
|
330
|
-
var __vue_inject_styles__$
|
|
330
|
+
var __vue_inject_styles__$o = undefined;
|
|
331
331
|
/* scoped */
|
|
332
332
|
|
|
333
|
-
var __vue_scope_id__$
|
|
333
|
+
var __vue_scope_id__$o = undefined;
|
|
334
334
|
/* module identifier */
|
|
335
335
|
|
|
336
|
-
var __vue_module_identifier__$
|
|
336
|
+
var __vue_module_identifier__$o = "data-v-674cb7d1";
|
|
337
337
|
/* functional template */
|
|
338
338
|
|
|
339
|
-
var __vue_is_functional_template__$
|
|
339
|
+
var __vue_is_functional_template__$o = undefined;
|
|
340
340
|
/* style inject */
|
|
341
341
|
|
|
342
342
|
/* style inject SSR */
|
|
343
343
|
|
|
344
344
|
/* style inject shadow dom */
|
|
345
345
|
|
|
346
|
-
var __vue_component__$
|
|
346
|
+
var __vue_component__$o = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$o, __vue_script__$o, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, undefined, undefined, undefined);//
|
|
347
347
|
//
|
|
348
348
|
//
|
|
349
349
|
//
|
|
@@ -368,7 +368,7 @@ var __vue_component__$n = /*#__PURE__*/normalizeComponent({}, __vue_inject_style
|
|
|
368
368
|
//
|
|
369
369
|
//
|
|
370
370
|
//
|
|
371
|
-
var script$
|
|
371
|
+
var script$n = {
|
|
372
372
|
components: {
|
|
373
373
|
VBtn: lib.VBtn
|
|
374
374
|
},
|
|
@@ -444,10 +444,10 @@ var script$m = {
|
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
446
|
};/* script */
|
|
447
|
-
var __vue_script__$
|
|
447
|
+
var __vue_script__$n = script$n;
|
|
448
448
|
/* template */
|
|
449
449
|
|
|
450
|
-
var __vue_render__$
|
|
450
|
+
var __vue_render__$l = function __vue_render__() {
|
|
451
451
|
var _vm = this;
|
|
452
452
|
|
|
453
453
|
var _h = _vm.$createElement;
|
|
@@ -482,10 +482,10 @@ var __vue_render__$k = function __vue_render__() {
|
|
|
482
482
|
}, [_vm._t("prepend"), _vm._v("\n " + _vm._s(_vm.label || _vm.$slots.default && _vm.$slots.default[0].text || '') + "\n "), _vm._t("append")], 2);
|
|
483
483
|
};
|
|
484
484
|
|
|
485
|
-
var __vue_staticRenderFns__$
|
|
485
|
+
var __vue_staticRenderFns__$l = [];
|
|
486
486
|
/* style */
|
|
487
487
|
|
|
488
|
-
var __vue_inject_styles__$
|
|
488
|
+
var __vue_inject_styles__$n = function __vue_inject_styles__(inject) {
|
|
489
489
|
if (!inject) return;
|
|
490
490
|
inject("data-v-28ad3b41_0", {
|
|
491
491
|
source: ".VcButton[data-v-28ad3b41]{letter-spacing:.003em}",
|
|
@@ -496,24 +496,24 @@ var __vue_inject_styles__$m = function __vue_inject_styles__(inject) {
|
|
|
496
496
|
/* scoped */
|
|
497
497
|
|
|
498
498
|
|
|
499
|
-
var __vue_scope_id__$
|
|
499
|
+
var __vue_scope_id__$n = "data-v-28ad3b41";
|
|
500
500
|
/* module identifier */
|
|
501
501
|
|
|
502
|
-
var __vue_module_identifier__$
|
|
502
|
+
var __vue_module_identifier__$n = "data-v-28ad3b41";
|
|
503
503
|
/* functional template */
|
|
504
504
|
|
|
505
|
-
var __vue_is_functional_template__$
|
|
505
|
+
var __vue_is_functional_template__$n = false;
|
|
506
506
|
/* style inject shadow dom */
|
|
507
507
|
|
|
508
|
-
var __vue_component__$
|
|
509
|
-
render: __vue_render__$
|
|
510
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
511
|
-
}, __vue_inject_styles__$
|
|
508
|
+
var __vue_component__$n = /*#__PURE__*/normalizeComponent({
|
|
509
|
+
render: __vue_render__$l,
|
|
510
|
+
staticRenderFns: __vue_staticRenderFns__$l
|
|
511
|
+
}, __vue_inject_styles__$n, __vue_script__$n, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, undefined, createInjectorSSR, undefined);var script$m = {
|
|
512
512
|
name: 'VcModalContainer',
|
|
513
513
|
components: {
|
|
514
|
-
VcButton: __vue_component__$
|
|
515
|
-
VcModalWrapper: __vue_component__$
|
|
516
|
-
VcIcon: __vue_component__$
|
|
514
|
+
VcButton: __vue_component__$n,
|
|
515
|
+
VcModalWrapper: __vue_component__$p,
|
|
516
|
+
VcIcon: __vue_component__$o,
|
|
517
517
|
VLayout: lib.VLayout
|
|
518
518
|
},
|
|
519
519
|
props: {
|
|
@@ -556,10 +556,10 @@ var __vue_component__$m = /*#__PURE__*/normalizeComponent({
|
|
|
556
556
|
}
|
|
557
557
|
}
|
|
558
558
|
};/* script */
|
|
559
|
-
var __vue_script__$
|
|
559
|
+
var __vue_script__$m = script$m;
|
|
560
560
|
/* template */
|
|
561
561
|
|
|
562
|
-
var __vue_render__$
|
|
562
|
+
var __vue_render__$k = function __vue_render__() {
|
|
563
563
|
var _vm = this;
|
|
564
564
|
|
|
565
565
|
var _h = _vm.$createElement;
|
|
@@ -631,10 +631,10 @@ var __vue_render__$j = function __vue_render__() {
|
|
|
631
631
|
}, [_vm._t("footer")], 2)])]], 2) : _vm._e();
|
|
632
632
|
};
|
|
633
633
|
|
|
634
|
-
var __vue_staticRenderFns__$
|
|
634
|
+
var __vue_staticRenderFns__$k = [];
|
|
635
635
|
/* style */
|
|
636
636
|
|
|
637
|
-
var __vue_inject_styles__$
|
|
637
|
+
var __vue_inject_styles__$m = function __vue_inject_styles__(inject) {
|
|
638
638
|
if (!inject) return;
|
|
639
639
|
inject("data-v-cc7876ca_0", {
|
|
640
640
|
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}",
|
|
@@ -645,19 +645,19 @@ var __vue_inject_styles__$l = function __vue_inject_styles__(inject) {
|
|
|
645
645
|
/* scoped */
|
|
646
646
|
|
|
647
647
|
|
|
648
|
-
var __vue_scope_id__$
|
|
648
|
+
var __vue_scope_id__$m = undefined;
|
|
649
649
|
/* module identifier */
|
|
650
650
|
|
|
651
|
-
var __vue_module_identifier__$
|
|
651
|
+
var __vue_module_identifier__$m = "data-v-cc7876ca";
|
|
652
652
|
/* functional template */
|
|
653
653
|
|
|
654
|
-
var __vue_is_functional_template__$
|
|
654
|
+
var __vue_is_functional_template__$m = false;
|
|
655
655
|
/* style inject shadow dom */
|
|
656
656
|
|
|
657
|
-
var __vue_component__$
|
|
658
|
-
render: __vue_render__$
|
|
659
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
660
|
-
}, __vue_inject_styles__$
|
|
657
|
+
var __vue_component__$m = /*#__PURE__*/normalizeComponent({
|
|
658
|
+
render: __vue_render__$k,
|
|
659
|
+
staticRenderFns: __vue_staticRenderFns__$k
|
|
660
|
+
}, __vue_inject_styles__$m, __vue_script__$m, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, undefined, createInjectorSSR, undefined);var script$l = {
|
|
661
661
|
name: "VcLayout",
|
|
662
662
|
render: function render(createElement) {
|
|
663
663
|
// `<v-layout><slot></slot></v-layout>`
|
|
@@ -667,32 +667,32 @@ var __vue_component__$l = /*#__PURE__*/normalizeComponent({
|
|
|
667
667
|
return createElement('v-layout', props, this.$slots.default);
|
|
668
668
|
}
|
|
669
669
|
};/* script */
|
|
670
|
-
var __vue_script__$
|
|
670
|
+
var __vue_script__$l = script$l;
|
|
671
671
|
/* template */
|
|
672
672
|
|
|
673
673
|
/* style */
|
|
674
674
|
|
|
675
|
-
var __vue_inject_styles__$
|
|
675
|
+
var __vue_inject_styles__$l = undefined;
|
|
676
676
|
/* scoped */
|
|
677
677
|
|
|
678
|
-
var __vue_scope_id__$
|
|
678
|
+
var __vue_scope_id__$l = "data-v-42241056";
|
|
679
679
|
/* module identifier */
|
|
680
680
|
|
|
681
|
-
var __vue_module_identifier__$
|
|
681
|
+
var __vue_module_identifier__$l = "data-v-42241056";
|
|
682
682
|
/* functional template */
|
|
683
683
|
|
|
684
|
-
var __vue_is_functional_template__$
|
|
684
|
+
var __vue_is_functional_template__$l = undefined;
|
|
685
685
|
/* style inject */
|
|
686
686
|
|
|
687
687
|
/* style inject SSR */
|
|
688
688
|
|
|
689
689
|
/* style inject shadow dom */
|
|
690
690
|
|
|
691
|
-
var __vue_component__$
|
|
691
|
+
var __vue_component__$l = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$l, __vue_script__$l, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, undefined, undefined, undefined);var script$k = {
|
|
692
692
|
name: "VcModalFooter",
|
|
693
693
|
components: {
|
|
694
|
-
VcLayout: __vue_component__$
|
|
695
|
-
VcButton: __vue_component__$
|
|
694
|
+
VcLayout: __vue_component__$l,
|
|
695
|
+
VcButton: __vue_component__$n
|
|
696
696
|
},
|
|
697
697
|
props: {
|
|
698
698
|
direction: {
|
|
@@ -723,10 +723,10 @@ var __vue_component__$k = /*#__PURE__*/normalizeComponent({}, __vue_inject_style
|
|
|
723
723
|
}
|
|
724
724
|
}
|
|
725
725
|
};/* script */
|
|
726
|
-
var __vue_script__$
|
|
726
|
+
var __vue_script__$k = script$k;
|
|
727
727
|
/* template */
|
|
728
728
|
|
|
729
|
-
var __vue_render__$
|
|
729
|
+
var __vue_render__$j = function __vue_render__() {
|
|
730
730
|
var _vm = this;
|
|
731
731
|
|
|
732
732
|
var _h = _vm.$createElement;
|
|
@@ -758,10 +758,10 @@ var __vue_render__$i = function __vue_render__() {
|
|
|
758
758
|
}), 1);
|
|
759
759
|
};
|
|
760
760
|
|
|
761
|
-
var __vue_staticRenderFns__$
|
|
761
|
+
var __vue_staticRenderFns__$j = [];
|
|
762
762
|
/* style */
|
|
763
763
|
|
|
764
|
-
var __vue_inject_styles__$
|
|
764
|
+
var __vue_inject_styles__$k = function __vue_inject_styles__(inject) {
|
|
765
765
|
if (!inject) return;
|
|
766
766
|
inject("data-v-c22ae66a_0", {
|
|
767
767
|
source: ".VcModalFooter.vertical .VcFooterButton[data-v-c22ae66a]{width:100%;margin-bottom:var(--size-value2)}.VcModalFooter.vertical .VcFooterButton[data-v-c22ae66a]:last-of-type{margin-bottom:0}@media screen and (min-width:960px){.VcModalFooter.vertical .VcFooterButton[data-v-c22ae66a]{width:auto}}.VcModalFooter.horizontal .VcFooterButton[data-v-c22ae66a]{flex-basis:0;flex-grow:1}.VcModalFooter.horizontal .VcFooterButton[data-v-c22ae66a]:first-of-type{margin-left:0}.VcModalFooter.horizontal .VcFooterButton[data-v-c22ae66a]:last-of-type{margin-right:0}@media screen and (min-width:960px){.VcModalFooter.horizontal .VcFooterButton[data-v-c22ae66a]{flex-basis:auto;flex-grow:0}}.VcModalFooter .VcFooterButton[data-v-c22ae66a]{margin-left:var(--size-value1);margin-right:var(--size-value1)}",
|
|
@@ -772,24 +772,24 @@ var __vue_inject_styles__$j = function __vue_inject_styles__(inject) {
|
|
|
772
772
|
/* scoped */
|
|
773
773
|
|
|
774
774
|
|
|
775
|
-
var __vue_scope_id__$
|
|
775
|
+
var __vue_scope_id__$k = "data-v-c22ae66a";
|
|
776
776
|
/* module identifier */
|
|
777
777
|
|
|
778
|
-
var __vue_module_identifier__$
|
|
778
|
+
var __vue_module_identifier__$k = "data-v-c22ae66a";
|
|
779
779
|
/* functional template */
|
|
780
780
|
|
|
781
|
-
var __vue_is_functional_template__$
|
|
781
|
+
var __vue_is_functional_template__$k = false;
|
|
782
782
|
/* style inject shadow dom */
|
|
783
783
|
|
|
784
|
-
var __vue_component__$
|
|
785
|
-
render: __vue_render__$
|
|
786
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
787
|
-
}, __vue_inject_styles__$
|
|
784
|
+
var __vue_component__$k = /*#__PURE__*/normalizeComponent({
|
|
785
|
+
render: __vue_render__$j,
|
|
786
|
+
staticRenderFns: __vue_staticRenderFns__$j
|
|
787
|
+
}, __vue_inject_styles__$k, __vue_script__$k, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, undefined, createInjectorSSR, undefined);var script$j = {
|
|
788
788
|
name: "VcModalHeader",
|
|
789
789
|
components: {
|
|
790
|
-
VcLayout: __vue_component__$
|
|
791
|
-
VcIcon: __vue_component__$
|
|
792
|
-
VcButton: __vue_component__$
|
|
790
|
+
VcLayout: __vue_component__$l,
|
|
791
|
+
VcIcon: __vue_component__$o,
|
|
792
|
+
VcButton: __vue_component__$n
|
|
793
793
|
},
|
|
794
794
|
props: {
|
|
795
795
|
topTitle: {
|
|
@@ -826,10 +826,10 @@ var __vue_component__$j = /*#__PURE__*/normalizeComponent({
|
|
|
826
826
|
}
|
|
827
827
|
}
|
|
828
828
|
};/* script */
|
|
829
|
-
var __vue_script__$
|
|
829
|
+
var __vue_script__$j = script$j;
|
|
830
830
|
/* template */
|
|
831
831
|
|
|
832
|
-
var __vue_render__$
|
|
832
|
+
var __vue_render__$i = function __vue_render__() {
|
|
833
833
|
var _vm = this;
|
|
834
834
|
|
|
835
835
|
var _h = _vm.$createElement;
|
|
@@ -902,10 +902,10 @@ var __vue_render__$h = function __vue_render__() {
|
|
|
902
902
|
}, [_vm._v(_vm._s(_vm.subtitle))]) : _vm._e()])], 1)], 2);
|
|
903
903
|
};
|
|
904
904
|
|
|
905
|
-
var __vue_staticRenderFns__$
|
|
905
|
+
var __vue_staticRenderFns__$i = [];
|
|
906
906
|
/* style */
|
|
907
907
|
|
|
908
|
-
var __vue_inject_styles__$
|
|
908
|
+
var __vue_inject_styles__$j = function __vue_inject_styles__(inject) {
|
|
909
909
|
if (!inject) return;
|
|
910
910
|
inject("data-v-407bef94_0", {
|
|
911
911
|
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)}}",
|
|
@@ -916,26 +916,26 @@ var __vue_inject_styles__$i = function __vue_inject_styles__(inject) {
|
|
|
916
916
|
/* scoped */
|
|
917
917
|
|
|
918
918
|
|
|
919
|
-
var __vue_scope_id__$
|
|
919
|
+
var __vue_scope_id__$j = "data-v-407bef94";
|
|
920
920
|
/* module identifier */
|
|
921
921
|
|
|
922
|
-
var __vue_module_identifier__$
|
|
922
|
+
var __vue_module_identifier__$j = "data-v-407bef94";
|
|
923
923
|
/* functional template */
|
|
924
924
|
|
|
925
|
-
var __vue_is_functional_template__$
|
|
925
|
+
var __vue_is_functional_template__$j = false;
|
|
926
926
|
/* style inject shadow dom */
|
|
927
927
|
|
|
928
|
-
var __vue_component__$
|
|
929
|
-
render: __vue_render__$
|
|
930
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
931
|
-
}, __vue_inject_styles__$
|
|
928
|
+
var __vue_component__$j = /*#__PURE__*/normalizeComponent({
|
|
929
|
+
render: __vue_render__$i,
|
|
930
|
+
staticRenderFns: __vue_staticRenderFns__$i
|
|
931
|
+
}, __vue_inject_styles__$j, __vue_script__$j, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, undefined, createInjectorSSR, undefined);var script$i = {
|
|
932
932
|
name: "VcConfirmModal",
|
|
933
933
|
components: {
|
|
934
|
-
VcModalHeader: __vue_component__$
|
|
935
|
-
VcLayout: __vue_component__$
|
|
936
|
-
VcModalFooter: __vue_component__$
|
|
937
|
-
VcIcon: __vue_component__$
|
|
938
|
-
VcModalContainer: __vue_component__$
|
|
934
|
+
VcModalHeader: __vue_component__$j,
|
|
935
|
+
VcLayout: __vue_component__$l,
|
|
936
|
+
VcModalFooter: __vue_component__$k,
|
|
937
|
+
VcIcon: __vue_component__$o,
|
|
938
|
+
VcModalContainer: __vue_component__$m
|
|
939
939
|
},
|
|
940
940
|
props: {
|
|
941
941
|
showDialog: {
|
|
@@ -976,10 +976,10 @@ var __vue_component__$i = /*#__PURE__*/normalizeComponent({
|
|
|
976
976
|
}
|
|
977
977
|
}
|
|
978
978
|
};/* script */
|
|
979
|
-
var __vue_script__$
|
|
979
|
+
var __vue_script__$i = script$i;
|
|
980
980
|
/* template */
|
|
981
981
|
|
|
982
|
-
var __vue_render__$
|
|
982
|
+
var __vue_render__$h = function __vue_render__() {
|
|
983
983
|
var _vm = this;
|
|
984
984
|
|
|
985
985
|
var _h = _vm.$createElement;
|
|
@@ -1060,29 +1060,29 @@ var __vue_render__$g = function __vue_render__() {
|
|
|
1060
1060
|
});
|
|
1061
1061
|
};
|
|
1062
1062
|
|
|
1063
|
-
var __vue_staticRenderFns__$
|
|
1063
|
+
var __vue_staticRenderFns__$h = [];
|
|
1064
1064
|
/* style */
|
|
1065
1065
|
|
|
1066
|
-
var __vue_inject_styles__$
|
|
1066
|
+
var __vue_inject_styles__$i = undefined;
|
|
1067
1067
|
/* scoped */
|
|
1068
1068
|
|
|
1069
|
-
var __vue_scope_id__$
|
|
1069
|
+
var __vue_scope_id__$i = "data-v-716e5a70";
|
|
1070
1070
|
/* module identifier */
|
|
1071
1071
|
|
|
1072
|
-
var __vue_module_identifier__$
|
|
1072
|
+
var __vue_module_identifier__$i = "data-v-716e5a70";
|
|
1073
1073
|
/* functional template */
|
|
1074
1074
|
|
|
1075
|
-
var __vue_is_functional_template__$
|
|
1075
|
+
var __vue_is_functional_template__$i = false;
|
|
1076
1076
|
/* style inject */
|
|
1077
1077
|
|
|
1078
1078
|
/* style inject SSR */
|
|
1079
1079
|
|
|
1080
1080
|
/* style inject shadow dom */
|
|
1081
1081
|
|
|
1082
|
-
var __vue_component__$
|
|
1083
|
-
render: __vue_render__$
|
|
1084
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1085
|
-
}, __vue_inject_styles__$
|
|
1082
|
+
var __vue_component__$i = /*#__PURE__*/normalizeComponent({
|
|
1083
|
+
render: __vue_render__$h,
|
|
1084
|
+
staticRenderFns: __vue_staticRenderFns__$h
|
|
1085
|
+
}, __vue_inject_styles__$i, __vue_script__$i, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, undefined, undefined, undefined);var script$h = {
|
|
1086
1086
|
name: "VcForm",
|
|
1087
1087
|
methods: {
|
|
1088
1088
|
validate: function validate() {
|
|
@@ -1099,36 +1099,36 @@ var __vue_component__$h = /*#__PURE__*/normalizeComponent({
|
|
|
1099
1099
|
return this.form;
|
|
1100
1100
|
}
|
|
1101
1101
|
};/* script */
|
|
1102
|
-
var __vue_script__$
|
|
1102
|
+
var __vue_script__$h = script$h;
|
|
1103
1103
|
/* template */
|
|
1104
1104
|
|
|
1105
1105
|
/* style */
|
|
1106
1106
|
|
|
1107
|
-
var __vue_inject_styles__$
|
|
1107
|
+
var __vue_inject_styles__$h = undefined;
|
|
1108
1108
|
/* scoped */
|
|
1109
1109
|
|
|
1110
|
-
var __vue_scope_id__$
|
|
1110
|
+
var __vue_scope_id__$h = "data-v-398cf17d";
|
|
1111
1111
|
/* module identifier */
|
|
1112
1112
|
|
|
1113
|
-
var __vue_module_identifier__$
|
|
1113
|
+
var __vue_module_identifier__$h = "data-v-398cf17d";
|
|
1114
1114
|
/* functional template */
|
|
1115
1115
|
|
|
1116
|
-
var __vue_is_functional_template__$
|
|
1116
|
+
var __vue_is_functional_template__$h = undefined;
|
|
1117
1117
|
/* style inject */
|
|
1118
1118
|
|
|
1119
1119
|
/* style inject SSR */
|
|
1120
1120
|
|
|
1121
1121
|
/* style inject shadow dom */
|
|
1122
1122
|
|
|
1123
|
-
var __vue_component__$
|
|
1123
|
+
var __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);var script$g = {
|
|
1124
1124
|
name: "VcInputModal",
|
|
1125
1125
|
components: {
|
|
1126
|
-
VcForm: __vue_component__$
|
|
1127
|
-
VcLayout: __vue_component__$
|
|
1128
|
-
VcModalFooter: __vue_component__$
|
|
1129
|
-
VcIcon: __vue_component__$
|
|
1130
|
-
VcModalContainer: __vue_component__$
|
|
1131
|
-
VcModalHeader: __vue_component__$
|
|
1126
|
+
VcForm: __vue_component__$h,
|
|
1127
|
+
VcLayout: __vue_component__$l,
|
|
1128
|
+
VcModalFooter: __vue_component__$k,
|
|
1129
|
+
VcIcon: __vue_component__$o,
|
|
1130
|
+
VcModalContainer: __vue_component__$m,
|
|
1131
|
+
VcModalHeader: __vue_component__$j
|
|
1132
1132
|
},
|
|
1133
1133
|
props: {
|
|
1134
1134
|
showDialog: {
|
|
@@ -1195,10 +1195,10 @@ var __vue_component__$g = /*#__PURE__*/normalizeComponent({}, __vue_inject_style
|
|
|
1195
1195
|
}
|
|
1196
1196
|
}
|
|
1197
1197
|
};/* script */
|
|
1198
|
-
var __vue_script__$
|
|
1198
|
+
var __vue_script__$g = script$g;
|
|
1199
1199
|
/* template */
|
|
1200
1200
|
|
|
1201
|
-
var __vue_render__$
|
|
1201
|
+
var __vue_render__$g = function __vue_render__() {
|
|
1202
1202
|
var _vm = this;
|
|
1203
1203
|
|
|
1204
1204
|
var _h = _vm.$createElement;
|
|
@@ -1299,10 +1299,10 @@ var __vue_render__$f = function __vue_render__() {
|
|
|
1299
1299
|
});
|
|
1300
1300
|
};
|
|
1301
1301
|
|
|
1302
|
-
var __vue_staticRenderFns__$
|
|
1302
|
+
var __vue_staticRenderFns__$g = [];
|
|
1303
1303
|
/* style */
|
|
1304
1304
|
|
|
1305
|
-
var __vue_inject_styles__$
|
|
1305
|
+
var __vue_inject_styles__$g = function __vue_inject_styles__(inject) {
|
|
1306
1306
|
if (!inject) return;
|
|
1307
1307
|
inject("data-v-01f920b6_0", {
|
|
1308
1308
|
source: ".VcInputForm-layout .VcInputForm-main[data-v-01f920b6]{width:100%;max-width:100%;padding:var(--size-value6)}.VcInputForm-layout .VcInputForm-additional[data-v-01f920b6]{min-width:324px;padding:var(--size-value6);background:#f8f9fb;border-left:1px solid rgba(0,0,0,.12)}",
|
|
@@ -1313,24 +1313,24 @@ var __vue_inject_styles__$f = function __vue_inject_styles__(inject) {
|
|
|
1313
1313
|
/* scoped */
|
|
1314
1314
|
|
|
1315
1315
|
|
|
1316
|
-
var __vue_scope_id__$
|
|
1316
|
+
var __vue_scope_id__$g = "data-v-01f920b6";
|
|
1317
1317
|
/* module identifier */
|
|
1318
1318
|
|
|
1319
|
-
var __vue_module_identifier__$
|
|
1319
|
+
var __vue_module_identifier__$g = "data-v-01f920b6";
|
|
1320
1320
|
/* functional template */
|
|
1321
1321
|
|
|
1322
|
-
var __vue_is_functional_template__$
|
|
1322
|
+
var __vue_is_functional_template__$g = false;
|
|
1323
1323
|
/* style inject shadow dom */
|
|
1324
1324
|
|
|
1325
|
-
var __vue_component__$
|
|
1326
|
-
render: __vue_render__$
|
|
1327
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1328
|
-
}, __vue_inject_styles__$
|
|
1325
|
+
var __vue_component__$g = /*#__PURE__*/normalizeComponent({
|
|
1326
|
+
render: __vue_render__$g,
|
|
1327
|
+
staticRenderFns: __vue_staticRenderFns__$g
|
|
1328
|
+
}, __vue_inject_styles__$g, __vue_script__$g, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, undefined, createInjectorSSR, undefined);var script$f = {
|
|
1329
1329
|
name: "VcNoticeModal",
|
|
1330
1330
|
components: {
|
|
1331
|
-
VcLayout: __vue_component__$
|
|
1332
|
-
VcModalFooter: __vue_component__$
|
|
1333
|
-
VcModalContainer: __vue_component__$
|
|
1331
|
+
VcLayout: __vue_component__$l,
|
|
1332
|
+
VcModalFooter: __vue_component__$k,
|
|
1333
|
+
VcModalContainer: __vue_component__$m
|
|
1334
1334
|
},
|
|
1335
1335
|
props: {
|
|
1336
1336
|
showDialog: {
|
|
@@ -1370,10 +1370,10 @@ var __vue_component__$f = /*#__PURE__*/normalizeComponent({
|
|
|
1370
1370
|
}
|
|
1371
1371
|
}
|
|
1372
1372
|
};/* script */
|
|
1373
|
-
var __vue_script__$
|
|
1373
|
+
var __vue_script__$f = script$f;
|
|
1374
1374
|
/* template */
|
|
1375
1375
|
|
|
1376
|
-
var __vue_render__$
|
|
1376
|
+
var __vue_render__$f = function __vue_render__() {
|
|
1377
1377
|
var _vm = this;
|
|
1378
1378
|
|
|
1379
1379
|
var _h = _vm.$createElement;
|
|
@@ -1459,10 +1459,10 @@ var __vue_render__$e = function __vue_render__() {
|
|
|
1459
1459
|
});
|
|
1460
1460
|
};
|
|
1461
1461
|
|
|
1462
|
-
var __vue_staticRenderFns__$
|
|
1462
|
+
var __vue_staticRenderFns__$f = [];
|
|
1463
1463
|
/* style */
|
|
1464
1464
|
|
|
1465
|
-
var __vue_inject_styles__$
|
|
1465
|
+
var __vue_inject_styles__$f = function __vue_inject_styles__(inject) {
|
|
1466
1466
|
if (!inject) return;
|
|
1467
1467
|
inject("data-v-67e92f52_0", {
|
|
1468
1468
|
source: ".VcNoticeImage[data-v-67e92f52]{margin-bottom:var(--size-value4)}.VcNoticeImage.md[data-v-67e92f52],.VcNoticeImage.responsive[data-v-67e92f52],.VcNoticeImage.sm[data-v-67e92f52]{max-height:160px}.VcNoticeImage.lg[data-v-67e92f52]{max-height:208px}.VcNoticeContent[data-v-67e92f52],.VcNoticeHeader[data-v-67e92f52],.VcNoticeSubtitle[data-v-67e92f52]{text-align:center;line-height:24px}.VcNoticeHeader[data-v-67e92f52]{text-align:center;font-size:18px;font-weight:600;line-height:28px}@media screen and (min-width:960px){.VcNoticeHeader[data-v-67e92f52]{font-size:24px;font-weight:800;line-height:var(--size-value10)}}.VcNoticeHeader .VcNoticeHeaderText[data-v-67e92f52]{padding-bottom:var(--size-value2)}.VcNoticeHeader.prominent .VcNoticeHeaderText[data-v-67e92f52]{font-size:18px;font-weight:600}.VcNoticeSubtitle[data-v-67e92f52]{font-size:15px;font-weight:var(--font-weight-medium);line-height:var(--size-value6)}@media screen and (min-width:960px){.VcNoticeSubtitle[data-v-67e92f52]{font-size:var(--font-size-small)}}.VcNoticeSubtitle.prominent[data-v-67e92f52]{font-size:15px}.VcNoticeContent[data-v-67e92f52]{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-67e92f52]{line-height:21px;font-size:14px}}.VcNoticeFooter[data-v-67e92f52]{padding-bottom:var(--size-value10)}",
|
|
@@ -1473,24 +1473,24 @@ var __vue_inject_styles__$e = function __vue_inject_styles__(inject) {
|
|
|
1473
1473
|
/* scoped */
|
|
1474
1474
|
|
|
1475
1475
|
|
|
1476
|
-
var __vue_scope_id__$
|
|
1476
|
+
var __vue_scope_id__$f = "data-v-67e92f52";
|
|
1477
1477
|
/* module identifier */
|
|
1478
1478
|
|
|
1479
|
-
var __vue_module_identifier__$
|
|
1479
|
+
var __vue_module_identifier__$f = "data-v-67e92f52";
|
|
1480
1480
|
/* functional template */
|
|
1481
1481
|
|
|
1482
|
-
var __vue_is_functional_template__$
|
|
1482
|
+
var __vue_is_functional_template__$f = false;
|
|
1483
1483
|
/* style inject shadow dom */
|
|
1484
1484
|
|
|
1485
|
-
var __vue_component__$
|
|
1486
|
-
render: __vue_render__$
|
|
1487
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1488
|
-
}, __vue_inject_styles__$
|
|
1485
|
+
var __vue_component__$f = /*#__PURE__*/normalizeComponent({
|
|
1486
|
+
render: __vue_render__$f,
|
|
1487
|
+
staticRenderFns: __vue_staticRenderFns__$f
|
|
1488
|
+
}, __vue_inject_styles__$f, __vue_script__$f, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, undefined, createInjectorSSR, undefined);var script$e = {
|
|
1489
1489
|
name: "VcAlert",
|
|
1490
1490
|
components: {
|
|
1491
|
-
VcIcon: __vue_component__$
|
|
1492
|
-
VcButton: __vue_component__$
|
|
1493
|
-
VcLayout: __vue_component__$
|
|
1491
|
+
VcIcon: __vue_component__$o,
|
|
1492
|
+
VcButton: __vue_component__$n,
|
|
1493
|
+
VcLayout: __vue_component__$l,
|
|
1494
1494
|
VAlert: lib.VAlert
|
|
1495
1495
|
},
|
|
1496
1496
|
props: {
|
|
@@ -1558,10 +1558,10 @@ var __vue_component__$e = /*#__PURE__*/normalizeComponent({
|
|
|
1558
1558
|
}
|
|
1559
1559
|
}
|
|
1560
1560
|
};/* script */
|
|
1561
|
-
var __vue_script__$
|
|
1561
|
+
var __vue_script__$e = script$e;
|
|
1562
1562
|
/* template */
|
|
1563
1563
|
|
|
1564
|
-
var __vue_render__$
|
|
1564
|
+
var __vue_render__$e = function __vue_render__() {
|
|
1565
1565
|
var _vm = this;
|
|
1566
1566
|
|
|
1567
1567
|
var _h = _vm.$createElement;
|
|
@@ -1584,14 +1584,14 @@ var __vue_render__$d = function __vue_render__() {
|
|
|
1584
1584
|
"align-start": "",
|
|
1585
1585
|
"column": ""
|
|
1586
1586
|
}
|
|
1587
|
-
}, [[_vm.headerText && !_vm.isInlineHeader ? _c('span', {
|
|
1587
|
+
}, [_c('div', [_vm._v("Reut")]), _vm._v(" "), _vm.headerText && !_vm.isInlineHeader ? _c('span', {
|
|
1588
1588
|
staticClass: "alert-header"
|
|
1589
|
-
}, [_vm._v("\n
|
|
1589
|
+
}, [_vm._v("\n " + _vm._s(_vm.headerText) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.bodyText ? _c('span', {
|
|
1590
1590
|
staticClass: "alert-body",
|
|
1591
1591
|
domProps: {
|
|
1592
1592
|
"innerHTML": _vm._s(_vm.getBodyText)
|
|
1593
1593
|
}
|
|
1594
|
-
}) : _vm._e()]
|
|
1594
|
+
}) : _vm._e()]), _vm._v(" "), _vm.buttonText ? _c('VcButton', {
|
|
1595
1595
|
staticClass: "action-button",
|
|
1596
1596
|
attrs: {
|
|
1597
1597
|
"plain": "",
|
|
@@ -1631,12 +1631,12 @@ var __vue_render__$d = function __vue_render__() {
|
|
|
1631
1631
|
}) : _vm._e()], 1);
|
|
1632
1632
|
};
|
|
1633
1633
|
|
|
1634
|
-
var __vue_staticRenderFns__$
|
|
1634
|
+
var __vue_staticRenderFns__$e = [];
|
|
1635
1635
|
/* style */
|
|
1636
1636
|
|
|
1637
|
-
var __vue_inject_styles__$
|
|
1637
|
+
var __vue_inject_styles__$e = function __vue_inject_styles__(inject) {
|
|
1638
1638
|
if (!inject) return;
|
|
1639
|
-
inject("data-v-
|
|
1639
|
+
inject("data-v-12d00120_0", {
|
|
1640
1640
|
source: ".dialog-alert{padding:12px}.dialog-alert__close-btn{margin-inline-end:28px}.dialog-alert .alert-content{padding-inline-end:36px}.dialog-alert .close-button{position:absolute;width:24px;height:24px;top:12px;right:12px}#app[dir=rtl] .dialog-alert .close-button{right:auto;left:12px}.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:0}.dialog-alert .close-button .v-icon svg{fill:#999;width:16px;height:16px}.dialog-alert.stripe.v-alert{border-radius:0;border-top:none;border-left:none;border-right:none}.dialog-alert.vcita-alert-attention{border:1px solid #fbcbc9;background-color:#fde8e7}.dialog-alert.vcita-alert-attention .v-icon svg.vc-notif{fill:#f2514a}.dialog-alert.vcita-alert-warning{border:1px solid #ffedb8;background-color:#fff7e0}.dialog-alert.vcita-alert-warning .v-alert__wrapper .v-icon svg.vc-notif{fill:#ffc511}.dialog-alert.vcita-alert-info{border:1px solid #c8ddff;background-color:#e7f0ff}.dialog-alert.vcita-alert-info .v-alert__wrapper .v-icon svg.vc-notif{fill:#478fff}.dialog-alert.vcita-alert-success{border:1px solid #cff8e1;background-color:#eafcf2}.dialog-alert.vcita-alert-success .v-icon svg.vc-notif{fill:#54d28c}.dialog-alert .v-alert__wrapper .v-icon__component{height:20px;width:20px}.dialog-alert .v-alert__wrapper .v-icon__component svg.vc-notif{font-size:20px;height:20px;min-width:20px}.dialog-alert .v-alert__wrapper .v-icon__component svg.arrow-right{fill:#478fff}.dialog-alert .alert-header{font-weight:700;font-size:13px;line-height:20px;letter-spacing:.003em;margin-bottom:4px;color:#212121}.dialog-alert .alert-header:after{content:\" \";padding-right:4px}.dialog-alert .alert-body{font-size:13px;line-height:20px;letter-spacing:-.01em;color:#212121}.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:24px;color:#478fff!important;font-weight:600;font-size:13px;line-height:24px;margin-top:4px;padding:0}.dialog-alert .VcButton.action-button span.v-btn__content{opacity:unset!important}",
|
|
1641
1641
|
map: undefined,
|
|
1642
1642
|
media: undefined
|
|
@@ -1645,19 +1645,19 @@ var __vue_inject_styles__$d = function __vue_inject_styles__(inject) {
|
|
|
1645
1645
|
/* scoped */
|
|
1646
1646
|
|
|
1647
1647
|
|
|
1648
|
-
var __vue_scope_id__$
|
|
1648
|
+
var __vue_scope_id__$e = undefined;
|
|
1649
1649
|
/* module identifier */
|
|
1650
1650
|
|
|
1651
|
-
var __vue_module_identifier__$
|
|
1651
|
+
var __vue_module_identifier__$e = "data-v-12d00120";
|
|
1652
1652
|
/* functional template */
|
|
1653
1653
|
|
|
1654
|
-
var __vue_is_functional_template__$
|
|
1654
|
+
var __vue_is_functional_template__$e = false;
|
|
1655
1655
|
/* style inject shadow dom */
|
|
1656
1656
|
|
|
1657
|
-
var __vue_component__$
|
|
1658
|
-
render: __vue_render__$
|
|
1659
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1660
|
-
}, __vue_inject_styles__$
|
|
1657
|
+
var __vue_component__$e = /*#__PURE__*/normalizeComponent({
|
|
1658
|
+
render: __vue_render__$e,
|
|
1659
|
+
staticRenderFns: __vue_staticRenderFns__$e
|
|
1660
|
+
}, __vue_inject_styles__$e, __vue_script__$e, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, undefined, createInjectorSSR, undefined);//
|
|
1661
1661
|
//
|
|
1662
1662
|
//
|
|
1663
1663
|
//
|
|
@@ -1702,7 +1702,7 @@ var __vue_component__$d = /*#__PURE__*/normalizeComponent({
|
|
|
1702
1702
|
//
|
|
1703
1703
|
//
|
|
1704
1704
|
//
|
|
1705
|
-
var script$
|
|
1705
|
+
var script$d = {
|
|
1706
1706
|
components: {
|
|
1707
1707
|
VTooltip: lib.VTooltip
|
|
1708
1708
|
},
|
|
@@ -1756,10 +1756,10 @@ var script$c = {
|
|
|
1756
1756
|
}
|
|
1757
1757
|
}
|
|
1758
1758
|
};/* script */
|
|
1759
|
-
var __vue_script__$
|
|
1759
|
+
var __vue_script__$d = script$d;
|
|
1760
1760
|
/* template */
|
|
1761
1761
|
|
|
1762
|
-
var __vue_render__$
|
|
1762
|
+
var __vue_render__$d = function __vue_render__() {
|
|
1763
1763
|
var _vm = this;
|
|
1764
1764
|
|
|
1765
1765
|
var _h = _vm.$createElement;
|
|
@@ -1811,13 +1811,13 @@ var __vue_render__$c = function __vue_render__() {
|
|
|
1811
1811
|
})])])])], 1);
|
|
1812
1812
|
};
|
|
1813
1813
|
|
|
1814
|
-
var __vue_staticRenderFns__$
|
|
1814
|
+
var __vue_staticRenderFns__$d = [];
|
|
1815
1815
|
/* style */
|
|
1816
1816
|
|
|
1817
|
-
var __vue_inject_styles__$
|
|
1817
|
+
var __vue_inject_styles__$d = function __vue_inject_styles__(inject) {
|
|
1818
1818
|
if (!inject) return;
|
|
1819
|
-
inject("data-v-
|
|
1820
|
-
source: "
|
|
1819
|
+
inject("data-v-858200cc_0", {
|
|
1820
|
+
source: ":root{--primary-font-family:Montserrat;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-medium:18px;--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:0px;--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)}.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}",
|
|
1821
1821
|
map: undefined,
|
|
1822
1822
|
media: undefined
|
|
1823
1823
|
});
|
|
@@ -1825,22 +1825,22 @@ var __vue_inject_styles__$c = function __vue_inject_styles__(inject) {
|
|
|
1825
1825
|
/* scoped */
|
|
1826
1826
|
|
|
1827
1827
|
|
|
1828
|
-
var __vue_scope_id__$
|
|
1828
|
+
var __vue_scope_id__$d = undefined;
|
|
1829
1829
|
/* module identifier */
|
|
1830
1830
|
|
|
1831
|
-
var __vue_module_identifier__$
|
|
1831
|
+
var __vue_module_identifier__$d = "data-v-858200cc";
|
|
1832
1832
|
/* functional template */
|
|
1833
1833
|
|
|
1834
|
-
var __vue_is_functional_template__$
|
|
1834
|
+
var __vue_is_functional_template__$d = false;
|
|
1835
1835
|
/* style inject shadow dom */
|
|
1836
1836
|
|
|
1837
|
-
var __vue_component__$
|
|
1838
|
-
render: __vue_render__$
|
|
1839
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1840
|
-
}, __vue_inject_styles__$
|
|
1837
|
+
var __vue_component__$d = /*#__PURE__*/normalizeComponent({
|
|
1838
|
+
render: __vue_render__$d,
|
|
1839
|
+
staticRenderFns: __vue_staticRenderFns__$d
|
|
1840
|
+
}, __vue_inject_styles__$d, __vue_script__$d, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, undefined, createInjectorSSR, undefined);var script$c = {
|
|
1841
1841
|
name: "VcIconWithTooltip",
|
|
1842
1842
|
components: {
|
|
1843
|
-
VcTooltip: __vue_component__$
|
|
1843
|
+
VcTooltip: __vue_component__$d,
|
|
1844
1844
|
VIcon: lib.VIcon
|
|
1845
1845
|
},
|
|
1846
1846
|
props: {
|
|
@@ -1857,7 +1857,7 @@ var __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
|
1857
1857
|
},
|
|
1858
1858
|
dataQa: {
|
|
1859
1859
|
type: String,
|
|
1860
|
-
default: 'vc-
|
|
1860
|
+
default: 'vc-tooltip'
|
|
1861
1861
|
}
|
|
1862
1862
|
},
|
|
1863
1863
|
data: function data() {
|
|
@@ -1896,17 +1896,21 @@ var __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
|
1896
1896
|
}
|
|
1897
1897
|
}
|
|
1898
1898
|
};/* script */
|
|
1899
|
-
var __vue_script__$
|
|
1899
|
+
var __vue_script__$c = script$c;
|
|
1900
1900
|
/* template */
|
|
1901
1901
|
|
|
1902
|
-
var __vue_render__$
|
|
1902
|
+
var __vue_render__$c = function __vue_render__() {
|
|
1903
1903
|
var _vm = this;
|
|
1904
1904
|
|
|
1905
1905
|
var _h = _vm.$createElement;
|
|
1906
1906
|
|
|
1907
1907
|
var _c = _vm._self._c || _h;
|
|
1908
1908
|
|
|
1909
|
-
return _c('VcTooltip', _vm._b({
|
|
1909
|
+
return _c('VcTooltip', _vm._b({
|
|
1910
|
+
attrs: {
|
|
1911
|
+
"data-qa": _vm.dataQa
|
|
1912
|
+
}
|
|
1913
|
+
}, 'VcTooltip', _vm.$attrs, false), [[_c('v-icon', {
|
|
1910
1914
|
staticClass: "tooltip-icon",
|
|
1911
1915
|
class: {
|
|
1912
1916
|
'vc-default': _vm.iconInUse === 'default',
|
|
@@ -1914,7 +1918,7 @@ var __vue_render__$b = function __vue_render__() {
|
|
|
1914
1918
|
},
|
|
1915
1919
|
attrs: {
|
|
1916
1920
|
"size": _vm.size,
|
|
1917
|
-
"data-qa": _vm.dataQa
|
|
1921
|
+
"data-qa": _vm.dataQa + "-icon"
|
|
1918
1922
|
},
|
|
1919
1923
|
on: {
|
|
1920
1924
|
"mouseover": _vm.inHover,
|
|
@@ -1925,13 +1929,13 @@ var __vue_render__$b = function __vue_render__() {
|
|
|
1925
1929
|
}, [_vm._v("\n " + _vm._s(_vm.getIcon) + "\n ")])]], 2);
|
|
1926
1930
|
};
|
|
1927
1931
|
|
|
1928
|
-
var __vue_staticRenderFns__$
|
|
1932
|
+
var __vue_staticRenderFns__$c = [];
|
|
1929
1933
|
/* style */
|
|
1930
1934
|
|
|
1931
|
-
var __vue_inject_styles__$
|
|
1935
|
+
var __vue_inject_styles__$c = function __vue_inject_styles__(inject) {
|
|
1932
1936
|
if (!inject) return;
|
|
1933
|
-
inject("data-v-
|
|
1934
|
-
source: "
|
|
1937
|
+
inject("data-v-7193d7d6_0", {
|
|
1938
|
+
source: ":root{--primary-font-family:Montserrat;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-medium:18px;--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:0px;--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)}.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)}",
|
|
1935
1939
|
map: undefined,
|
|
1936
1940
|
media: undefined
|
|
1937
1941
|
});
|
|
@@ -1939,19 +1943,19 @@ var __vue_inject_styles__$b = function __vue_inject_styles__(inject) {
|
|
|
1939
1943
|
/* scoped */
|
|
1940
1944
|
|
|
1941
1945
|
|
|
1942
|
-
var __vue_scope_id__$
|
|
1946
|
+
var __vue_scope_id__$c = undefined;
|
|
1943
1947
|
/* module identifier */
|
|
1944
1948
|
|
|
1945
|
-
var __vue_module_identifier__$
|
|
1949
|
+
var __vue_module_identifier__$c = "data-v-7193d7d6";
|
|
1946
1950
|
/* functional template */
|
|
1947
1951
|
|
|
1948
|
-
var __vue_is_functional_template__$
|
|
1952
|
+
var __vue_is_functional_template__$c = false;
|
|
1949
1953
|
/* style inject shadow dom */
|
|
1950
1954
|
|
|
1951
|
-
var __vue_component__$
|
|
1952
|
-
render: __vue_render__$
|
|
1953
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1954
|
-
}, __vue_inject_styles__$
|
|
1955
|
+
var __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
1956
|
+
render: __vue_render__$c,
|
|
1957
|
+
staticRenderFns: __vue_staticRenderFns__$c
|
|
1958
|
+
}, __vue_inject_styles__$c, __vue_script__$c, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, undefined, createInjectorSSR, undefined);//
|
|
1955
1959
|
//
|
|
1956
1960
|
//
|
|
1957
1961
|
//
|
|
@@ -1975,7 +1979,7 @@ var __vue_component__$b = /*#__PURE__*/normalizeComponent({
|
|
|
1975
1979
|
//
|
|
1976
1980
|
//
|
|
1977
1981
|
//
|
|
1978
|
-
var script$
|
|
1982
|
+
var script$b = {
|
|
1979
1983
|
components: {
|
|
1980
1984
|
VIcon: lib.VIcon,
|
|
1981
1985
|
VTooltip: lib.VTooltip
|
|
@@ -2084,10 +2088,10 @@ var script$a = {
|
|
|
2084
2088
|
}
|
|
2085
2089
|
}
|
|
2086
2090
|
};/* script */
|
|
2087
|
-
var __vue_script__$
|
|
2091
|
+
var __vue_script__$b = script$b;
|
|
2088
2092
|
/* template */
|
|
2089
2093
|
|
|
2090
|
-
var __vue_render__$
|
|
2094
|
+
var __vue_render__$b = function __vue_render__() {
|
|
2091
2095
|
var _vm = this;
|
|
2092
2096
|
|
|
2093
2097
|
var _h = _vm.$createElement;
|
|
@@ -2134,10 +2138,10 @@ var __vue_render__$a = function __vue_render__() {
|
|
|
2134
2138
|
}, [_vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.lightModeTooltip))])])], 1);
|
|
2135
2139
|
};
|
|
2136
2140
|
|
|
2137
|
-
var __vue_staticRenderFns__$
|
|
2141
|
+
var __vue_staticRenderFns__$b = [];
|
|
2138
2142
|
/* style */
|
|
2139
2143
|
|
|
2140
|
-
var __vue_inject_styles__$
|
|
2144
|
+
var __vue_inject_styles__$b = function __vue_inject_styles__(inject) {
|
|
2141
2145
|
if (!inject) return;
|
|
2142
2146
|
inject("data-v-3f493474_0", {
|
|
2143
2147
|
source: ".avatar-wrapper[data-v-3f493474]{position:relative;border-radius:50%;background-color:#a7a9ac;text-align:center;border:1px solid #fff;color:#fff}.avatar-wrapper.light-mode[data-v-3f493474]{border:1px solid rgba(0,0,0,.3);color:rgba(0,0,0,.3);background-color:#fff}.avatar-wrapper.x-sm[data-v-3f493474]{height:var(--avatar-x-sm);width:var(--avatar-x-sm);font-size:9px}.avatar-wrapper.sm[data-v-3f493474]{height:var(--avatar-sm);width:var(--avatar-sm);font-size:12px}.avatar-wrapper.md[data-v-3f493474]{height:var(--avatar-md);width:var(--avatar-md);font-size:14px}.avatar-wrapper.lg[data-v-3f493474]{height:var(--avatar-lg);width:var(--avatar-lg);font-size:17px}.avatar-wrapper .avatar-image[data-v-3f493474]{display:block;margin:auto;height:100%;width:100%;object-fit:cover;border-radius:50%}.avatar-wrapper .avatar-initials[data-v-3f493474]{position:relative;top:50%;font-weight:var(--font-weight-medium2);transform:translateY(-50%)}.avatar-wrapper .badge[data-v-3f493474]{fill:#fff;position:absolute;--gap:0;height:16px;width:16px;border-radius:50%;bottom:calc(var(--gap) * -1);left:calc(var(--gap) * -1)}.avatar-wrapper .badge.x-sm[data-v-3f493474]{--gap:4px}.avatar-wrapper .badge.sm[data-v-3f493474]{--gap:4px}.avatar-wrapper .badge.md[data-v-3f493474]{--gap:2px}.avatar-wrapper .badge.lg[data-v-3f493474]{--gap:0px}.avatar-wrapper .badge.right[data-v-3f493474]{left:unset;right:calc(var(--gap) * -1)}.avatar-wrapper .badge.confirmed[data-v-3f493474]{border:2px #fff solid}.color-0[data-v-3f493474]{background-color:#fed62f}.color-1[data-v-3f493474]{background-color:#fec22e}.color-2[data-v-3f493474]{background-color:#feac2a}.color-3[data-v-3f493474]{background-color:#fe9a28}.color-4[data-v-3f493474]{background-color:#fd7024}.color-5[data-v-3f493474]{background-color:#fd5b32}.color-6[data-v-3f493474]{background-color:#f2483f}.color-7[data-v-3f493474]{background-color:#dc331b}.color-8[data-v-3f493474]{background-color:#d41419}.color-9[data-v-3f493474]{background-color:#e72866}.color-10[data-v-3f493474]{background-color:#c41c63}.color-11[data-v-3f493474]{background-color:#9b2bae}.color-12[data-v-3f493474]{background-color:#673bb5}.color-13[data-v-3f493474]{background-color:#7c4efc}.color-14[data-v-3f493474]{background-color:#4051b3}.color-15[data-v-3f493474]{background-color:#311b92}.color-16[data-v-3f493474]{background-color:#2d62fb}.color-17[data-v-3f493474]{background-color:#5c6bc0}.color-18[data-v-3f493474]{background-color:#17a8f1}.color-19[data-v-3f493474]{background-color:#17bbd2}.color-20[data-v-3f493474]{background-color:#14abbf}.color-21[data-v-3f493474]{background-color:#0f9587}.color-22[data-v-3f493474]{background-color:#16bea5}.color-23[data-v-3f493474]{background-color:#4eae53}.color-24[data-v-3f493474]{background-color:#3a8d3f}.color-25[data-v-3f493474]{background-color:#8cc250}.color-26[data-v-3f493474]{background-color:#66bb6a}.color-27[data-v-3f493474]{background-color:#880e4f}.color-28[data-v-3f493474]{background-color:#1565c0}.color-29[data-v-3f493474]{background-color:#1e88e5}",
|
|
@@ -2148,25 +2152,25 @@ var __vue_inject_styles__$a = function __vue_inject_styles__(inject) {
|
|
|
2148
2152
|
/* scoped */
|
|
2149
2153
|
|
|
2150
2154
|
|
|
2151
|
-
var __vue_scope_id__$
|
|
2155
|
+
var __vue_scope_id__$b = "data-v-3f493474";
|
|
2152
2156
|
/* module identifier */
|
|
2153
2157
|
|
|
2154
|
-
var __vue_module_identifier__$
|
|
2158
|
+
var __vue_module_identifier__$b = "data-v-3f493474";
|
|
2155
2159
|
/* functional template */
|
|
2156
2160
|
|
|
2157
|
-
var __vue_is_functional_template__$
|
|
2161
|
+
var __vue_is_functional_template__$b = false;
|
|
2158
2162
|
/* style inject shadow dom */
|
|
2159
2163
|
|
|
2160
|
-
var __vue_component__$
|
|
2161
|
-
render: __vue_render__$
|
|
2162
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2163
|
-
}, __vue_inject_styles__$
|
|
2164
|
+
var __vue_component__$b = /*#__PURE__*/normalizeComponent({
|
|
2165
|
+
render: __vue_render__$b,
|
|
2166
|
+
staticRenderFns: __vue_staticRenderFns__$b
|
|
2167
|
+
}, __vue_inject_styles__$b, __vue_script__$b, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, undefined, createInjectorSSR, undefined);var script$a = {
|
|
2164
2168
|
name: "VcBottomActions",
|
|
2165
2169
|
components: {
|
|
2166
|
-
VcLayout: __vue_component__$
|
|
2167
|
-
VcButton: __vue_component__$
|
|
2168
|
-
VcIcon: __vue_component__$
|
|
2169
|
-
VcAvatar: __vue_component__$
|
|
2170
|
+
VcLayout: __vue_component__$l,
|
|
2171
|
+
VcButton: __vue_component__$n,
|
|
2172
|
+
VcIcon: __vue_component__$o,
|
|
2173
|
+
VcAvatar: __vue_component__$b,
|
|
2170
2174
|
VSubheader: lib.VSubheader,
|
|
2171
2175
|
VListItem: lib.VListItem,
|
|
2172
2176
|
VList: lib.VList,
|
|
@@ -2211,10 +2215,10 @@ var __vue_component__$a = /*#__PURE__*/normalizeComponent({
|
|
|
2211
2215
|
}
|
|
2212
2216
|
}
|
|
2213
2217
|
};/* script */
|
|
2214
|
-
var __vue_script__$
|
|
2218
|
+
var __vue_script__$a = script$a;
|
|
2215
2219
|
/* template */
|
|
2216
2220
|
|
|
2217
|
-
var __vue_render__$
|
|
2221
|
+
var __vue_render__$a = function __vue_render__() {
|
|
2218
2222
|
var _vm = this;
|
|
2219
2223
|
|
|
2220
2224
|
var _h = _vm.$createElement;
|
|
@@ -2227,13 +2231,6 @@ var __vue_render__$9 = function __vue_render__() {
|
|
|
2227
2231
|
"value": _vm.value,
|
|
2228
2232
|
"content-class": "vc-bottom-sheet"
|
|
2229
2233
|
},
|
|
2230
|
-
on: {
|
|
2231
|
-
"input": function input(newVal) {
|
|
2232
|
-
return _vm.$emit('input', {
|
|
2233
|
-
isOpen: newVal
|
|
2234
|
-
});
|
|
2235
|
-
}
|
|
2236
|
-
},
|
|
2237
2234
|
scopedSlots: _vm._u([{
|
|
2238
2235
|
key: "activator",
|
|
2239
2236
|
fn: function fn(ref) {
|
|
@@ -2267,14 +2264,12 @@ var __vue_render__$9 = function __vue_render__() {
|
|
|
2267
2264
|
staticClass: "close-button",
|
|
2268
2265
|
attrs: {
|
|
2269
2266
|
"ripple": false,
|
|
2267
|
+
"data-qa": "close-sheet-button",
|
|
2270
2268
|
"plain": ""
|
|
2271
2269
|
},
|
|
2272
2270
|
on: {
|
|
2273
2271
|
"click": function click($event) {
|
|
2274
|
-
return _vm.$emit('
|
|
2275
|
-
isOpen: false,
|
|
2276
|
-
action: 'closeButton'
|
|
2277
|
-
});
|
|
2272
|
+
return _vm.$emit('close');
|
|
2278
2273
|
}
|
|
2279
2274
|
},
|
|
2280
2275
|
scopedSlots: _vm._u([{
|
|
@@ -2295,10 +2290,7 @@ var __vue_render__$9 = function __vue_render__() {
|
|
|
2295
2290
|
staticClass: "sheet-item",
|
|
2296
2291
|
on: {
|
|
2297
2292
|
"click": function click($event) {
|
|
2298
|
-
return _vm.$emit('
|
|
2299
|
-
isOpen: false,
|
|
2300
|
-
action: item.event
|
|
2301
|
-
});
|
|
2293
|
+
return _vm.$emit('action', item.event);
|
|
2302
2294
|
}
|
|
2303
2295
|
}
|
|
2304
2296
|
}, [_c('vc-layout', {
|
|
@@ -2312,13 +2304,13 @@ var __vue_render__$9 = function __vue_render__() {
|
|
|
2312
2304
|
}), 1)], 1)], 1);
|
|
2313
2305
|
};
|
|
2314
2306
|
|
|
2315
|
-
var __vue_staticRenderFns__$
|
|
2307
|
+
var __vue_staticRenderFns__$a = [];
|
|
2316
2308
|
/* style */
|
|
2317
2309
|
|
|
2318
|
-
var __vue_inject_styles__$
|
|
2310
|
+
var __vue_inject_styles__$a = function __vue_inject_styles__(inject) {
|
|
2319
2311
|
if (!inject) return;
|
|
2320
|
-
inject("data-v-
|
|
2321
|
-
source: "
|
|
2312
|
+
inject("data-v-51eeacd7_0", {
|
|
2313
|
+
source: ":root{--primary-font-family:Montserrat;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-medium:18px;--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:0px;--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)}.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)}",
|
|
2322
2314
|
map: undefined,
|
|
2323
2315
|
media: undefined
|
|
2324
2316
|
});
|
|
@@ -2326,24 +2318,24 @@ var __vue_inject_styles__$9 = function __vue_inject_styles__(inject) {
|
|
|
2326
2318
|
/* scoped */
|
|
2327
2319
|
|
|
2328
2320
|
|
|
2329
|
-
var __vue_scope_id__$
|
|
2321
|
+
var __vue_scope_id__$a = undefined;
|
|
2330
2322
|
/* module identifier */
|
|
2331
2323
|
|
|
2332
|
-
var __vue_module_identifier__$
|
|
2324
|
+
var __vue_module_identifier__$a = "data-v-51eeacd7";
|
|
2333
2325
|
/* functional template */
|
|
2334
2326
|
|
|
2335
|
-
var __vue_is_functional_template__$
|
|
2327
|
+
var __vue_is_functional_template__$a = false;
|
|
2336
2328
|
/* style inject shadow dom */
|
|
2337
2329
|
|
|
2338
|
-
var __vue_component__$
|
|
2339
|
-
render: __vue_render__$
|
|
2340
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2341
|
-
}, __vue_inject_styles__$
|
|
2330
|
+
var __vue_component__$a = /*#__PURE__*/normalizeComponent({
|
|
2331
|
+
render: __vue_render__$a,
|
|
2332
|
+
staticRenderFns: __vue_staticRenderFns__$a
|
|
2333
|
+
}, __vue_inject_styles__$a, __vue_script__$a, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, undefined, createInjectorSSR, undefined);var script$9 = {
|
|
2342
2334
|
name: "VcActionList",
|
|
2343
2335
|
components: {
|
|
2344
|
-
VcLayout: __vue_component__$
|
|
2345
|
-
VcButton: __vue_component__$
|
|
2346
|
-
VcIcon: __vue_component__$
|
|
2336
|
+
VcLayout: __vue_component__$l,
|
|
2337
|
+
VcButton: __vue_component__$n,
|
|
2338
|
+
VcIcon: __vue_component__$o,
|
|
2347
2339
|
VListItemTitle: lib.VListItemTitle,
|
|
2348
2340
|
VListItem: lib.VListItem,
|
|
2349
2341
|
VList: lib.VList,
|
|
@@ -2372,10 +2364,10 @@ var __vue_component__$9 = /*#__PURE__*/normalizeComponent({
|
|
|
2372
2364
|
}
|
|
2373
2365
|
}
|
|
2374
2366
|
};/* script */
|
|
2375
|
-
var __vue_script__$
|
|
2367
|
+
var __vue_script__$9 = script$9;
|
|
2376
2368
|
/* template */
|
|
2377
2369
|
|
|
2378
|
-
var __vue_render__$
|
|
2370
|
+
var __vue_render__$9 = function __vue_render__() {
|
|
2379
2371
|
var _vm = this;
|
|
2380
2372
|
|
|
2381
2373
|
var _h = _vm.$createElement;
|
|
@@ -2413,10 +2405,7 @@ var __vue_render__$8 = function __vue_render__() {
|
|
|
2413
2405
|
staticClass: "sheet-item",
|
|
2414
2406
|
on: {
|
|
2415
2407
|
"click": function click($event) {
|
|
2416
|
-
return _vm.$emit('
|
|
2417
|
-
isOpen: false,
|
|
2418
|
-
action: item.event
|
|
2419
|
-
});
|
|
2408
|
+
return _vm.$emit('action', item.event);
|
|
2420
2409
|
}
|
|
2421
2410
|
}
|
|
2422
2411
|
}, [_c('v-list-item-title', {
|
|
@@ -2430,13 +2419,13 @@ var __vue_render__$8 = function __vue_render__() {
|
|
|
2430
2419
|
}), 1)], 1)], 1);
|
|
2431
2420
|
};
|
|
2432
2421
|
|
|
2433
|
-
var __vue_staticRenderFns__$
|
|
2422
|
+
var __vue_staticRenderFns__$9 = [];
|
|
2434
2423
|
/* style */
|
|
2435
2424
|
|
|
2436
|
-
var __vue_inject_styles__$
|
|
2425
|
+
var __vue_inject_styles__$9 = function __vue_inject_styles__(inject) {
|
|
2437
2426
|
if (!inject) return;
|
|
2438
|
-
inject("data-v-
|
|
2439
|
-
source: "
|
|
2427
|
+
inject("data-v-936b4f84_0", {
|
|
2428
|
+
source: ":root{--primary-font-family:Montserrat;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-medium:18px;--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:0px;--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)}.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)}.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)}",
|
|
2440
2429
|
map: undefined,
|
|
2441
2430
|
media: undefined
|
|
2442
2431
|
});
|
|
@@ -2444,23 +2433,23 @@ var __vue_inject_styles__$8 = function __vue_inject_styles__(inject) {
|
|
|
2444
2433
|
/* scoped */
|
|
2445
2434
|
|
|
2446
2435
|
|
|
2447
|
-
var __vue_scope_id__$
|
|
2436
|
+
var __vue_scope_id__$9 = undefined;
|
|
2448
2437
|
/* module identifier */
|
|
2449
2438
|
|
|
2450
|
-
var __vue_module_identifier__$
|
|
2439
|
+
var __vue_module_identifier__$9 = "data-v-936b4f84";
|
|
2451
2440
|
/* functional template */
|
|
2452
2441
|
|
|
2453
|
-
var __vue_is_functional_template__$
|
|
2442
|
+
var __vue_is_functional_template__$9 = false;
|
|
2454
2443
|
/* style inject shadow dom */
|
|
2455
2444
|
|
|
2456
|
-
var __vue_component__$
|
|
2457
|
-
render: __vue_render__$
|
|
2458
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2459
|
-
}, __vue_inject_styles__$
|
|
2445
|
+
var __vue_component__$9 = /*#__PURE__*/normalizeComponent({
|
|
2446
|
+
render: __vue_render__$9,
|
|
2447
|
+
staticRenderFns: __vue_staticRenderFns__$9
|
|
2448
|
+
}, __vue_inject_styles__$9, __vue_script__$9, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, undefined, createInjectorSSR, undefined);var script$8 = {
|
|
2460
2449
|
name: "VcActions",
|
|
2461
2450
|
components: {
|
|
2462
|
-
VcActionList: __vue_component__$
|
|
2463
|
-
VcBottomActions: __vue_component__$
|
|
2451
|
+
VcActionList: __vue_component__$9,
|
|
2452
|
+
VcBottomActions: __vue_component__$a,
|
|
2464
2453
|
VIcon: lib.VIcon
|
|
2465
2454
|
},
|
|
2466
2455
|
data: function data() {
|
|
@@ -2501,19 +2490,20 @@ var __vue_component__$8 = /*#__PURE__*/normalizeComponent({
|
|
|
2501
2490
|
}
|
|
2502
2491
|
},
|
|
2503
2492
|
methods: {
|
|
2504
|
-
handleSheet: function handleSheet(action
|
|
2505
|
-
this.showSheet =
|
|
2506
|
-
this.$emit('
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2493
|
+
handleSheet: function handleSheet(action) {
|
|
2494
|
+
this.showSheet = false;
|
|
2495
|
+
this.$emit('action', action);
|
|
2496
|
+
},
|
|
2497
|
+
handleCloseSheet: function handleCloseSheet() {
|
|
2498
|
+
this.showSheet = false;
|
|
2499
|
+
this.$emit('close');
|
|
2510
2500
|
}
|
|
2511
2501
|
}
|
|
2512
2502
|
};/* script */
|
|
2513
|
-
var __vue_script__$
|
|
2503
|
+
var __vue_script__$8 = script$8;
|
|
2514
2504
|
/* template */
|
|
2515
2505
|
|
|
2516
|
-
var __vue_render__$
|
|
2506
|
+
var __vue_render__$8 = function __vue_render__() {
|
|
2517
2507
|
var _vm = this;
|
|
2518
2508
|
|
|
2519
2509
|
var _h = _vm.$createElement;
|
|
@@ -2522,12 +2512,12 @@ var __vue_render__$7 = function __vue_render__() {
|
|
|
2522
2512
|
|
|
2523
2513
|
return _c(_vm.isMobile ? 'VcBottomActions' : 'VcActionList', _vm._b({
|
|
2524
2514
|
tag: "component",
|
|
2525
|
-
attrs: {
|
|
2526
|
-
"value": _vm.showSheet
|
|
2527
|
-
},
|
|
2528
2515
|
on: {
|
|
2529
|
-
"
|
|
2530
|
-
return _vm.handleSheet(
|
|
2516
|
+
"action": function action($event) {
|
|
2517
|
+
return _vm.handleSheet($event);
|
|
2518
|
+
},
|
|
2519
|
+
"close": function close($event) {
|
|
2520
|
+
return _vm.handleCloseSheet();
|
|
2531
2521
|
}
|
|
2532
2522
|
},
|
|
2533
2523
|
scopedSlots: _vm._u([{
|
|
@@ -2535,35 +2525,48 @@ var __vue_render__$7 = function __vue_render__() {
|
|
|
2535
2525
|
fn: function fn(ref) {
|
|
2536
2526
|
var attrs = ref.attrs;
|
|
2537
2527
|
var on = ref.on;
|
|
2538
|
-
return [_c('v-icon', _vm._g(_vm._b({
|
|
2528
|
+
return [_c('v-icon', _vm._g(_vm._b({
|
|
2529
|
+
on: {
|
|
2530
|
+
"click": function click($event) {
|
|
2531
|
+
_vm.showSheet = !_vm.showSheet;
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
}, 'v-icon', attrs, false), on), [_vm._v("\n $three_dots\n ")])];
|
|
2539
2535
|
}
|
|
2540
|
-
}])
|
|
2536
|
+
}]),
|
|
2537
|
+
model: {
|
|
2538
|
+
value: _vm.showSheet,
|
|
2539
|
+
callback: function callback($$v) {
|
|
2540
|
+
_vm.showSheet = $$v;
|
|
2541
|
+
},
|
|
2542
|
+
expression: "showSheet"
|
|
2543
|
+
}
|
|
2541
2544
|
}, 'component', _vm.$props, false));
|
|
2542
2545
|
};
|
|
2543
2546
|
|
|
2544
|
-
var __vue_staticRenderFns__$
|
|
2547
|
+
var __vue_staticRenderFns__$8 = [];
|
|
2545
2548
|
/* style */
|
|
2546
2549
|
|
|
2547
|
-
var __vue_inject_styles__$
|
|
2550
|
+
var __vue_inject_styles__$8 = undefined;
|
|
2548
2551
|
/* scoped */
|
|
2549
2552
|
|
|
2550
|
-
var __vue_scope_id__$
|
|
2553
|
+
var __vue_scope_id__$8 = undefined;
|
|
2551
2554
|
/* module identifier */
|
|
2552
2555
|
|
|
2553
|
-
var __vue_module_identifier__$
|
|
2556
|
+
var __vue_module_identifier__$8 = "data-v-3c08fa62";
|
|
2554
2557
|
/* functional template */
|
|
2555
2558
|
|
|
2556
|
-
var __vue_is_functional_template__$
|
|
2559
|
+
var __vue_is_functional_template__$8 = false;
|
|
2557
2560
|
/* style inject */
|
|
2558
2561
|
|
|
2559
2562
|
/* style inject SSR */
|
|
2560
2563
|
|
|
2561
2564
|
/* style inject shadow dom */
|
|
2562
2565
|
|
|
2563
|
-
var __vue_component__$
|
|
2564
|
-
render: __vue_render__$
|
|
2565
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2566
|
-
}, __vue_inject_styles__$
|
|
2566
|
+
var __vue_component__$8 = /*#__PURE__*/normalizeComponent({
|
|
2567
|
+
render: __vue_render__$8,
|
|
2568
|
+
staticRenderFns: __vue_staticRenderFns__$8
|
|
2569
|
+
}, __vue_inject_styles__$8, __vue_script__$8, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, undefined, undefined, undefined);//
|
|
2567
2570
|
//
|
|
2568
2571
|
//
|
|
2569
2572
|
//
|
|
@@ -2585,7 +2588,7 @@ var __vue_component__$7 = /*#__PURE__*/normalizeComponent({
|
|
|
2585
2588
|
//
|
|
2586
2589
|
//
|
|
2587
2590
|
//
|
|
2588
|
-
var script$
|
|
2591
|
+
var script$7 = {
|
|
2589
2592
|
components: {
|
|
2590
2593
|
VCol: lib.VCol,
|
|
2591
2594
|
VRow: lib.VRow,
|
|
@@ -2671,10 +2674,10 @@ var script$6 = {
|
|
|
2671
2674
|
}
|
|
2672
2675
|
}
|
|
2673
2676
|
};/* script */
|
|
2674
|
-
var __vue_script__$
|
|
2677
|
+
var __vue_script__$7 = script$7;
|
|
2675
2678
|
/* template */
|
|
2676
2679
|
|
|
2677
|
-
var __vue_render__$
|
|
2680
|
+
var __vue_render__$7 = function __vue_render__() {
|
|
2678
2681
|
var _vm = this;
|
|
2679
2682
|
|
|
2680
2683
|
var _h = _vm.$createElement;
|
|
@@ -2689,6 +2692,7 @@ var __vue_render__$6 = function __vue_render__() {
|
|
|
2689
2692
|
}, _vm._l(_vm.rows, function (row, rowIdx) {
|
|
2690
2693
|
return _c('v-row', {
|
|
2691
2694
|
key: "row-" + rowIdx,
|
|
2695
|
+
staticClass: "button-group-row",
|
|
2692
2696
|
attrs: {
|
|
2693
2697
|
"data-qa": "row"
|
|
2694
2698
|
}
|
|
@@ -2720,13 +2724,13 @@ var __vue_render__$6 = function __vue_render__() {
|
|
|
2720
2724
|
}), 1);
|
|
2721
2725
|
};
|
|
2722
2726
|
|
|
2723
|
-
var __vue_staticRenderFns__$
|
|
2727
|
+
var __vue_staticRenderFns__$7 = [];
|
|
2724
2728
|
/* style */
|
|
2725
2729
|
|
|
2726
|
-
var __vue_inject_styles__$
|
|
2730
|
+
var __vue_inject_styles__$7 = function __vue_inject_styles__(inject) {
|
|
2727
2731
|
if (!inject) return;
|
|
2728
|
-
inject("data-v-
|
|
2729
|
-
source: ".VcButtonGroup[data-v-
|
|
2732
|
+
inject("data-v-284ef818_0", {
|
|
2733
|
+
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}",
|
|
2730
2734
|
map: undefined,
|
|
2731
2735
|
media: undefined
|
|
2732
2736
|
});
|
|
@@ -2734,19 +2738,19 @@ var __vue_inject_styles__$6 = function __vue_inject_styles__(inject) {
|
|
|
2734
2738
|
/* scoped */
|
|
2735
2739
|
|
|
2736
2740
|
|
|
2737
|
-
var __vue_scope_id__$
|
|
2741
|
+
var __vue_scope_id__$7 = "data-v-284ef818";
|
|
2738
2742
|
/* module identifier */
|
|
2739
2743
|
|
|
2740
|
-
var __vue_module_identifier__$
|
|
2744
|
+
var __vue_module_identifier__$7 = "data-v-284ef818";
|
|
2741
2745
|
/* functional template */
|
|
2742
2746
|
|
|
2743
|
-
var __vue_is_functional_template__$
|
|
2747
|
+
var __vue_is_functional_template__$7 = false;
|
|
2744
2748
|
/* style inject shadow dom */
|
|
2745
2749
|
|
|
2746
|
-
var __vue_component__$
|
|
2747
|
-
render: __vue_render__$
|
|
2748
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2749
|
-
}, __vue_inject_styles__$
|
|
2750
|
+
var __vue_component__$7 = /*#__PURE__*/normalizeComponent({
|
|
2751
|
+
render: __vue_render__$7,
|
|
2752
|
+
staticRenderFns: __vue_staticRenderFns__$7
|
|
2753
|
+
}, __vue_inject_styles__$7, __vue_script__$7, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, undefined, createInjectorSSR, undefined);//
|
|
2750
2754
|
//
|
|
2751
2755
|
//
|
|
2752
2756
|
//
|
|
@@ -2755,7 +2759,7 @@ var __vue_component__$6 = /*#__PURE__*/normalizeComponent({
|
|
|
2755
2759
|
//
|
|
2756
2760
|
//
|
|
2757
2761
|
//
|
|
2758
|
-
var script$
|
|
2762
|
+
var script$6 = {
|
|
2759
2763
|
components: {
|
|
2760
2764
|
VProgressCircular: lib.VProgressCircular
|
|
2761
2765
|
},
|
|
@@ -2769,7 +2773,7 @@ var script$5 = {
|
|
|
2769
2773
|
},
|
|
2770
2774
|
color: {
|
|
2771
2775
|
type: String,
|
|
2772
|
-
default: "
|
|
2776
|
+
default: "primary"
|
|
2773
2777
|
},
|
|
2774
2778
|
size: {
|
|
2775
2779
|
type: Number,
|
|
@@ -2781,10 +2785,10 @@ var script$5 = {
|
|
|
2781
2785
|
}
|
|
2782
2786
|
}
|
|
2783
2787
|
};/* script */
|
|
2784
|
-
var __vue_script__$
|
|
2788
|
+
var __vue_script__$6 = script$6;
|
|
2785
2789
|
/* template */
|
|
2786
2790
|
|
|
2787
|
-
var __vue_render__$
|
|
2791
|
+
var __vue_render__$6 = function __vue_render__() {
|
|
2788
2792
|
var _vm = this;
|
|
2789
2793
|
|
|
2790
2794
|
var _h = _vm.$createElement;
|
|
@@ -2802,29 +2806,29 @@ var __vue_render__$5 = function __vue_render__() {
|
|
|
2802
2806
|
});
|
|
2803
2807
|
};
|
|
2804
2808
|
|
|
2805
|
-
var __vue_staticRenderFns__$
|
|
2809
|
+
var __vue_staticRenderFns__$6 = [];
|
|
2806
2810
|
/* style */
|
|
2807
2811
|
|
|
2808
|
-
var __vue_inject_styles__$
|
|
2812
|
+
var __vue_inject_styles__$6 = undefined;
|
|
2809
2813
|
/* scoped */
|
|
2810
2814
|
|
|
2811
|
-
var __vue_scope_id__$
|
|
2815
|
+
var __vue_scope_id__$6 = undefined;
|
|
2812
2816
|
/* module identifier */
|
|
2813
2817
|
|
|
2814
|
-
var __vue_module_identifier__$
|
|
2818
|
+
var __vue_module_identifier__$6 = "data-v-709c68d3";
|
|
2815
2819
|
/* functional template */
|
|
2816
2820
|
|
|
2817
|
-
var __vue_is_functional_template__$
|
|
2821
|
+
var __vue_is_functional_template__$6 = false;
|
|
2818
2822
|
/* style inject */
|
|
2819
2823
|
|
|
2820
2824
|
/* style inject SSR */
|
|
2821
2825
|
|
|
2822
2826
|
/* style inject shadow dom */
|
|
2823
2827
|
|
|
2824
|
-
var __vue_component__$
|
|
2825
|
-
render: __vue_render__$
|
|
2826
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2827
|
-
}, __vue_inject_styles__$
|
|
2828
|
+
var __vue_component__$6 = /*#__PURE__*/normalizeComponent({
|
|
2829
|
+
render: __vue_render__$6,
|
|
2830
|
+
staticRenderFns: __vue_staticRenderFns__$6
|
|
2831
|
+
}, __vue_inject_styles__$6, __vue_script__$6, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, undefined, undefined, undefined);//
|
|
2828
2832
|
//
|
|
2829
2833
|
//
|
|
2830
2834
|
//
|
|
@@ -2840,7 +2844,7 @@ var __vue_component__$5 = /*#__PURE__*/normalizeComponent({
|
|
|
2840
2844
|
//
|
|
2841
2845
|
//
|
|
2842
2846
|
//
|
|
2843
|
-
var script$
|
|
2847
|
+
var script$5 = {
|
|
2844
2848
|
components: {
|
|
2845
2849
|
VSwitch: lib.VSwitch
|
|
2846
2850
|
},
|
|
@@ -2870,10 +2874,10 @@ var script$4 = {
|
|
|
2870
2874
|
}
|
|
2871
2875
|
}
|
|
2872
2876
|
};/* script */
|
|
2873
|
-
var __vue_script__$
|
|
2877
|
+
var __vue_script__$5 = script$5;
|
|
2874
2878
|
/* template */
|
|
2875
2879
|
|
|
2876
|
-
var __vue_render__$
|
|
2880
|
+
var __vue_render__$5 = function __vue_render__() {
|
|
2877
2881
|
var _vm = this;
|
|
2878
2882
|
|
|
2879
2883
|
var _h = _vm.$createElement;
|
|
@@ -2909,13 +2913,13 @@ var __vue_render__$4 = function __vue_render__() {
|
|
|
2909
2913
|
});
|
|
2910
2914
|
};
|
|
2911
2915
|
|
|
2912
|
-
var __vue_staticRenderFns__$
|
|
2916
|
+
var __vue_staticRenderFns__$5 = [];
|
|
2913
2917
|
/* style */
|
|
2914
2918
|
|
|
2915
|
-
var __vue_inject_styles__$
|
|
2919
|
+
var __vue_inject_styles__$5 = function __vue_inject_styles__(inject) {
|
|
2916
2920
|
if (!inject) return;
|
|
2917
|
-
inject("data-v-
|
|
2918
|
-
source: ".VcSwitch[data-v-
|
|
2921
|
+
inject("data-v-5fe5a78e_0", {
|
|
2922
|
+
source: ".VcSwitch[data-v-5fe5a78e]{padding:0;margin:0}.VcSwitch[data-v-5fe5a78e] label{font-size:var(--font-size-small);font-weight:var(--font-weight-medium);line-height:var(--size-value6);color:rgba(0,0,0,.87)}.VcSwitch[data-v-5fe5a78e] input{height:var(--size-value5)}.VcSwitch[data-v-5fe5a78e] .v-input--selection-controls__input{margin-left:0;margin-right:var(--size-value3);height:var(--size-value5);width:var(--size-value8)}#app[dir=rtl] .VcSwitch[data-v-5fe5a78e] .v-input--selection-controls__input{margin-left:var(--size-value3)}#app[dir=rtl] .VcSwitch[data-v-5fe5a78e] .v-input--selection-controls__input{margin-right:0}.VcSwitch[data-v-5fe5a78e] .v-input--switch__track{top:0;left:0}#app[dir=rtl] .VcSwitch[data-v-5fe5a78e] .v-input--switch__track{left:auto;right:0}.VcSwitch[data-v-5fe5a78e] .v-input--selection-controls__ripple{left:-10px;height:25px;width:25px}#app[dir=rtl] .VcSwitch[data-v-5fe5a78e] .v-input--selection-controls__ripple{left:auto;right:-10px}.VcSwitch[data-v-5fe5a78e] .v-input--switch__thumb{height:14px;width:14px;background-color:#fff;top:calc(50% - 7px);transform:translateX(3px)!important;box-shadow:0 1px 1px rgba(0,0,0,.141176),0 1px 3px rgba(0,0,0,.2)}#app[dir=rtl] .VcSwitch[data-v-5fe5a78e] .v-input--switch__thumb{transform:translateX(-3px)!important}.VcSwitch.v-input--is-disabled[data-v-5fe5a78e] {opacity:1}.VcSwitch.v-input--is-disabled[data-v-5fe5a78e] .v-input--switch__track{color:#ededed!important}.VcSwitch.v-input--is-disabled[data-v-5fe5a78e] .v-input--switch__thumb{background-color:#e0e0e0!important;box-shadow:none}.VcSwitch.is-active[data-v-5fe5a78e] .v-input--switch__track{opacity:1;background-color:currentColor}.VcSwitch.is-active[data-v-5fe5a78e] .v-input--selection-controls__ripple{transform:translateX(14px)!important}#app[dir=rtl] .VcSwitch.is-active[data-v-5fe5a78e] .v-input--selection-controls__ripple{transform:translateX(-14px)!important}.VcSwitch.is-active[data-v-5fe5a78e] .v-input--switch__thumb{transform:translateX(17px)!important}#app[dir=rtl] .VcSwitch.is-active[data-v-5fe5a78e] .v-input--switch__thumb{transform:translateX(-17px)!important}",
|
|
2919
2923
|
map: undefined,
|
|
2920
2924
|
media: undefined
|
|
2921
2925
|
});
|
|
@@ -2923,24 +2927,24 @@ var __vue_inject_styles__$4 = function __vue_inject_styles__(inject) {
|
|
|
2923
2927
|
/* scoped */
|
|
2924
2928
|
|
|
2925
2929
|
|
|
2926
|
-
var __vue_scope_id__$
|
|
2930
|
+
var __vue_scope_id__$5 = "data-v-5fe5a78e";
|
|
2927
2931
|
/* module identifier */
|
|
2928
2932
|
|
|
2929
|
-
var __vue_module_identifier__$
|
|
2933
|
+
var __vue_module_identifier__$5 = "data-v-5fe5a78e";
|
|
2930
2934
|
/* functional template */
|
|
2931
2935
|
|
|
2932
|
-
var __vue_is_functional_template__$
|
|
2936
|
+
var __vue_is_functional_template__$5 = false;
|
|
2933
2937
|
/* style inject shadow dom */
|
|
2934
2938
|
|
|
2935
|
-
var __vue_component__$
|
|
2936
|
-
render: __vue_render__$
|
|
2937
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
2938
|
-
}, __vue_inject_styles__$
|
|
2939
|
+
var __vue_component__$5 = /*#__PURE__*/normalizeComponent({
|
|
2940
|
+
render: __vue_render__$5,
|
|
2941
|
+
staticRenderFns: __vue_staticRenderFns__$5
|
|
2942
|
+
}, __vue_inject_styles__$5, __vue_script__$5, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, undefined, createInjectorSSR, undefined);var script$4 = {
|
|
2939
2943
|
name: 'VcTextField',
|
|
2940
2944
|
components: {
|
|
2941
|
-
VcLayout: __vue_component__$
|
|
2942
|
-
VcButton: __vue_component__$
|
|
2943
|
-
VcIcon: __vue_component__$
|
|
2945
|
+
VcLayout: __vue_component__$l,
|
|
2946
|
+
VcButton: __vue_component__$n,
|
|
2947
|
+
VcIcon: __vue_component__$o,
|
|
2944
2948
|
VTextField: lib.VTextField
|
|
2945
2949
|
},
|
|
2946
2950
|
props: {
|
|
@@ -2992,10 +2996,10 @@ var __vue_component__$4 = /*#__PURE__*/normalizeComponent({
|
|
|
2992
2996
|
}
|
|
2993
2997
|
}
|
|
2994
2998
|
};/* script */
|
|
2995
|
-
var __vue_script__$
|
|
2999
|
+
var __vue_script__$4 = script$4;
|
|
2996
3000
|
/* template */
|
|
2997
3001
|
|
|
2998
|
-
var __vue_render__$
|
|
3002
|
+
var __vue_render__$4 = function __vue_render__() {
|
|
2999
3003
|
var _vm = this;
|
|
3000
3004
|
|
|
3001
3005
|
var _h = _vm.$createElement;
|
|
@@ -3014,6 +3018,11 @@ var __vue_render__$3 = function __vue_render__() {
|
|
|
3014
3018
|
"step": _vm.step,
|
|
3015
3019
|
"hide-details": "auto"
|
|
3016
3020
|
},
|
|
3021
|
+
on: {
|
|
3022
|
+
"input": function input(data) {
|
|
3023
|
+
return _vm.$emit('input', data);
|
|
3024
|
+
}
|
|
3025
|
+
},
|
|
3017
3026
|
scopedSlots: _vm._u([_vm.type === 'number' ? {
|
|
3018
3027
|
key: "append",
|
|
3019
3028
|
fn: function fn() {
|
|
@@ -3031,7 +3040,7 @@ var __vue_render__$3 = function __vue_render__() {
|
|
|
3031
3040
|
"max-height": "25px"
|
|
3032
3041
|
},
|
|
3033
3042
|
on: {
|
|
3034
|
-
"
|
|
3043
|
+
"click": function click($event) {
|
|
3035
3044
|
_vm.updateValue(parseFloat(_vm.step));
|
|
3036
3045
|
}
|
|
3037
3046
|
}
|
|
@@ -3044,7 +3053,7 @@ var __vue_render__$3 = function __vue_render__() {
|
|
|
3044
3053
|
"max-height": "25px"
|
|
3045
3054
|
},
|
|
3046
3055
|
on: {
|
|
3047
|
-
"
|
|
3056
|
+
"click": function click($event) {
|
|
3048
3057
|
_vm.updateValue(-parseFloat(_vm.step));
|
|
3049
3058
|
}
|
|
3050
3059
|
}
|
|
@@ -3055,16 +3064,16 @@ var __vue_render__$3 = function __vue_render__() {
|
|
|
3055
3064
|
}, [_vm._v(" "), _vm._t("default")], 2);
|
|
3056
3065
|
};
|
|
3057
3066
|
|
|
3058
|
-
var __vue_staticRenderFns__$
|
|
3067
|
+
var __vue_staticRenderFns__$4 = [];
|
|
3059
3068
|
/* style */
|
|
3060
3069
|
|
|
3061
|
-
var __vue_inject_styles__$
|
|
3070
|
+
var __vue_inject_styles__$4 = function __vue_inject_styles__(inject) {
|
|
3062
3071
|
if (!inject) return;
|
|
3063
|
-
inject("data-v-
|
|
3064
|
-
source: ".number-counter[data-v-
|
|
3072
|
+
inject("data-v-31ca7c6a_0", {
|
|
3073
|
+
source: ".number-counter[data-v-31ca7c6a]{border-left:1px solid rgba(0,0,0,.12)}#app[dir=rtl] .number-counter[data-v-31ca7c6a]{border-left:none;border-right:1px solid rgba(0,0,0,.12)}",
|
|
3065
3074
|
map: undefined,
|
|
3066
3075
|
media: undefined
|
|
3067
|
-
}), inject("data-v-
|
|
3076
|
+
}), inject("data-v-31ca7c6a_1", {
|
|
3068
3077
|
source: ".VcTextInput.v-text-field{margin:0;padding:0}.VcTextInput.v-text-field label{letter-spacing:-.3px;font-size:15px;color:rgba(0,0,0,.4)}.VcTextInput.v-text-field .v-text-field__slot:first-child{margin:0 12px}.VcTextInput.v-text-field[prepend-inner-icon] .v-text-field__slot{padding:0}.VcTextInput.v-text-field.v-input--is-focused label,.VcTextInput.v-text-field.v-input--is-label-active label{font-size:14px;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:8px}.VcTextInput.v-text-field:not(.v-text-field--outlined) .v-text-field__slot{transition:margin-bottom .1s}.VcTextInput.v-text-field:not(.v-text-field--outlined).v-input--is-focused .v-text-field__slot,.VcTextInput.v-text-field:not(.v-text-field--outlined).v-input--is-label-active .v-text-field__slot{margin-bottom:-20px}.VcTextInput.v-text-field.v-input--is-focused .v-input__slot{border-color:currentColor}.VcTextInput.v-text-field .v-input__slot{min-height:52px!important;border-radius:6px;background-color:#fff!important;position:relative!important;border:solid 1px rgba(0,0,0,.12);transition:border-color,background-color .1s!important}.VcTextInput.v-text-field .v-input__slot:hover{border-color:currentColor}.VcTextInput.v-text-field .v-input__slot:after,.VcTextInput.v-text-field .v-input__slot:before{display:none}.VcTextInput.v-text-field.v-input--is-disabled .v-input__slot{background-color:rgba(0,0,0,.03)!important}.VcTextInput.v-text-field input{font-size:15px!important;font-weight:500}.VcTextInput.v-text-field .v-text-field__prefix{color:rgba(0,0,0,.54)!important}.VcTextInput.v-text-field .v-input__append-inner,.VcTextInput.v-text-field .v-input__prepend-inner{color:rgba(0,0,0,.4);margin:auto 12px auto 12px!important;max-width:20px;max-height:20px;padding:0!important}.VcTextInput.v-text-field .v-input__append-inner .v-input__icon,.VcTextInput.v-text-field .v-input__prepend-inner .v-input__icon{height:100%;max-width:100%;min-width:100%;max-height:100%;min-height:100%}.VcTextInput.v-text-field .v-input__append-inner i,.VcTextInput.v-text-field .v-input__prepend-inner i{color:rgba(0,0,0,.4)}.VcTextInput.v-text-field.error--text .v-input__slot{border:1px solid #f2514a}",
|
|
3069
3078
|
map: undefined,
|
|
3070
3079
|
media: undefined
|
|
@@ -3073,19 +3082,19 @@ var __vue_inject_styles__$3 = function __vue_inject_styles__(inject) {
|
|
|
3073
3082
|
/* scoped */
|
|
3074
3083
|
|
|
3075
3084
|
|
|
3076
|
-
var __vue_scope_id__$
|
|
3085
|
+
var __vue_scope_id__$4 = "data-v-31ca7c6a";
|
|
3077
3086
|
/* module identifier */
|
|
3078
3087
|
|
|
3079
|
-
var __vue_module_identifier__$
|
|
3088
|
+
var __vue_module_identifier__$4 = "data-v-31ca7c6a";
|
|
3080
3089
|
/* functional template */
|
|
3081
3090
|
|
|
3082
|
-
var __vue_is_functional_template__$
|
|
3091
|
+
var __vue_is_functional_template__$4 = false;
|
|
3083
3092
|
/* style inject shadow dom */
|
|
3084
3093
|
|
|
3085
|
-
var __vue_component__$
|
|
3086
|
-
render: __vue_render__$
|
|
3087
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3088
|
-
}, __vue_inject_styles__$
|
|
3094
|
+
var __vue_component__$4 = /*#__PURE__*/normalizeComponent({
|
|
3095
|
+
render: __vue_render__$4,
|
|
3096
|
+
staticRenderFns: __vue_staticRenderFns__$4
|
|
3097
|
+
}, __vue_inject_styles__$4, __vue_script__$4, __vue_scope_id__$4, __vue_is_functional_template__$4, __vue_module_identifier__$4, false, undefined, createInjectorSSR, undefined);//
|
|
3089
3098
|
//
|
|
3090
3099
|
//
|
|
3091
3100
|
//
|
|
@@ -3101,7 +3110,7 @@ var __vue_component__$3 = /*#__PURE__*/normalizeComponent({
|
|
|
3101
3110
|
//
|
|
3102
3111
|
//
|
|
3103
3112
|
//
|
|
3104
|
-
var script$
|
|
3113
|
+
var script$3 = {
|
|
3105
3114
|
components: {
|
|
3106
3115
|
VTextarea: lib.VTextarea
|
|
3107
3116
|
},
|
|
@@ -3142,10 +3151,10 @@ var script$2 = {
|
|
|
3142
3151
|
}
|
|
3143
3152
|
}
|
|
3144
3153
|
};/* script */
|
|
3145
|
-
var __vue_script__$
|
|
3154
|
+
var __vue_script__$3 = script$3;
|
|
3146
3155
|
/* template */
|
|
3147
3156
|
|
|
3148
|
-
var __vue_render__$
|
|
3157
|
+
var __vue_render__$3 = function __vue_render__() {
|
|
3149
3158
|
var _vm = this;
|
|
3150
3159
|
|
|
3151
3160
|
var _h = _vm.$createElement;
|
|
@@ -3175,13 +3184,13 @@ var __vue_render__$2 = function __vue_render__() {
|
|
|
3175
3184
|
});
|
|
3176
3185
|
};
|
|
3177
3186
|
|
|
3178
|
-
var __vue_staticRenderFns__$
|
|
3187
|
+
var __vue_staticRenderFns__$3 = [];
|
|
3179
3188
|
/* style */
|
|
3180
3189
|
|
|
3181
|
-
var __vue_inject_styles__$
|
|
3190
|
+
var __vue_inject_styles__$3 = function __vue_inject_styles__(inject) {
|
|
3182
3191
|
if (!inject) return;
|
|
3183
|
-
inject("data-v-
|
|
3184
|
-
source: "[data-v-
|
|
3192
|
+
inject("data-v-021f98ca_0", {
|
|
3193
|
+
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}",
|
|
3185
3194
|
map: undefined,
|
|
3186
3195
|
media: undefined
|
|
3187
3196
|
});
|
|
@@ -3189,30 +3198,30 @@ var __vue_inject_styles__$2 = function __vue_inject_styles__(inject) {
|
|
|
3189
3198
|
/* scoped */
|
|
3190
3199
|
|
|
3191
3200
|
|
|
3192
|
-
var __vue_scope_id__$
|
|
3201
|
+
var __vue_scope_id__$3 = "data-v-021f98ca";
|
|
3193
3202
|
/* module identifier */
|
|
3194
3203
|
|
|
3195
|
-
var __vue_module_identifier__$
|
|
3204
|
+
var __vue_module_identifier__$3 = "data-v-021f98ca";
|
|
3196
3205
|
/* functional template */
|
|
3197
3206
|
|
|
3198
|
-
var __vue_is_functional_template__$
|
|
3207
|
+
var __vue_is_functional_template__$3 = false;
|
|
3199
3208
|
/* style inject shadow dom */
|
|
3200
3209
|
|
|
3201
|
-
var __vue_component__$
|
|
3202
|
-
render: __vue_render__$
|
|
3203
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3204
|
-
}, __vue_inject_styles__$
|
|
3210
|
+
var __vue_component__$3 = /*#__PURE__*/normalizeComponent({
|
|
3211
|
+
render: __vue_render__$3,
|
|
3212
|
+
staticRenderFns: __vue_staticRenderFns__$3
|
|
3213
|
+
}, __vue_inject_styles__$3, __vue_script__$3, __vue_scope_id__$3, __vue_is_functional_template__$3, __vue_module_identifier__$3, false, undefined, createInjectorSSR, undefined);//
|
|
3205
3214
|
//
|
|
3206
3215
|
//
|
|
3207
3216
|
//
|
|
3208
|
-
var script$
|
|
3217
|
+
var script$2 = {
|
|
3209
3218
|
name: 'VcSvg',
|
|
3210
3219
|
props: ['svg']
|
|
3211
3220
|
};/* script */
|
|
3212
|
-
var __vue_script__$
|
|
3221
|
+
var __vue_script__$2 = script$2;
|
|
3213
3222
|
/* template */
|
|
3214
3223
|
|
|
3215
|
-
var __vue_render__$
|
|
3224
|
+
var __vue_render__$2 = function __vue_render__() {
|
|
3216
3225
|
var _vm = this;
|
|
3217
3226
|
|
|
3218
3227
|
var _h = _vm.$createElement;
|
|
@@ -3226,80 +3235,53 @@ var __vue_render__$1 = function __vue_render__() {
|
|
|
3226
3235
|
}, []);
|
|
3227
3236
|
};
|
|
3228
3237
|
|
|
3229
|
-
var __vue_staticRenderFns__$
|
|
3238
|
+
var __vue_staticRenderFns__$2 = [];
|
|
3230
3239
|
/* style */
|
|
3231
3240
|
|
|
3232
|
-
var __vue_inject_styles__$
|
|
3241
|
+
var __vue_inject_styles__$2 = undefined;
|
|
3233
3242
|
/* scoped */
|
|
3234
3243
|
|
|
3235
|
-
var __vue_scope_id__$
|
|
3244
|
+
var __vue_scope_id__$2 = undefined;
|
|
3236
3245
|
/* module identifier */
|
|
3237
3246
|
|
|
3238
|
-
var __vue_module_identifier__$
|
|
3247
|
+
var __vue_module_identifier__$2 = "data-v-56d3274a";
|
|
3239
3248
|
/* functional template */
|
|
3240
3249
|
|
|
3241
|
-
var __vue_is_functional_template__$
|
|
3250
|
+
var __vue_is_functional_template__$2 = false;
|
|
3242
3251
|
/* style inject */
|
|
3243
3252
|
|
|
3244
3253
|
/* style inject SSR */
|
|
3245
3254
|
|
|
3246
3255
|
/* style inject shadow dom */
|
|
3247
3256
|
|
|
3248
|
-
var __vue_component__$
|
|
3249
|
-
render: __vue_render__$
|
|
3250
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
3251
|
-
}, __vue_inject_styles__$
|
|
3252
|
-
|
|
3253
|
-
//
|
|
3254
|
-
//
|
|
3255
|
-
//
|
|
3256
|
-
//
|
|
3257
|
-
//
|
|
3258
|
-
//
|
|
3259
|
-
//
|
|
3260
|
-
//
|
|
3261
|
-
//
|
|
3262
|
-
var script = {
|
|
3257
|
+
var __vue_component__$2 = /*#__PURE__*/normalizeComponent({
|
|
3258
|
+
render: __vue_render__$2,
|
|
3259
|
+
staticRenderFns: __vue_staticRenderFns__$2
|
|
3260
|
+
}, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);var script$1 = {
|
|
3261
|
+
name: 'VcToast',
|
|
3263
3262
|
components: {
|
|
3263
|
+
VcAlert: __vue_component__$e,
|
|
3264
3264
|
VSnackbar: lib.VSnackbar
|
|
3265
3265
|
},
|
|
3266
|
-
|
|
3267
|
-
name: 'VcToast',
|
|
3268
|
-
|
|
3269
3266
|
props: {
|
|
3270
|
-
type: {
|
|
3271
|
-
type: String,
|
|
3272
|
-
default: 'success',
|
|
3273
|
-
validator: function validator(prop) {
|
|
3274
|
-
return ['danger', 'info', 'success'].includes(prop);
|
|
3275
|
-
}
|
|
3276
|
-
},
|
|
3277
3267
|
value: {
|
|
3278
3268
|
type: Boolean
|
|
3279
3269
|
},
|
|
3280
|
-
color: {
|
|
3281
|
-
type: String
|
|
3282
|
-
},
|
|
3283
3270
|
timeout: {
|
|
3284
3271
|
type: Number,
|
|
3285
3272
|
required: false
|
|
3286
|
-
},
|
|
3287
|
-
text: {
|
|
3288
|
-
type: String,
|
|
3289
|
-
default: 'Success'
|
|
3290
3273
|
}
|
|
3291
3274
|
},
|
|
3292
|
-
|
|
3293
3275
|
computed: {
|
|
3294
3276
|
computedTimeout: function computedTimeout() {
|
|
3295
3277
|
return this.timeout || this.$ds.toastTimeout || 3000;
|
|
3296
3278
|
}
|
|
3297
3279
|
}
|
|
3298
3280
|
};/* script */
|
|
3299
|
-
var __vue_script__ = script;
|
|
3281
|
+
var __vue_script__$1 = script$1;
|
|
3300
3282
|
/* template */
|
|
3301
3283
|
|
|
3302
|
-
var __vue_render__ = function __vue_render__() {
|
|
3284
|
+
var __vue_render__$1 = function __vue_render__() {
|
|
3303
3285
|
var _vm = this;
|
|
3304
3286
|
|
|
3305
3287
|
var _h = _vm.$createElement;
|
|
@@ -3315,16 +3297,20 @@ var __vue_render__ = function __vue_render__() {
|
|
|
3315
3297
|
"left": !_vm.$vuetify.rtl,
|
|
3316
3298
|
"right": _vm.$vuetify.rtl
|
|
3317
3299
|
}
|
|
3318
|
-
}, [
|
|
3300
|
+
}, [_c('VcAlert', _vm._b({
|
|
3301
|
+
attrs: {
|
|
3302
|
+
"is-stripe": false
|
|
3303
|
+
}
|
|
3304
|
+
}, 'VcAlert', _vm.$attrs, false))], 1);
|
|
3319
3305
|
};
|
|
3320
3306
|
|
|
3321
|
-
var __vue_staticRenderFns__ = [];
|
|
3307
|
+
var __vue_staticRenderFns__$1 = [];
|
|
3322
3308
|
/* style */
|
|
3323
3309
|
|
|
3324
|
-
var __vue_inject_styles__ = function __vue_inject_styles__(inject) {
|
|
3310
|
+
var __vue_inject_styles__$1 = function __vue_inject_styles__(inject) {
|
|
3325
3311
|
if (!inject) return;
|
|
3326
|
-
inject("data-v-
|
|
3327
|
-
source: ".v-snack__action[data-v-
|
|
3312
|
+
inject("data-v-2dfe68ea_0", {
|
|
3313
|
+
source: "[data-v-2dfe68ea] .v-snack__action{display:none}[data-v-2dfe68ea] .v-alert{margin-bottom:0}",
|
|
3328
3314
|
map: undefined,
|
|
3329
3315
|
media: undefined
|
|
3330
3316
|
});
|
|
@@ -3332,234 +3318,89 @@ var __vue_inject_styles__ = function __vue_inject_styles__(inject) {
|
|
|
3332
3318
|
/* scoped */
|
|
3333
3319
|
|
|
3334
3320
|
|
|
3335
|
-
var __vue_scope_id__ = "data-v-
|
|
3321
|
+
var __vue_scope_id__$1 = "data-v-2dfe68ea";
|
|
3336
3322
|
/* module identifier */
|
|
3337
3323
|
|
|
3338
|
-
var __vue_module_identifier__ = "data-v-
|
|
3324
|
+
var __vue_module_identifier__$1 = "data-v-2dfe68ea";
|
|
3339
3325
|
/* functional template */
|
|
3340
3326
|
|
|
3341
|
-
var __vue_is_functional_template__ = false;
|
|
3327
|
+
var __vue_is_functional_template__$1 = false;
|
|
3342
3328
|
/* style inject shadow dom */
|
|
3343
3329
|
|
|
3344
|
-
var __vue_component__ = /*#__PURE__*/normalizeComponent({
|
|
3345
|
-
render: __vue_render__,
|
|
3346
|
-
staticRenderFns: __vue_staticRenderFns__
|
|
3347
|
-
}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, createInjectorSSR, undefined);//
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
info: "<svg class=\"vc-notif\" viewBox=\"0 0 16 17\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.25 8.5C0.25 4.25 3.71875 0.75 8 0.75C12.25 0.75 15.75 4.25 15.75 8.5C15.75 12.7812 12.25 16.25 8 16.25C3.71875 16.25 0.25 12.7812 0.25 8.5ZM14.75 8.5C14.75 4.78125 11.6875 1.75 8 1.75C4.25 1.75 1.25 4.78125 1.25 8.5C1.25 12.25 4.25 15.25 8 15.25C11.7188 15.25 14.75 12.25 14.75 8.5ZM6.875 11.5C6.65625 11.5 6.5 11.6875 6.5 11.875V12.125C6.5 12.3438 6.65625 12.5 6.875 12.5H9.125C9.3125 12.5 9.5 12.3438 9.5 12.125V11.875C9.5 11.6875 9.3125 11.5 9.125 11.5H8.75V7.125C8.75 6.9375 8.5625 6.75 8.375 6.75H6.875C6.65625 6.75 6.5 6.9375 6.5 7.125V7.375C6.5 7.59375 6.65625 7.75 6.875 7.75H7.25V11.5H6.875ZM7 5C7 4.46875 7.4375 4 8 4C8.53125 4 9 4.46875 9 5C9 5.5625 8.53125 6 8 6C7.4375 6 7 5.5625 7 5Z\"/></svg>",
|
|
3359
|
-
information: "<svg class=\"vc-information\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.00244 0.190002C2.7915 0.190002 0.189941 2.815 0.189941 6.0025C0.189941 9.21344 2.7915 11.815 6.00244 11.815C9.18994 11.815 11.8149 9.21344 11.8149 6.0025C11.8149 2.815 9.18994 0.190002 6.00244 0.190002ZM6.00244 10.69C3.40088 10.69 1.31494 8.60406 1.31494 6.0025C1.31494 3.42438 3.40088 1.315 6.00244 1.315C8.58057 1.315 10.6899 3.42438 10.6899 6.0025C10.6899 8.60406 8.58057 10.69 6.00244 10.69ZM6.00244 2.76813C5.43994 2.76813 5.01807 3.21344 5.01807 3.7525C5.01807 4.315 5.43994 4.73688 6.00244 4.73688C6.5415 4.73688 6.98682 4.315 6.98682 3.7525C6.98682 3.21344 6.5415 2.76813 6.00244 2.76813ZM7.31494 8.72125V8.15875C7.31494 8.01813 7.17432 7.8775 7.03369 7.8775H6.75244V5.53375C6.75244 5.39313 6.61182 5.2525 6.47119 5.2525H4.97119C4.80713 5.2525 4.68994 5.39313 4.68994 5.53375V6.09625C4.68994 6.26031 4.80713 6.3775 4.97119 6.3775H5.25244V7.8775H4.97119C4.80713 7.8775 4.68994 8.01813 4.68994 8.15875V8.72125C4.68994 8.88531 4.80713 9.0025 4.97119 9.0025H7.03369C7.17432 9.0025 7.31494 8.88531 7.31494 8.72125Z\"/></svg>",
|
|
3360
|
-
info_fill: "<svg class=\"vc-info-fill\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.00249 11.815C9.21241 11.815 11.815 9.21335 11.815 6.00249C11.815 2.7935 9.21241 0.190002 6.00249 0.190002C2.79257 0.190002 0.190002 2.7935 0.190002 6.00249C0.190002 9.21335 2.79257 11.815 6.00249 11.815ZM6.00249 4.73687C5.45883 4.73687 5.01812 4.29616 5.01812 3.75249C5.01812 3.20883 5.45883 2.76812 6.00249 2.76812C6.54615 2.76812 6.98686 3.20883 6.98686 3.75249C6.98686 4.29616 6.54615 4.73687 6.00249 4.73687ZM4.68999 8.72123C4.68999 8.87655 4.81592 9.00248 4.97124 9.00248H7.03374C7.18906 9.00248 7.31499 8.87655 7.31499 8.72123V8.15873C7.31499 8.00342 7.18906 7.87748 7.03374 7.87748H6.75249V5.53374C6.75249 5.37842 6.62656 5.25249 6.47124 5.25249H4.97124C4.81592 5.25249 4.68999 5.37842 4.68999 5.53374V6.09624C4.68999 6.25156 4.81592 6.37749 4.97124 6.37749H5.25249V7.87748H4.97124C4.81592 7.87748 4.68999 8.00342 4.68999 8.15873V8.72123Z\"/></svg>",
|
|
3361
|
-
error: "<svg class=\"vc-notif\" viewBox=\"0 0 16 17\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.4141 8.49991L7.99991 1.9141L14.5857 8.49991L7.99991 15.0857L1.4141 8.49991ZM7.46958 1.03022C7.76247 0.737323 8.23734 0.737324 8.53024 1.03022L15.4696 7.96958C15.7625 8.26247 15.7625 8.73734 15.4696 9.03024L8.53024 15.9696C8.23734 16.2625 7.76247 16.2625 7.46958 15.9696L0.530216 9.03024C0.237323 8.73734 0.237324 8.26247 0.530217 7.96958L7.46958 1.03022ZM7.62491 4.49989C7.40616 4.49989 7.24991 4.68739 7.24991 4.90614L7.46866 10.1561C7.46866 10.3436 7.65616 10.4999 7.84366 10.4999H8.12491C8.31241 10.4999 8.49991 10.3436 8.49991 10.1561L8.71866 4.90614C8.71866 4.68739 8.56241 4.49989 8.34366 4.49989H7.62491ZM7.99991 11.1249C7.49991 11.1249 7.12491 11.5311 7.12491 11.9999C7.12491 12.4999 7.49991 12.8749 7.99991 12.8749C8.46866 12.8749 8.87491 12.4999 8.87491 11.9999C8.87491 11.5311 8.46866 11.1249 7.99991 11.1249Z\"/></svg>",
|
|
3362
|
-
question: "<svg class=\"vc-question\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 0.190002C2.78906 0.190002 0.1875 2.815 0.1875 6.0025C0.1875 9.21344 2.78906 11.815 6 11.815C9.1875 11.815 11.8125 9.21344 11.8125 6.0025C11.8125 2.815 9.1875 0.190002 6 0.190002ZM6 10.69C3.39844 10.69 1.3125 8.60406 1.3125 6.0025C1.3125 3.42438 3.39844 1.315 6 1.315C8.57812 1.315 10.6875 3.42438 10.6875 6.0025C10.6875 8.60406 8.57812 10.69 6 10.69ZM8.50781 4.71344C8.50781 3.54156 7.26562 2.6275 6.11719 2.6275C5.01562 2.6275 4.3125 3.09625 3.77344 3.91656C3.67969 4.03375 3.70312 4.19781 3.82031 4.29156L4.47656 4.78375C4.59375 4.8775 4.78125 4.85406 4.875 4.73688C5.22656 4.29156 5.48438 4.03375 6.02344 4.03375C6.44531 4.03375 6.96094 4.29156 6.96094 4.71344C6.96094 5.01813 6.70312 5.15875 6.28125 5.39313C5.8125 5.67438 5.17969 6.0025 5.17969 6.84625V7.03375C5.17969 7.19781 5.29688 7.315 5.46094 7.315H6.51562C6.67969 7.315 6.79688 7.19781 6.79688 7.03375V6.89313C6.79688 6.30719 8.50781 6.28375 8.50781 4.71344ZM6.98438 8.6275C6.98438 8.08844 6.53906 7.64313 6 7.64313C5.4375 7.64313 5.01562 8.08844 5.01562 8.6275C5.01562 9.19 5.4375 9.61188 6 9.61188C6.53906 9.61188 6.98438 9.19 6.98438 8.6275Z\"/></svg>",
|
|
3363
|
-
question_fill: "<svg class=\"vc-question-fill\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.8125 6.0025C11.8125 2.815 9.1875 0.190002 6 0.190002C2.78906 0.190002 0.1875 2.815 0.1875 6.0025C0.1875 9.21344 2.78906 11.815 6 11.815C9.1875 11.815 11.8125 9.21344 11.8125 6.0025ZM6.14062 2.11188C7.47656 2.11188 8.88281 3.14313 8.88281 4.5025C8.88281 6.33063 6.9375 6.35406 6.9375 7.01031V7.03375C6.9375 7.19781 6.79688 7.315 6.65625 7.315H5.34375C5.17969 7.315 5.0625 7.19781 5.0625 7.03375V6.94C5.0625 5.97906 5.78906 5.60406 6.32812 5.29938C6.79688 5.04156 7.10156 4.85406 7.10156 4.5025C7.10156 4.03375 6.49219 3.72906 6.02344 3.72906C5.39062 3.72906 5.10938 4.03375 4.6875 4.57281C4.59375 4.69 4.40625 4.71344 4.28906 4.61969L3.46875 4.01031C3.35156 3.91656 3.32812 3.7525 3.42188 3.61188C4.05469 2.65094 4.875 2.11188 6.14062 2.11188ZM6 7.92438C6.58594 7.92438 7.07812 8.41656 7.07812 9.0025C7.07812 9.61188 6.58594 10.0806 6 10.0806C5.39062 10.0806 4.92188 9.61188 4.92188 9.0025C4.92188 8.41656 5.39062 7.92438 6 7.92438Z\"/></svg>",
|
|
3364
|
-
attention: "<svg class=\"vc-attention\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.2968 5.99686C12.2968 9.47529 9.4774 12.2937 5.99999 12.2937C2.52257 12.2937 -0.296875 9.47529 -0.296875 5.99686C-0.296875 2.52046 2.52257 -0.300003 5.99999 -0.300003C9.4774 -0.300003 12.2968 2.52046 12.2968 5.99686ZM0.921872 5.99686C0.921872 8.80428 3.19351 11.075 5.99999 11.075C8.8074 11.075 11.0781 8.80328 11.0781 5.99686C11.0781 3.19046 8.80542 0.918744 5.99999 0.918744C3.19361 0.918744 0.921872 3.19132 0.921872 5.99686ZM6.52265 6.80936C6.68498 6.80936 6.81886 6.68205 6.82696 6.51987L6.99961 3.06675C7.00832 2.89274 6.86956 2.74686 6.6953 2.74686H5.30467C5.13041 2.74686 4.99165 2.89274 5.00036 3.06675L5.17301 6.51987C5.18111 6.68205 5.31499 6.80936 5.47732 6.80936H6.52265ZM7.06639 8.43435C7.06639 9.02238 6.58801 9.50076 5.99999 9.50076C5.41196 9.50076 4.93358 9.02238 4.93358 8.43435C4.93358 7.84633 5.41196 7.36795 5.99999 7.36795C6.58801 7.36795 7.06639 7.84633 7.06639 8.43435Z\"/></svg>",
|
|
3365
|
-
attention_fill: "<svg class=\"vc-attention-fill\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.00249 11.815C9.21241 11.815 11.815 9.21335 11.815 6.00249C11.815 2.7935 9.21241 0.190002 6.00249 0.190002C2.79257 0.190002 0.190002 2.7935 0.190002 6.00249C0.190002 9.21335 2.79257 11.815 6.00249 11.815ZM5.43358 6.75249C5.28421 6.75249 5.16089 6.63571 5.15277 6.48657L4.97891 3.29908C4.97012 3.13797 5.09836 3.0025 5.2597 3.0025H6.74525C6.90659 3.0025 7.03486 3.13797 7.02607 3.29908L6.85221 6.48657C6.84409 6.63571 6.72076 6.75249 6.5714 6.75249H5.43358ZM4.92437 8.25248C4.92437 8.84792 5.40705 9.33061 6.00249 9.33061C6.59792 9.33061 7.08061 8.84792 7.08061 8.25248C7.08061 7.65705 6.59792 7.17436 6.00249 7.17436C5.40705 7.17436 4.92437 7.65705 4.92437 8.25248Z\"/></svg>",
|
|
3366
|
-
three_dots: "<svg class=\"vc-three-dots\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.52637 2.47368C6.52637 3.30263 7.1711 3.94737 8.00005 3.94737C8.78295 3.94737 9.47374 3.30263 9.47374 2.47368C9.47374 1.69079 8.78295 1 8.00005 1C7.1711 1 6.52637 1.69079 6.52637 2.47368ZM8.00005 6.52632C7.1711 6.52632 6.52637 7.21711 6.52637 8.00001C6.52637 8.82895 7.1711 9.47369 8.00005 9.47369C8.78295 9.47369 9.47374 8.82895 9.47374 8.00001C9.47374 7.21711 8.78295 6.52632 8.00005 6.52632ZM8.00005 15C7.1711 15 6.52637 14.3553 6.52637 13.5263C6.52637 12.7435 7.1711 12.0526 8.00005 12.0526C8.78295 12.0526 9.47374 12.7435 9.47374 13.5263C9.47374 14.3553 8.78295 15 8.00005 15Z\"/></svg>"
|
|
3367
|
-
};
|
|
3368
|
-
var vuetifyConfig = {
|
|
3369
|
-
// TODO: is this the correct iconfont?
|
|
3370
|
-
icons: {
|
|
3371
|
-
iconfont: "md",
|
|
3372
|
-
rtl: false,
|
|
3373
|
-
values: {
|
|
3374
|
-
example: {
|
|
3375
|
-
component: __vue_component__$1,
|
|
3376
|
-
props: {
|
|
3377
|
-
svg: "<svg viewBox=\"0 0 13 14\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.21211 4.07351C7.28689 4.07351 8.1582 3.21068 8.1582 2.14635C8.1582 1.08305 7.28689 0.220215 6.21211 0.220215C5.13733 0.220215 4.26707 1.08305 4.26707 2.14635C4.26707 3.21068 5.13733 4.07351 6.21211 4.07351Z\" fill=\"blue\"/>\n <path d=\"M5.4247 12.7562L5.26192 12.6384C4.62227 12.1785 4.4814 11.293 4.94574 10.6606L9.44105 4.78918C9.9054 4.15678 10.7997 4.01625 11.4393 4.47608L11.6021 4.59388C12.2407 5.05372 12.3826 5.93928 11.9183 6.57272L7.42296 12.442C6.95861 13.0755 6.06435 13.215 5.4247 12.7562Z\" fill=\"red\"/>\n <path d=\"M3.68876 10.5109L4.67276 9.24192C5.20493 8.62192 5.40215 7.88516 4.9378 7.25276L2.98337 4.78929C2.51902 4.15689 1.62476 4.01636 0.986148 4.47619L0.822322 4.59296C0.183713 5.05382 0.0417997 5.93939 0.506148 6.57179L2.55867 9.16236L3.68876 10.5109Z\" fill=\"green\"/>\n </svg>"
|
|
3378
|
-
}
|
|
3379
|
-
},
|
|
3380
|
-
flag: {
|
|
3381
|
-
component: __vue_component__$1,
|
|
3382
|
-
props: {
|
|
3383
|
-
svg: icons.flag
|
|
3384
|
-
}
|
|
3385
|
-
},
|
|
3386
|
-
customer: {
|
|
3387
|
-
component: __vue_component__$1,
|
|
3388
|
-
props: {
|
|
3389
|
-
svg: icons.customer
|
|
3390
|
-
}
|
|
3391
|
-
},
|
|
3392
|
-
inactive: {
|
|
3393
|
-
component: __vue_component__$1,
|
|
3394
|
-
props: {
|
|
3395
|
-
svg: icons.inactive
|
|
3396
|
-
}
|
|
3397
|
-
},
|
|
3398
|
-
vip: {
|
|
3399
|
-
component: __vue_component__$1,
|
|
3400
|
-
props: {
|
|
3401
|
-
svg: icons.vip
|
|
3402
|
-
}
|
|
3403
|
-
},
|
|
3404
|
-
success: {
|
|
3405
|
-
component: __vue_component__$1,
|
|
3406
|
-
props: {
|
|
3407
|
-
svg: icons.success
|
|
3408
|
-
}
|
|
3409
|
-
},
|
|
3410
|
-
close_button: {
|
|
3411
|
-
component: __vue_component__$1,
|
|
3412
|
-
props: {
|
|
3413
|
-
svg: icons.close_button
|
|
3414
|
-
}
|
|
3415
|
-
},
|
|
3416
|
-
arrow_right: {
|
|
3417
|
-
component: __vue_component__$1,
|
|
3418
|
-
props: {
|
|
3419
|
-
svg: icons.arrow_right
|
|
3420
|
-
}
|
|
3421
|
-
},
|
|
3422
|
-
warning: {
|
|
3423
|
-
component: __vue_component__$1,
|
|
3424
|
-
props: {
|
|
3425
|
-
svg: icons.warning
|
|
3426
|
-
}
|
|
3427
|
-
},
|
|
3428
|
-
check_circle: {
|
|
3429
|
-
component: __vue_component__$1,
|
|
3430
|
-
props: {
|
|
3431
|
-
svg: icons.check_circle
|
|
3432
|
-
}
|
|
3433
|
-
},
|
|
3434
|
-
info: {
|
|
3435
|
-
component: __vue_component__$1,
|
|
3436
|
-
props: {
|
|
3437
|
-
svg: icons.info
|
|
3438
|
-
}
|
|
3439
|
-
},
|
|
3440
|
-
information: {
|
|
3441
|
-
component: __vue_component__$1,
|
|
3442
|
-
props: {
|
|
3443
|
-
svg: icons.information
|
|
3444
|
-
}
|
|
3445
|
-
},
|
|
3446
|
-
info_fill: {
|
|
3447
|
-
component: __vue_component__$1,
|
|
3448
|
-
props: {
|
|
3449
|
-
svg: icons.info_fill
|
|
3450
|
-
}
|
|
3451
|
-
},
|
|
3452
|
-
error: {
|
|
3453
|
-
component: __vue_component__$1,
|
|
3454
|
-
props: {
|
|
3455
|
-
svg: icons.error
|
|
3456
|
-
}
|
|
3457
|
-
},
|
|
3458
|
-
question: {
|
|
3459
|
-
component: __vue_component__$1,
|
|
3460
|
-
props: {
|
|
3461
|
-
svg: icons.question
|
|
3462
|
-
}
|
|
3463
|
-
},
|
|
3464
|
-
question_fill: {
|
|
3465
|
-
component: __vue_component__$1,
|
|
3466
|
-
props: {
|
|
3467
|
-
svg: icons.question_fill
|
|
3468
|
-
}
|
|
3469
|
-
},
|
|
3470
|
-
attention: {
|
|
3471
|
-
component: __vue_component__$1,
|
|
3472
|
-
props: {
|
|
3473
|
-
svg: icons.attention
|
|
3474
|
-
}
|
|
3475
|
-
},
|
|
3476
|
-
attention_fill: {
|
|
3477
|
-
component: __vue_component__$1,
|
|
3478
|
-
props: {
|
|
3479
|
-
svg: icons.attention_fill
|
|
3480
|
-
}
|
|
3481
|
-
},
|
|
3482
|
-
three_dots: {
|
|
3483
|
-
component: __vue_component__$1,
|
|
3484
|
-
props: {
|
|
3485
|
-
svg: icons.three_dots
|
|
3486
|
-
}
|
|
3487
|
-
}
|
|
3488
|
-
}
|
|
3330
|
+
var __vue_component__$1 = /*#__PURE__*/normalizeComponent({
|
|
3331
|
+
render: __vue_render__$1,
|
|
3332
|
+
staticRenderFns: __vue_staticRenderFns__$1
|
|
3333
|
+
}, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, createInjectorSSR, undefined);//
|
|
3334
|
+
//
|
|
3335
|
+
//
|
|
3336
|
+
//
|
|
3337
|
+
//
|
|
3338
|
+
//
|
|
3339
|
+
//
|
|
3340
|
+
//
|
|
3341
|
+
var script = {
|
|
3342
|
+
components: {
|
|
3343
|
+
VCard: lib.VCard
|
|
3489
3344
|
},
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
light: {
|
|
3498
|
-
primary: '#0C315E',
|
|
3499
|
-
// represents the secondary color on DB
|
|
3500
|
-
secondary: {
|
|
3501
|
-
// represents the primary color on DB
|
|
3502
|
-
base: '#00dcf7',
|
|
3503
|
-
lighten1: '#c6f2fc',
|
|
3504
|
-
lighten2: '#def7fd',
|
|
3505
|
-
lighten3: '#effbfe'
|
|
3506
|
-
},
|
|
3507
|
-
default: '#000000',
|
|
3508
|
-
neutral: '#586E8C',
|
|
3509
|
-
success: '#54D28C',
|
|
3510
|
-
warning: '#FFC511',
|
|
3511
|
-
danger: '#F2514A',
|
|
3512
|
-
info: '#478FFF'
|
|
3513
|
-
}
|
|
3345
|
+
|
|
3346
|
+
name: "VcCard",
|
|
3347
|
+
|
|
3348
|
+
props: {
|
|
3349
|
+
dataQa: {
|
|
3350
|
+
type: String,
|
|
3351
|
+
default: 'VcCard'
|
|
3514
3352
|
}
|
|
3515
3353
|
}
|
|
3516
|
-
}
|
|
3354
|
+
};/* script */
|
|
3355
|
+
var __vue_script__ = script;
|
|
3356
|
+
/* template */
|
|
3517
3357
|
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
VAutocomplete: components$2.VAutocomplete,
|
|
3523
|
-
VBtn: components$2.VBtn,
|
|
3524
|
-
VBottomSheet: components$2.VBottomSheet,
|
|
3525
|
-
VBtnToggle: components$2.VBtnToggle,
|
|
3526
|
-
VCol: components$2.VCol,
|
|
3527
|
-
VContainer: components$2.VContainer,
|
|
3528
|
-
VDialog: components$2.VDialog,
|
|
3529
|
-
VDivider: components$2.VDivider,
|
|
3530
|
-
VForm: components$2.VForm,
|
|
3531
|
-
VIcon: components$2.VIcon,
|
|
3532
|
-
VLayout: components$2.VLayout,
|
|
3533
|
-
VList: components$2.VList,
|
|
3534
|
-
VListItem: components$2.VListItem,
|
|
3535
|
-
VListItemTitle: components$2.VListItemTitle,
|
|
3536
|
-
VMenu: components$2.VMenu,
|
|
3537
|
-
VProgressCircular: components$2.VProgressCircular,
|
|
3538
|
-
VRow: components$2.VRow,
|
|
3539
|
-
VSnackbar: components$2.VSnackbar,
|
|
3540
|
-
VSubheader: components$2.VSubheader,
|
|
3541
|
-
VSwitch: components$2.VSwitch,
|
|
3542
|
-
VTextarea: components$2.VTextarea,
|
|
3543
|
-
VTextField: components$2.VTextField,
|
|
3544
|
-
VTooltip: components$2.VTooltip
|
|
3545
|
-
}
|
|
3546
|
-
});
|
|
3358
|
+
var __vue_render__ = function __vue_render__() {
|
|
3359
|
+
var _vm = this;
|
|
3360
|
+
|
|
3361
|
+
var _h = _vm.$createElement;
|
|
3547
3362
|
|
|
3548
|
-
var
|
|
3549
|
-
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
|
3550
|
-
_ref$theme = _ref.theme,
|
|
3551
|
-
theme = _ref$theme === void 0 ? {} : _ref$theme,
|
|
3552
|
-
_ref$options = _ref.options,
|
|
3553
|
-
options = _ref$options === void 0 ? {} : _ref$options;
|
|
3363
|
+
var _c = _vm._self._c || _h;
|
|
3554
3364
|
|
|
3555
|
-
|
|
3365
|
+
return _c('v-card', {
|
|
3366
|
+
staticClass: "VcCard",
|
|
3367
|
+
attrs: {
|
|
3368
|
+
"tile": "",
|
|
3369
|
+
"data-qa": _vm.dataQa
|
|
3370
|
+
}
|
|
3371
|
+
}, [_vm._t("default", function () {
|
|
3372
|
+
return [_vm._v("\n " + _vm._s(this.$slots && this.$slots.default) + "\n ")];
|
|
3373
|
+
})], 2);
|
|
3374
|
+
};
|
|
3556
3375
|
|
|
3376
|
+
var __vue_staticRenderFns__ = [];
|
|
3377
|
+
/* style */
|
|
3557
3378
|
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
};
|
|
3562
|
-
|
|
3379
|
+
var __vue_inject_styles__ = function __vue_inject_styles__(inject) {
|
|
3380
|
+
if (!inject) return;
|
|
3381
|
+
inject("data-v-45292040_0", {
|
|
3382
|
+
source: ".VcCard[data-v-45292040]{position:relative;padding:16px 0 0;border-bottom:1px solid #e0e0e0;background:#fff;box-sizing:border-box;box-shadow:none!important}@media screen and (min-width:960px){.VcCard[data-v-45292040]{display:flex;flex-direction:column;align-items:flex-start;padding:24px;border:1px solid #e0e0e0;border-radius:6px!important}.VcCard[data-v-45292040]:hover{box-shadow:0 4px 18px rgba(145,152,160,.22)!important}}",
|
|
3383
|
+
map: undefined,
|
|
3384
|
+
media: undefined
|
|
3385
|
+
});
|
|
3386
|
+
};
|
|
3387
|
+
/* scoped */
|
|
3388
|
+
|
|
3389
|
+
|
|
3390
|
+
var __vue_scope_id__ = "data-v-45292040";
|
|
3391
|
+
/* module identifier */
|
|
3392
|
+
|
|
3393
|
+
var __vue_module_identifier__ = "data-v-45292040";
|
|
3394
|
+
/* functional template */
|
|
3395
|
+
|
|
3396
|
+
var __vue_is_functional_template__ = false;
|
|
3397
|
+
/* style inject shadow dom */
|
|
3398
|
+
|
|
3399
|
+
var __vue_component__ = /*#__PURE__*/normalizeComponent({
|
|
3400
|
+
render: __vue_render__,
|
|
3401
|
+
staticRenderFns: __vue_staticRenderFns__
|
|
3402
|
+
}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, createInjectorSSR, undefined);// Put here any components that need to be available to users of the package
|
|
3403
|
+
var components$1=/*#__PURE__*/Object.freeze({__proto__:null,VcConfirmModal:__vue_component__$i,VcInputModal:__vue_component__$g,VcNoticeModal:__vue_component__$f,VcModalFooter:__vue_component__$k,VcModalHeader:__vue_component__$j,VcAlert:__vue_component__$e,VcTooltip:__vue_component__$d,VcIconWithTooltip:__vue_component__$c,VcBottomActions:__vue_component__$a,VcActionList:__vue_component__$9,VcActions:__vue_component__$8,VcButton:__vue_component__$n,VcButtonGroup:__vue_component__$7,VcForm:__vue_component__$h,VcIcon:__vue_component__$o,VcLayout:__vue_component__$l,VcLoader:__vue_component__$6,VcSwitch:__vue_component__$5,VcTextField:__vue_component__$4,VcAvatar:__vue_component__$b,VcTextArea:__vue_component__$3,VcSvg:__vue_component__$2,VcToast:__vue_component__$1,VcCard:__vue_component__});var install = function installdesignSystem(Vue) {
|
|
3563
3404
|
Object.entries(components$1).forEach(function (_ref) {
|
|
3564
3405
|
var _ref2 = _slicedToArray(_ref, 2),
|
|
3565
3406
|
componentName = _ref2[0],
|
|
@@ -3568,7 +3409,7 @@ var DesignSystem = function DesignSystem() {
|
|
|
3568
3409
|
Vue.component(componentName, component);
|
|
3569
3410
|
});
|
|
3570
3411
|
}; // Create module definition for Vue.use()
|
|
3571
|
-
var components=/*#__PURE__*/Object.freeze({__proto__:null,'default':
|
|
3412
|
+
var components=/*#__PURE__*/Object.freeze({__proto__:null,'default':install,VcConfirmModal:__vue_component__$i,VcInputModal:__vue_component__$g,VcNoticeModal:__vue_component__$f,VcModalFooter:__vue_component__$k,VcModalHeader:__vue_component__$j,VcAlert:__vue_component__$e,VcTooltip:__vue_component__$d,VcIconWithTooltip:__vue_component__$c,VcBottomActions:__vue_component__$a,VcActionList:__vue_component__$9,VcActions:__vue_component__$8,VcButton:__vue_component__$n,VcButtonGroup:__vue_component__$7,VcForm:__vue_component__$h,VcIcon:__vue_component__$o,VcLayout:__vue_component__$l,VcLoader:__vue_component__$6,VcSwitch:__vue_component__$5,VcTextField:__vue_component__$4,VcAvatar:__vue_component__$b,VcTextArea:__vue_component__$3,VcSvg:__vue_component__$2,VcToast:__vue_component__$1,VcCard:__vue_component__});// only expose one global var, with component exports exposed as properties of
|
|
3572
3413
|
// that global var (eg. plugin.component)
|
|
3573
3414
|
|
|
3574
3415
|
Object.entries(components).forEach(function (_ref) {
|
|
@@ -3579,4 +3420,4 @@ Object.entries(components).forEach(function (_ref) {
|
|
|
3579
3420
|
if (componentName !== 'default') {
|
|
3580
3421
|
install[componentName] = component;
|
|
3581
3422
|
}
|
|
3582
|
-
});exports
|
|
3423
|
+
});exports["default"]=install;
|