@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.
Files changed (102) hide show
  1. package/README.md +30 -21
  2. package/dist/@vcita/design-system.esm.js +519 -676
  3. package/dist/@vcita/design-system.min.js +1 -1
  4. package/dist/@vcita/design-system.ssr.js +449 -608
  5. package/init/DesignSystem.js +77 -0
  6. package/init/VcSvg/VcSvg.stories.js +25 -0
  7. package/{src/components → init}/VcSvg/VcSvg.vue +0 -0
  8. package/init/vuetify.config.js +132 -0
  9. package/package.json +6 -5
  10. package/src/assets/logo.png +0 -0
  11. package/src/assets/logo.svg +1 -0
  12. package/src/components/VcActionList/VcActionList.spec.js +57 -0
  13. package/src/components/VcActionList/VcActionList.stories.js +56 -0
  14. package/src/components/VcActionList/VcActionList.vue +1 -1
  15. package/src/components/VcActions/VcActions.spec.js +153 -0
  16. package/src/components/VcActions/VcActions.stories.js +103 -0
  17. package/src/components/VcActions/VcActions.vue +14 -6
  18. package/src/components/VcAlert/VcAlert.spec.js +162 -0
  19. package/src/components/VcAlert/VcAlert.stories.js +105 -0
  20. package/src/components/VcAlert/VcAlert.vue +7 -8
  21. package/src/components/VcAutoComplete/VcAutoComplete.spec.js +67 -0
  22. package/src/components/VcAutoComplete/VcAutoComplete.stories.js +99 -0
  23. package/src/components/VcAvatar/VcAvatar.spec.js +110 -0
  24. package/src/components/VcAvatar/VcAvatar.stories.js +101 -0
  25. package/src/components/VcBottomActions/VcBottomActions.spec.js +64 -0
  26. package/src/components/VcBottomActions/VcBottomActions.stories.js +103 -0
  27. package/src/components/VcBottomActions/VcBottomActions.vue +4 -4
  28. package/src/components/VcButton/VcButton.spec.js +181 -0
  29. package/src/components/VcButton/VcButton.stories.js +123 -0
  30. package/src/components/VcButton/VcButton.stories.mdx.old +40 -0
  31. package/src/components/VcButtonGroup/VcButtonGroup.spec.js +209 -0
  32. package/src/components/VcButtonGroup/VcButtonGroup.stories.js +109 -0
  33. package/src/components/VcButtonGroup/VcButtonGroup.vue +5 -1
  34. package/src/components/VcCard/VcCard.spec.js +38 -0
  35. package/src/components/VcCard/VcCard.stories.js +28 -0
  36. package/src/components/VcCard/VcCard.vue +46 -0
  37. package/src/components/VcExpansionPanels/VcExpansionPanels.stories.js +36 -0
  38. package/src/components/VcForm/VcForm.spec.js +38 -0
  39. package/src/components/VcForm/VcForm.stories.js +44 -0
  40. package/src/components/VcHourInput/VcHourInput.stories.js +36 -0
  41. package/src/components/VcIcon/VcIcon.spec.js +38 -0
  42. package/src/components/VcIcon/VcIcon.stories.js +53 -0
  43. package/src/components/VcIconWithTooltip/VcIconWithTooltip.spec.js +156 -0
  44. package/src/components/VcIconWithTooltip/VcIconWithTooltip.stories.js +77 -0
  45. package/src/components/VcIconWithTooltip/VcIconWithTooltip.vue +7 -6
  46. package/src/components/VcLayout/VcLayout.spec.js +38 -0
  47. package/src/components/VcLayout/VcLayout.stories.js +26 -0
  48. package/src/components/VcLoader/VcLoader.spec.js +38 -0
  49. package/src/components/VcLoader/VcLoader.stories.js +30 -0
  50. package/src/components/VcLoader/VcLoader.vue +1 -1
  51. package/src/components/VcMenu/VcMenu.spec.js +38 -0
  52. package/src/components/VcMenu/VcMenu.stories.js +45 -0
  53. package/src/components/VcSwitch/VcSwitch.spec.js +38 -0
  54. package/src/components/VcSwitch/VcSwitch.stories.js +87 -0
  55. package/src/components/VcSwitch/VcSwitch.vue +14 -1
  56. package/src/components/VcTextArea/VcTextArea.spec.js +41 -0
  57. package/src/components/VcTextArea/VcTextArea.stories.js +144 -0
  58. package/src/components/VcTextArea/VcTextArea.vue +21 -10
  59. package/src/components/VcTextField/VcTextField.spec.js +170 -0
  60. package/src/components/VcTextField/VcTextField.stories.js +65 -0
  61. package/src/components/VcTextField/VcTextField.vue +4 -3
  62. package/src/components/VcToast/VcToast.spec.js +75 -0
  63. package/src/components/VcToast/VcToast.stories.js +80 -0
  64. package/src/components/VcToast/VcToast.vue +11 -15
  65. package/src/components/VcTooltip/VcTooltip.spec.js +58 -0
  66. package/src/components/VcTooltip/VcTooltip.stories.js +163 -0
  67. package/src/components/VcTooltip/VcTooltip.vue +4 -4
  68. package/src/components/index.js +26 -0
  69. package/src/components/modal/VcConfirmModal/VcConfirmModal.spec.js +48 -0
  70. package/src/components/modal/VcConfirmModal/VcConfirmModal.stories.js +142 -0
  71. package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.spec.js +49 -0
  72. package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.stories.js +53 -0
  73. package/src/components/modal/VcInputModal/VcInputModal.spec.js +79 -0
  74. package/src/components/modal/VcInputModal/VcInputModal.stories.js +188 -0
  75. package/src/components/modal/VcNoticeModal/VcNoticeModal.spec.js +54 -0
  76. package/src/components/modal/VcNoticeModal/VcNoticeModal.stories.js +136 -0
  77. package/src/components/modal/elements/VcModalContainer.spec.js +38 -0
  78. package/src/components/modal/elements/VcModalContainer.stories.js +49 -0
  79. package/src/components/modal/elements/VcModalFooter.spec.js +82 -0
  80. package/src/components/modal/elements/VcModalFooter.stories.js +47 -0
  81. package/src/components/modal/elements/VcModalHeader.spec.js +103 -0
  82. package/src/components/modal/elements/VcModalHeader.stories.js +91 -0
  83. package/src/components/modal/elements/VcModalWrapper.spec.js +38 -0
  84. package/src/components/modal/elements/VcModalWrapper.stories.js +34 -0
  85. package/src/entry.esm.js +16 -0
  86. package/src/entry.js +13 -0
  87. package/src/scss/_i18n-mixins.scss +174 -0
  88. package/src/scss/mixins.scss +7 -0
  89. package/src/stories/assets/HeaderImage.svg +9 -0
  90. package/src/stories/assets/code-brackets.svg +1 -0
  91. package/src/stories/assets/colors.svg +1 -0
  92. package/src/stories/assets/comments.svg +1 -0
  93. package/src/stories/assets/direction.svg +1 -0
  94. package/src/stories/assets/flow.svg +1 -0
  95. package/src/stories/assets/plugin.svg +1 -0
  96. package/src/stories/assets/rabbit.svg +17 -0
  97. package/src/stories/assets/repo.svg +1 -0
  98. package/src/stories/assets/stackalt.svg +1 -0
  99. package/src/stories/colors.stories.mdx +78 -0
  100. package/src/stories/welcome.stories.mdx +210 -0
  101. package/styles/variables.scss +65 -7
  102. package/utils/colorUtil.js +41 -0
@@ -1,7 +1,4 @@
1
- import { VDialog, VBtn, VLayout, VAlert, VTooltip, VIcon, VSubheader, VListItem, VList, VBottomSheet, VListItemTitle, VMenu, VCol, VRow, VContainer, VProgressCircular, VSwitch, VTextField, VTextarea, VSnackbar } from 'vuetify/lib';
2
- import Vuetify from 'vuetify';
3
- import Vue from 'vue';
4
- import { VAlert as VAlert$1, VApp, VAutocomplete, VBtn as VBtn$1, VBottomSheet as VBottomSheet$1, VBtnToggle, VCol as VCol$1, VContainer as VContainer$1, VDialog as VDialog$1, VDivider, VForm, VIcon as VIcon$1, VLayout as VLayout$1, VList as VList$1, VListItem as VListItem$1, VListItemTitle as VListItemTitle$1, VMenu as VMenu$1, VProgressCircular as VProgressCircular$1, VRow as VRow$1, VSnackbar as VSnackbar$1, VSubheader as VSubheader$1, VSwitch as VSwitch$1, VTextarea as VTextarea$1, VTextField as VTextField$1, VTooltip as VTooltip$1 } from 'vuetify/lib/components';
1
+ import { VDialog, VBtn, VLayout, VAlert, VTooltip, VIcon, VSubheader, VListItem, VList, VBottomSheet, VListItemTitle, VMenu, VCol, VRow, VContainer, VProgressCircular, VSwitch, VTextField, VTextarea, VSnackbar, VCard } from 'vuetify/lib';
5
2
 
6
3
  //
7
4
  //
