@vcita/design-system 0.6.2-beta.0 → 0.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.MD CHANGED
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ### Unreleased changes
8
8
 
9
+ ### 0.6.4 (2022-02-28)
10
+ - VcButton - add flavor prop
11
+ - VcBanner - Change component design
12
+
13
+ ### 0.6.3 (2022-02-23)
14
+ - VcListbox - performance improve
15
+
9
16
  ### 0.6.2 (2022-02-22)
10
17
  - VcListbox - minor fix
11
18
 
@@ -316,9 +316,17 @@ var script$N = {
316
316
  },
317
317
  color: {
318
318
  type: String,
319
- default: 'secondary',
319
+ comment: "deprecated, you shuold use flavor",
320
+ default: "secondary",
320
321
  validator: type => {
321
- return ['secondary', 'white'].indexOf(type) > -1;
322
+ return ["secondary", "white"].indexOf(type) > -1;
323
+ }
324
+ },
325
+ flavor: {
326
+ type: String,
327
+ default: "primary",
328
+ validator: type => {
329
+ return ["secondary", "primary"].indexOf(type) > -1;
322
330
  }
323
331
  },
324
332
  icon: {
@@ -358,7 +366,7 @@ var script$N = {
358
366
  },
359
367
  href: {
360
368
  type: String,
361
- comment: 'This param will change the <button> to <a> with link'
369
+ comment: "This param will change the <button> to <a> with link"
362
370
  },
363
371
  prependDefaultIcon: {
364
372
  type: Boolean,
@@ -366,8 +374,20 @@ var script$N = {
366
374
  },
367
375
  dataQa: {
368
376
  type: String,
369
- default: 'vc-btn'
377
+ default: "vc-btn"
370
378
  }
379
+ },
380
+ computed: {
381
+ buttonColor() {
382
+ switch (this.flavor) {
383
+ case "secondary":
384
+ return `var(${this.outlined ? '--gray-darken-5' : '--neutral-lighten-2'})`;
385
+
386
+ default:
387
+ return "secondary";
388
+ }
389
+ }
390
+
371
391
  }
372
392
  };
373
393
 
@@ -383,9 +403,9 @@ var __vue_render__$L = function () {
383
403
  var _c = _vm._self._c || _h;
384
404
 
385
405
  return _c('v-btn', {
386
- staticClass: "VcButton",
406
+ class: "VcButton " + this.flavor + "__text",
387
407
  attrs: {
388
- "color": _vm.color,
408
+ "color": _vm.flavor ? _vm.buttonColor : _vm.color,
389
409
  "icon": _vm.icon,
390
410
  "fab": _vm.fab,
391
411
  "outlined": _vm.outlined,
@@ -417,7 +437,7 @@ var __vue_render__$L = function () {
417
437
  "small": ""
418
438
  }
419
439
  }, [_vm._v("$plus")]) : _vm._e()];
420
- }), _vm._v("\n " + _vm._s(_vm.label || _vm.$slots.default && _vm.$slots.default[0].text || '') + "\n "), _vm._t("append")], 2);
440
+ }), _vm._v("\n " + _vm._s(_vm.label || _vm.$slots.default && _vm.$slots.default[0].text || "") + "\n "), _vm._t("append")], 2);
421
441
  };
422
442
 
423
443
  var __vue_staticRenderFns__$L = [];
@@ -425,8 +445,8 @@ var __vue_staticRenderFns__$L = [];
425
445
 
