@vcita/design-system 1.17.4 → 1.17.5-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/@vcita/design-system.esm.js +1 -1
- package/dist/@vcita/design-system.min.js +8 -0
- package/dist/@vcita/design-system.ssr.js +1 -1
- package/dist/entry-3372d06f.js +27287 -0
- package/dist/{entry-d22b744e.js → entry-5051762e.js} +66 -37
- package/dist/{entry-48e8105b.js → entry-7f9febb4.js} +61 -34
- package/dist/entry-e039101e.js +26660 -0
- package/dist/{index-f60896e3.js → index-6d1686fc.js} +1 -1
- package/dist/index-75a2e530.js +1 -0
- package/dist/{index-23f11b6a.js → index-7e3fb905.js} +1 -1
- package/dist/index-aba3ab03.js +2 -0
- package/dist/{vue2-pdf-embed-f881828b.js → vue2-pdf-embed-1a1f491a.js} +3 -3
- package/dist/{vue2-pdf-embed-c20bb2c1.js → vue2-pdf-embed-a4b0df5a.js} +2 -2
- package/dist/vue2-pdf-embed-c7fc4e93.js +29 -0
- package/dist/vue2-pdf-embed-d3c46469.js +5 -0
- package/package.json +1 -1
- package/src/components/VcAccordion/VcAccordion.spec.js +61 -21
- package/src/components/VcAccordion/VcAccordion.stories.js +56 -3
- package/src/components/VcAccordion/VcAccordion.vue +47 -13
- package/src/components/VcInputGroup/VcInputGroup.stories.js +1 -1
- package/src/components/VcInputGroup/VcInputGroup.vue +51 -10
- package/src/components/VcPhoneField/VcPhoneField.vue +2 -1
- package/config/storybook/main.js +0 -4
- package/src/directives/overrideVuetifyLtr.js +0 -11
- package/src/stories/assets/accessibility.png +0 -0
- package/src/stories/assets/accessibility.svg +0 -5
- package/src/stories/assets/addon-library.png +0 -0
- package/src/stories/assets/assets.png +0 -0
- package/src/stories/assets/context.png +0 -0
- package/src/stories/assets/discord.svg +0 -15
- package/src/stories/assets/docs.png +0 -0
- package/src/stories/assets/figma-plugin.png +0 -0
- package/src/stories/assets/github.svg +0 -3
- package/src/stories/assets/share.png +0 -0
- package/src/stories/assets/styling.png +0 -0
- package/src/stories/assets/testing.png +0 -0
- package/src/stories/assets/theming.png +0 -0
- package/src/stories/assets/tutorials.svg +0 -12
- package/src/stories/assets/youtube.svg +0 -4
|
@@ -19291,6 +19291,7 @@ var __vue_component__$1c = /*#__PURE__*/normalizeComponent({
|
|
|
19291
19291
|
var __vue_component__$1d = __vue_component__$1c;var script$L = {
|
|
19292
19292
|
name: "VcAccordion",
|
|
19293
19293
|
components: {
|
|
19294
|
+
VcLayout: VcLayout,
|
|
19294
19295
|
VcIcon: VcIcon,
|
|
19295
19296
|
VcButton: VcButton,
|
|
19296
19297
|
VExpansionPanelHeader: lib.VExpansionPanelHeader,
|
|
@@ -19338,6 +19339,21 @@ var __vue_component__$1d = __vue_component__$1c;var script$L = {
|
|
|
19338
19339
|
disabled: {
|
|
19339
19340
|
type: Boolean,
|
|
19340
19341
|
default: false
|
|
19342
|
+
},
|
|
19343
|
+
headerSize: {
|
|
19344
|
+
type: String,
|
|
19345
|
+
default: 'md',
|
|
19346
|
+
validator: function validator(size) {
|
|
19347
|
+
return ['sm', 'md'].includes(size);
|
|
19348
|
+
}
|
|
19349
|
+
},
|
|
19350
|
+
|
|
19351
|
+
/**
|
|
19352
|
+
* If true, the size margins will be removed
|
|
19353
|
+
*/
|
|
19354
|
+
slim: {
|
|
19355
|
+
type: Boolean,
|
|
19356
|
+
default: false
|
|
19341
19357
|
}
|
|
19342
19358
|
},
|
|
19343
19359
|
computed: {
|
|
@@ -19360,7 +19376,7 @@ var __vue_render__$H = function __vue_render__() {
|
|
|
19360
19376
|
|
|
19361
19377
|
return _c('v-expansion-panels', {
|
|
19362
19378
|
staticClass: "VcAccordion",
|
|
19363
|
-
class: (_obj = {}, _obj["VcAccordion--gap-" + _vm.gap] = _vm.gap !== 'none', _obj),
|
|
19379
|
+
class: (_obj = {}, _obj["VcAccordion--gap-" + _vm.gap] = _vm.gap !== 'none', _obj["VcAccordion--size-" + _vm.headerSize] = true, _obj['VcAccordion--slim'] = _vm.slim, _obj),
|
|
19364
19380
|
attrs: {
|
|
19365
19381
|
"accordion": "",
|
|
19366
19382
|
"value": _vm.openPanels,
|
|
@@ -19392,8 +19408,16 @@ var __vue_render__$H = function __vue_render__() {
|
|
|
19392
19408
|
"disable-icon-rotate": ""
|
|
19393
19409
|
}
|
|
19394
19410
|
}, [_vm._t("header-" + i, function () {
|
|
19395
|
-
return [_c('
|
|
19396
|
-
|
|
19411
|
+
return [_c('VcLayout', {
|
|
19412
|
+
attrs: {
|
|
19413
|
+
"align-center": ""
|
|
19414
|
+
}
|
|
19415
|
+
}, [_c('div', {
|
|
19416
|
+
staticClass: "flex-grow-1"
|
|
19417
|
+
}, [_c('VcLayout', {
|
|
19418
|
+
attrs: {
|
|
19419
|
+
"align-center": ""
|
|
19420
|
+
}
|
|
19397
19421
|
}, [_c('VcIcon', {
|
|
19398
19422
|
staticClass: "expend-icon flex-grow-0 ms-1 me-2",
|
|
19399
19423
|
attrs: {
|
|
@@ -19401,27 +19425,31 @@ var __vue_render__$H = function __vue_render__() {
|
|
|
19401
19425
|
"color": _vm.iconColor
|
|
19402
19426
|
}
|
|
19403
19427
|
}, [_vm._v("$caret_down")]), _vm._v(" "), _c('span', {
|
|
19404
|
-
staticClass: "
|
|
19405
|
-
}, [_vm._v(_vm._s(item.name))]), _vm._v(" "),
|
|
19406
|
-
staticClass: "
|
|
19407
|
-
|
|
19408
|
-
|
|
19409
|
-
|
|
19410
|
-
|
|
19411
|
-
|
|
19412
|
-
|
|
19413
|
-
fn: function fn() {
|
|
19414
|
-
return [_c('VcIcon', {
|
|
19415
|
-
attrs: {
|
|
19416
|
-
"data-qa": _vm.dataQa + "_expendIcon_" + i,
|
|
19417
|
-
"size": "12",
|
|
19418
|
-
"color": "var(--gray-darken-2)"
|
|
19419
|
-
}
|
|
19420
|
-
}, [_vm._v("$plus")])];
|
|
19428
|
+
staticClass: "VcAccordion__panel__title"
|
|
19429
|
+
}, [_vm._v(_vm._s(item.name))])], 1), _vm._v(" "), _c('div', {
|
|
19430
|
+
staticClass: "ml-5 font-weight-medium expand-subtitle"
|
|
19431
|
+
}, [_vm._v(_vm._s(item.subtitle))])], 1), _vm._v(" "), _vm._t("header-" + i + "-append", function () {
|
|
19432
|
+
return [item.button ? _c('VcButton', {
|
|
19433
|
+
staticClass: "me-1",
|
|
19434
|
+
attrs: {
|
|
19435
|
+
"icon": "",
|
|
19436
|
+
"x-small": ""
|
|
19421
19437
|
},
|
|
19422
|
-
|
|
19423
|
-
|
|
19424
|
-
|
|
19438
|
+
scopedSlots: _vm._u([{
|
|
19439
|
+
key: "prepend",
|
|
19440
|
+
fn: function fn() {
|
|
19441
|
+
return [_c('VcIcon', {
|
|
19442
|
+
attrs: {
|
|
19443
|
+
"data-qa": _vm.dataQa + "_expendIcon_" + i,
|
|
19444
|
+
"size": "12",
|
|
19445
|
+
"color": "var(--gray-darken-2)"
|
|
19446
|
+
}
|
|
19447
|
+
}, [_vm._v("$plus")])];
|
|
19448
|
+
},
|
|
19449
|
+
proxy: true
|
|
19450
|
+
}], null, true)
|
|
19451
|
+
}) : _vm._e()];
|
|
19452
|
+
})], 2)];
|
|
19425
19453
|
})], 2), _vm._v(" "), _c('v-expansion-panel-content', {
|
|
19426
19454
|
staticClass: "VcAccordion__panel__content"
|
|
19427
19455
|
}, [_vm._t("content-" + i, null, {
|
|
@@ -19435,8 +19463,8 @@ var __vue_staticRenderFns__$H = [];
|
|
|
19435
19463
|
|
|
19436
19464
|
var __vue_inject_styles__$L = function __vue_inject_styles__(inject) {
|
|
19437
19465
|
if (!inject) return;
|
|
19438
|
-
inject("data-v-
|
|
19439
|
-
source: ".VcAccordion--gap-s[data-v-
|
|
19466
|
+
inject("data-v-1aab0a78_0", {
|
|
19467
|
+
source: ".VcAccordion--gap-s[data-v-1aab0a78]{gap:var(--size-value1)}.VcAccordion--gap-m[data-v-1aab0a78]{gap:var(--size-value2)}.VcAccordion--gap-l[data-v-1aab0a78]{gap:var(--size-value4)}.VcAccordion--size-sm .VcAccordion__panel__title[data-v-1aab0a78]{font-size:var(--font-size-x-small)}.VcAccordion--slim .VcAccordion__panel__header[data-v-1aab0a78]{padding:var(--size-value2) 0!important}.VcAccordion__panel.v-expansion-panel[data-v-1aab0a78]{background-color:transparent}.VcAccordion__panel__header[data-v-1aab0a78]{font-weight:var(--font-weight-large);padding:var(--size-value2) var(--size-value4)!important;min-height:unset}.VcAccordion__panel__header .v-icon.expend-icon[data-v-1aab0a78]{transform:rotate(-90deg)}#app[dir=rtl] .VcAccordion__panel__header .v-icon.expend-icon[data-v-1aab0a78]{transform:rotate(90deg)}.VcAccordion__panel__header .v-icon[data-v-1aab0a78]:not(.expend-icon){transition:unset}.VcAccordion__panel__header .expand-subtitle[data-v-1aab0a78]{font-size:var(--font-size-x-small)}.VcAccordion__panel__header.v-expansion-panel-header--active .v-icon[data-v-1aab0a78]{transform:unset}#app[dir=rtl] .VcAccordion__panel__header.v-expansion-panel-header--active .v-icon[data-v-1aab0a78]{transform:rotate(0)}.VcAccordion__panel__header[data-v-1aab0a78]:not(.disabled){color:var(--gray-darken-5)}.VcAccordion__panel__header.disabled[data-v-1aab0a78]{color:var(--gray-darken-2)}.VcAccordion__panel__header[data-v-1aab0a78]:hover{transition:color .3s}.VcAccordion__panel__header[data-v-1aab0a78]:focus{z-index:2;background-color:unset;transition:box-shadow .3s;box-shadow:var(--shadow-focused-frame);border-radius:var(--border-radius)}.VcAccordion__panel__header[data-v-1aab0a78]:focus:before{opacity:0}.VcAccordion__panel__content[data-v-1aab0a78] .v-expansion-panel-content__wrap{padding:var(--size-value0) var(--size-value4) var(--size-value2)}.VcAccordion__panel--flat[data-v-1aab0a78]{background-color:var(--gray-lighten-3)!important}",
|
|
19440
19468
|
map: undefined,
|
|
19441
19469
|
media: undefined
|
|
19442
19470
|
});
|
|
@@ -19444,10 +19472,10 @@ var __vue_inject_styles__$L = function __vue_inject_styles__(inject) {
|
|
|
19444
19472
|
/* scoped */
|
|
19445
19473
|
|
|
19446
19474
|
|
|
19447
|
-
var __vue_scope_id__$L = "data-v-
|
|
19475
|
+
var __vue_scope_id__$L = "data-v-1aab0a78";
|
|
19448
19476
|
/* module identifier */
|
|
19449
19477
|
|
|
19450
|
-
var __vue_module_identifier__$L = "data-v-
|
|
19478
|
+
var __vue_module_identifier__$L = "data-v-1aab0a78";
|
|
19451
19479
|
/* functional template */
|
|
19452
19480
|
|
|
19453
19481
|
var __vue_is_functional_template__$L = false;
|
|
@@ -25361,7 +25389,7 @@ var ErrorWithServer = __vue_component__$i;var script$a = {
|
|
|
25361
25389
|
ErrorWithServer: ErrorWithServer,
|
|
25362
25390
|
VcLoader: VcLoader,
|
|
25363
25391
|
VuePdfEmbed: function VuePdfEmbed() {
|
|
25364
|
-
return Promise.resolve().then(function(){return require('./vue2-pdf-embed-
|
|
25392
|
+
return Promise.resolve().then(function(){return require('./vue2-pdf-embed-a4b0df5a.js')}).then(function(n){return n.v});
|
|
25365
25393
|
},
|
|
25366
25394
|
DocPreview: DocPreview,
|
|
25367
25395
|
UnsupportedFile: UnsupportedFile,
|
|
@@ -26801,6 +26829,7 @@ var script$3 = {
|
|
|
26801
26829
|
}) || this.countries.find(function (country) {
|
|
26802
26830
|
return country.iso2 === "US";
|
|
26803
26831
|
});
|
|
26832
|
+
this.$emit('number-changed', this.fullNumber);
|
|
26804
26833
|
}
|
|
26805
26834
|
|
|
26806
26835
|
this.phoneNumber = this.initialPhoneNumber;
|
|
@@ -27000,8 +27029,8 @@ var __vue_staticRenderFns__$2 = [];
|
|
|
27000
27029
|
|
|
27001
27030
|
var __vue_inject_styles__$3 = function __vue_inject_styles__(inject) {
|
|
27002
27031
|
if (!inject) return;
|
|
27003
|
-
inject("data-v-
|
|
27004
|
-
source: ".vc-phone-field-select-menu[data-v-
|
|
27032
|
+
inject("data-v-59712f21_0", {
|
|
27033
|
+
source: ".vc-phone-field-select-menu[data-v-59712f21]{min-width:100%}.vc-phone-field[data-v-59712f21]{max-height:54px}.vc-phone-field .menu-active[data-v-59712f21]{transform:rotate(180deg)}.vc-phone-field.disabled[data-v-59712f21]{pointer-events:none;opacity:62%}.vc-phone-field__number-prefix[data-v-59712f21]{flex:1;margin:var(--size-value2);padding:0}.vc-phone-field__number-prefix__list-item[data-v-59712f21]{min-width:100%}.vc-phone-field__number-prefix__list-item_country-name[data-v-59712f21]{margin-inline-start:var(--size-value2)}.vc-phone-field__number-prefix__list-item_flag[data-v-59712f21]{margin-inline-end:var(--size-value2)}.vc-phone-field__number-text[data-v-59712f21]{max-height:52px;flex:10;margin-block-start:0}.vc-phone-field[data-v-59712f21]{border:var(--border-frame);border-radius:var(--border-radius)}.vc-phone-field[data-v-59712f21]:hover{border-color:var(--gray-darken-2)}.vc-phone-field[data-v-59712f21]:active,.vc-phone-field[data-v-59712f21]:focus,.vc-phone-field[data-v-59712f21]:focus-within{border-color:var(--v-secondary-base);box-shadow:var(--shadow-focused-frame)}.vc-phone-field[data-v-59712f21].required-error{border-color:var(--red);box-shadow:unset}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text{border-inline-start:var(--border-frame)}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text.required-error{border-color:var(--red)}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot{border:unset}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot:active,.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot:focus,.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot:focus-within{border:unset;box-shadow:unset}.vc-phone-field[data-v-59712f21] .v-input__slot{margin-block-end:0}.vc-phone-field[data-v-59712f21] .v-input__slot::before{border:unset}.vc-phone-field[data-v-59712f21] .v-input__slot::after{border:unset}.vc-phone-field .v-messages__wrapper[data-v-59712f21]{margin-block-start:var(--size-value1);margin-inline-start:var(--size-value1)}",
|
|
27005
27034
|
map: undefined,
|
|
27006
27035
|
media: undefined
|
|
27007
27036
|
});
|
|
@@ -27009,10 +27038,10 @@ var __vue_inject_styles__$3 = function __vue_inject_styles__(inject) {
|
|
|
27009
27038
|
/* scoped */
|
|
27010
27039
|
|
|
27011
27040
|
|
|
27012
|
-
var __vue_scope_id__$3 = "data-v-
|
|
27041
|
+
var __vue_scope_id__$3 = "data-v-59712f21";
|
|
27013
27042
|
/* module identifier */
|
|
27014
27043
|
|
|
27015
|
-
var __vue_module_identifier__$3 = "data-v-
|
|
27044
|
+
var __vue_module_identifier__$3 = "data-v-59712f21";
|
|
27016
27045
|
/* functional template */
|
|
27017
27046
|
|
|
27018
27047
|
var __vue_is_functional_template__$3 = false;
|
|
@@ -27200,8 +27229,8 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
27200
27229
|
|
|
27201
27230
|
var __vue_inject_styles__$2 = function __vue_inject_styles__(inject) {
|
|
27202
27231
|
if (!inject) return;
|
|
27203
|
-
inject("data-v-
|
|
27204
|
-
source: ".VcInputGroup[data-v-
|
|
27232
|
+
inject("data-v-57e669f0_0", {
|
|
27233
|
+
source: ".VcInputGroup[data-v-57e669f0] :first-child,.VcInputGroup[data-v-57e669f0] >div:first-child{border-start-start-radius:var(--border-radius);border-end-start-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] :last-child,.VcInputGroup[data-v-57e669f0] >div:last-child{border-start-end-radius:var(--border-radius);border-end-end-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0]{border-radius:var(--border-radius);height:var(--size-value13)}.VcInputGroup.unify[data-v-57e669f0]:hover{border-color:var(--gray-darken-3)}.VcInputGroup.unify[data-v-57e669f0]:active,.VcInputGroup.unify[data-v-57e669f0]:focus,.VcInputGroup.unify[data-v-57e669f0]:focus-within{box-shadow:0 0 0 3px var(--v-secondary-lighten1)}.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:active,.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:focus,.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:focus-within,.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:hover{box-shadow:none}.VcInputGroup.split-even[data-v-57e669f0] >*{flex-basis:50%}.VcInputGroup.split-start[data-v-57e669f0] >:first-child{flex-basis:68px;flex-grow:0}.VcInputGroup.split-end[data-v-57e669f0] >:last-child{flex-basis:100px;flex-grow:0}.VcInputGroup[data-v-57e669f0] >*{margin:0;flex-grow:1;flex-shrink:0}.VcInputGroup[data-v-57e669f0] .VcButton{border-radius:unset}.VcInputGroup[data-v-57e669f0] .VcButton:first-child{border-start-start-radius:var(--border-radius);border-end-start-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcButton:last-child{border-start-end-radius:var(--border-radius);border-end-end-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot{border-radius:unset}.VcInputGroup[data-v-57e669f0] .VcTextInput:first-child.v-text-field .v-input__slot{border-start-start-radius:var(--border-radius);border-end-start-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcTextInput:last-child.v-text-field .v-input__slot{border-start-end-radius:var(--border-radius);border-end-end-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):active,.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):focus,.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):focus-within,.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):hover{z-index:1}.errorDisplay[data-v-57e669f0]{color:var(--v-error-base)!important;caret-color:var(--v-error-base)!important;text-align:start;font-size:12px}",
|
|
27205
27234
|
map: undefined,
|
|
27206
27235
|
media: undefined
|
|
27207
27236
|
});
|
|
@@ -27209,10 +27238,10 @@ var __vue_inject_styles__$2 = function __vue_inject_styles__(inject) {
|
|
|
27209
27238
|
/* scoped */
|
|
27210
27239
|
|
|
27211
27240
|
|
|
27212
|
-
var __vue_scope_id__$2 = "data-v-
|
|
27241
|
+
var __vue_scope_id__$2 = "data-v-57e669f0";
|
|
27213
27242
|
/* module identifier */
|
|
27214
27243
|
|
|
27215
|
-
var __vue_module_identifier__$2 = "data-v-
|
|
27244
|
+
var __vue_module_identifier__$2 = "data-v-57e669f0";
|
|
27216
27245
|
/* functional template */
|
|
27217
27246
|
|
|
27218
27247
|
var __vue_is_functional_template__$2 = false;
|
|
@@ -27557,7 +27586,7 @@ var install = function installdesignSystem(Vue, options) {
|
|
|
27557
27586
|
loadFunc(componentName, component);
|
|
27558
27587
|
});
|
|
27559
27588
|
} else {
|
|
27560
|
-
Promise.resolve().then(function(){return require('./index-
|
|
27589
|
+
Promise.resolve().then(function(){return require('./index-6d1686fc.js')}).then(function (module) {
|
|
27561
27590
|
Object.entries(module).forEach( /*#__PURE__*/function () {
|
|
27562
27591
|
var _ref4 = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(_ref3) {
|
|
27563
27592
|
var _ref5, componentName, component;
|
|
@@ -19573,6 +19573,7 @@ var __vue_component__$1d = __vue_component__$1c;
|
|
|
19573
19573
|
var script$L = {
|
|
19574
19574
|
name: "VcAccordion",
|
|
19575
19575
|
components: {
|
|
19576
|
+
VcLayout,
|
|
19576
19577
|
VcIcon,
|
|
19577
19578
|
VcButton,
|
|
19578
19579
|
VExpansionPanelHeader: VExpansionPanelHeader,
|
|
@@ -19614,6 +19615,19 @@ var script$L = {
|
|
|
19614
19615
|
disabled: {
|
|
19615
19616
|
type: Boolean,
|
|
19616
19617
|
default: false
|
|
19618
|
+
},
|
|
19619
|
+
headerSize: {
|
|
19620
|
+
type: String,
|
|
19621
|
+
default: 'md',
|
|
19622
|
+
validator: size => ['sm', 'md'].includes(size)
|
|
19623
|
+
},
|
|
19624
|
+
|
|
19625
|
+
/**
|
|
19626
|
+
* If true, the size margins will be removed
|
|
19627
|
+
*/
|
|
19628
|
+
slim: {
|
|
19629
|
+
type: Boolean,
|
|
19630
|
+
default: false
|
|
19617
19631
|
}
|
|
19618
19632
|
},
|
|
19619
19633
|
computed: {
|
|
@@ -19639,7 +19653,7 @@ var __vue_render__$H = function () {
|
|
|
19639
19653
|
|
|
19640
19654
|
return _c('v-expansion-panels', {
|
|
19641
19655
|
staticClass: "VcAccordion",
|
|
19642
|
-
class: (_obj = {}, _obj["VcAccordion--gap-" + _vm.gap] = _vm.gap !== 'none', _obj),
|
|
19656
|
+
class: (_obj = {}, _obj["VcAccordion--gap-" + _vm.gap] = _vm.gap !== 'none', _obj["VcAccordion--size-" + _vm.headerSize] = true, _obj['VcAccordion--slim'] = _vm.slim, _obj),
|
|
19643
19657
|
attrs: {
|
|
19644
19658
|
"accordion": "",
|
|
19645
19659
|
"value": _vm.openPanels,
|
|
@@ -19671,8 +19685,16 @@ var __vue_render__$H = function () {
|
|
|
19671
19685
|
"disable-icon-rotate": ""
|
|
19672
19686
|
}
|
|
19673
19687
|
}, [_vm._t("header-" + i, function () {
|
|
19674
|
-
return [_c('
|
|
19675
|
-
|
|
19688
|
+
return [_c('VcLayout', {
|
|
19689
|
+
attrs: {
|
|
19690
|
+
"align-center": ""
|
|
19691
|
+
}
|
|
19692
|
+
}, [_c('div', {
|
|
19693
|
+
staticClass: "flex-grow-1"
|
|
19694
|
+
}, [_c('VcLayout', {
|
|
19695
|
+
attrs: {
|
|
19696
|
+
"align-center": ""
|
|
19697
|
+
}
|
|
19676
19698
|
}, [_c('VcIcon', {
|
|
19677
19699
|
staticClass: "expend-icon flex-grow-0 ms-1 me-2",
|
|
19678
19700
|
attrs: {
|
|
@@ -19680,27 +19702,31 @@ var __vue_render__$H = function () {
|
|
|
19680
19702
|
"color": _vm.iconColor
|
|
19681
19703
|
}
|
|
19682
19704
|
}, [_vm._v("$caret_down")]), _vm._v(" "), _c('span', {
|
|
19683
|
-
staticClass: "
|
|
19684
|
-
}, [_vm._v(_vm._s(item.name))]), _vm._v(" "),
|
|
19685
|
-
staticClass: "
|
|
19686
|
-
|
|
19687
|
-
|
|
19688
|
-
|
|
19689
|
-
|
|
19690
|
-
|
|
19691
|
-
|
|
19692
|
-
fn: function () {
|
|
19693
|
-
return [_c('VcIcon', {
|
|
19694
|
-
attrs: {
|
|
19695
|
-
"data-qa": _vm.dataQa + "_expendIcon_" + i,
|
|
19696
|
-
"size": "12",
|
|
19697
|
-
"color": "var(--gray-darken-2)"
|
|
19698
|
-
}
|
|
19699
|
-
}, [_vm._v("$plus")])];
|
|
19705
|
+
staticClass: "VcAccordion__panel__title"
|
|
19706
|
+
}, [_vm._v(_vm._s(item.name))])], 1), _vm._v(" "), _c('div', {
|
|
19707
|
+
staticClass: "ml-5 font-weight-medium expand-subtitle"
|
|
19708
|
+
}, [_vm._v(_vm._s(item.subtitle))])], 1), _vm._v(" "), _vm._t("header-" + i + "-append", function () {
|
|
19709
|
+
return [item.button ? _c('VcButton', {
|
|
19710
|
+
staticClass: "me-1",
|
|
19711
|
+
attrs: {
|
|
19712
|
+
"icon": "",
|
|
19713
|
+
"x-small": ""
|
|
19700
19714
|
},
|
|
19701
|
-
|
|
19702
|
-
|
|
19703
|
-
|
|
19715
|
+
scopedSlots: _vm._u([{
|
|
19716
|
+
key: "prepend",
|
|
19717
|
+
fn: function () {
|
|
19718
|
+
return [_c('VcIcon', {
|
|
19719
|
+
attrs: {
|
|
19720
|
+
"data-qa": _vm.dataQa + "_expendIcon_" + i,
|
|
19721
|
+
"size": "12",
|
|
19722
|
+
"color": "var(--gray-darken-2)"
|
|
19723
|
+
}
|
|
19724
|
+
}, [_vm._v("$plus")])];
|
|
19725
|
+
},
|
|
19726
|
+
proxy: true
|
|
19727
|
+
}], null, true)
|
|
19728
|
+
}) : _vm._e()];
|
|
19729
|
+
})], 2)];
|
|
19704
19730
|
})], 2), _vm._v(" "), _c('v-expansion-panel-content', {
|
|
19705
19731
|
staticClass: "VcAccordion__panel__content"
|
|
19706
19732
|
}, [_vm._t("content-" + i, null, {
|
|
@@ -19714,8 +19740,8 @@ var __vue_staticRenderFns__$H = [];
|
|
|
19714
19740
|
|
|
19715
19741
|
const __vue_inject_styles__$L = function (inject) {
|
|
19716
19742
|
if (!inject) return;
|
|
19717
|
-
inject("data-v-
|
|
19718
|
-
source: ".VcAccordion--gap-s[data-v-
|
|
19743
|
+
inject("data-v-1aab0a78_0", {
|
|
19744
|
+
source: ".VcAccordion--gap-s[data-v-1aab0a78]{gap:var(--size-value1)}.VcAccordion--gap-m[data-v-1aab0a78]{gap:var(--size-value2)}.VcAccordion--gap-l[data-v-1aab0a78]{gap:var(--size-value4)}.VcAccordion--size-sm .VcAccordion__panel__title[data-v-1aab0a78]{font-size:var(--font-size-x-small)}.VcAccordion--slim .VcAccordion__panel__header[data-v-1aab0a78]{padding:var(--size-value2) 0!important}.VcAccordion__panel.v-expansion-panel[data-v-1aab0a78]{background-color:transparent}.VcAccordion__panel__header[data-v-1aab0a78]{font-weight:var(--font-weight-large);padding:var(--size-value2) var(--size-value4)!important;min-height:unset}.VcAccordion__panel__header .v-icon.expend-icon[data-v-1aab0a78]{transform:rotate(-90deg)}#app[dir=rtl] .VcAccordion__panel__header .v-icon.expend-icon[data-v-1aab0a78]{transform:rotate(90deg)}.VcAccordion__panel__header .v-icon[data-v-1aab0a78]:not(.expend-icon){transition:unset}.VcAccordion__panel__header .expand-subtitle[data-v-1aab0a78]{font-size:var(--font-size-x-small)}.VcAccordion__panel__header.v-expansion-panel-header--active .v-icon[data-v-1aab0a78]{transform:unset}#app[dir=rtl] .VcAccordion__panel__header.v-expansion-panel-header--active .v-icon[data-v-1aab0a78]{transform:rotate(0)}.VcAccordion__panel__header[data-v-1aab0a78]:not(.disabled){color:var(--gray-darken-5)}.VcAccordion__panel__header.disabled[data-v-1aab0a78]{color:var(--gray-darken-2)}.VcAccordion__panel__header[data-v-1aab0a78]:hover{transition:color .3s}.VcAccordion__panel__header[data-v-1aab0a78]:focus{z-index:2;background-color:unset;transition:box-shadow .3s;box-shadow:var(--shadow-focused-frame);border-radius:var(--border-radius)}.VcAccordion__panel__header[data-v-1aab0a78]:focus:before{opacity:0}.VcAccordion__panel__content[data-v-1aab0a78] .v-expansion-panel-content__wrap{padding:var(--size-value0) var(--size-value4) var(--size-value2)}.VcAccordion__panel--flat[data-v-1aab0a78]{background-color:var(--gray-lighten-3)!important}",
|
|
19719
19745
|
map: undefined,
|
|
19720
19746
|
media: undefined
|
|
19721
19747
|
});
|
|
@@ -19723,7 +19749,7 @@ const __vue_inject_styles__$L = function (inject) {
|
|
|
19723
19749
|
/* scoped */
|
|
19724
19750
|
|
|
19725
19751
|
|
|
19726
|
-
const __vue_scope_id__$L = "data-v-
|
|
19752
|
+
const __vue_scope_id__$L = "data-v-1aab0a78";
|
|
19727
19753
|
/* module identifier */
|
|
19728
19754
|
|
|
19729
19755
|
const __vue_module_identifier__$L = undefined;
|
|
@@ -25803,7 +25829,7 @@ var script$a = {
|
|
|
25803
25829
|
components: {
|
|
25804
25830
|
ErrorWithServer,
|
|
25805
25831
|
VcLoader,
|
|
25806
|
-
VuePdfEmbed: () => import('./vue2-pdf-embed-
|
|
25832
|
+
VuePdfEmbed: () => import('./vue2-pdf-embed-1a1f491a.js').then(function (n) { return n.v; }),
|
|
25807
25833
|
DocPreview,
|
|
25808
25834
|
UnsupportedFile,
|
|
25809
25835
|
VcIcon
|
|
@@ -27300,6 +27326,7 @@ var script$3 = {
|
|
|
27300
27326
|
|
|
27301
27327
|
return country.iso2 === ((_this$initialCountryC = this.initialCountryCode) === null || _this$initialCountryC === void 0 ? void 0 : _this$initialCountryC.toUpperCase());
|
|
27302
27328
|
}) || this.countries.find(country => country.iso2 === "US");
|
|
27329
|
+
this.$emit('number-changed', this.fullNumber);
|
|
27303
27330
|
}
|
|
27304
27331
|
|
|
27305
27332
|
this.phoneNumber = this.initialPhoneNumber;
|
|
@@ -27507,8 +27534,8 @@ var __vue_staticRenderFns__$2 = [];
|
|
|
27507
27534
|
|
|
27508
27535
|
const __vue_inject_styles__$3 = function (inject) {
|
|
27509
27536
|
if (!inject) return;
|
|
27510
|
-
inject("data-v-
|
|
27511
|
-
source: ".vc-phone-field-select-menu[data-v-
|
|
27537
|
+
inject("data-v-59712f21_0", {
|
|
27538
|
+
source: ".vc-phone-field-select-menu[data-v-59712f21]{min-width:100%}.vc-phone-field[data-v-59712f21]{max-height:54px}.vc-phone-field .menu-active[data-v-59712f21]{transform:rotate(180deg)}.vc-phone-field.disabled[data-v-59712f21]{pointer-events:none;opacity:62%}.vc-phone-field__number-prefix[data-v-59712f21]{flex:1;margin:var(--size-value2);padding:0}.vc-phone-field__number-prefix__list-item[data-v-59712f21]{min-width:100%}.vc-phone-field__number-prefix__list-item_country-name[data-v-59712f21]{margin-inline-start:var(--size-value2)}.vc-phone-field__number-prefix__list-item_flag[data-v-59712f21]{margin-inline-end:var(--size-value2)}.vc-phone-field__number-text[data-v-59712f21]{max-height:52px;flex:10;margin-block-start:0}.vc-phone-field[data-v-59712f21]{border:var(--border-frame);border-radius:var(--border-radius)}.vc-phone-field[data-v-59712f21]:hover{border-color:var(--gray-darken-2)}.vc-phone-field[data-v-59712f21]:active,.vc-phone-field[data-v-59712f21]:focus,.vc-phone-field[data-v-59712f21]:focus-within{border-color:var(--v-secondary-base);box-shadow:var(--shadow-focused-frame)}.vc-phone-field[data-v-59712f21].required-error{border-color:var(--red);box-shadow:unset}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text{border-inline-start:var(--border-frame)}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text.required-error{border-color:var(--red)}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot{border:unset}.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot:active,.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot:focus,.vc-phone-field[data-v-59712f21] .vc-phone-field__number-text .v-input__slot:focus-within{border:unset;box-shadow:unset}.vc-phone-field[data-v-59712f21] .v-input__slot{margin-block-end:0}.vc-phone-field[data-v-59712f21] .v-input__slot::before{border:unset}.vc-phone-field[data-v-59712f21] .v-input__slot::after{border:unset}.vc-phone-field .v-messages__wrapper[data-v-59712f21]{margin-block-start:var(--size-value1);margin-inline-start:var(--size-value1)}",
|
|
27512
27539
|
map: undefined,
|
|
27513
27540
|
media: undefined
|
|
27514
27541
|
});
|
|
@@ -27516,7 +27543,7 @@ const __vue_inject_styles__$3 = function (inject) {
|
|
|
27516
27543
|
/* scoped */
|
|
27517
27544
|
|
|
27518
27545
|
|
|
27519
|
-
const __vue_scope_id__$3 = "data-v-
|
|
27546
|
+
const __vue_scope_id__$3 = "data-v-59712f21";
|
|
27520
27547
|
/* module identifier */
|
|
27521
27548
|
|
|
27522
27549
|
const __vue_module_identifier__$3 = undefined;
|
|
@@ -27708,8 +27735,8 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
27708
27735
|
|
|
27709
27736
|
const __vue_inject_styles__$2 = function (inject) {
|
|
27710
27737
|
if (!inject) return;
|
|
27711
|
-
inject("data-v-
|
|
27712
|
-
source: ".VcInputGroup[data-v-
|
|
27738
|
+
inject("data-v-57e669f0_0", {
|
|
27739
|
+
source: ".VcInputGroup[data-v-57e669f0] :first-child,.VcInputGroup[data-v-57e669f0] >div:first-child{border-start-start-radius:var(--border-radius);border-end-start-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] :last-child,.VcInputGroup[data-v-57e669f0] >div:last-child{border-start-end-radius:var(--border-radius);border-end-end-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0]{border-radius:var(--border-radius);height:var(--size-value13)}.VcInputGroup.unify[data-v-57e669f0]:hover{border-color:var(--gray-darken-3)}.VcInputGroup.unify[data-v-57e669f0]:active,.VcInputGroup.unify[data-v-57e669f0]:focus,.VcInputGroup.unify[data-v-57e669f0]:focus-within{box-shadow:0 0 0 3px var(--v-secondary-lighten1)}.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:active,.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:focus,.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:focus-within,.VcInputGroup.unify[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot:hover{box-shadow:none}.VcInputGroup.split-even[data-v-57e669f0] >*{flex-basis:50%}.VcInputGroup.split-start[data-v-57e669f0] >:first-child{flex-basis:68px;flex-grow:0}.VcInputGroup.split-end[data-v-57e669f0] >:last-child{flex-basis:100px;flex-grow:0}.VcInputGroup[data-v-57e669f0] >*{margin:0;flex-grow:1;flex-shrink:0}.VcInputGroup[data-v-57e669f0] .VcButton{border-radius:unset}.VcInputGroup[data-v-57e669f0] .VcButton:first-child{border-start-start-radius:var(--border-radius);border-end-start-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcButton:last-child{border-start-end-radius:var(--border-radius);border-end-end-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcTextInput.v-text-field .v-input__slot{border-radius:unset}.VcInputGroup[data-v-57e669f0] .VcTextInput:first-child.v-text-field .v-input__slot{border-start-start-radius:var(--border-radius);border-end-start-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcTextInput:last-child.v-text-field .v-input__slot{border-start-end-radius:var(--border-radius);border-end-end-radius:var(--border-radius)}.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):active,.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):focus,.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):focus-within,.VcInputGroup[data-v-57e669f0] .VcTextInput:has(.v-input__slot):hover{z-index:1}.errorDisplay[data-v-57e669f0]{color:var(--v-error-base)!important;caret-color:var(--v-error-base)!important;text-align:start;font-size:12px}",
|
|
27713
27740
|
map: undefined,
|
|
27714
27741
|
media: undefined
|
|
27715
27742
|
});
|
|
@@ -27717,7 +27744,7 @@ const __vue_inject_styles__$2 = function (inject) {
|
|
|
27717
27744
|
/* scoped */
|
|
27718
27745
|
|
|
27719
27746
|
|
|
27720
|
-
const __vue_scope_id__$2 = "data-v-
|
|
27747
|
+
const __vue_scope_id__$2 = "data-v-57e669f0";
|
|
27721
27748
|
/* module identifier */
|
|
27722
27749
|
|
|
27723
27750
|
const __vue_module_identifier__$2 = undefined;
|
|
@@ -28098,7 +28125,7 @@ const install = function installdesignSystem(Vue, options) {
|
|
|
28098
28125
|
loadFunc(componentName, component);
|
|
28099
28126
|
});
|
|
28100
28127
|
} else {
|
|
28101
|
-
import('./index-
|
|
28128
|
+
import('./index-7e3fb905.js').then(module => {
|
|
28102
28129
|
Object.entries(module).forEach(async ([componentName, component]) => {
|
|
28103
28130
|
if (typeof component === 'function') {
|
|
28104
28131
|
// eslint-disable-next-line no-undef
|