@@ -14,7 +11,7 @@ import { VAlert as VAlert$1, VApp, VAutocomplete, VBtn as VBtn$1, VBottomSheet a
14
11
  //
15
12
  //
16
13
  //
17
- var script$o = {
14
+ var script$p = {
18
15
  components: {
19
16
  VDialog: VDialog
20
17
  },
@@ -161,10 +158,10 @@ function addStyle(id, css) {
161
158
  }
162
159
 
163
160
  /* script */
164
- const __vue_script__$o = script$o;
161
+ const __vue_script__$p = script$p;
165
162
  /* template */
166
163
 
167
- var __vue_render__$l = function () {
164
+ var __vue_render__$m = function () {
168
165
  var _vm = this;
169
166
 
170
167
  var _h = _vm.$createElement;
@@ -199,10 +196,10 @@ var __vue_render__$l = function () {
199
196
  }, [_vm._t("default")], 2);
200
197
  };
201
198
 
202
- var __vue_staticRenderFns__$l = [];
199
+ var __vue_staticRenderFns__$m = [];
203
200
  /* style */
204
201
 
205
- const __vue_inject_styles__$o = function (inject) {
202
+ const __vue_inject_styles__$p = function (inject) {
206
203
  if (!inject) return;
207
204
  inject("data-v-f5aa52c8_0", {
208
205
  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)}}",
@@ -213,23 +210,23 @@ const __vue_inject_styles__$o = function (inject) {
213
210
  /* scoped */
214
211
 
215
212
 
216
- const __vue_scope_id__$o = undefined;
213
+ const __vue_scope_id__$p = undefined;
217
214
  /* module identifier */
218
215
 
219
- const __vue_module_identifier__$o = undefined;
216
+ const __vue_module_identifier__$p = undefined;
220
217
  /* functional template */
221
218
 
222
- const __vue_is_functional_template__$o = false;
219
+ const __vue_is_functional_template__$p = false;
223
220
  /* style inject SSR */
224
221
 
225
222
  /* style inject shadow dom */
226
223
 
227
- const __vue_component__$o = /*#__PURE__*/normalizeComponent({
228
- render: __vue_render__$l,
229
- staticRenderFns: __vue_staticRenderFns__$l
230
- }, __vue_inject_styles__$o, __vue_script__$o, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, createInjector, undefined, undefined);
224
+ const __vue_component__$p = /*#__PURE__*/normalizeComponent({
225
+ render: __vue_render__$m,
226
+ staticRenderFns: __vue_staticRenderFns__$m
227
+ }, __vue_inject_styles__$p, __vue_script__$p, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, createInjector, undefined, undefined);
231
228
 
232
- var script$n = {
229
+ var script$o = {
233
230
  name: "VcIcon",
234
231
  render: function (createElement) {
235
232
  const props = {
@@ -241,28 +238,28 @@ var script$n = {
241
238
  };
242
239
 
243
240
  /* script */
244
- const __vue_script__$n = script$n;
241
+ const __vue_script__$o = script$o;
245
242
  /* template */
246
243
 
247
244
  /* style */
248
245
 
249
- const __vue_inject_styles__$n = undefined;
246
+ const __vue_inject_styles__$o = undefined;
250
247
  /* scoped */
251
248
 
252
- const __vue_scope_id__$n = undefined;
249
+ const __vue_scope_id__$o = undefined;
253
250
  /* module identifier */
254
251
 
255
- const __vue_module_identifier__$n = undefined;
252
+ const __vue_module_identifier__$o = undefined;
256
253
  /* functional template */
257
254
 
258
- const __vue_is_functional_template__$n = undefined;
255
+ const __vue_is_functional_template__$o = undefined;
259
256
  /* style inject */
260
257
 
261
258
  /* style inject SSR */
262
259
 
263
260
  /* style inject shadow dom */
264
261
 
265
- const __vue_component__$n = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$n, __vue_script__$n, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, undefined, undefined, undefined);
262
+ const __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);
266
263
 
267
264
  //
268
265
  //
@@ -289,7 +286,7 @@ const __vue_component__$n = /*#__PURE__*/normalizeComponent({}, __vue_inject_sty
289
286
  //
290
287
  //
291
288
  //
292
- var script$m = {
289
+ var script$n = {
293
290
  components: {
294
291
  VBtn: VBtn
295
292
  },
@@ -367,10 +364,10 @@ var script$m = {
367
364
  };
368
365
 
369
366
  /* script */
370
- const __vue_script__$m = script$m;
367
+ const __vue_script__$n = script$n;
371
368
  /* template */
372
369
 
373
- var __vue_render__$k = function () {
370
+ var __vue_render__$l = function () {
374
371
  var _vm = this;
375
372
 
376
373
  var _h = _vm.$createElement;
@@ -405,10 +402,10 @@ var __vue_render__$k = function () {
405
402
  }, [_vm._t("prepend"), _vm._v("\n " + _vm._s(_vm.label || _vm.$slots.default && _vm.$slots.default[0].text || '') + "\n "), _vm._t("append")], 2);
406
403
  };
407
404
 
408
- var __vue_staticRenderFns__$k = [];
405
+ var __vue_staticRenderFns__$l = [];
409
406
  /* style */
410
407
 
411
- const __vue_inject_styles__$m = function (inject) {
408
+ const __vue_inject_styles__$n = function (inject) {
412
409
  if (!inject) return;
413
410
  inject("data-v-28ad3b41_0", {
414
411
  source: ".VcButton[data-v-28ad3b41]{letter-spacing:.003em}",
@@ -419,28 +416,28 @@ const __vue_inject_styles__$m = function (inject) {
419
416
  /* scoped */
420
417
 
421
418
 
422
- const __vue_scope_id__$m = "data-v-28ad3b41";
419
+ const __vue_scope_id__$n = "data-v-28ad3b41";
423
420
  /* module identifier */
424
421
 
425
- const __vue_module_identifier__$m = undefined;
422
+ const __vue_module_identifier__$n = undefined;
426
423
  /* functional template */
427
424
 
428
- const __vue_is_functional_template__$m = false;
425
+ const __vue_is_functional_template__$n = false;
429
426
  /* style inject SSR */
430
427
 
431
428
  /* style inject shadow dom */
432
429
 
433
- const __vue_component__$m = /*#__PURE__*/normalizeComponent({
434
- render: __vue_render__$k,
435
- staticRenderFns: __vue_staticRenderFns__$k
436
- }, __vue_inject_styles__$m, __vue_script__$m, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, createInjector, undefined, undefined);
430
+ const __vue_component__$n = /*#__PURE__*/normalizeComponent({
431
+ render: __vue_render__$l,
432
+ staticRenderFns: __vue_staticRenderFns__$l
433
+ }, __vue_inject_styles__$n, __vue_script__$n, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, createInjector, undefined, undefined);
437
434
 
438
- var script$l = {
435
+ var script$m = {
439
436
  name: 'VcModalContainer',
440
437
  components: {
441
- VcButton: __vue_component__$m,
442
- VcModalWrapper: __vue_component__$o,
443
- VcIcon: __vue_component__$n,
438
+ VcButton: __vue_component__$n,
439
+ VcModalWrapper: __vue_component__$p,
440
+ VcIcon: __vue_component__$o,
444
441
  VLayout: VLayout
445
442
  },
446
443
  props: {
@@ -482,10 +479,10 @@ var script$l = {
482
479
  };
483
480
 
484
481
  /* script */
485
- const __vue_script__$l = script$l;
482
+ const __vue_script__$m = script$m;
486
483
  /* template */
487
484
 
488
- var __vue_render__$j = function () {
485
+ var __vue_render__$k = function () {
489
486
  var _vm = this;
490
487
 
491
488
  var _h = _vm.$createElement;
@@ -557,10 +554,10 @@ var __vue_render__$j = function () {
557
554
  }, [_vm._t("footer")], 2)])]], 2) : _vm._e();
558
555
  };
559
556
 
560
- var __vue_staticRenderFns__$j = [];
557
+ var __vue_staticRenderFns__$k = [];
561
558
  /* style */
562
559
 
563
- const __vue_inject_styles__$l = function (inject) {
560
+ const __vue_inject_styles__$m = function (inject) {
564
561
  if (!inject) return;
565
562
  inject("data-v-cc7876ca_0", {
566
563
  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}",
@@ -571,23 +568,23 @@ const __vue_inject_styles__$l = function (inject) {
571
568
  /* scoped */
572
569
 
573
570
 
574
- const __vue_scope_id__$l = undefined;
571
+ const __vue_scope_id__$m = undefined;
575
572
  /* module identifier */
576
573
 
577
- const __vue_module_identifier__$l = undefined;
574
+ const __vue_module_identifier__$m = undefined;
578
575
  /* functional template */
579
576
 
580
- const __vue_is_functional_template__$l = false;
577
+ const __vue_is_functional_template__$m = false;
581
578
  /* style inject SSR */
582
579
 
583
580
  /* style inject shadow dom */
584
581
 
585
- const __vue_component__$l = /*#__PURE__*/normalizeComponent({
586
- render: __vue_render__$j,
587
- staticRenderFns: __vue_staticRenderFns__$j
588
- }, __vue_inject_styles__$l, __vue_script__$l, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, createInjector, undefined, undefined);
582
+ const __vue_component__$m = /*#__PURE__*/normalizeComponent({
583
+ render: __vue_render__$k,
584
+ staticRenderFns: __vue_staticRenderFns__$k
585
+ }, __vue_inject_styles__$m, __vue_script__$m, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, createInjector, undefined, undefined);
589
586
 
590
- var script$k = {
587
+ var script$l = {
591
588
  name: "VcLayout",
592
589
  render: function (createElement) {
593
590
  // `<v-layout><slot></slot></v-layout>`
@@ -600,34 +597,34 @@ var script$k = {
600
597
  };
601
598
 
602
599
  /* script */
603
- const __vue_script__$k = script$k;
600
+ const __vue_script__$l = script$l;
604
601
  /* template */
605
602
 
606
603
  /* style */
607
604
 
608
- const __vue_inject_styles__$k = undefined;
605
+ const __vue_inject_styles__$l = undefined;
609
606
  /* scoped */
610
607
 
611
- const __vue_scope_id__$k = "data-v-42241056";
608
+ const __vue_scope_id__$l = "data-v-42241056";
612
609
  /* module identifier */
613
610
 
614
- const __vue_module_identifier__$k = undefined;
611
+ const __vue_module_identifier__$l = undefined;
615
612
  /* functional template */
616
613
 
617
- const __vue_is_functional_template__$k = undefined;
614
+ const __vue_is_functional_template__$l = undefined;
618
615
  /* style inject */
619
616
 
620
617
  /* style inject SSR */
621
618
 
622
619
  /* style inject shadow dom */
623
620
 
624
- const __vue_component__$k = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$k, __vue_script__$k, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, undefined, undefined, undefined);
621
+ const __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);
625
622
 
626
- var script$j = {
623
+ var script$k = {
627
624
  name: "VcModalFooter",
628
625
  components: {
629
- VcLayout: __vue_component__$k,
630
- VcButton: __vue_component__$m
626
+ VcLayout: __vue_component__$l,
627
+ VcButton: __vue_component__$n
631
628
  },
632
629
  props: {
633
630
  direction: {
@@ -652,10 +649,10 @@ var script$j = {
652
649
  };
653
650
 
654
651
  /* script */
655
- const __vue_script__$j = script$j;
652
+ const __vue_script__$k = script$k;
656
653
  /* template */
657
654
 
658
- var __vue_render__$i = function () {
655
+ var __vue_render__$j = function () {
659
656
  var _vm = this;
660
657
 
661
658
  var _h = _vm.$createElement;
@@ -687,10 +684,10 @@ var __vue_render__$i = function () {
687
684
  }), 1);
688
685
  };
689
686
 
690
- var __vue_staticRenderFns__$i = [];
687
+ var __vue_staticRenderFns__$j = [];
691
688
  /* style */
692
689
 
693
- const __vue_inject_styles__$j = function (inject) {
690
+ const __vue_inject_styles__$k = function (inject) {
694
691
  if (!inject) return;
695
692
  inject("data-v-c22ae66a_0", {
696
693
  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)}",
@@ -701,28 +698,28 @@ const __vue_inject_styles__$j = function (inject) {
701
698
  /* scoped */
702
699
 
703
700
 
704
- const __vue_scope_id__$j = "data-v-c22ae66a";
701
+ const __vue_scope_id__$k = "data-v-c22ae66a";
705
702
  /* module identifier */
706
703
 
707
- const __vue_module_identifier__$j = undefined;
704
+ const __vue_module_identifier__$k = undefined;
708
705
  /* functional template */
709
706
 
710
- const __vue_is_functional_template__$j = false;
707
+ const __vue_is_functional_template__$k = false;
711
708
  /* style inject SSR */
712
709
 
713
710
  /* style inject shadow dom */
714
711
 
715
- const __vue_component__$j = /*#__PURE__*/normalizeComponent({
716
- render: __vue_render__$i,
717
- staticRenderFns: __vue_staticRenderFns__$i
718
- }, __vue_inject_styles__$j, __vue_script__$j, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, createInjector, undefined, undefined);
712
+ const __vue_component__$k = /*#__PURE__*/normalizeComponent({
713
+ render: __vue_render__$j,
714
+ staticRenderFns: __vue_staticRenderFns__$j
715
+ }, __vue_inject_styles__$k, __vue_script__$k, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, createInjector, undefined, undefined);
719
716
 
720
- var script$i = {
717
+ var script$j = {
721
718
  name: "VcModalHeader",
722
719
  components: {
723
- VcLayout: __vue_component__$k,
724
- VcIcon: __vue_component__$n,
725
- VcButton: __vue_component__$m
720
+ VcLayout: __vue_component__$l,
721
+ VcIcon: __vue_component__$o,
722
+ VcButton: __vue_component__$n
726
723
  },
727
724
  props: {
728
725
  topTitle: {
@@ -760,10 +757,10 @@ var script$i = {
760
757
  };
761
758
 
762
759
  /* script */
763
- const __vue_script__$i = script$i;
760
+ const __vue_script__$j = script$j;
764
761
  /* template */
765
762
 
766
- var __vue_render__$h = function () {
763
+ var __vue_render__$i = function () {
767
764
  var _vm = this;
768
765
 
769
766
  var _h = _vm.$createElement;
@@ -836,10 +833,10 @@ var __vue_render__$h = function () {
836
833
  }, [_vm._v(_vm._s(_vm.subtitle))]) : _vm._e()])], 1)], 2);
837
834
  };
838
835
 
839
- var __vue_staticRenderFns__$h = [];
836
+ var __vue_staticRenderFns__$i = [];
840
837
  /* style */
841
838
 
842
- const __vue_inject_styles__$i = function (inject) {
839
+ const __vue_inject_styles__$j = function (inject) {
843
840
  if (!inject) return;
844
841
  inject("data-v-407bef94_0", {
845
842
  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)}}",
@@ -850,30 +847,30 @@ const __vue_inject_styles__$i = function (inject) {
850
847
  /* scoped */
851
848
 
852
849
 
853
- const __vue_scope_id__$i = "data-v-407bef94";
850
+ const __vue_scope_id__$j = "data-v-407bef94";
854
851
  /* module identifier */
855
852
 
856
- const __vue_module_identifier__$i = undefined;
853
+ const __vue_module_identifier__$j = undefined;
857
854
  /* functional template */
858
855
 
859
- const __vue_is_functional_template__$i = false;
856
+ const __vue_is_functional_template__$j = false;
860
857
  /* style inject SSR */
861
858
 
862
859
  /* style inject shadow dom */
863
860
 
864
- const __vue_component__$i = /*#__PURE__*/normalizeComponent({
865
- render: __vue_render__$h,
866
- staticRenderFns: __vue_staticRenderFns__$h
867
- }, __vue_inject_styles__$i, __vue_script__$i, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, createInjector, undefined, undefined);
861
+ const __vue_component__$j = /*#__PURE__*/normalizeComponent({
862
+ render: __vue_render__$i,
863
+ staticRenderFns: __vue_staticRenderFns__$i
864
+ }, __vue_inject_styles__$j, __vue_script__$j, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, createInjector, undefined, undefined);
868
865
 
869
- var script$h = {
866
+ var script$i = {
870
867
  name: "VcConfirmModal",
871
868
  components: {
872
- VcModalHeader: __vue_component__$i,
873
- VcLayout: __vue_component__$k,
874
- VcModalFooter: __vue_component__$j,
875
- VcIcon: __vue_component__$n,
876
- VcModalContainer: __vue_component__$l
869
+ VcModalHeader: __vue_component__$j,
870
+ VcLayout: __vue_component__$l,
871
+ VcModalFooter: __vue_component__$k,
872
+ VcIcon: __vue_component__$o,
873
+ VcModalContainer: __vue_component__$m
877
874
  },
878
875
  props: {
879
876
  showDialog: {
@@ -914,10 +911,10 @@ var script$h = {
914
911
  };
915
912
 
916
913
  /* script */
917
- const __vue_script__$h = script$h;
914
+ const __vue_script__$i = script$i;
918
915
  /* template */
919
916
 
920
- var __vue_render__$g = function () {
917
+ var __vue_render__$h = function () {
921
918
  var _vm = this;
922
919
 
923
920
  var _h = _vm.$createElement;
@@ -998,31 +995,31 @@ var __vue_render__$g = function () {
998
995
  });
999
996
  };
1000
997
 
1001
- var __vue_staticRenderFns__$g = [];
998
+ var __vue_staticRenderFns__$h = [];
1002
999
  /* style */
1003
1000
 
1004
- const __vue_inject_styles__$h = undefined;
1001
+ const __vue_inject_styles__$i = undefined;
1005
1002
  /* scoped */
1006
1003
 
1007
- const __vue_scope_id__$h = "data-v-716e5a70";
1004
+ const __vue_scope_id__$i = "data-v-716e5a70";
1008
1005
  /* module identifier */
1009
1006
 
1010
- const __vue_module_identifier__$h = undefined;
1007
+ const __vue_module_identifier__$i = undefined;
1011
1008
  /* functional template */
1012
1009
 
1013
- const __vue_is_functional_template__$h = false;
1010
+ const __vue_is_functional_template__$i = false;
1014
1011
  /* style inject */
1015
1012
 
1016
1013
  /* style inject SSR */
1017
1014
 
1018
1015
  /* style inject shadow dom */
1019
1016
 
1020
- const __vue_component__$h = /*#__PURE__*/normalizeComponent({
1021
- render: __vue_render__$g,
1022
- staticRenderFns: __vue_staticRenderFns__$g
1023
- }, __vue_inject_styles__$h, __vue_script__$h, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, undefined, undefined, undefined);
1017
+ const __vue_component__$i = /*#__PURE__*/normalizeComponent({
1018
+ render: __vue_render__$h,
1019
+ staticRenderFns: __vue_staticRenderFns__$h
1020
+ }, __vue_inject_styles__$i, __vue_script__$i, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, undefined, undefined, undefined);
1024
1021
 
1025
- var script$g = {
1022
+ var script$h = {
1026
1023
  name: "VcForm",
1027
1024
  methods: {
1028
1025
  validate() {
@@ -1042,38 +1039,38 @@ var script$g = {
1042
1039
  };
1043
1040
 
1044
1041
  /* script */
1045
- const __vue_script__$g = script$g;
1042
+ const __vue_script__$h = script$h;
1046
1043
  /* template */
1047
1044
 
1048
1045
  /* style */
1049
1046
 
1050
- const __vue_inject_styles__$g = undefined;
1047
+ const __vue_inject_styles__$h = undefined;
1051
1048
  /* scoped */
1052
1049
 
1053
- const __vue_scope_id__$g = "data-v-398cf17d";
1050
+ const __vue_scope_id__$h = "data-v-398cf17d";
1054
1051
  /* module identifier */
1055
1052
 
1056
- const __vue_module_identifier__$g = undefined;
1053
+ const __vue_module_identifier__$h = undefined;
1057
1054
  /* functional template */
1058
1055
 
1059
- const __vue_is_functional_template__$g = undefined;
1056
+ const __vue_is_functional_template__$h = undefined;
1060
1057
  /* style inject */
1061
1058
 
1062
1059
  /* style inject SSR */
1063
1060
 
1064
1061
  /* style inject shadow dom */
1065
1062
 
1066
- const __vue_component__$g = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$g, __vue_script__$g, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, undefined, undefined, undefined);
1063
+ const __vue_component__$h = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$h, __vue_script__$h, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, undefined, undefined, undefined);
1067
1064
 
1068
- var script$f = {
1065
+ var script$g = {
1069
1066
  name: "VcInputModal",
1070
1067
  components: {
1071
- VcForm: __vue_component__$g,
1072
- VcLayout: __vue_component__$k,
1073
- VcModalFooter: __vue_component__$j,
1074
- VcIcon: __vue_component__$n,
1075
- VcModalContainer: __vue_component__$l,
1076
- VcModalHeader: __vue_component__$i
1068
+ VcForm: __vue_component__$h,
1069
+ VcLayout: __vue_component__$l,
1070
+ VcModalFooter: __vue_component__$k,
1071
+ VcIcon: __vue_component__$o,
1072
+ VcModalContainer: __vue_component__$m,
1073
+ VcModalHeader: __vue_component__$j
1077
1074
  },
1078
1075
  props: {
1079
1076
  showDialog: {
@@ -1142,10 +1139,10 @@ var script$f = {
1142
1139
  };
1143
1140
 
1144
1141
  /* script */
1145
- const __vue_script__$f = script$f;
1142
+ const __vue_script__$g = script$g;
1146
1143
  /* template */
1147
1144
 
1148
- var __vue_render__$f = function () {
1145
+ var __vue_render__$g = function () {
1149
1146
  var _vm = this;
1150
1147
 
1151
1148
  var _h = _vm.$createElement;
@@ -1246,10 +1243,10 @@ var __vue_render__$f = function () {
1246
1243
  });
1247
1244
  };
1248
1245
 
1249
- var __vue_staticRenderFns__$f = [];
1246
+ var __vue_staticRenderFns__$g = [];
1250
1247
  /* style */
1251
1248
 
1252
- const __vue_inject_styles__$f = function (inject) {
1249
+ const __vue_inject_styles__$g = function (inject) {
1253
1250
  if (!inject) return;
1254
1251
  inject("data-v-01f920b6_0", {
1255
1252
  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)}",
@@ -1260,28 +1257,28 @@ const __vue_inject_styles__$f = function (inject) {
1260
1257
  /* scoped */
1261
1258
 
1262
1259
 
1263
- const __vue_scope_id__$f = "data-v-01f920b6";
1260
+ const __vue_scope_id__$g = "data-v-01f920b6";
1264
1261
  /* module identifier */
1265
1262
 
1266
- const __vue_module_identifier__$f = undefined;
1263
+ const __vue_module_identifier__$g = undefined;
1267
1264
  /* functional template */
1268
1265
 
1269
- const __vue_is_functional_template__$f = false;
1266
+ const __vue_is_functional_template__$g = false;
1270
1267
  /* style inject SSR */
1271
1268
 
1272
1269
  /* style inject shadow dom */
1273
1270
 
1274
- const __vue_component__$f = /*#__PURE__*/normalizeComponent({
1275
- render: __vue_render__$f,
1276
- staticRenderFns: __vue_staticRenderFns__$f
1277
- }, __vue_inject_styles__$f, __vue_script__$f, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
1271
+ const __vue_component__$g = /*#__PURE__*/normalizeComponent({
1272
+ render: __vue_render__$g,
1273
+ staticRenderFns: __vue_staticRenderFns__$g
1274
+ }, __vue_inject_styles__$g, __vue_script__$g, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, createInjector, undefined, undefined);
1278
1275
 
1279
- var script$e = {
1276
+ var script$f = {
1280
1277
  name: "VcNoticeModal",
1281
1278
  components: {
1282
- VcLayout: __vue_component__$k,
1283
- VcModalFooter: __vue_component__$j,
1284
- VcModalContainer: __vue_component__$l
1279
+ VcLayout: __vue_component__$l,
1280
+ VcModalFooter: __vue_component__$k,
1281
+ VcModalContainer: __vue_component__$m
1285
1282
  },
1286
1283
  props: {
1287
1284
  showDialog: {
@@ -1319,10 +1316,10 @@ var script$e = {
1319
1316
  };
1320
1317
 
1321
1318
  /* script */
1322
- const __vue_script__$e = script$e;
1319
+ const __vue_script__$f = script$f;
1323
1320
  /* template */
1324
1321
 
1325
- var __vue_render__$e = function () {
1322
+ var __vue_render__$f = function () {
1326
1323
  var _vm = this;
1327
1324
 
1328
1325
  var _h = _vm.$createElement;
@@ -1408,10 +1405,10 @@ var __vue_render__$e = function () {
1408
1405
  });
1409
1406
  };
1410
1407
 
1411
- var __vue_staticRenderFns__$e = [];
1408
+ var __vue_staticRenderFns__$f = [];
1412
1409
  /* style */
1413
1410
 
1414
- const __vue_inject_styles__$e = function (inject) {
1411
+ const __vue_inject_styles__$f = function (inject) {
1415
1412
  if (!inject) return;
1416
1413
  inject("data-v-67e92f52_0", {
1417
1414
  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)}",
@@ -1422,28 +1419,28 @@ const __vue_inject_styles__$e = function (inject) {
1422
1419
  /* scoped */
1423
1420
 
1424
1421
 
1425
- const __vue_scope_id__$e = "data-v-67e92f52";
1422
+ const __vue_scope_id__$f = "data-v-67e92f52";
1426
1423
  /* module identifier */
1427
1424
 
1428
- const __vue_module_identifier__$e = undefined;
1425
+ const __vue_module_identifier__$f = undefined;
1429
1426
  /* functional template */
1430
1427
 
1431
- const __vue_is_functional_template__$e = false;
1428
+ const __vue_is_functional_template__$f = false;
1432
1429
  /* style inject SSR */
1433
1430
 
1434
1431
  /* style inject shadow dom */
1435
1432
 
1436
- const __vue_component__$e = /*#__PURE__*/normalizeComponent({
1437
- render: __vue_render__$e,
1438
- staticRenderFns: __vue_staticRenderFns__$e
1439
- }, __vue_inject_styles__$e, __vue_script__$e, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, createInjector, undefined, undefined);
1433
+ const __vue_component__$f = /*#__PURE__*/normalizeComponent({
1434
+ render: __vue_render__$f,
1435
+ staticRenderFns: __vue_staticRenderFns__$f
1436
+ }, __vue_inject_styles__$f, __vue_script__$f, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
1440
1437
 
1441
- var script$d = {
1438
+ var script$e = {
1442
1439
  name: "VcAlert",
1443
1440
  components: {
1444
- VcIcon: __vue_component__$n,
1445
- VcButton: __vue_component__$m,
1446
- VcLayout: __vue_component__$k,
1441
+ VcIcon: __vue_component__$o,
1442
+ VcButton: __vue_component__$n,
1443
+ VcLayout: __vue_component__$l,
1447
1444
  VAlert: VAlert
1448
1445
  },
1449
1446
  props: {
@@ -1515,10 +1512,10 @@ var script$d = {
1515
1512
  };
1516
1513
 
1517
1514
  /* script */
1518
- const __vue_script__$d = script$d;
1515
+ const __vue_script__$e = script$e;
1519
1516
  /* template */
1520
1517
 
1521
- var __vue_render__$d = function () {
1518
+ var __vue_render__$e = function () {
1522
1519
  var _vm = this;
1523
1520
 
1524
1521
  var _h = _vm.$createElement;
@@ -1541,14 +1538,14 @@ var __vue_render__$d = function () {
1541
1538
  "align-start": "",
1542
1539
  "column": ""
1543
1540
  }
1544
- }, [[_vm.headerText && !_vm.isInlineHeader ? _c('span', {
1541
+ }, [_c('div', [_vm._v("Reut")]), _vm._v(" "), _vm.headerText && !_vm.isInlineHeader ? _c('span', {
1545
1542
  staticClass: "alert-header"
1546
- }, [_vm._v("\n " + _vm._s(_vm.headerText) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.bodyText ? _c('span', {
1543
+ }, [_vm._v("\n " + _vm._s(_vm.headerText) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.bodyText ? _c('span', {
1547
1544
  staticClass: "alert-body",
1548
1545
  domProps: {
1549
1546
  "innerHTML": _vm._s(_vm.getBodyText)
1550
1547
  }
1551
- }) : _vm._e()]], 2), _vm._v(" "), _vm.buttonText ? _c('VcButton', {
1548
+ }) : _vm._e()]), _vm._v(" "), _vm.buttonText ? _c('VcButton', {
1552
1549
  staticClass: "action-button",
1553
1550
  attrs: {
1554
1551
  "plain": "",
@@ -1588,12 +1585,12 @@ var __vue_render__$d = function () {
1588
1585
  }) : _vm._e()], 1);
1589
1586
  };
1590
1587
 
1591
- var __vue_staticRenderFns__$d = [];
1588
+ var __vue_staticRenderFns__$e = [];
1592
1589
  /* style */
1593
1590
 
1594
- const __vue_inject_styles__$d = function (inject) {
1591
+ const __vue_inject_styles__$e = function (inject) {
1595
1592
  if (!inject) return;
1596
- inject("data-v-597059e2_0", {
1593
+ inject("data-v-12d00120_0", {
1597
1594
  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}",
1598
1595
  map: undefined,
1599
1596
  media: undefined
@@ -1602,21 +1599,21 @@ const __vue_inject_styles__$d = function (inject) {
1602
1599
  /* scoped */
1603
1600
 
1604
1601
 
1605
- const __vue_scope_id__$d = undefined;
1602
+ const __vue_scope_id__$e = undefined;
1606
1603
  /* module identifier */
1607
1604
 
1608
- const __vue_module_identifier__$d = undefined;
1605
+ const __vue_module_identifier__$e = undefined;
1609
1606
  /* functional template */
1610
1607
 
1611
- const __vue_is_functional_template__$d = false;
1608
+ const __vue_is_functional_template__$e = false;
1612
1609
  /* style inject SSR */
1613
1610
 
1614
1611
  /* style inject shadow dom */
1615
1612
 
1616
- const __vue_component__$d = /*#__PURE__*/normalizeComponent({
1617
- render: __vue_render__$d,
1618
- staticRenderFns: __vue_staticRenderFns__$d
1619
- }, __vue_inject_styles__$d, __vue_script__$d, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, createInjector, undefined, undefined);
1613
+ const __vue_component__$e = /*#__PURE__*/normalizeComponent({
1614
+ render: __vue_render__$e,
1615
+ staticRenderFns: __vue_staticRenderFns__$e
1616
+ }, __vue_inject_styles__$e, __vue_script__$e, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, createInjector, undefined, undefined);
1620
1617
 
1621
1618
  //
1622
1619
  //
@@ -1663,7 +1660,7 @@ const __vue_component__$d = /*#__PURE__*/normalizeComponent({
1663
1660
  //
1664
1661
  //
1665
1662
  //
1666
- var script$c = {
1663
+ var script$d = {
1667
1664
  components: {
1668
1665
  VTooltip: VTooltip
1669
1666
  },
@@ -1720,10 +1717,10 @@ var script$c = {
1720
1717
  };
1721
1718
 
1722
1719
  /* script */
1723
- const __vue_script__$c = script$c;
1720
+ const __vue_script__$d = script$d;
1724
1721
  /* template */
1725
1722
 
1726
- var __vue_render__$c = function () {
1723
+ var __vue_render__$d = function () {
1727
1724
  var _vm = this;
1728
1725
 
1729
1726
  var _h = _vm.$createElement;
@@ -1775,13 +1772,13 @@ var __vue_render__$c = function () {
1775
1772
  })])])])], 1);
1776
1773
  };
1777
1774
 
1778
- var __vue_staticRenderFns__$c = [];
1775
+ var __vue_staticRenderFns__$d = [];
1779
1776
  /* style */
1780
1777
 
1781
- const __vue_inject_styles__$c = function (inject) {
1778
+ const __vue_inject_styles__$d = function (inject) {
1782
1779
  if (!inject) return;
1783
- inject("data-v-4d5334d2_0", {
1784
- source: "body{--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}.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:#212121;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:#fde8e7}.vc-tooltip .tooltip-wrapper .tooltip-header.information{background-color:#e7f0ff}.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:#212121;max-width:fit-content;min-width:250px;word-wrap:break-word}",
1780
+ inject("data-v-858200cc_0", {
1781
+ 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}",
1785
1782
  map: undefined,
1786
1783
  media: undefined
1787
1784
  });
@@ -1789,26 +1786,26 @@ const __vue_inject_styles__$c = function (inject) {
1789
1786
  /* scoped */
1790
1787
 
1791
1788
 
1792
- const __vue_scope_id__$c = undefined;
1789
+ const __vue_scope_id__$d = undefined;
1793
1790
  /* module identifier */
1794
1791
 
1795
- const __vue_module_identifier__$c = undefined;
1792
+ const __vue_module_identifier__$d = undefined;
1796
1793
  /* functional template */
1797
1794
 
1798
- const __vue_is_functional_template__$c = false;
1795
+ const __vue_is_functional_template__$d = false;
1799
1796
  /* style inject SSR */
1800
1797
 
1801
1798
  /* style inject shadow dom */
1802
1799
 
1803
- const __vue_component__$c = /*#__PURE__*/normalizeComponent({
1804
- render: __vue_render__$c,
1805
- staticRenderFns: __vue_staticRenderFns__$c
1806
- }, __vue_inject_styles__$c, __vue_script__$c, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
1800
+ const __vue_component__$d = /*#__PURE__*/normalizeComponent({
1801
+ render: __vue_render__$d,
1802
+ staticRenderFns: __vue_staticRenderFns__$d
1803
+ }, __vue_inject_styles__$d, __vue_script__$d, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, createInjector, undefined, undefined);
1807
1804
 
1808
- var script$b = {
1805
+ var script$c = {
1809
1806
  name: "VcIconWithTooltip",
1810
1807
  components: {
1811
- VcTooltip: __vue_component__$c,
1808
+ VcTooltip: __vue_component__$d,
1812
1809
  VIcon: VIcon
1813
1810
  },
1814
1811
  props: {
@@ -1823,7 +1820,7 @@ var script$b = {
1823
1820
  },
1824
1821
  dataQa: {
1825
1822
  type: String,
1826
- default: 'vc-icon-with-tooltip'
1823
+ default: 'vc-tooltip'
1827
1824
  }
1828
1825
  },
1829
1826
 
@@ -1868,17 +1865,21 @@ var script$b = {
1868
1865
  };
1869
1866
 
1870
1867
  /* script */
1871
- const __vue_script__$b = script$b;
1868
+ const __vue_script__$c = script$c;
1872
1869
  /* template */
1873
1870
 
1874
- var __vue_render__$b = function () {
1871
+ var __vue_render__$c = function () {
1875
1872
  var _vm = this;
1876
1873
 
1877
1874
  var _h = _vm.$createElement;
1878
1875
 
1879
1876
  var _c = _vm._self._c || _h;
1880
1877
 
1881
- return _c('VcTooltip', _vm._b({}, 'VcTooltip', _vm.$attrs, false), [[_c('v-icon', {
1878
+ return _c('VcTooltip', _vm._b({
1879
+ attrs: {
1880
+ "data-qa": _vm.dataQa
1881
+ }
1882
+ }, 'VcTooltip', _vm.$attrs, false), [[_c('v-icon', {
1882
1883
  staticClass: "tooltip-icon",
1883
1884
  class: {
1884
1885
  'vc-default': _vm.iconInUse === 'default',
@@ -1886,7 +1887,7 @@ var __vue_render__$b = function () {
1886
1887
  },
1887
1888
  attrs: {
1888
1889
  "size": _vm.size,
1889
- "data-qa": _vm.dataQa
1890
+ "data-qa": _vm.dataQa + "-icon"
1890
1891
  },
1891
1892
  on: {
1892
1893
  "mouseover": _vm.inHover,
@@ -1897,13 +1898,13 @@ var __vue_render__$b = function () {
1897
1898
  }, [_vm._v("\n " + _vm._s(_vm.getIcon) + "\n ")])]], 2);
1898
1899
  };
1899
1900
 
1900
- var __vue_staticRenderFns__$b = [];
1901
+ var __vue_staticRenderFns__$c = [];
1901
1902
  /* style */
1902
1903
 
1903
- const __vue_inject_styles__$b = function (inject) {
1904
+ const __vue_inject_styles__$c = function (inject) {
1904
1905
  if (!inject) return;
1905
- inject("data-v-1a6ece85_0", {
1906
- source: "body{--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}.tooltip-icon{cursor:pointer}.tooltip-icon .vc-question{fill:rgba(0,0,0,.4)}.tooltip-icon .vc-question-fill{fill:#616161}.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(--v-danger-base)}.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:#616161}",
1906
+ inject("data-v-7193d7d6_0", {
1907
+ 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)}",
1907
1908
  map: undefined,
1908
1909
  media: undefined
1909
1910
  });
@@ -1911,21 +1912,21 @@ const __vue_inject_styles__$b = function (inject) {
1911
1912
  /* scoped */
1912
1913
 
1913
1914
 
1914
- const __vue_scope_id__$b = undefined;
1915
+ const __vue_scope_id__$c = undefined;
1915
1916
  /* module identifier */
1916
1917
 
1917
- const __vue_module_identifier__$b = undefined;
1918
+ const __vue_module_identifier__$c = undefined;
1918
1919
  /* functional template */
1919
1920
 
1920
- const __vue_is_functional_template__$b = false;
1921
+ const __vue_is_functional_template__$c = false;
1921
1922
  /* style inject SSR */
1922
1923
 
1923
1924
  /* style inject shadow dom */
1924
1925
 
1925
- const __vue_component__$b = /*#__PURE__*/normalizeComponent({
1926
- render: __vue_render__$b,
1927
- staticRenderFns: __vue_staticRenderFns__$b
1928
- }, __vue_inject_styles__$b, __vue_script__$b, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, createInjector, undefined, undefined);
1926
+ const __vue_component__$c = /*#__PURE__*/normalizeComponent({
1927
+ render: __vue_render__$c,
1928
+ staticRenderFns: __vue_staticRenderFns__$c
1929
+ }, __vue_inject_styles__$c, __vue_script__$c, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
1929
1930
 
1930
1931
  //
1931
1932
  //
@@ -1951,7 +1952,7 @@ const __vue_component__$b = /*#__PURE__*/normalizeComponent({
1951
1952
  //
1952
1953
  //
1953
1954
  //
1954
- var script$a = {
1955
+ var script$b = {
1955
1956
  components: {
1956
1957
  VIcon: VIcon,
1957
1958
  VTooltip: VTooltip
@@ -2067,10 +2068,10 @@ var script$a = {
2067
2068
  };
2068
2069
 
2069
2070
  /* script */
2070
- const __vue_script__$a = script$a;
2071
+ const __vue_script__$b = script$b;
2071
2072
  /* template */
2072
2073
 
2073
- var __vue_render__$a = function () {
2074
+ var __vue_render__$b = function () {
2074
2075
  var _vm = this;
2075
2076
 
2076
2077
  var _h = _vm.$createElement;
@@ -2117,10 +2118,10 @@ var __vue_render__$a = function () {
2117
2118
  }, [_vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.lightModeTooltip))])])], 1);
2118
2119
  };
2119
2120
 
2120
- var __vue_staticRenderFns__$a = [];
2121
+ var __vue_staticRenderFns__$b = [];
2121
2122
  /* style */
2122
2123
 
2123
- const __vue_inject_styles__$a = function (inject) {
2124
+ const __vue_inject_styles__$b = function (inject) {
2124
2125
  if (!inject) return;
2125
2126
  inject("data-v-3f493474_0", {
2126
2127
  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}",
@@ -2131,29 +2132,29 @@ const __vue_inject_styles__$a = function (inject) {
2131
2132
  /* scoped */
2132
2133
 
2133
2134
 
2134
- const __vue_scope_id__$a = "data-v-3f493474";
2135
+ const __vue_scope_id__$b = "data-v-3f493474";
2135
2136
  /* module identifier */
2136
2137
 
2137
- const __vue_module_identifier__$a = undefined;
2138
+ const __vue_module_identifier__$b = undefined;
2138
2139
  /* functional template */
2139
2140
 
2140
- const __vue_is_functional_template__$a = false;
2141
+ const __vue_is_functional_template__$b = false;
2141
2142
  /* style inject SSR */
2142
2143
 
2143
2144
  /* style inject shadow dom */
2144
2145
 
2145
- const __vue_component__$a = /*#__PURE__*/normalizeComponent({
2146
- render: __vue_render__$a,
2147
- staticRenderFns: __vue_staticRenderFns__$a
2148
- }, __vue_inject_styles__$a, __vue_script__$a, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, createInjector, undefined, undefined);
2146
+ const __vue_component__$b = /*#__PURE__*/normalizeComponent({
2147
+ render: __vue_render__$b,
2148
+ staticRenderFns: __vue_staticRenderFns__$b
2149
+ }, __vue_inject_styles__$b, __vue_script__$b, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, createInjector, undefined, undefined);
2149
2150
 
2150
- var script$9 = {
2151
+ var script$a = {
2151
2152
  name: "VcBottomActions",
2152
2153
  components: {
2153
- VcLayout: __vue_component__$k,
2154
- VcButton: __vue_component__$m,
2155
- VcIcon: __vue_component__$n,
2156
- VcAvatar: __vue_component__$a,
2154
+ VcLayout: __vue_component__$l,
2155
+ VcButton: __vue_component__$n,
2156
+ VcIcon: __vue_component__$o,
2157
+ VcAvatar: __vue_component__$b,
2157
2158
  VSubheader: VSubheader,
2158
2159
  VListItem: VListItem,
2159
2160
  VList: VList,
@@ -2195,10 +2196,10 @@ var script$9 = {
2195
2196
  };
2196
2197
 
2197
2198
  /* script */
2198
- const __vue_script__$9 = script$9;
2199
+ const __vue_script__$a = script$a;
2199
2200
  /* template */
2200
2201
 
2201
- var __vue_render__$9 = function () {
2202
+ var __vue_render__$a = function () {
2202
2203
  var _vm = this;
2203
2204
 
2204
2205
  var _h = _vm.$createElement;
@@ -2211,13 +2212,6 @@ var __vue_render__$9 = function () {
2211
2212
  "value": _vm.value,
2212
2213
  "content-class": "vc-bottom-sheet"
2213
2214
  },
2214
- on: {
2215
- "input": function (newVal) {
2216
- return _vm.$emit('input', {
2217
- isOpen: newVal
2218
- });
2219
- }
2220
- },
2221
2215
  scopedSlots: _vm._u([{
2222
2216
  key: "activator",
2223
2217
  fn: function (ref) {
@@ -2251,14 +2245,12 @@ var __vue_render__$9 = function () {
2251
2245
  staticClass: "close-button",
2252
2246
  attrs: {
2253
2247
  "ripple": false,
2248
+ "data-qa": "close-sheet-button",
2254
2249
  "plain": ""
2255
2250
  },
2256
2251
  on: {
2257
2252
  "click": function ($event) {
2258
- return _vm.$emit('input', {
2259
- isOpen: false,
2260
- action: 'closeButton'
2261
- });
2253
+ return _vm.$emit('close');
2262
2254
  }
2263
2255
  },
2264
2256
  scopedSlots: _vm._u([{
@@ -2279,10 +2271,7 @@ var __vue_render__$9 = function () {
2279
2271
  staticClass: "sheet-item",
2280
2272
  on: {
2281
2273
  "click": function ($event) {
2282
- return _vm.$emit('input', {
2283
- isOpen: false,
2284
- action: item.event
2285
- });
2274
+ return _vm.$emit('action', item.event);
2286
2275
  }
2287
2276
  }
2288
2277
  }, [_c('vc-layout', {
@@ -2296,13 +2285,13 @@ var __vue_render__$9 = function () {
2296
2285
  }), 1)], 1)], 1);
2297
2286
  };
2298
2287
 
2299
- var __vue_staticRenderFns__$9 = [];
2288
+ var __vue_staticRenderFns__$a = [];
2300
2289
  /* style */
2301
2290
 
2302
- const __vue_inject_styles__$9 = function (inject) {
2291
+ const __vue_inject_styles__$a = function (inject) {
2303
2292
  if (!inject) return;
2304
- inject("data-v-54d4c1b0_0", {
2305
- source: "body{--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}.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:rgba(0,0,0,.87)}.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)}",
2293
+ inject("data-v-51eeacd7_0", {
2294
+ 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)}",
2306
2295
  map: undefined,
2307
2296
  media: undefined
2308
2297
  });
@@ -2310,28 +2299,28 @@ const __vue_inject_styles__$9 = function (inject) {
2310
2299
  /* scoped */
2311
2300
 
2312
2301
 
2313
- const __vue_scope_id__$9 = undefined;
2302
+ const __vue_scope_id__$a = undefined;
2314
2303
  /* module identifier */
2315
2304
 
2316
- const __vue_module_identifier__$9 = undefined;
2305
+ const __vue_module_identifier__$a = undefined;
2317
2306
  /* functional template */
2318
2307
 
2319
- const __vue_is_functional_template__$9 = false;
2308
+ const __vue_is_functional_template__$a = false;
2320
2309
  /* style inject SSR */
2321
2310
 
2322
2311
  /* style inject shadow dom */
2323
2312
 
2324
- const __vue_component__$9 = /*#__PURE__*/normalizeComponent({
2325
- render: __vue_render__$9,
2326
- staticRenderFns: __vue_staticRenderFns__$9
2327
- }, __vue_inject_styles__$9, __vue_script__$9, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
2313
+ const __vue_component__$a = /*#__PURE__*/normalizeComponent({
2314
+ render: __vue_render__$a,
2315
+ staticRenderFns: __vue_staticRenderFns__$a
2316
+ }, __vue_inject_styles__$a, __vue_script__$a, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, createInjector, undefined, undefined);
2328
2317
 
2329
- var script$8 = {
2318
+ var script$9 = {
2330
2319
  name: "VcActionList",
2331
2320
  components: {
2332
- VcLayout: __vue_component__$k,
2333
- VcButton: __vue_component__$m,
2334
- VcIcon: __vue_component__$n,
2321
+ VcLayout: __vue_component__$l,
2322
+ VcButton: __vue_component__$n,
2323
+ VcIcon: __vue_component__$o,
2335
2324
  VListItemTitle: VListItemTitle,
2336
2325
  VListItem: VListItem,
2337
2326
  VList: VList,
@@ -2357,10 +2346,10 @@ var script$8 = {
2357
2346
  };
2358
2347
 
2359
2348
  /* script */
2360
- const __vue_script__$8 = script$8;
2349
+ const __vue_script__$9 = script$9;
2361
2350
  /* template */
2362
2351
 
2363
- var __vue_render__$8 = function () {
2352
+ var __vue_render__$9 = function () {
2364
2353
  var _vm = this;
2365
2354
 
2366
2355
  var _h = _vm.$createElement;
@@ -2398,10 +2387,7 @@ var __vue_render__$8 = function () {
2398
2387
  staticClass: "sheet-item",
2399
2388
  on: {
2400
2389
  "click": function ($event) {
2401
- return _vm.$emit('input', {
2402
- isOpen: false,
2403
- action: item.event
2404
- });
2390
+ return _vm.$emit('action', item.event);
2405
2391
  }
2406
2392
  }
2407
2393
  }, [_c('v-list-item-title', {
@@ -2415,13 +2401,13 @@ var __vue_render__$8 = function () {
2415
2401
  }), 1)], 1)], 1);
2416
2402
  };
2417
2403
 
2418
- var __vue_staticRenderFns__$8 = [];
2404
+ var __vue_staticRenderFns__$9 = [];
2419
2405
  /* style */
2420
2406
 
2421
- const __vue_inject_styles__$8 = function (inject) {
2407
+ const __vue_inject_styles__$9 = function (inject) {
2422
2408
  if (!inject) return;
2423
- inject("data-v-6578a161_0", {
2424
- source: "body{--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}.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)}",
2409
+ inject("data-v-936b4f84_0", {
2410
+ 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)}",
2425
2411
  map: undefined,
2426
2412
  media: undefined
2427
2413
  });
@@ -2429,27 +2415,27 @@ const __vue_inject_styles__$8 = function (inject) {
2429
2415
  /* scoped */
2430
2416
 
2431
2417
 
2432
- const __vue_scope_id__$8 = undefined;
2418
+ const __vue_scope_id__$9 = undefined;
2433
2419
  /* module identifier */
2434
2420
 
2435
- const __vue_module_identifier__$8 = undefined;
2421
+ const __vue_module_identifier__$9 = undefined;
2436
2422
  /* functional template */
2437
2423
 
2438
- const __vue_is_functional_template__$8 = false;
2424
+ const __vue_is_functional_template__$9 = false;
2439
2425
  /* style inject SSR */
2440
2426
 
2441
2427
  /* style inject shadow dom */
2442
2428
 
2443
- const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
2444
- render: __vue_render__$8,
2445
- staticRenderFns: __vue_staticRenderFns__$8
2446
- }, __vue_inject_styles__$8, __vue_script__$8, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, createInjector, undefined, undefined);
2429
+ const __vue_component__$9 = /*#__PURE__*/normalizeComponent({
2430
+ render: __vue_render__$9,
2431
+ staticRenderFns: __vue_staticRenderFns__$9
2432
+ }, __vue_inject_styles__$9, __vue_script__$9, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
2447
2433
 
2448
- var script$7 = {
2434
+ var script$8 = {
2449
2435
  name: "VcActions",
2450
2436
  components: {
2451
- VcActionList: __vue_component__$8,
2452
- VcBottomActions: __vue_component__$9,
2437
+ VcActionList: __vue_component__$9,
2438
+ VcBottomActions: __vue_component__$a,
2453
2439
  VIcon: VIcon
2454
2440
  },
2455
2441
 
@@ -2489,22 +2475,24 @@ var script$7 = {
2489
2475
 
2490
2476
  },
2491
2477
  methods: {
2492
- handleSheet(action, sheet) {
2493
- this.showSheet = sheet.isOpen;
2494
- this.$emit('input', {
2495
- action,
2496
- sheet
2497
- });
2478
+ handleSheet(action) {
2479
+ this.showSheet = false;
2480
+ this.$emit('action', action);
2481
+ },
2482
+
2483
+ handleCloseSheet() {
2484
+ this.showSheet = false;
2485
+ this.$emit('close');
2498
2486
  }
2499
2487
 
2500
2488
  }
2501
2489
  };
2502
2490
 
2503
2491
  /* script */
2504
- const __vue_script__$7 = script$7;
2492
+ const __vue_script__$8 = script$8;
2505
2493
  /* template */
2506
2494
 
2507
- var __vue_render__$7 = function () {
2495
+ var __vue_render__$8 = function () {
2508
2496
  var _vm = this;
2509
2497
 
2510
2498
  var _h = _vm.$createElement;
@@ -2513,12 +2501,12 @@ var __vue_render__$7 = function () {
2513
2501
 
2514
2502
  return _c(_vm.isMobile ? 'VcBottomActions' : 'VcActionList', _vm._b({
2515
2503
  tag: "component",
2516
- attrs: {
2517
- "value": _vm.showSheet
2518
- },
2519
2504
  on: {
2520
- "input": function ($event) {
2521
- return _vm.handleSheet('input', $event);
2505
+ "action": function ($event) {
2506
+ return _vm.handleSheet($event);
2507
+ },
2508
+ "close": function ($event) {
2509
+ return _vm.handleCloseSheet();
2522
2510
  }
2523
2511
  },
2524
2512
  scopedSlots: _vm._u([{
@@ -2526,35 +2514,48 @@ var __vue_render__$7 = function () {
2526
2514
  fn: function (ref) {
2527
2515
  var attrs = ref.attrs;
2528
2516
  var on = ref.on;
2529
- return [_c('v-icon', _vm._g(_vm._b({}, 'v-icon', attrs, false), on), [_vm._v("$three_dots")])];
2517
+ return [_c('v-icon', _vm._g(_vm._b({
2518
+ on: {
2519
+ "click": function ($event) {
2520
+ _vm.showSheet = !_vm.showSheet;
2521
+ }
2522
+ }
2523
+ }, 'v-icon', attrs, false), on), [_vm._v("\n $three_dots\n ")])];
2530
2524
  }
2531
- }])
2525
+ }]),
2526
+ model: {
2527
+ value: _vm.showSheet,
2528
+ callback: function ($$v) {
2529
+ _vm.showSheet = $$v;
2530
+ },
2531
+ expression: "showSheet"
2532
+ }
2532
2533
  }, 'component', _vm.$props, false));
2533
2534
  };
2534
2535
 
2535
- var __vue_staticRenderFns__$7 = [];
2536
+ var __vue_staticRenderFns__$8 = [];
2536
2537
  /* style */
2537
2538
 
2538
- const __vue_inject_styles__$7 = undefined;
2539
+ const __vue_inject_styles__$8 = undefined;
2539
2540
  /* scoped */
2540
2541
 
2541
- const __vue_scope_id__$7 = undefined;
2542
+ const __vue_scope_id__$8 = undefined;
2542
2543
  /* module identifier */
2543
2544
 
2544
- const __vue_module_identifier__$7 = undefined;
2545
+ const __vue_module_identifier__$8 = undefined;
2545
2546
  /* functional template */
2546
2547
 
2547
- const __vue_is_functional_template__$7 = false;
2548
+ const __vue_is_functional_template__$8 = false;
2548
2549
  /* style inject */
2549
2550
 
2550
2551
  /* style inject SSR */
2551
2552
 
2552
2553
  /* style inject shadow dom */
2553
2554
 
2554
- const __vue_component__$7 = /*#__PURE__*/normalizeComponent({
2555
- render: __vue_render__$7,
2556
- staticRenderFns: __vue_staticRenderFns__$7
2557
- }, __vue_inject_styles__$7, __vue_script__$7, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, undefined, undefined, undefined);
2555
+ const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
2556
+ render: __vue_render__$8,
2557
+ staticRenderFns: __vue_staticRenderFns__$8
2558
+ }, __vue_inject_styles__$8, __vue_script__$8, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, undefined, undefined, undefined);
2558
2559
 
2559
2560
  //
2560
2561
  //
@@ -2578,7 +2579,7 @@ const __vue_component__$7 = /*#__PURE__*/normalizeComponent({
2578
2579
  //
2579
2580
  //
2580
2581
  //
2581
- var script$6 = {
2582
+ var script$7 = {
2582
2583
  components: {
2583
2584
  VCol: VCol,
2584
2585
  VRow: VRow,
@@ -2664,10 +2665,10 @@ var script$6 = {
2664
2665
  };
2665
2666
 
2666
2667
  /* script */
2667
- const __vue_script__$6 = script$6;
2668
+ const __vue_script__$7 = script$7;
2668
2669
  /* template */
2669
2670
 
2670
- var __vue_render__$6 = function () {
2671
+ var __vue_render__$7 = function () {
2671
2672
  var _vm = this;
2672
2673
 
2673
2674
  var _h = _vm.$createElement;
@@ -2682,6 +2683,7 @@ var __vue_render__$6 = function () {
2682
2683
  }, _vm._l(_vm.rows, function (row, rowIdx) {
2683
2684
  return _c('v-row', {
2684
2685
  key: "row-" + rowIdx,
2686
+ staticClass: "button-group-row",
2685
2687
  attrs: {
2686
2688
  "data-qa": "row"
2687
2689
  }
@@ -2713,13 +2715,13 @@ var __vue_render__$6 = function () {
2713
2715
  }), 1);
2714
2716
  };
2715
2717
 
2716
- var __vue_staticRenderFns__$6 = [];
2718
+ var __vue_staticRenderFns__$7 = [];
2717
2719
  /* style */
2718
2720
 
2719
- const __vue_inject_styles__$6 = function (inject) {
2721
+ const __vue_inject_styles__$7 = function (inject) {
2720
2722
  if (!inject) return;
2721
- inject("data-v-086ba7ac_0", {
2722
- source: ".VcButtonGroup[data-v-086ba7ac]{font-weight:var(--font-weight-medium2);font-size:13px}.VcButtonGroup .button-item[data-v-086ba7ac]{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-086ba7ac]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.VcButtonGroup .button-item.left[data-v-086ba7ac]{border-left-width:1px}.VcButtonGroup .button-item.top[data-v-086ba7ac]{border-top-width:1px}.VcButtonGroup .button-item.bottom[data-v-086ba7ac]:not(.top):not(.selected){border-top-width:0}.VcButtonGroup .button-item.top.left[data-v-086ba7ac]{border-top-left-radius:6px}.VcButtonGroup .button-item.top.right[data-v-086ba7ac]{border-top-right-radius:6px}.VcButtonGroup .button-item.bottom.left[data-v-086ba7ac]{border-bottom-left-radius:6px}.VcButtonGroup .button-item.bottom.right[data-v-086ba7ac]{border-bottom-right-radius:6px}.VcButtonGroup .button-item[data-v-086ba7ac]:hover{background-color:rgba(0,0,0,.03)}.VcButtonGroup .button-item[data-v-086ba7ac]:focus{box-shadow:0 0 0 3px var(--v-secondary-lighten1)}.VcButtonGroup .button-item.selected[data-v-086ba7ac]{border:2px solid var(--v-secondary-base);font-weight:600}.VcButtonGroup .button-item.selected[data-v-086ba7ac]:hover{background:rgba(0,0,0,.03)}.VcButtonGroup .button-item[data-v-086ba7ac]:active{background:rgba(0,0,0,.12)}.VcButtonGroup .button-item.disabled[data-v-086ba7ac]{background:rgba(0,0,0,.07);color:rgba(0,0,0,.4);pointer-events:none}",
2723
+ inject("data-v-284ef818_0", {
2724
+ 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}",
2723
2725
  map: undefined,
2724
2726
  media: undefined
2725
2727
  });
@@ -2727,21 +2729,21 @@ const __vue_inject_styles__$6 = function (inject) {
2727
2729
  /* scoped */
2728
2730
 
2729
2731
 
2730
- const __vue_scope_id__$6 = "data-v-086ba7ac";
2732
+ const __vue_scope_id__$7 = "data-v-284ef818";
2731
2733
  /* module identifier */
2732
2734
 
2733
- const __vue_module_identifier__$6 = undefined;
2735
+ const __vue_module_identifier__$7 = undefined;
2734
2736
  /* functional template */
2735
2737
 
2736
- const __vue_is_functional_template__$6 = false;
2738
+ const __vue_is_functional_template__$7 = false;
2737
2739
  /* style inject SSR */
2738
2740
 
2739
2741
  /* style inject shadow dom */
2740
2742
 
2741
- const __vue_component__$6 = /*#__PURE__*/normalizeComponent({
2742
- render: __vue_render__$6,
2743
- staticRenderFns: __vue_staticRenderFns__$6
2744
- }, __vue_inject_styles__$6, __vue_script__$6, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, createInjector, undefined, undefined);
2743
+ const __vue_component__$7 = /*#__PURE__*/normalizeComponent({
2744
+ render: __vue_render__$7,
2745
+ staticRenderFns: __vue_staticRenderFns__$7
2746
+ }, __vue_inject_styles__$7, __vue_script__$7, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, createInjector, undefined, undefined);
2745
2747
 
2746
2748
  //
2747
2749
  //
@@ -2752,7 +2754,7 @@ const __vue_component__$6 = /*#__PURE__*/normalizeComponent({
2752
2754
  //
2753
2755
  //
2754
2756
  //
2755
- var script$5 = {
2757
+ var script$6 = {
2756
2758
  components: {
2757
2759
  VProgressCircular: VProgressCircular
2758
2760
  },
@@ -2766,7 +2768,7 @@ var script$5 = {
2766
2768
  },
2767
2769
  color: {
2768
2770
  type: String,
2769
- default: "#0c315e"
2771
+ default: "primary"
2770
2772
  },
2771
2773
  size: {
2772
2774
  type: Number,
@@ -2780,10 +2782,10 @@ var script$5 = {
2780
2782
  };
2781
2783
 
2782
2784
  /* script */
2783
- const __vue_script__$5 = script$5;
2785
+ const __vue_script__$6 = script$6;
2784
2786
  /* template */
2785
2787
 
2786
- var __vue_render__$5 = function () {
2788
+ var __vue_render__$6 = function () {
2787
2789
  var _vm = this;
2788
2790
 
2789
2791
  var _h = _vm.$createElement;
@@ -2801,29 +2803,29 @@ var __vue_render__$5 = function () {
2801
2803
  });
2802
2804
  };
2803
2805
 
2804
- var __vue_staticRenderFns__$5 = [];
2806
+ var __vue_staticRenderFns__$6 = [];
2805
2807
  /* style */
2806
2808
 
2807
- const __vue_inject_styles__$5 = undefined;
2809
+ const __vue_inject_styles__$6 = undefined;
2808
2810
  /* scoped */
2809
2811
 
2810
- const __vue_scope_id__$5 = undefined;
2812
+ const __vue_scope_id__$6 = undefined;
2811
2813
  /* module identifier */
2812
2814
 
2813
- const __vue_module_identifier__$5 = undefined;
2815
+ const __vue_module_identifier__$6 = undefined;
2814
2816
  /* functional template */
2815
2817
 
2816
- const __vue_is_functional_template__$5 = false;
2818
+ const __vue_is_functional_template__$6 = false;
2817
2819
  /* style inject */
2818
2820
 
2819
2821
  /* style inject SSR */
2820
2822
 
2821
2823
  /* style inject shadow dom */
2822
2824
 
2823
- const __vue_component__$5 = /*#__PURE__*/normalizeComponent({
2824
- render: __vue_render__$5,
2825
- staticRenderFns: __vue_staticRenderFns__$5
2826
- }, __vue_inject_styles__$5, __vue_script__$5, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, undefined, undefined, undefined);
2825
+ const __vue_component__$6 = /*#__PURE__*/normalizeComponent({
2826
+ render: __vue_render__$6,
2827
+ staticRenderFns: __vue_staticRenderFns__$6
2828
+ }, __vue_inject_styles__$6, __vue_script__$6, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, undefined, undefined, undefined);
2827
2829
 
2828
2830
  //
2829
2831
  //
@@ -2841,7 +2843,7 @@ const __vue_component__$5 = /*#__PURE__*/normalizeComponent({
2841
2843
  //
2842
2844
  //
2843
2845
  //
2844
- var script$4 = {
2846
+ var script$5 = {
2845
2847
  components: {
2846
2848
  VSwitch: VSwitch
2847
2849
  },
@@ -2873,10 +2875,10 @@ var script$4 = {
2873
2875
  };
2874
2876
 
2875
2877
  /* script */
2876
- const __vue_script__$4 = script$4;
2878
+ const __vue_script__$5 = script$5;
2877
2879
  /* template */
2878
2880
 
2879
- var __vue_render__$4 = function () {
2881
+ var __vue_render__$5 = function () {
2880
2882
  var _vm = this;
2881
2883
 
2882
2884
  var _h = _vm.$createElement;
@@ -2912,13 +2914,13 @@ var __vue_render__$4 = function () {
2912
2914
  });
2913
2915
  };
2914
2916
 
2915
- var __vue_staticRenderFns__$4 = [];
2917
+ var __vue_staticRenderFns__$5 = [];
2916
2918
  /* style */
2917
2919
 
2918
- const __vue_inject_styles__$4 = function (inject) {
2920
+ const __vue_inject_styles__$5 = function (inject) {
2919
2921
  if (!inject) return;
2920
- inject("data-v-eb6ebd34_0", {
2921
- source: ".VcSwitch[data-v-eb6ebd34]{padding:0;margin:0}.VcSwitch[data-v-eb6ebd34] 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-eb6ebd34] input{height:var(--size-value5)}.VcSwitch[data-v-eb6ebd34] .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-eb6ebd34] .v-input--selection-controls__input{margin-left:var(--size-value3)}#app[dir=rtl] .VcSwitch[data-v-eb6ebd34] .v-input--selection-controls__input{margin-right:0}.VcSwitch[data-v-eb6ebd34] .v-input--switch__track{top:0;left:0}#app[dir=rtl] .VcSwitch[data-v-eb6ebd34] .v-input--switch__track{left:auto;right:0}.VcSwitch[data-v-eb6ebd34] .v-input--selection-controls__ripple{left:-10px;height:25px;width:25px}#app[dir=rtl] .VcSwitch[data-v-eb6ebd34] .v-input--selection-controls__ripple{left:auto;right:-10px}.VcSwitch[data-v-eb6ebd34] .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-eb6ebd34] .v-input--switch__thumb{transform:translateX(-3px)!important}.VcSwitch.is-active[data-v-eb6ebd34] .v-input--switch__track{opacity:1;background-color:currentColor}.VcSwitch.is-active[data-v-eb6ebd34] .v-input--selection-controls__ripple{transform:translateX(14px)!important}#app[dir=rtl] .VcSwitch.is-active[data-v-eb6ebd34] .v-input--selection-controls__ripple{transform:translateX(-14px)!important}.VcSwitch.is-active[data-v-eb6ebd34] .v-input--switch__thumb{transform:translateX(17px)!important}#app[dir=rtl] .VcSwitch.is-active[data-v-eb6ebd34] .v-input--switch__thumb{transform:translateX(-17px)!important}",
2922
+ inject("data-v-5fe5a78e_0", {
2923
+ 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}",
2922
2924
  map: undefined,
2923
2925
  media: undefined
2924
2926
  });
@@ -2926,28 +2928,28 @@ const __vue_inject_styles__$4 = function (inject) {
2926
2928
  /* scoped */
2927
2929
 
2928
2930
 
2929
- const __vue_scope_id__$4 = "data-v-eb6ebd34";
2931
+ const __vue_scope_id__$5 = "data-v-5fe5a78e";
2930
2932
  /* module identifier */
2931
2933
 
2932
- const __vue_module_identifier__$4 = undefined;
2934
+ const __vue_module_identifier__$5 = undefined;
2933
2935
  /* functional template */
2934
2936
 
2935
- const __vue_is_functional_template__$4 = false;
2937
+ const __vue_is_functional_template__$5 = false;
2936
2938
  /* style inject SSR */
2937
2939
 
2938
2940
  /* style inject shadow dom */
2939
2941
 
2940
- const __vue_component__$4 = /*#__PURE__*/normalizeComponent({
2941
- render: __vue_render__$4,
2942
- staticRenderFns: __vue_staticRenderFns__$4
2943
- }, __vue_inject_styles__$4, __vue_script__$4, __vue_scope_id__$4, __vue_is_functional_template__$4, __vue_module_identifier__$4, false, createInjector, undefined, undefined);
2942
+ const __vue_component__$5 = /*#__PURE__*/normalizeComponent({
2943
+ render: __vue_render__$5,
2944
+ staticRenderFns: __vue_staticRenderFns__$5
2945
+ }, __vue_inject_styles__$5, __vue_script__$5, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, createInjector, undefined, undefined);
2944
2946
 
2945
- var script$3 = {
2947
+ var script$4 = {
2946
2948
  name: 'VcTextField',
2947
2949
  components: {
2948
- VcLayout: __vue_component__$k,
2949
- VcButton: __vue_component__$m,
2950
- VcIcon: __vue_component__$n,
2950
+ VcLayout: __vue_component__$l,
2951
+ VcButton: __vue_component__$n,
2952
+ VcIcon: __vue_component__$o,
2951
2953
  VTextField: VTextField
2952
2954
  },
2953
2955
  props: {
@@ -3000,10 +3002,10 @@ var script$3 = {
3000
3002
  };
3001
3003
 
3002
3004
  /* script */
3003
- const __vue_script__$3 = script$3;
3005
+ const __vue_script__$4 = script$4;
3004
3006
  /* template */
3005
3007
 
3006
- var __vue_render__$3 = function () {
3008
+ var __vue_render__$4 = function () {
3007
3009
  var _vm = this;
3008
3010
 
3009
3011
  var _h = _vm.$createElement;
@@ -3022,6 +3024,11 @@ var __vue_render__$3 = function () {
3022
3024
  "step": _vm.step,
3023
3025
  "hide-details": "auto"
3024
3026
  },
3027
+ on: {
3028
+ "input": function (data) {
3029
+ return _vm.$emit('input', data);
3030
+ }
3031
+ },
3025
3032
  scopedSlots: _vm._u([_vm.type === 'number' ? {
3026
3033
  key: "append",
3027
3034
  fn: function () {
@@ -3039,7 +3046,7 @@ var __vue_render__$3 = function () {
3039
3046
  "max-height": "25px"
3040
3047
  },
3041
3048
  on: {
3042
- "onClick": function ($event) {
3049
+ "click": function ($event) {
3043
3050
  _vm.updateValue(parseFloat(_vm.step));
3044
3051
  }
3045
3052
  }
@@ -3052,7 +3059,7 @@ var __vue_render__$3 = function () {
3052
3059
  "max-height": "25px"
3053
3060
  },
3054
3061
  on: {
3055
- "onClick": function ($event) {
3062
+ "click": function ($event) {
3056
3063
  _vm.updateValue(-parseFloat(_vm.step));
3057
3064
  }
3058
3065
  }
@@ -3063,16 +3070,16 @@ var __vue_render__$3 = function () {
3063
3070
  }, [_vm._v(" "), _vm._t("default")], 2);
3064
3071
  };
3065
3072
 
3066
- var __vue_staticRenderFns__$3 = [];
3073
+ var __vue_staticRenderFns__$4 = [];
3067
3074
  /* style */
3068
3075
 
3069
- const __vue_inject_styles__$3 = function (inject) {
3076
+ const __vue_inject_styles__$4 = function (inject) {
3070
3077
  if (!inject) return;
3071
- inject("data-v-4fbc1d5a_0", {
3072
- source: ".number-counter[data-v-4fbc1d5a]{border-left:1px solid rgba(0,0,0,.12)}#app[dir=rtl] .number-counter[data-v-4fbc1d5a]{border-left:none;border-right:1px solid rgba(0,0,0,.12)}",
3078
+ inject("data-v-31ca7c6a_0", {
3079
+ 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)}",
3073
3080
  map: undefined,
3074
3081
  media: undefined
3075
- }), inject("data-v-4fbc1d5a_1", {
3082
+ }), inject("data-v-31ca7c6a_1", {
3076
3083
  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}",
3077
3084
  map: undefined,
3078
3085
  media: undefined
@@ -3081,21 +3088,21 @@ const __vue_inject_styles__$3 = function (inject) {
3081
3088
  /* scoped */
3082
3089
 
3083
3090
 
3084
- const __vue_scope_id__$3 = "data-v-4fbc1d5a";
3091
+ const __vue_scope_id__$4 = "data-v-31ca7c6a";
3085
3092
  /* module identifier */
3086
3093
 
3087
- const __vue_module_identifier__$3 = undefined;
3094
+ const __vue_module_identifier__$4 = undefined;
3088
3095
  /* functional template */
3089
3096
 
3090
- const __vue_is_functional_template__$3 = false;
3097
+ const __vue_is_functional_template__$4 = false;
3091
3098
  /* style inject SSR */
3092
3099
 
3093
3100
  /* style inject shadow dom */
3094
3101
 
3095
- const __vue_component__$3 = /*#__PURE__*/normalizeComponent({
3096
- render: __vue_render__$3,
3097
- staticRenderFns: __vue_staticRenderFns__$3
3098
- }, __vue_inject_styles__$3, __vue_script__$3, __vue_scope_id__$3, __vue_is_functional_template__$3, __vue_module_identifier__$3, false, createInjector, undefined, undefined);
3102
+ const __vue_component__$4 = /*#__PURE__*/normalizeComponent({
3103
+ render: __vue_render__$4,
3104
+ staticRenderFns: __vue_staticRenderFns__$4
3105
+ }, __vue_inject_styles__$4, __vue_script__$4, __vue_scope_id__$4, __vue_is_functional_template__$4, __vue_module_identifier__$4, false, createInjector, undefined, undefined);
3099
3106
 
3100
3107
  //
3101
3108
  //
@@ -3113,7 +3120,7 @@ const __vue_component__$3 = /*#__PURE__*/normalizeComponent({
3113
3120
  //
3114
3121
  //
3115
3122
  //
3116
- var script$2 = {
3123
+ var script$3 = {
3117
3124
  components: {
3118
3125
  VTextarea: VTextarea
3119
3126
  },
@@ -3156,10 +3163,10 @@ var script$2 = {
3156
3163
  };
3157
3164
 
3158
3165
  /* script */
3159
- const __vue_script__$2 = script$2;
3166
+ const __vue_script__$3 = script$3;
3160
3167
  /* template */
3161
3168
 
3162
- var __vue_render__$2 = function () {
3169
+ var __vue_render__$3 = function () {
3163
3170
  var _vm = this;
3164
3171
 
3165
3172
  var _h = _vm.$createElement;
@@ -3189,13 +3196,13 @@ var __vue_render__$2 = function () {
3189
3196
  });
3190
3197
  };
3191
3198
 
3192
- var __vue_staticRenderFns__$2 = [];
3199
+ var __vue_staticRenderFns__$3 = [];
3193
3200
  /* style */
3194
3201
 
3195
- const __vue_inject_styles__$2 = function (inject) {
3202
+ const __vue_inject_styles__$3 = function (inject) {
3196
3203
  if (!inject) return;
3197
- inject("data-v-35c01692_0", {
3198
- source: "[data-v-35c01692].VcTextArea.v-text-field .v-text-field__slot:first-child{margin-inline-start:12px;margin-top:3px}[data-v-35c01692].VcTextArea.v-text-field.v-input--is-focused label,[data-v-35c01692].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-35c01692].VcTextArea.v-text-field:not(.v-text-field--outlined) .v-text-field__slot{transition:margin-bottom .1s}[data-v-35c01692].VcTextArea.v-text-field:not(.v-text-field--outlined).v-input--is-focused .v-text-field__slot,[data-v-35c01692].VcTextArea.v-text-field:not(.v-text-field--outlined).v-input--is-label-active .v-text-field__slot{margin-bottom:0}[data-v-35c01692].VcTextArea.v-text-field:not(.v-text-field--outlined).v-input--is-focused .v-input__slot,[data-v-35c01692].VcTextArea.v-text-field:not(.v-text-field--outlined).v-input--is-label-active .v-input__slot{padding-top:20px}[data-v-35c01692].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-35c01692].VcTextArea.v-text-field .v-input__slot:hover{border-color:var(--v-secondary-base);box-shadow:0 0 0 3px var(--v-secondary-lighten1);transition:box-shadow .1s!important}[data-v-35c01692].VcTextArea.v-text-field .v-input__slot:after,[data-v-35c01692].VcTextArea.v-text-field .v-input__slot:before{display:none}[data-v-35c01692].VcTextArea.v-text-field textarea{font-size:15px!important;font-weight:500;margin-top:0;line-height:1.5}[data-v-35c01692].VcTextArea.v-text-field .v-text-field__prefix{color:rgba(0,0,0,.54)!important}[data-v-35c01692].VcTextArea.v-text-field.error--text .v-input__slot{border:1px solid var(--v-danger-base);box-shadow:none}[data-v-35c01692].VcTextArea.v-text-field.v-input--is-disabled .v-input__slot{background-color:rgba(0,0,0,.03)!important}",
3204
+ inject("data-v-021f98ca_0", {
3205
+ 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}",
3199
3206
  map: undefined,
3200
3207
  media: undefined
3201
3208
  });
@@ -3203,36 +3210,36 @@ const __vue_inject_styles__$2 = function (inject) {
3203
3210
  /* scoped */
3204
3211
 
3205
3212
 
3206
- const __vue_scope_id__$2 = "data-v-35c01692";
3213
+ const __vue_scope_id__$3 = "data-v-021f98ca";
3207
3214
  /* module identifier */
3208
3215
 
3209
- const __vue_module_identifier__$2 = undefined;
3216
+ const __vue_module_identifier__$3 = undefined;
3210
3217
  /* functional template */
3211
3218
 
3212
- const __vue_is_functional_template__$2 = false;
3219
+ const __vue_is_functional_template__$3 = false;
3213
3220
  /* style inject SSR */
3214
3221
 
3215
3222
  /* style inject shadow dom */
3216
3223
 
3217
- const __vue_component__$2 = /*#__PURE__*/normalizeComponent({
3218
- render: __vue_render__$2,
3219
- staticRenderFns: __vue_staticRenderFns__$2
3220
- }, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, createInjector, undefined, undefined);
3224
+ const __vue_component__$3 = /*#__PURE__*/normalizeComponent({
3225
+ render: __vue_render__$3,
3226
+ staticRenderFns: __vue_staticRenderFns__$3
3227
+ }, __vue_inject_styles__$3, __vue_script__$3, __vue_scope_id__$3, __vue_is_functional_template__$3, __vue_module_identifier__$3, false, createInjector, undefined, undefined);
3221
3228
 
3222
3229
  //
3223
3230
  //
3224
3231
  //
3225
3232
  //
3226
- var script$1 = {
3233
+ var script$2 = {
3227
3234
  name: 'VcSvg',
3228
3235
  props: ['svg']
3229
3236
  };
3230
3237
 
3231
3238
  /* script */
3232
- const __vue_script__$1 = script$1;
3239
+ const __vue_script__$2 = script$2;
3233
3240
  /* template */
3234
3241
 
3235
- var __vue_render__$1 = function () {
3242
+ var __vue_render__$2 = function () {
3236
3243
  var _vm = this;
3237
3244
 
3238
3245
  var _h = _vm.$createElement;
@@ -3246,70 +3253,45 @@ var __vue_render__$1 = function () {
3246
3253
  });
3247
3254
  };
3248
3255
 
3249
- var __vue_staticRenderFns__$1 = [];
3256
+ var __vue_staticRenderFns__$2 = [];
3250
3257
  /* style */
3251
3258
 
3252
- const __vue_inject_styles__$1 = undefined;
3259
+ const __vue_inject_styles__$2 = undefined;
3253
3260
  /* scoped */
3254
3261
 
3255
- const __vue_scope_id__$1 = undefined;
3262
+ const __vue_scope_id__$2 = undefined;
3256
3263
  /* module identifier */
3257
3264
 
3258
- const __vue_module_identifier__$1 = undefined;
3265
+ const __vue_module_identifier__$2 = undefined;
3259
3266
  /* functional template */
3260
3267
 
3261
- const __vue_is_functional_template__$1 = false;
3268
+ const __vue_is_functional_template__$2 = false;
3262
3269
  /* style inject */
3263
3270
 
3264
3271
  /* style inject SSR */
3265
3272
 
3266
3273
  /* style inject shadow dom */
3267
3274
 
3268
- const __vue_component__$1 = /*#__PURE__*/normalizeComponent({
3269
- render: __vue_render__$1,
3270
- staticRenderFns: __vue_staticRenderFns__$1
3271
- }, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);
3275
+ const __vue_component__$2 = /*#__PURE__*/normalizeComponent({
3276
+ render: __vue_render__$2,
3277
+ staticRenderFns: __vue_staticRenderFns__$2
3278
+ }, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);
3272
3279
 
3273
- //
3274
- //
3275
- //
3276
- //
3277
- //
3278
- //
3279
- //
3280
- //
3281
- //
3282
- //
3283
- //
3284
- var script = {
3280
+ var script$1 = {
3281
+ name: 'VcToast',
3285
3282
  components: {
3283
+ VcAlert: __vue_component__$e,
3286
3284
  VSnackbar: VSnackbar
3287
3285
  },
3288
-
3289
- name: 'VcToast',
3290
-
3291
3286
  props: {
3292
- type: {
3293
- type: String,
3294
- default: 'success',
3295
- validator: prop => ['danger', 'info', 'success'].includes(prop)
3296
- },
3297
3287
  value: {
3298
3288
  type: Boolean
3299
3289
  },
3300
- color: {
3301
- type: String
3302
- },
3303
3290
  timeout: {
3304
3291
  type: Number,
3305
3292
  required: false
3306
- },
3307
- text: {
3308
- type: String,
3309
- default: 'Success'
3310
3293
  }
3311
3294
  },
3312
-
3313
3295
  computed: {
3314
3296
  computedTimeout() {
3315
3297
  return this.timeout || this.$ds.toastTimeout || 3000;
@@ -3319,10 +3301,10 @@ var script = {
3319
3301
  };
3320
3302
 
3321
3303
  /* script */
3322
- const __vue_script__ = script;
3304
+ const __vue_script__$1 = script$1;
3323
3305
  /* template */
3324
3306
 
3325
- var __vue_render__ = function () {
3307
+ var __vue_render__$1 = function () {
3326
3308
  var _vm = this;
3327
3309
 
3328
3310
  var _h = _vm.$createElement;
@@ -3338,7 +3320,86 @@ var __vue_render__ = function () {
3338
3320
  "left": !_vm.$vuetify.rtl,
3339
3321
  "right": _vm.$vuetify.rtl
3340
3322
  }
3341
- }, [_vm._v("\n " + _vm._s(_vm.text) + "\n")]);
3323
+ }, [_c('VcAlert', _vm._b({
3324
+ attrs: {
3325
+ "is-stripe": false
3326
+ }
3327
+ }, 'VcAlert', _vm.$attrs, false))], 1);
3328
+ };
3329
+
3330
+ var __vue_staticRenderFns__$1 = [];
3331
+ /* style */
3332
+
3333
+ const __vue_inject_styles__$1 = function (inject) {
3334
+ if (!inject) return;
3335
+ inject("data-v-2dfe68ea_0", {
3336
+ source: "[data-v-2dfe68ea] .v-snack__action{display:none}[data-v-2dfe68ea] .v-alert{margin-bottom:0}",
3337
+ map: undefined,
3338
+ media: undefined
3339
+ });
3340
+ };
3341
+ /* scoped */
3342
+
3343
+
3344
+ const __vue_scope_id__$1 = "data-v-2dfe68ea";
3345
+ /* module identifier */
3346
+
3347
+ const __vue_module_identifier__$1 = undefined;
3348
+ /* functional template */
3349
+
3350
+ const __vue_is_functional_template__$1 = false;
3351
+ /* style inject SSR */
3352
+
3353
+ /* style inject shadow dom */
3354
+
3355
+ const __vue_component__$1 = /*#__PURE__*/normalizeComponent({
3356
+ render: __vue_render__$1,
3357
+ staticRenderFns: __vue_staticRenderFns__$1
3358
+ }, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, createInjector, undefined, undefined);
3359
+
3360
+ //
3361
+ //
3362
+ //
3363
+ //
3364
+ //
3365
+ //
3366
+ //
3367
+ //
3368
+ var script = {
3369
+ components: {
3370
+ VCard: VCard
3371
+ },
3372
+
3373
+ name: "VcCard",
3374
+
3375
+ props: {
3376
+ dataQa: {
3377
+ type: String,
3378
+ default: 'VcCard'
3379
+ }
3380
+ }
3381
+ };
3382
+
3383
+ /* script */
3384
+ const __vue_script__ = script;
3385
+ /* template */
3386
+
3387
+ var __vue_render__ = function () {
3388
+ var _vm = this;
3389
+
3390
+ var _h = _vm.$createElement;
3391
+
3392
+ var _c = _vm._self._c || _h;
3393
+
3394
+ return _c('v-card', {
3395
+ staticClass: "VcCard",
3396
+ attrs: {
3397
+ "tile": "",
3398
+ "data-qa": _vm.dataQa
3399
+ }
3400
+ }, [_vm._t("default", function () {
3401
+ return [_vm._v("\n " + _vm._s(this.$slots && this.$slots.default) + "\n ")];
3402
+ })], 2);
3342
3403
  };
3343
3404
 
3344
3405
  var __vue_staticRenderFns__ = [];
@@ -3346,8 +3407,8 @@ var __vue_staticRenderFns__ = [];
3346
3407
 
3347
3408
  const __vue_inject_styles__ = function (inject) {
3348
3409
  if (!inject) return;
3349
- inject("data-v-41b33dd6_0", {
3350
- source: ".v-snack__action[data-v-41b33dd6]{display:none}",
3410
+ inject("data-v-45292040_0", {
3411
+ 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}}",
3351
3412
  map: undefined,
3352
3413
  media: undefined
3353
3414
  });
@@ -3355,7 +3416,7 @@ const __vue_inject_styles__ = function (inject) {
3355
3416
  /* scoped */
3356
3417
 
3357
3418
 
3358
- const __vue_scope_id__ = "data-v-41b33dd6";
3419
+ const __vue_scope_id__ = "data-v-45292040";
3359
3420
  /* module identifier */
3360
3421
 
3361
3422
  const __vue_module_identifier__ = undefined;
@@ -3375,254 +3436,35 @@ const __vue_component__ = /*#__PURE__*/normalizeComponent({
3375
3436
 
3376
3437
  var components$1 = /*#__PURE__*/Object.freeze({
3377
3438
  __proto__: null,
3378
- VcConfirmModal: __vue_component__$h,
3379
- VcInputModal: __vue_component__$f,
3380
- VcNoticeModal: __vue_component__$e,
3381
- VcModalFooter: __vue_component__$j,
3382
- VcModalHeader: __vue_component__$i,
3383
- VcAlert: __vue_component__$d,
3384
- VcTooltip: __vue_component__$c,
3385
- VcIconWithTooltip: __vue_component__$b,
3386
- VcBottomActions: __vue_component__$9,
3387
- VcActionList: __vue_component__$8,
3388
- VcActions: __vue_component__$7,
3389
- VcButton: __vue_component__$m,
3390
- VcButtonGroup: __vue_component__$6,
3391
- VcForm: __vue_component__$g,
3392
- VcIcon: __vue_component__$n,
3393
- VcLayout: __vue_component__$k,
3394
- VcLoader: __vue_component__$5,
3395
- VcSwitch: __vue_component__$4,
3396
- VcTextField: __vue_component__$3,
3397
- VcAvatar: __vue_component__$a,
3398
- VcTextArea: __vue_component__$2,
3399
- VcSvg: __vue_component__$1,
3400
- VcToast: __vue_component__
3439
+ VcConfirmModal: __vue_component__$i,
3440
+ VcInputModal: __vue_component__$g,
3441
+ VcNoticeModal: __vue_component__$f,
3442
+ VcModalFooter: __vue_component__$k,
3443
+ VcModalHeader: __vue_component__$j,
3444
+ VcAlert: __vue_component__$e,
3445
+ VcTooltip: __vue_component__$d,
3446
+ VcIconWithTooltip: __vue_component__$c,
3447
+ VcBottomActions: __vue_component__$a,
3448
+ VcActionList: __vue_component__$9,
3449
+ VcActions: __vue_component__$8,
3450
+ VcButton: __vue_component__$n,
3451
+ VcButtonGroup: __vue_component__$7,
3452
+ VcForm: __vue_component__$h,
3453
+ VcIcon: __vue_component__$o,
3454
+ VcLayout: __vue_component__$l,
3455
+ VcLoader: __vue_component__$6,
3456
+ VcSwitch: __vue_component__$5,
3457
+ VcTextField: __vue_component__$4,
3458
+ VcAvatar: __vue_component__$b,
3459
+ VcTextArea: __vue_component__$3,
3460
+ VcSvg: __vue_component__$2,
3461
+ VcToast: __vue_component__$1,
3462
+ VcCard: __vue_component__
3401
3463
  });
3402
3464
 
3403
- const icons = {
3404
- flag: `<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 12C1.81066 12 2.06249 11.7481 2.06249 11.4375V9.22496C2.72602 8.94223 3.5527 8.70648 4.74455 8.70648C6.00054 8.70648 7.03778 9.52171 8.61683 9.52171C9.74579 9.52171 10.6481 9.13982 11.488 8.56411C11.6915 8.42463 11.8125 8.19305 11.8125 7.94634V2.24871C11.8125 1.70042 11.2437 1.33769 10.7464 1.56863C9.94162 1.94242 8.95452 2.31522 8.00542 2.31522C6.74946 2.31522 5.71219 1.49999 4.13314 1.49999C3.54825 1.49999 3.02435 1.60274 2.53834 1.78154C2.5862 1.65657 2.62504 1.4465 2.62504 1.31265C2.62504 1.28963 2.62385 1.2523 2.62238 1.22932C2.58087 0.562837 2.0345 0.0282617 1.36729 0.00111634C0.617453 -0.0293935 0 0.569429 0 1.31249C0 1.75842 0.222587 2.15214 0.562499 2.38933V11.4375C0.562499 11.7481 0.814337 12 1.125 12H1.5Z"/></svg>`,
3405
- customer: `<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.47508 3.49999C8.47508 4.88085 7.35595 5.99999 5.97509 5.99999C4.59423 5.99999 3.47509 4.88085 3.47509 3.49999C3.47509 2.11913 4.59423 1 5.97509 1C7.35595 1 8.47508 2.11913 8.47508 3.49999ZM10.3501 10.0625C10.3501 10.5801 9.93016 11 9.41258 11H2.5376C2.02002 11 1.6001 10.5801 1.6001 10.0625V9.24999C1.6001 7.80077 2.77588 6.62499 4.2251 6.62499H4.55125C4.98682 6.82421 5.46728 6.93749 5.97509 6.93749C6.4829 6.93749 6.96532 6.82421 7.39892 6.62499H7.72508C9.17429 6.62499 10.3501 7.80077 10.3501 9.24999V10.0625Z"/></svg>`,
3406
- inactive: `<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.1356 10.6328L11.7528 11.1269C11.6454 11.2637 11.4501 11.2871 11.3134 11.1816L-0.178797 2.30077C-0.315516 2.19532 -0.338957 2.00001 -0.233481 1.86329L0.149323 1.3711C0.256745 1.23438 0.452057 1.21094 0.588775 1.31641L3.47157 3.54297C3.57705 2.26171 4.63955 1.25 5.95009 1.25C7.33095 1.25 8.45008 2.36913 8.45008 3.74999C8.45008 4.83983 7.74891 5.75585 6.77626 6.09959L12.079 10.1972C12.2157 10.3027 12.2411 10.5 12.1356 10.6328ZM3.75088 6.9199L9.35243 11.25H2.5126C1.99502 11.25 1.5751 10.8301 1.5751 10.3125V9.49999C1.5751 8.20311 2.51651 7.13475 3.75088 6.9199Z" /></g><defs><clipPath id="clip0"><rect width="12" height="12" fill="white"/></clipPath></defs></svg>`,
3407
- vip: `<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.9556 5.35938L9.6 9.125H2.4L1.04438 5.35938C0.997504 5.36718 0.948743 5.375 0.9 5.375C0.403125 5.375 0 4.95508 0 4.4375C0 3.91992 0.404993 3.5 0.901868 3.5C1.39874 3.5 1.80187 3.91992 1.80187 4.4375C1.80187 4.57616 1.77001 4.70703 1.71938 4.82421L3.075 5.67188C3.36187 5.85157 3.73687 5.75 3.90375 5.4453L5.43188 2.66016C5.23125 2.48829 5.1 2.23047 5.1 1.9375C5.1 1.41992 5.50313 1 6 1C6.49687 1 6.9 1.41992 6.9 1.9375C6.9 2.23047 6.76875 2.48829 6.56812 2.66016L8.09625 5.4453C8.26313 5.75 8.63624 5.85157 8.925 5.67188L10.2825 4.82421C10.23 4.70508 10.2 4.57616 10.2 4.4375C10.2 3.91992 10.6031 3.5 11.1 3.5C11.5969 3.5 12 3.91992 12 4.4375C12 4.95508 11.5969 5.375 11.1 5.375C11.0513 5.375 11.0025 5.36718 10.9556 5.35938ZM10.2 10.6875C10.2 10.8594 10.065 11 9.9 11H2.1C1.935 11 1.8 10.8594 1.8 10.6875V10.0625C1.8 9.89063 1.935 9.75 2.1 9.75H9.9C10.065 9.75 10.2 9.89063 10.2 10.0625V10.6875Z"/></svg>`,
3408
- success: `<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path d="M4.0789 10.6903L0.180509 6.79191C-0.0536593 6.5577 -0.0536593 6.17791 0.180509 5.94371L1.02871 5.09555C1.26291 4.86134 1.6427 4.86134 1.8769 5.09555L4.50302 7.7217L10.1279 2.09682C10.3621 1.86258 10.7419 1.86258 10.9761 2.09682L11.8243 2.94498C12.0585 3.17919 12.0585 3.55898 11.8243 3.79318L4.92713 10.6903C4.69289 10.9245 4.31314 10.9245 4.0789 10.6903Z" /></g><defs><clipPath id="clip0"><rect width="12" height="12" fill="white"/></clipPath></defs></svg>`,
3409
- close_button: `<svg viewBox="0 0 14 15" xmlns="http://www.w3.org/2000/svg"><path d="M12.3047 13.0138L13.0119 12.3066C13.1093 12.2091 13.1093 12.0507 13.0119 11.9532L8.05931 7.00064L13.0065 2.05349C13.104 1.95599 13.104 1.79754 13.0065 1.70007L12.2993 0.992855C12.2018 0.895382 12.0434 0.895382 11.9459 0.992855L6.99867 5.94L2.04911 0.99012C1.9516 0.892616 1.79316 0.892616 1.69568 0.99012L0.988167 1.6973C0.890663 1.79481 0.890663 1.95325 0.988167 2.05076L5.93803 7.00064L0.993702 11.9447C0.896198 12.0422 0.896198 12.2006 0.993702 12.2981L1.70088 13.0053C1.79839 13.1028 1.95683 13.1028 2.05434 13.0053L6.99867 8.06127L11.9512 13.0138C12.0487 13.1113 12.2072 13.1113 12.3047 13.0138Z"/> </svg>`,
3410
- arrow_right: `<svg class="arrow-right" width="12" height="13" viewBox="0 0 12 13" xmlns="http://www.w3.org/2000/svg"><path d="M6.40093 0.683058C6.15685 0.438981 5.76112 0.438981 5.51704 0.683058C5.27296 0.927136 5.27296 1.32286 5.51704 1.56694L7.78311 3.83301H0.625C0.279822 3.83301 0 4.11283 0 4.45801C0 4.80319 0.279822 5.08301 0.625 5.08301H7.78343L5.51704 7.3494C5.27296 7.59348 5.27296 7.98921 5.51704 8.23328C5.76112 8.47736 6.15685 8.47736 6.40093 8.23328L9.72198 4.91223C9.72612 4.90831 9.73021 4.90433 9.73426 4.90028C9.85634 4.77819 9.91736 4.61818 9.91732 4.45817C9.91736 4.29817 9.85634 4.13815 9.73426 4.01607C9.73021 4.01201 9.72611 4.00803 9.72198 4.00411L6.40093 0.683058Z"/></svg>`,
3411
- warning: `<svg class="vc-notif" width="16" height="15" viewBox="0 0 16 15" xmlns="http://www.w3.org/2000/svg"><path d="M8.31873 10.5C8.41874 10.5 8.50309 10.4188 8.50623 10.3188L8.74061 5.19378C8.74372 5.08752 8.65934 5.00002 8.55311 5.00002H7.44374C7.33747 5.00002 7.25309 5.08752 7.25624 5.19378L7.49061 10.3188C7.49372 10.4219 7.5781 10.5 7.67811 10.5H8.31873Z"/><path d="M7.99998 12.875C8.48435 12.875 8.87498 12.4844 8.87498 12C8.87498 11.5156 8.48435 11.125 7.99998 11.125C7.5156 11.125 7.12498 11.5156 7.12498 12C7.12498 12.4844 7.5156 12.875 7.99998 12.875Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6.844 0.65625C7.33344 -0.177083 8.52333 -0.216766 9.07706 0.537202L9.15518 0.65625L15.8194 13.0312C16.3119 13.8698 15.7405 14.9092 14.7923 14.9944L14.6665 15H1.33541C0.35042 15 -0.277403 13.993 0.121864 13.1414L6.844 0.65625ZM8.2917 1.16064C8.18032 0.969949 7.90489 0.948761 7.76849 1.07583L7.72445 1.13039L1.0426 13.5368C0.935848 13.719 1.04882 13.9484 1.26113 13.9925L1.33541 14H14.6665C14.8973 14 15.0441 13.7892 14.9714 13.5762L14.9389 13.5054L8.2917 1.16064Z"/></svg>`,
3412
- check_circle: `<svg class="vc-notif" width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 0.25C3.71875 0.25 0.25 3.75 0.25 8C0.25 12.2812 3.71875 15.75 8 15.75C12.25 15.75 15.75 12.2812 15.75 8C15.75 3.75 12.25 0.25 8 0.25ZM8 14.75C4.28125 14.75 1.25 11.75 1.25 8C1.25 4.3125 4.25 1.25 8 1.25C11.6875 1.25 14.75 4.28125 14.75 8C14.75 11.7188 11.7188 14.75 8 14.75ZM12.4062 5.65625C12.5625 5.78125 12.5625 6.03125 12.4062 6.1875L6.78125 11.7812C6.625 11.9062 6.375 11.9062 6.25 11.7812L3.5625 9.0625C3.40625 8.90625 3.40625 8.6875 3.5625 8.53125L3.8125 8.28125C3.96875 8.125 4.21875 8.125 4.34375 8.28125L6.5 10.4375L11.625 5.375C11.75 5.21875 12 5.21875 12.1562 5.375L12.4062 5.65625Z"/></svg>`,
3413
- 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>`,
3414
- 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>`,
3415
- 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>`,
3416
- 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>`,
3417
- 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>`,
3418
- 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>`,
3419
- 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>`,
3420
- 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>`,
3421
- 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>`
3422
- };
3423
- var vuetifyConfig = {
3424
- // TODO: is this the correct iconfont?
3425
- icons: {
3426
- iconfont: "md",
3427
- rtl: false,
3428
- values: {
3429
- example: {
3430
- component: __vue_component__$1,
3431
- props: {
3432
- svg: `<svg viewBox="0 0 13 14" xmlns="http://www.w3.org/2000/svg">
3433
- <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"/>
3434
- <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"/>
3435
- <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"/>
3436
- </svg>`
3437
- }
3438
- },
3439
- flag: {
3440
- component: __vue_component__$1,
3441
- props: {
3442
- svg: icons.flag
3443
- }
3444
- },
3445
- customer: {
3446
- component: __vue_component__$1,
3447
- props: {
3448
- svg: icons.customer
3449
- }
3450
- },
3451
- inactive: {
3452
- component: __vue_component__$1,
3453
- props: {
3454
- svg: icons.inactive
3455
- }
3456
- },
3457
- vip: {
3458
- component: __vue_component__$1,
3459
- props: {
3460
- svg: icons.vip
3461
- }
3462
- },
3463
- success: {
3464
- component: __vue_component__$1,
3465
- props: {
3466
- svg: icons.success
3467
- }
3468
- },
3469
- close_button: {
3470
- component: __vue_component__$1,
3471
- props: {
3472
- svg: icons.close_button
3473
- }
3474
- },
3475
- arrow_right: {
3476
- component: __vue_component__$1,
3477
- props: {
3478
- svg: icons.arrow_right
3479
- }
3480
- },
3481
- warning: {
3482
- component: __vue_component__$1,
3483
- props: {
3484
- svg: icons.warning
3485
- }
3486
- },
3487
- check_circle: {
3488
- component: __vue_component__$1,
3489
- props: {
3490
- svg: icons.check_circle
3491
- }
3492
- },
3493
- info: {
3494
- component: __vue_component__$1,
3495
- props: {
3496
- svg: icons.info
3497
- }
3498
- },
3499
- information: {
3500
- component: __vue_component__$1,
3501
- props: {
3502
- svg: icons.information
3503
- }
3504
- },
3505
- info_fill: {
3506
- component: __vue_component__$1,
3507
- props: {
3508
- svg: icons.info_fill
3509
- }
3510
- },
3511
- error: {
3512
- component: __vue_component__$1,
3513
- props: {
3514
- svg: icons.error
3515
- }
3516
- },
3517
- question: {
3518
- component: __vue_component__$1,
3519
- props: {
3520
- svg: icons.question
3521
- }
3522
- },
3523
- question_fill: {
3524
- component: __vue_component__$1,
3525
- props: {
3526
- svg: icons.question_fill
3527
- }
3528
- },
3529
- attention: {
3530
- component: __vue_component__$1,
3531
- props: {
3532
- svg: icons.attention
3533
- }
3534
- },
3535
- attention_fill: {
3536
- component: __vue_component__$1,
3537
- props: {
3538
- svg: icons.attention_fill
3539
- }
3540
- },
3541
- three_dots: {
3542
- component: __vue_component__$1,
3543
- props: {
3544
- svg: icons.three_dots
3545
- }
3546
- }
3547
- }
3548
- },
3549
- theme: {
3550
- dark: false,
3551
- options: {
3552
- customProperties: true // allow create css variables based on the theme
3553
-
3554
- },
3555
- themes: {
3556
- light: {
3557
- primary: '#0C315E',
3558
- // represents the secondary color on DB
3559
- secondary: {
3560
- // represents the primary color on DB
3561
- base: '#00dcf7',
3562
- lighten1: '#c6f2fc',
3563
- lighten2: '#def7fd',
3564
- lighten3: '#effbfe'
3565
- },
3566
- default: '#000000',
3567
- neutral: '#586E8C',
3568
- success: '#54D28C',
3569
- warning: '#FFC511',
3570
- danger: '#F2514A',
3571
- info: '#478FFF'
3572
- }
3573
- }
3574
- }
3575
- };
3576
-
3577
- // import VAlert from 'vuetify/lib/components/VAlert'\
3578
-
3579
- Vue.use(Vuetify, {
3580
- components: {
3581
- VAlert: VAlert$1,
3582
- VApp,
3583
- VAutocomplete,
3584
- VBtn: VBtn$1,
3585
- VBottomSheet: VBottomSheet$1,
3586
- VBtnToggle,
3587
- VCol: VCol$1,
3588
- VContainer: VContainer$1,
3589
- VDialog: VDialog$1,
3590
- VDivider,
3591
- VForm,
3592
- VIcon: VIcon$1,
3593
- VLayout: VLayout$1,
3594
- VList: VList$1,
3595
- VListItem: VListItem$1,
3596
- VListItemTitle: VListItemTitle$1,
3597
- VMenu: VMenu$1,
3598
- VProgressCircular: VProgressCircular$1,
3599
- VRow: VRow$1,
3600
- VSnackbar: VSnackbar$1,
3601
- VSubheader: VSubheader$1,
3602
- VSwitch: VSwitch$1,
3603
- VTextarea: VTextarea$1,
3604
- VTextField: VTextField$1,
3605
- VTooltip: VTooltip$1
3606
- }
3607
- });
3608
-
3609
- const DesignSystem = ({
3610
- theme = {},
3611
- options = {}
3612
- } = {}) => {
3613
- const ds = { ...options
3614
- }; // Make the options available to all the components
3615
-
3616
- Vue.prototype.$ds = ds;
3617
- const vuetifyConfigOverride = Object.assign({}, vuetifyConfig, theme);
3618
- return new Vuetify(vuetifyConfigOverride);
3619
- };
3620
-
3621
3465
  // Import vue components
3622
3466
 
3623
- const install = function installdesignSystem(Vue, props) {
3624
- DesignSystem({ ...props
3625
- });
3467
+ const install = function installdesignSystem(Vue) {
3626
3468
  Object.entries(components$1).forEach(([componentName, component]) => {
3627
3469
  Vue.component(componentName, component);
3628
3470
  });
@@ -3631,29 +3473,30 @@ const install = function installdesignSystem(Vue, props) {
3631
3473
  var components = /*#__PURE__*/Object.freeze({
3632
3474
  __proto__: null,
3633
3475
  'default': install,
3634
- VcConfirmModal: __vue_component__$h,
3635
- VcInputModal: __vue_component__$f,
3636
- VcNoticeModal: __vue_component__$e,
3637
- VcModalFooter: __vue_component__$j,
3638
- VcModalHeader: __vue_component__$i,
3639
- VcAlert: __vue_component__$d,
3640
- VcTooltip: __vue_component__$c,
3641
- VcIconWithTooltip: __vue_component__$b,
3642
- VcBottomActions: __vue_component__$9,
3643
- VcActionList: __vue_component__$8,
3644
- VcActions: __vue_component__$7,
3645
- VcButton: __vue_component__$m,
3646
- VcButtonGroup: __vue_component__$6,
3647
- VcForm: __vue_component__$g,
3648
- VcIcon: __vue_component__$n,
3649
- VcLayout: __vue_component__$k,
3650
- VcLoader: __vue_component__$5,
3651
- VcSwitch: __vue_component__$4,
3652
- VcTextField: __vue_component__$3,
3653
- VcAvatar: __vue_component__$a,
3654
- VcTextArea: __vue_component__$2,
3655
- VcSvg: __vue_component__$1,
3656
- VcToast: __vue_component__
3476
+ VcConfirmModal: __vue_component__$i,
3477
+ VcInputModal: __vue_component__$g,
3478
+ VcNoticeModal: __vue_component__$f,
3479
+ VcModalFooter: __vue_component__$k,
3480
+ VcModalHeader: __vue_component__$j,
3481
+ VcAlert: __vue_component__$e,
3482
+ VcTooltip: __vue_component__$d,
3483
+ VcIconWithTooltip: __vue_component__$c,
3484
+ VcBottomActions: __vue_component__$a,
3485
+ VcActionList: __vue_component__$9,
3486
+ VcActions: __vue_component__$8,
3487
+ VcButton: __vue_component__$n,
3488
+ VcButtonGroup: __vue_component__$7,
3489
+ VcForm: __vue_component__$h,
3490
+ VcIcon: __vue_component__$o,
3491
+ VcLayout: __vue_component__$l,
3492
+ VcLoader: __vue_component__$6,
3493
+ VcSwitch: __vue_component__$5,
3494
+ VcTextField: __vue_component__$4,
3495
+ VcAvatar: __vue_component__$b,
3496
+ VcTextArea: __vue_component__$3,
3497
+ VcSvg: __vue_component__$2,
3498
+ VcToast: __vue_component__$1,
3499
+ VcCard: __vue_component__
3657
3500
  });
3658
3501
 
3659
3502
  // iife/cjs usage extends esm default export - so import it all
@@ -3666,4 +3509,4 @@ Object.entries(components).forEach(([componentName, component]) => {
3666
3509
  }
3667
3510
  });
3668
3511
 
3669
- export default install;
3512
+ export { install as default };