426
446
  const __vue_inject_styles__$N = function (inject) {
427
447
  if (!inject) return;
428
- inject("data-v-19570f74_0", {
429
- source: ".VcButton[data-v-19570f74]{letter-spacing:var(--letter-spacing)}.VcButton[data-v-19570f74]:disabled{background-color:var(--gray-lighten-2);color:var(--gray-darken-2)}.VcButton .prependDefaultIcon[data-v-19570f74]{margin-inline-end:var(--size-value3)}.VcButton .prependDefaultIcon[data-v-19570f74] svg{fill:currentColor}",
448
+ inject("data-v-7be2cd57_0", {
449
+ source: ".VcButton[data-v-7be2cd57]{letter-spacing:var(--letter-spacing)}.VcButton[data-v-7be2cd57]:disabled{background-color:var(--gray-lighten-2);color:var(--gray-darken-2)}.VcButton .prependDefaultIcon[data-v-7be2cd57]{margin-inline-end:var(--size-value3)}.VcButton .prependDefaultIcon[data-v-7be2cd57] svg{fill:currentColor}.VcButton.secondary__text[data-v-7be2cd57]{color:var(--gray-darken-5)!important;border-color:var(--neutral-lighten-1)}",
430
450
  map: undefined,
431
451
  media: undefined
432
452
  });
@@ -434,7 +454,7 @@ const __vue_inject_styles__$N = function (inject) {
434
454
  /* scoped */
435
455
 
436
456
 
437
- const __vue_scope_id__$N = "data-v-19570f74";
457
+ const __vue_scope_id__$N = "data-v-7be2cd57";
438
458
  /* module identifier */
439
459
 
440
460
  const __vue_module_identifier__$N = undefined;
@@ -3568,18 +3588,6 @@ var script$r = {
3568
3588
  default: 'VcListbox'
3569
3589
  }
3570
3590
  },
3571
- // data: () => ({
3572
- // confirmedArray: []
3573
- // }),
3574
- // watch: {
3575
- // items: {
3576
- // immediate: true,
3577
- // deep: true,
3578
- // handler(values) {
3579
- // this.confirmedArray = values.filter((item) => item.checked)
3580
- // }
3581
- // }
3582
- // },
3583
3591
  computed: {
3584
3592
  getAddAnotherLabel() {
3585
3593
  return this.addAnotherLabel || this.$dst('ds.listbox.add');
@@ -3684,8 +3692,8 @@ var __vue_staticRenderFns__$r = [];
3684
3692
 
3685
3693
  const __vue_inject_styles__$r = function (inject) {
3686
3694
  if (!inject) return;
3687
- inject("data-v-45c85985_0", {
3688
- source: "[data-v-45c85985]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--letter-spacing:0.003em;--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;--popover-width:360px;--popover-max-height:464px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-list-title[data-v-45c85985]{font-weight:var(--font-weight-medium2);font-size:var(--font-size-small2);line-height:var(--size-value5);margin-block-end:var(--size-value3)}.VcListbox[data-v-45c85985]{padding-block:var(--size-value1);margin-block:var(--size-value1);border:1px solid var(--gray-lighten-1);box-sizing:border-box;border-radius:var(--border-radius);box-shadow:none!important}.VcListbox .vc-overflow[data-v-45c85985]{overflow:auto;max-height:160px}.VcListbox .vc-overflow .vc-list-item[data-v-45c85985]{padding:var(--size-value0);min-height:unset}.VcListbox .vc-overflow .vc-list-item[data-v-45c85985]:before{opacity:0}.VcListbox .divider[data-v-45c85985]{border-color:var(--gray-lighten-1)}.VcListbox .last-item[data-v-45c85985]{cursor:pointer;min-height:var(--size-value10)}.VcListbox .last-item[data-v-45c85985]:hover{background-color:var(--gray-lighten-3)}.VcListbox .last-item .add-another-label[data-v-45c85985]{font-weight:var(--font-weight-medium2);font-size:var(--font-size-x-small);line-height:var(--size-value5);color:var(--gray-darken-5)}.VcListbox .last-item .add-another-icon[data-v-45c85985]{margin-inline-end:var(--size-value3);cursor:pointer}.VcListbox .last-item .add-another-icon[data-v-45c85985] .v-icon__component{height:unset;width:unset}.VcListbox .last-item .add-another-icon[data-v-45c85985] .v-icon__component svg{width:var(--size-value3)}",
3695
+ inject("data-v-07369312_0", {
3696
+ source: "[data-v-07369312]:root{--primary-font-family:Montserrat;--font-size-xxx-small:9px;--font-size-xx-small:12px;--font-size-x-small:13px;--font-size-small:14px;--font-size-small2:15px;--font-size-small3:17px;--font-size-medium:18px;--font-size-medium1:22px;--font-size-medium2:24px;--font-size-large:28px;--font-weight-medium:400;--font-weight-medium2:500;--font-weight-large:600;--font-weight-large2:700;--font-weight-xl:800;--letter-spacing:0.003em;--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;--popover-width:360px;--popover-max-height:464px;--modal-desktop-offset:-112px;--modal-bg-color:#ffffff;--modal-box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--modal-border-radius:10px;--modal-width-small:384px;--modal-width-medium:576px;--modal-width-large:816px;--avatar-x-sm:24px;--avatar-sm:32px;--avatar-md:40px;--avatar-lg:48px;--gray-darken-5:#212121;--gray-darken-4:#616161;--gray-darken-3:#757575;--gray-darken-2:#999999;--gray-darken-1:#b3b3b3;--gray:#cccccc;--gray-lighten-1:#e0e0e0;--gray-lighten-2:#ededed;--gray-lighten-3:#f7f7f7;--gray-lighten-4:#fafafa;--neutral:#586E8C;--neutral-lighten-1:#D6DBE6;--neutral-lighten-2:#EAEDF2;--neutral-lighten-3:#F8F9FB;--red:#F2514A;--red-lighten-1:#F79792;--red-lighten-2:#FBCBC9;--red-lighten-3:#FDE8E7;--yellow:#FFC511;--yellow-lighten-1:#FFDC70;--yellow-lighten-2:#FFEDB8;--yellow-lighten-3:#FFF7E0;--green:#54D28C;--green-lighten-1:#98E4BA;--green-lighten-2:#CFF8E1;--green-lighten-3:#EAFCF2;--blue:#478FFF;--blue-lighten-1:#91BCFF;--blue-lighten-2:#C8DDFF;--blue-lighten-3:#E7F0FF;--orange:#FF8F00;--orange-lighten-1:#FCB965;--orange-lighten-2:#FAD9B0;--orange-lighten-3:#F9EBDA;--shadow-1:0px 1px 4px rgba(0, 0, 0, 0.11);--shadow-2:0px 2px 5px rgba(0, 0, 0, 0.1),0px 2px 2px rgba(0, 0, 0, 0.06),0px 3px 1px -2px rgba(0, 0, 0, 0.06);--shadow-3:0px 3px 2px rgba(0, 0, 0, 0.101961);--shadow-4:0px 1px 1px rgba(0, 0, 0, 0.06),0px 3px 8px rgba(0, 0, 0, 0.15);--shadow-5:0px 4px 18px rgba(0, 0, 0, 0.1);--shadow-6:0px 1px 10px rgba(0, 0, 0, 0.12),0px 4px 7px rgba(0, 0, 0, 0.14),0px 2px 4px -1px rgba(0, 0, 0, 0.2);--shadow-7:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px rgba(0, 0, 0, 0.14),0px 1px 18px rgba(0, 0, 0, 0.12);--shadow-8:0px 5px 7px 3px rgba(0, 0, 0, 0.26);--shadow-9:0px 7px 8px -4px rgba(0, 0, 0, 0.2),2px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px rgba(0, 0, 0, 0.12);--shadow-10:0px 4px 8px #cccccc}.vc-list-title[data-v-07369312]{font-weight:var(--font-weight-medium2);font-size:var(--font-size-small2);line-height:var(--size-value5);margin-block-end:var(--size-value3)}.VcListbox[data-v-07369312]{padding-block:var(--size-value1);margin-block:var(--size-value1);border:1px solid var(--gray-lighten-1);box-sizing:border-box;border-radius:var(--border-radius);box-shadow:none!important}.VcListbox .vc-overflow[data-v-07369312]{overflow:auto;max-height:160px}.VcListbox .vc-overflow .vc-list-item[data-v-07369312]{padding:var(--size-value0);min-height:unset}.VcListbox .vc-overflow .vc-list-item[data-v-07369312]:before{opacity:0}.VcListbox .divider[data-v-07369312]{border-color:var(--gray-lighten-1)}.VcListbox .last-item[data-v-07369312]{cursor:pointer;min-height:var(--size-value10)}.VcListbox .last-item[data-v-07369312]:hover{background-color:var(--gray-lighten-3)}.VcListbox .last-item .add-another-label[data-v-07369312]{font-weight:var(--font-weight-medium2);font-size:var(--font-size-x-small);line-height:var(--size-value5);color:var(--gray-darken-5)}.VcListbox .last-item .add-another-icon[data-v-07369312]{margin-inline-end:var(--size-value3);cursor:pointer}.VcListbox .last-item .add-another-icon[data-v-07369312] .v-icon__component{height:unset;width:unset}.VcListbox .last-item .add-another-icon[data-v-07369312] .v-icon__component svg{width:var(--size-value3)}",
3689
3697
  map: undefined,
3690
3698
  media: undefined
3691
3699
  });
@@ -3693,7 +3701,7 @@ const __vue_inject_styles__$r = function (inject) {
3693
3701
  /* scoped */
3694
3702
 
3695
3703
 
3696
- const __vue_scope_id__$r = "data-v-45c85985";
3704
+ const __vue_scope_id__$r = "data-v-07369312";
3697
3705
  /* module identifier */
3698
3706
 
3699
3707
  const __vue_module_identifier__$r = undefined;
@@ -6214,7 +6222,10 @@ var script$5 = {
6214
6222
  name: "VcBanner",
6215
6223
  components: {
6216
6224
  VcImage: __vue_component__$F,
6217
- VcButton: __vue_component__$N
6225
+ VcButton: __vue_component__$N,
6226
+ VcIcon: __vue_component__$O,
6227
+ VcLink: __vue_component__$a,
6228
+ VcSvg: __vue_component__$7
6218
6229
  },
6219
6230
  props: {
6220
6231
  dataQa: {
@@ -6227,7 +6238,7 @@ var script$5 = {
6227
6238
  },
6228
6239
  backgroundColor: {
6229
6240
  type: String,
6230
- default: "#FFFFFF"
6241
+ default: "#F8F9FB"
6231
6242
  },
6232
6243
  title: {
6233
6244
  type: String
@@ -6235,8 +6246,23 @@ var script$5 = {
6235
6246
  subtitle: {
6236
6247
  type: String
6237
6248
  },
6249
+ note: {
6250
+ type: String
6251
+ },
6252
+ linkUrl: {
6253
+ type: String,
6254
+ default: ''
6255
+ },
6256
+ linkLabel: {
6257
+ type: String,
6258
+ default: ''
6259
+ },
6238
6260
  buttonLabel: {
6239
6261
  type: String
6262
+ },
6263
+ closeButton: {
6264
+ type: Boolean,
6265
+ default: false
6240
6266
  }
6241
6267
  }
6242
6268
  };
@@ -6253,36 +6279,80 @@ var __vue_render__$5 = function () {
6253
6279
  var _c = _vm._self._c || _h;
6254
6280
 
6255
6281
  return _c('div', {
6256
- staticClass: "VcBanner pa-6 py-md-3 px-md-10 d-flex flex-column flex-md-row align-start align-md-center",
6282
+ ref: "banner",
6283
+ staticClass: "VcBanner d-flex justify-space-between flex-column flex-sm-row",
6257
6284
  style: {
6258
6285
  backgroundColor: _vm.backgroundColor
6259
6286
  },
6260
6287
  attrs: {
6261
6288
  "data-qa": _vm.dataQa
6262
6289
  }
6263
- }, [_vm.image ? _c('VcImage', {
6264
- staticClass: "VcBannerImage flex-grow-0 d-none d-md-block",
6265
- attrs: {
6266
- "image": _vm.image
6267
- }
6268
- }) : _vm._e(), _vm._v(" "), _c('div', {
6269
- staticClass: "text-container px-md-8 flex-grow-1"
6270
6290
  }, [_c('div', {
6271
- staticClass: "banner-title pb-2 pb-md-0"
6272
- }, [_vm._v(_vm._s(_vm.title))]), _vm._v(" "), _vm.subtitle || _vm.$slots.subtitle ? _c('div', {
6273
- staticClass: "banner-subtitle pb-4 pb-md-0"
6274
- }, [_vm._t("subtitle", function () {
6275
- return [_vm._v("\n " + _vm._s(_vm.subtitle) + "\n ")];
6276
- })], 2) : _vm._e()]), _vm._v(" "), _vm.buttonLabel ? _c('VcButton', {
6291
+ staticClass: "text-container px-6 pt-10 pt-sm-6 "
6292
+ }, [_c('div', {
6293
+ staticClass: "banner-title pb-2 pb-sm-4 pb-md-2 "
6294
+ }, [_vm._v(_vm._s(_vm.title))]), _vm._v(" "), _vm.subtitle ? _c('div', {
6295
+ staticClass: "banner-subtitle"
6296
+ }, [_vm._v(_vm._s(_vm.subtitle))]) : _vm._e(), _vm._v(" "), _vm.buttonLabel || _vm.linkLabel ? _c('div', {
6297
+ staticClass: "cta-container py-6 py-sm-7 d-flex flex justify-start flex-wrap"
6298
+ }, [_vm.buttonLabel ? _c('VcButton', {
6299
+ staticClass: "primary-cta",
6277
6300
  attrs: {
6278
- "large": _vm.$vuetify.breakpoint.smAndUp
6301
+ "pill": "",
6302
+ "large": ""
6279
6303
  },
6280
6304
  on: {
6281
6305
  "click": function ($event) {
6282
6306
  return _vm.$emit('onAction');
6283
6307
  }
6284
6308
  }
6285
- }, [_vm._v("\n " + _vm._s(_vm.buttonLabel) + "\n ")]) : _vm._e()], 1);
6309
+ }, [_vm._v("\n " + _vm._s(_vm.buttonLabel) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.linkLabel && _vm.linkUrl ? _c('VcLink', {
6310
+ staticClass: "secondary-cta pt-6 pt-sm-0",
6311
+ attrs: {
6312
+ "url": _vm.linkUrl,
6313
+ "label": _vm.linkLabel
6314
+ }
6315
+ }) : _vm._e()], 1) : _vm._e(), _vm._v(" "), _vm.note || _vm.$slots.note ? _c('div', {
6316
+ staticClass: "banner-note py-4 pt-sm-9"
6317
+ }, [_vm._t("note", function () {
6318
+ return [_vm._v("\n " + _vm._s(_vm.note) + "\n ")];
6319
+ })], 2) : _vm._e()]), _vm._v(" "), _vm.image ? _c('div', {
6320
+ staticClass: "images-container d-flex align-self-end"
6321
+ }, [_c('VcSvg', {
6322
+ staticClass: "background-stain",
6323
+ attrs: {
6324
+ "svg": _vm.$svgImages.background_stain
6325
+ }
6326
+ }), _vm._v(" "), _c('VcImage', {
6327
+ staticClass: "banner-image pb-0",
6328
+ attrs: {
6329
+ "image": _vm.image
6330
+ }
6331
+ })], 1) : _vm._e(), _vm._v(" "), _vm.closeButton ? _c('VcButton', {
6332
+ staticClass: "close-button mt-6 me-1",
6333
+ attrs: {
6334
+ "icon": "",
6335
+ "data-qa": _vm.dataQa + "-close-btn",
6336
+ "fab": "",
6337
+ "plain": ""
6338
+ },
6339
+ on: {
6340
+ "click": function ($event) {
6341
+ return _vm.$emit('closeBanner');
6342
+ }
6343
+ },
6344
+ scopedSlots: _vm._u([{
6345
+ key: "prepend",
6346
+ fn: function () {
6347
+ return [_c('VcIcon', {
6348
+ attrs: {
6349
+ "x-small": ""
6350
+ }
6351
+ }, [_vm._v("$close_button")])];
6352
+ },
6353
+ proxy: true
6354
+ }], null, false, 796317393)
6355
+ }) : _vm._e()], 1);
6286
6356
  };
6287
6357
 
6288
6358
  var __vue_staticRenderFns__$5 = [];
@@ -6290,8 +6360,8 @@ var __vue_staticRenderFns__$5 = [];
6290
6360
 
6291
6361
  const __vue_inject_styles__$5 = function (inject) {
6292
6362
  if (!inject) return;
6293
- inject("data-v-d461d238_0", {
6294
- source: ".VcBanner[data-v-d461d238]{min-height:128px;box-sizing:border-box;box-shadow:var(--shadow-10)}@media screen and (min-width:960px){.VcBanner[data-v-d461d238]{box-shadow:unset;border-radius:var(--size-value3);border:1px solid var(--neutral-lighten-2)}}.VcBanner .VcBannerImage[data-v-d461d238]{height:105px}.VcBanner .text-container[data-v-d461d238]{color:var(--gray-darken-5)}.VcBanner .text-container .banner-title[data-v-d461d238]{font-weight:var(--font-weight-large2);font-size:var(--font-size-small3);line-height:22px}@media screen and (min-width:960px){.VcBanner .text-container .banner-title[data-v-d461d238]{font-size:var(--font-size-medium2);line-height:var(--size-value8)}}.VcBanner .text-container .banner-subtitle[data-v-d461d238]{font-size:var(--font-size-small2);line-height:var(--size-value5);font-weight:var(--font-weight-medium)}",
6363
+ inject("data-v-e21d9cb6_0", {
6364
+ source: ".VcBanner[data-v-e21d9cb6]{min-height:188px;max-width:1240px;box-sizing:border-box;overflow:hidden;border-radius:var(--size-value2);border:1px solid var(--neutral-lighten-2);position:relative}.VcBanner .images-container[data-v-e21d9cb6]{position:relative;height:100%}.VcBanner .images-container .background-stain[data-v-e21d9cb6]{position:absolute;opacity:15%;margin:0 auto;overflow:hidden;top:-80px;height:calc(100% + 110px);transform:scale(.7);left:-335px}#app[dir=rtl] .VcBanner .images-container .background-stain[data-v-e21d9cb6]{left:auto;right:-335px}@media screen and (min-width:600px){.VcBanner .images-container .background-stain[data-v-e21d9cb6]{transform:scale(1);top:-206px;height:calc(100% + 206px);left:-64px}#app[dir=rtl] .VcBanner .images-container .background-stain[data-v-e21d9cb6]{left:auto;right:-64px}}@media screen and (min-width:960px){.VcBanner .images-container .background-stain[data-v-e21d9cb6]{top:-176px;height:calc(100% + 176px);left:-50px}#app[dir=rtl] .VcBanner .images-container .background-stain[data-v-e21d9cb6]{left:auto;right:-50px}}#app[dir=rtl] .VcBanner .images-container .background-stain[data-v-e21d9cb6]{transform:scale(-.7,.7)}@media screen and (min-width:600px){#app[dir=rtl] .VcBanner .images-container .background-stain[data-v-e21d9cb6]{transform:scaleX(-1)}}.VcBanner .images-container .background-stain #background_stain[data-v-e21d9cb6]{fill:var(--v-secondary-base)}.VcBanner .images-container .banner-image[data-v-e21d9cb6]{margin:auto 0 0;position:relative;width:200px;height:95px}@media screen and (min-width:600px){.VcBanner .images-container .banner-image[data-v-e21d9cb6]{width:300px;height:142.5px}}@media screen and (min-width:960px){.VcBanner .images-container .banner-image[data-v-e21d9cb6]{width:400px;height:190px}}.VcBanner .text-container[data-v-e21d9cb6]{flex:0 0 60%;color:var(--gray-darken-5);z-index:1}.VcBanner .text-container .banner-title[data-v-e21d9cb6]{font-weight:var(--font-weight-large2);font-size:var(--font-size-medium2);line-height:var(--size-value8)}@media screen and (min-width:960px){.VcBanner .text-container .banner-title[data-v-e21d9cb6]{flex:0 0 100%}}.VcBanner .text-container .banner-subtitle[data-v-e21d9cb6]{font-size:var(--font-size-small2);line-height:var(--size-value5);font-weight:var(--font-weight-medium2)}.VcBanner .text-container .banner-note[data-v-e21d9cb6]{font-size:var(--font-size-small2);font-weight:var(--font-weight-medium)}.VcBanner .cta-container .primary-cta[data-v-e21d9cb6]{line-height:var(--size-value12);font-weight:var(--font-weight-large2);margin-inline-end:var(--size-value6)}.VcBanner .cta-container .secondary-cta[data-v-e21d9cb6]{font-size:var(--font-size-small2);font-weight:var(--font-weight-large);flex:0 0 100%}@media screen and (min-width:600px){.VcBanner .cta-container .secondary-cta[data-v-e21d9cb6]{flex:none}}.VcBanner .close-button[data-v-e21d9cb6]{position:absolute;width:var(--size-value3);height:var(--size-value3);right:var(--size-value4)}#app[dir=rtl] .VcBanner .close-button[data-v-e21d9cb6]{right:auto;left:var(--size-value4)}.VcBanner .close-button .v-btn__content[data-v-e21d9cb6]{opacity:unset}.VcBanner .close-button .v-icon[data-v-e21d9cb6]{margin-right:var(--size-value0)}.VcBanner .close-button .v-icon svg[data-v-e21d9cb6]{fill:var(--gray-darken-2)}",
6295
6365
  map: undefined,
6296
6366
  media: undefined
6297
6367
  });
@@ -6299,7 +6369,7 @@ const __vue_inject_styles__$5 = function (inject) {
6299
6369
  /* scoped */
6300
6370
 
6301
6371
 
6302
- const __vue_scope_id__$5 = "data-v-d461d238";
6372
+ const __vue_scope_id__$5 = "data-v-e21d9cb6";
6303
6373
  /* module identifier */
6304
6374
 
6305
6375
  const __vue_module_identifier__$5 = undefined;