@vonage/vivid-vue 4.0.0 → 4.2.0

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/index.js CHANGED
@@ -288,13 +288,13 @@ const VAccordionItem = defineComponent({
288
288
  ref: "element",
289
289
  class: "vvd-component",
290
290
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
291
- ...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
291
+ ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
292
292
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
293
293
  ...this.headingLevel !== void 0 ? { "^heading-level": this.headingLevel } : {},
294
- ...this.expanded !== void 0 ? { "^expanded": this.expanded } : {},
294
+ ...this.expanded !== void 0 && this.expanded !== false ? { "^expanded": this.expanded } : {},
295
295
  ...this.id !== void 0 ? { "^id": this.id } : {},
296
296
  ...this.heading !== void 0 ? { "^heading": this.heading } : {},
297
- ...this.noIndicator !== void 0 ? { "^no-indicator": this.noIndicator } : {},
297
+ ...this.noIndicator !== void 0 && this.noIndicator !== false ? { "^no-indicator": this.noIndicator } : {},
298
298
  ...this.meta !== void 0 ? { "^meta": this.meta } : {},
299
299
  ...this.size !== void 0 ? { "^size": this.size } : {},
300
300
  onClick: (event) => this.$emit("click", event),
@@ -419,7 +419,7 @@ const VActionGroup = defineComponent({
419
419
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
420
420
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
421
421
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
422
- ...this.tight !== void 0 ? { "^tight": this.tight } : {},
422
+ ...this.tight !== void 0 && this.tight !== false ? { "^tight": this.tight } : {},
423
423
  ...this.role !== void 0 ? { "^role": this.role } : {},
424
424
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
425
425
  onClick: (event) => this.$emit("click", event),
@@ -603,7 +603,7 @@ const VAlert = defineComponent({
603
603
  class: "vvd-component",
604
604
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
605
605
  ...this.dismissButtonAriaLabel !== void 0 ? { "^dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
606
- ...this.removable !== void 0 ? { "^removable": this.removable } : {},
606
+ ...this.removable !== void 0 && this.removable !== false ? { "^removable": this.removable } : {},
607
607
  ...this.placement !== void 0 ? { "^placement": this.placement } : {},
608
608
  ...this.headline !== void 0 ? { "^headline": this.headline } : {},
609
609
  ...this.text !== void 0 ? { "^text": this.text } : {},
@@ -611,7 +611,7 @@ const VAlert = defineComponent({
611
611
  ...this.timeoutms !== void 0 ? { "^timeoutms": this.timeoutms } : {},
612
612
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
613
613
  ...this.strategy !== void 0 ? { "^strategy": this.strategy } : {},
614
- ...this.open !== void 0 ? { "^open": this.open } : {},
614
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
615
615
  onClick: (event) => this.$emit("click", event),
616
616
  onFocus: (event) => this.$emit("focus", event),
617
617
  onBlur: (event) => this.$emit("blur", event),
@@ -787,8 +787,8 @@ const VAudioPlayer = defineComponent({
787
787
  ...this.skipBackwardAriaLabel !== void 0 ? { "^skip-backward-aria-label": this.skipBackwardAriaLabel } : {},
788
788
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
789
789
  ...this.src !== void 0 ? { "^src": this.src } : {},
790
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
791
- ...this.notime !== void 0 ? { "^notime": this.notime } : {},
790
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
791
+ ...this.notime !== void 0 && this.notime !== false ? { "^notime": this.notime } : {},
792
792
  ...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
793
793
  ...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
794
794
  onClick: (event) => this.$emit("click", event),
@@ -1068,7 +1068,7 @@ const VBadge = defineComponent({
1068
1068
  ref: "element",
1069
1069
  class: "vvd-component",
1070
1070
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
1071
- ...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
1071
+ ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
1072
1072
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
1073
1073
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
1074
1074
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
@@ -1208,7 +1208,7 @@ const VBanner = defineComponent({
1208
1208
  ...this.role !== void 0 ? { "^role": this.role } : {},
1209
1209
  ...this.actionHref !== void 0 ? { "^action-href": this.actionHref } : {},
1210
1210
  ...this.actionText !== void 0 ? { "^action-text": this.actionText } : {},
1211
- ...this.removable !== void 0 ? { "^removable": this.removable } : {},
1211
+ ...this.removable !== void 0 && this.removable !== false ? { "^removable": this.removable } : {},
1212
1212
  ...this.ariaLive !== void 0 ? { "^aria-live": this.ariaLive } : {},
1213
1213
  ...this.text !== void 0 ? { "^text": this.text } : {},
1214
1214
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
@@ -1736,19 +1736,19 @@ const VButton = defineComponent({
1736
1736
  ref: "element",
1737
1737
  class: "vvd-component",
1738
1738
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
1739
- ...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
1739
+ ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
1740
1740
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
1741
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
1741
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
1742
1742
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
1743
1743
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
1744
1744
  ...this.name !== void 0 ? { "^name": this.name } : {},
1745
- ...this.required !== void 0 ? { "^required": this.required } : {},
1746
- ...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
1745
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
1746
+ ...this.autofocus !== void 0 && this.autofocus !== false ? { "^autofocus": this.autofocus } : {},
1747
1747
  ...this.form !== void 0 ? { "^form": this.form } : {},
1748
1748
  ...this.formaction !== void 0 ? { "^formaction": this.formaction } : {},
1749
1749
  ...this.formenctype !== void 0 ? { "^formenctype": this.formenctype } : {},
1750
1750
  ...this.formmethod !== void 0 ? { "^formmethod": this.formmethod } : {},
1751
- ...this.formnovalidate !== void 0 ? { "^formnovalidate": this.formnovalidate } : {},
1751
+ ...this.formnovalidate !== void 0 && this.formnovalidate !== false ? { "^formnovalidate": this.formnovalidate } : {},
1752
1752
  ...this.formtarget !== void 0 ? { "^formtarget": this.formtarget } : {},
1753
1753
  ...this.type !== void 0 ? { "^type": this.type } : {},
1754
1754
  ...this.title !== void 0 ? { "^title": this.title } : {},
@@ -1756,9 +1756,9 @@ const VButton = defineComponent({
1756
1756
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
1757
1757
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
1758
1758
  ...this.size !== void 0 ? { "^size": this.size } : {},
1759
- ...this.stacked !== void 0 ? { "^stacked": this.stacked } : {},
1760
- ...this.pending !== void 0 ? { "^pending": this.pending } : {},
1761
- ...this.active !== void 0 ? { "^active": this.active } : {},
1759
+ ...this.stacked !== void 0 && this.stacked !== false ? { "^stacked": this.stacked } : {},
1760
+ ...this.pending !== void 0 && this.pending !== false ? { "^pending": this.pending } : {},
1761
+ ...this.active !== void 0 && this.active !== false ? { "^active": this.active } : {},
1762
1762
  ...this.label !== void 0 ? { "^label": this.label } : {},
1763
1763
  ...this.href !== void 0 ? { "^href": this.href } : {},
1764
1764
  ...this.download !== void 0 ? { "^download": this.download } : {},
@@ -1926,7 +1926,7 @@ const VCalendar = defineComponent({
1926
1926
  ...this.datetime !== void 0 ? { ".datetime": this.datetime } : {},
1927
1927
  ...this.startDay !== void 0 ? { "^start-day": this.startDay } : {},
1928
1928
  ...this.locales !== void 0 ? { ".locales": this.locales } : {},
1929
- ...this.hour12 !== void 0 ? { "^hour12": this.hour12 } : {},
1929
+ ...this.hour12 !== void 0 && this.hour12 !== false ? { "^hour12": this.hour12 } : {},
1930
1930
  onClick: (event) => this.$emit("click", event),
1931
1931
  onFocus: (event) => this.$emit("focus", event),
1932
1932
  onBlur: (event) => this.$emit("blur", event),
@@ -2414,7 +2414,7 @@ const VCheckbox = defineComponent({
2414
2414
  ...this.name !== void 0 ? { name: this.name } : {},
2415
2415
  ...this.required !== void 0 ? { required: this.required } : {},
2416
2416
  ...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
2417
- ...this.modelValue ?? this.checked !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
2417
+ ...(this.modelValue ?? this.checked) !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
2418
2418
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
2419
2419
  ...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
2420
2420
  ...this.tabindex !== void 0 ? { tabindex: this.tabindex } : {},
@@ -2454,14 +2454,14 @@ const VCheckbox = defineComponent({
2454
2454
  ...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
2455
2455
  ...this.label !== void 0 ? { "^label": this.label } : {},
2456
2456
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
2457
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
2457
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
2458
2458
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
2459
2459
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
2460
2460
  ...this.name !== void 0 ? { "^name": this.name } : {},
2461
- ...this.required !== void 0 ? { "^required": this.required } : {},
2462
- ...this.defaultChecked !== void 0 ? { "^checked": this.defaultChecked } : {},
2463
- ...this.modelValue ?? this.checked !== void 0 ? { "^current-checked": this.modelValue ?? this.checked } : {},
2464
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
2461
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
2462
+ ...this.defaultChecked !== void 0 && this.defaultChecked !== false ? { "^checked": this.defaultChecked } : {},
2463
+ ...(this.modelValue ?? this.checked) !== void 0 && (this.modelValue ?? this.checked) !== false ? { "^current-checked": this.modelValue ?? this.checked } : {},
2464
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
2465
2465
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
2466
2466
  ...this.tabindex !== void 0 ? { "^tabindex": this.tabindex } : {},
2467
2467
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
@@ -2678,7 +2678,7 @@ const VCombobox = defineComponent({
2678
2678
  ...this.icon !== void 0 ? { icon: this.icon } : {},
2679
2679
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
2680
2680
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
2681
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
2681
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
2682
2682
  ...this.name !== void 0 ? { name: this.name } : {},
2683
2683
  ...this.required !== void 0 ? { required: this.required } : {},
2684
2684
  ...this.autocomplete !== void 0 ? { autocomplete: this.autocomplete } : {},
@@ -2719,17 +2719,17 @@ const VCombobox = defineComponent({
2719
2719
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
2720
2720
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
2721
2721
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
2722
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
2722
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
2723
2723
  ...this.name !== void 0 ? { "^name": this.name } : {},
2724
- ...this.required !== void 0 ? { "^required": this.required } : {},
2724
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
2725
2725
  ...this.autocomplete !== void 0 ? { "^autocomplete": this.autocomplete } : {},
2726
- ...this.open !== void 0 ? { "^open": this.open } : {},
2726
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
2727
2727
  ...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
2728
2728
  ...this.position !== void 0 ? { "^position": this.position } : {},
2729
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
2729
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
2730
2730
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
2731
2731
  ...this.placement !== void 0 ? { "^placement": this.placement } : {},
2732
- ...this.fixedDropdown !== void 0 ? { "^fixed-dropdown": this.fixedDropdown } : {},
2732
+ ...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
2733
2733
  onClick: (event) => this.$emit("click", event),
2734
2734
  onFocus: (event) => this.$emit("focus", event),
2735
2735
  onBlur: (event) => this.$emit("blur", event),
@@ -2876,7 +2876,7 @@ const VDataGrid = defineComponent({
2876
2876
  ref: "element",
2877
2877
  class: "vvd-component",
2878
2878
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
2879
- ...this.noTabbing !== void 0 ? { "^no-tabbing": this.noTabbing } : {},
2879
+ ...this.noTabbing !== void 0 && this.noTabbing !== false ? { "^no-tabbing": this.noTabbing } : {},
2880
2880
  ...this.generateHeader !== void 0 ? { "^generate-header": this.generateHeader } : {},
2881
2881
  ...this.gridTemplateColumns !== void 0 ? { "^grid-template-columns": this.gridTemplateColumns } : {},
2882
2882
  ...this.selectionMode !== void 0 ? { "^selection-mode": this.selectionMode } : {},
@@ -3328,7 +3328,7 @@ const VDatePicker = defineComponent({
3328
3328
  ...this.max !== void 0 ? { max: this.max } : {},
3329
3329
  ...this.min !== void 0 ? { min: this.min } : {},
3330
3330
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
3331
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
3331
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
3332
3332
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {}
3333
3333
  },
3334
3334
  class: "vvd-component",
@@ -3364,14 +3364,14 @@ const VDatePicker = defineComponent({
3364
3364
  ...this.label !== void 0 ? { "^label": this.label } : {},
3365
3365
  ...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
3366
3366
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
3367
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
3367
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
3368
3368
  ...this.name !== void 0 ? { "^name": this.name } : {},
3369
- ...this.required !== void 0 ? { "^required": this.required } : {},
3369
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
3370
3370
  ...this.max !== void 0 ? { "^max": this.max } : {},
3371
3371
  ...this.min !== void 0 ? { "^min": this.min } : {},
3372
3372
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
3373
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
3374
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
3373
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
3374
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
3375
3375
  onClick: (event) => this.$emit("click", event),
3376
3376
  onFocus: (event) => this.$emit("focus", event),
3377
3377
  onBlur: (event) => this.$emit("blur", event),
@@ -3603,9 +3603,9 @@ const VDateRangePicker = defineComponent({
3603
3603
  ...this.label !== void 0 ? { "^label": this.label } : {},
3604
3604
  ...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
3605
3605
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
3606
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
3606
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
3607
3607
  ...this.name !== void 0 ? { "^name": this.name } : {},
3608
- ...this.required !== void 0 ? { "^required": this.required } : {},
3608
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
3609
3609
  ...this.max !== void 0 ? { "^max": this.max } : {},
3610
3610
  ...this.initialStart !== void 0 ? { "^start": this.initialStart } : {},
3611
3611
  ...this.initialEnd !== void 0 ? { "^end": this.initialEnd } : {},
@@ -3614,7 +3614,7 @@ const VDateRangePicker = defineComponent({
3614
3614
  ...this.min !== void 0 ? { "^min": this.min } : {},
3615
3615
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
3616
3616
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
3617
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
3617
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
3618
3618
  onClick: (event) => this.$emit("click", event),
3619
3619
  onFocus: (event) => this.$emit("focus", event),
3620
3620
  onBlur: (event) => this.$emit("blur", event),
@@ -3779,7 +3779,7 @@ const VDialPad = defineComponent({
3779
3779
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
3780
3780
  ...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
3781
3781
  ...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
3782
- ...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
3782
+ ...(this.modelValue ?? this.value) !== void 0 ? { value: this.modelValue ?? this.value } : {},
3783
3783
  ...this.pattern !== void 0 ? { pattern: this.pattern } : {},
3784
3784
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
3785
3785
  ...this.pending !== void 0 ? { pending: this.pending } : {},
@@ -3817,13 +3817,13 @@ const VDialPad = defineComponent({
3817
3817
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
3818
3818
  ...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
3819
3819
  ...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
3820
- ...this.modelValue ?? this.value !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
3820
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
3821
3821
  ...this.pattern !== void 0 ? { "^pattern": this.pattern } : {},
3822
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
3823
- ...this.pending !== void 0 ? { "^pending": this.pending } : {},
3824
- ...this.callActive !== void 0 ? { "^call-active": this.callActive } : {},
3825
- ...this.noCall !== void 0 ? { "^no-call": this.noCall } : {},
3826
- ...this.noInput !== void 0 ? { "^no-input": this.noInput } : {},
3822
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
3823
+ ...this.pending !== void 0 && this.pending !== false ? { "^pending": this.pending } : {},
3824
+ ...this.callActive !== void 0 && this.callActive !== false ? { "^call-active": this.callActive } : {},
3825
+ ...this.noCall !== void 0 && this.noCall !== false ? { "^no-call": this.noCall } : {},
3826
+ ...this.noInput !== void 0 && this.noInput !== false ? { "^no-input": this.noInput } : {},
3827
3827
  ...this.endCallButtonLabel !== void 0 ? { "^end-call-button-label": this.endCallButtonLabel } : {},
3828
3828
  ...this.callButtonLabel !== void 0 ? { "^call-button-label": this.callButtonLabel } : {},
3829
3829
  onClick: (event) => this.$emit("click", event),
@@ -3984,15 +3984,15 @@ const VDialog = defineComponent({
3984
3984
  ref: "element",
3985
3985
  class: "vvd-component",
3986
3986
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
3987
- ...this.open !== void 0 ? { "^open": this.open } : {},
3987
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
3988
3988
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
3989
3989
  ...this.iconPlacement !== void 0 ? { "^icon-placement": this.iconPlacement } : {},
3990
3990
  ...this.subtitle !== void 0 ? { "^subtitle": this.subtitle } : {},
3991
3991
  ...this.headline !== void 0 ? { "^headline": this.headline } : {},
3992
- ...this.fullWidthBody !== void 0 ? { "^full-width-body": this.fullWidthBody } : {},
3992
+ ...this.fullWidthBody !== void 0 && this.fullWidthBody !== false ? { "^full-width-body": this.fullWidthBody } : {},
3993
3993
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
3994
3994
  ...this.dismissButtonAriaLabel !== void 0 ? { "^dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
3995
- ...this.noLightDismiss !== void 0 ? { "^no-light-dismiss": this.noLightDismiss } : {},
3995
+ ...this.noLightDismiss !== void 0 && this.noLightDismiss !== false ? { "^no-light-dismiss": this.noLightDismiss } : {},
3996
3996
  onClick: (event) => this.$emit("click", event),
3997
3997
  onFocus: (event) => this.$emit("focus", event),
3998
3998
  onBlur: (event) => this.$emit("blur", event),
@@ -4440,19 +4440,19 @@ const VFab = defineComponent({
4440
4440
  ref: "element",
4441
4441
  class: "vvd-component",
4442
4442
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
4443
- ...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
4443
+ ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
4444
4444
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
4445
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
4445
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
4446
4446
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
4447
4447
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
4448
4448
  ...this.name !== void 0 ? { "^name": this.name } : {},
4449
- ...this.required !== void 0 ? { "^required": this.required } : {},
4450
- ...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
4449
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
4450
+ ...this.autofocus !== void 0 && this.autofocus !== false ? { "^autofocus": this.autofocus } : {},
4451
4451
  ...this.form !== void 0 ? { "^form": this.form } : {},
4452
4452
  ...this.formaction !== void 0 ? { "^formaction": this.formaction } : {},
4453
4453
  ...this.formenctype !== void 0 ? { "^formenctype": this.formenctype } : {},
4454
4454
  ...this.formmethod !== void 0 ? { "^formmethod": this.formmethod } : {},
4455
- ...this.formnovalidate !== void 0 ? { "^formnovalidate": this.formnovalidate } : {},
4455
+ ...this.formnovalidate !== void 0 && this.formnovalidate !== false ? { "^formnovalidate": this.formnovalidate } : {},
4456
4456
  ...this.formtarget !== void 0 ? { "^formtarget": this.formtarget } : {},
4457
4457
  ...this.type !== void 0 ? { "^type": this.type } : {},
4458
4458
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
@@ -4652,11 +4652,11 @@ const VFilePicker = defineComponent({
4652
4652
  ...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
4653
4653
  ...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
4654
4654
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
4655
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
4655
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
4656
4656
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
4657
4657
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
4658
4658
  ...this.name !== void 0 ? { "^name": this.name } : {},
4659
- ...this.required !== void 0 ? { "^required": this.required } : {},
4659
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
4660
4660
  ...this.maxFiles !== void 0 ? { "^max-files": this.maxFiles } : {},
4661
4661
  ...this.maxFileSize !== void 0 ? { "^max-file-size": this.maxFileSize } : {},
4662
4662
  ...this.accept !== void 0 ? { "^accept": this.accept } : {},
@@ -4772,8 +4772,8 @@ const VHeader = defineComponent({
4772
4772
  ref: "element",
4773
4773
  class: "vvd-component",
4774
4774
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
4775
- ...this.elevationShadow !== void 0 ? { "^elevation-shadow": this.elevationShadow } : {},
4776
- ...this.alternate !== void 0 ? { "^alternate": this.alternate } : {},
4775
+ ...this.elevationShadow !== void 0 && this.elevationShadow !== false ? { "^elevation-shadow": this.elevationShadow } : {},
4776
+ ...this.alternate !== void 0 && this.alternate !== false ? { "^alternate": this.alternate } : {},
4777
4777
  onClick: (event) => this.$emit("click", event),
4778
4778
  onFocus: (event) => this.$emit("focus", event),
4779
4779
  onBlur: (event) => this.$emit("blur", event),
@@ -5203,8 +5203,8 @@ const VMenu = defineComponent({
5203
5203
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
5204
5204
  ...this.placement !== void 0 ? { "^placement": this.placement } : {},
5205
5205
  ...this.trigger !== void 0 ? { "^trigger": this.trigger } : {},
5206
- ...this.autoDismiss !== void 0 ? { "^auto-dismiss": this.autoDismiss } : {},
5207
- ...this.open !== void 0 ? { "^open": this.open } : {},
5206
+ ...this.autoDismiss !== void 0 && this.autoDismiss !== false ? { "^auto-dismiss": this.autoDismiss } : {},
5207
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
5208
5208
  onClick: (event) => this.$emit("click", event),
5209
5209
  onFocus: (event) => this.$emit("focus", event),
5210
5210
  onBlur: (event) => this.$emit("blur", event),
@@ -5362,7 +5362,7 @@ const VMenuItem = defineComponent({
5362
5362
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
5363
5363
  ...this.expanded !== void 0 ? { expanded: this.expanded } : {},
5364
5364
  ...this.role !== void 0 ? { role: this.role } : {},
5365
- ...this.modelValue ?? this.checked !== void 0 ? { checked: this.modelValue ?? this.checked } : {},
5365
+ ...(this.modelValue ?? this.checked) !== void 0 ? { checked: this.modelValue ?? this.checked } : {},
5366
5366
  ...this.text !== void 0 ? { text: this.text } : {},
5367
5367
  ...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {},
5368
5368
  ...this.connotation !== void 0 ? { connotation: this.connotation } : {},
@@ -5405,14 +5405,14 @@ const VMenuItem = defineComponent({
5405
5405
  class: "vvd-component",
5406
5406
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
5407
5407
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
5408
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
5409
- ...this.expanded !== void 0 ? { "^expanded": this.expanded } : {},
5408
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
5409
+ ...this.expanded !== void 0 && this.expanded !== false ? { "^expanded": this.expanded } : {},
5410
5410
  ...this.role !== void 0 ? { "^role": this.role } : {},
5411
- ...this.modelValue ?? this.checked !== void 0 ? { "^checked": this.modelValue ?? this.checked } : {},
5411
+ ...(this.modelValue ?? this.checked) !== void 0 && (this.modelValue ?? this.checked) !== false ? { "^checked": this.modelValue ?? this.checked } : {},
5412
5412
  ...this.text !== void 0 ? { "^text": this.text } : {},
5413
5413
  ...this.textSecondary !== void 0 ? { "^text-secondary": this.textSecondary } : {},
5414
5414
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
5415
- ...this.checkTrailing !== void 0 ? { "^check-trailing": this.checkTrailing } : {},
5415
+ ...this.checkTrailing !== void 0 && this.checkTrailing !== false ? { "^check-trailing": this.checkTrailing } : {},
5416
5416
  ...this.checkAppearance !== void 0 ? { "^check-appearance": this.checkAppearance } : {},
5417
5417
  onClick: (event) => this.$emit("click", event),
5418
5418
  onFocus: (event) => this.$emit("focus", event),
@@ -5653,7 +5653,7 @@ const VNavDisclosure = defineComponent({
5653
5653
  ...this.label !== void 0 ? { "^label": this.label } : {},
5654
5654
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
5655
5655
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
5656
- ...this.open !== void 0 ? { "^open": this.open } : {},
5656
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
5657
5657
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
5658
5658
  onClick: (event) => this.$emit("click", event),
5659
5659
  onFocus: (event) => this.$emit("focus", event),
@@ -6202,7 +6202,7 @@ const VNumberField = defineComponent({
6202
6202
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
6203
6203
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
6204
6204
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
6205
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
6205
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
6206
6206
  ...this.name !== void 0 ? { name: this.name } : {},
6207
6207
  ...this.required !== void 0 ? { required: this.required } : {},
6208
6208
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
@@ -6252,18 +6252,18 @@ const VNumberField = defineComponent({
6252
6252
  class: "vvd-component",
6253
6253
  ...this.successText !== void 0 ? { "^success-text": this.successText } : {},
6254
6254
  ...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
6255
- ...this.charCount !== void 0 ? { "^char-count": this.charCount } : {},
6255
+ ...this.charCount !== void 0 && this.charCount !== false ? { "^char-count": this.charCount } : {},
6256
6256
  ...this.label !== void 0 ? { "^label": this.label } : {},
6257
6257
  ...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
6258
6258
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
6259
6259
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
6260
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
6260
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
6261
6261
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
6262
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
6262
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
6263
6263
  ...this.name !== void 0 ? { "^name": this.name } : {},
6264
- ...this.required !== void 0 ? { "^required": this.required } : {},
6265
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
6266
- ...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
6264
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
6265
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
6266
+ ...this.autofocus !== void 0 && this.autofocus !== false ? { "^autofocus": this.autofocus } : {},
6267
6267
  ...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
6268
6268
  ...this.list !== void 0 ? { "^list": this.list } : {},
6269
6269
  ...this.maxlength !== void 0 ? { "^maxlength": this.maxlength } : {},
@@ -6423,10 +6423,10 @@ const VOption = defineComponent({
6423
6423
  ref: "element",
6424
6424
  class: "vvd-component",
6425
6425
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
6426
- ...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
6426
+ ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
6427
6427
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
6428
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
6429
- ...this.selected !== void 0 ? { "^selected": this.selected } : {},
6428
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
6429
+ ...this.selected !== void 0 && this.selected !== false ? { "^selected": this.selected } : {},
6430
6430
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
6431
6431
  ...this.text !== void 0 ? { "^text": this.text } : {},
6432
6432
  ...this.label !== void 0 ? { "^label": this.label } : {},
@@ -6561,7 +6561,7 @@ const VPagination = defineComponent({
6561
6561
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
6562
6562
  ...this.size !== void 0 ? { "^size": this.size } : {},
6563
6563
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
6564
- ...this.navIcons !== void 0 ? { "^nav-icons": this.navIcons } : {},
6564
+ ...this.navIcons !== void 0 && this.navIcons !== false ? { "^nav-icons": this.navIcons } : {},
6565
6565
  ...this.total !== void 0 ? { "^total": this.total } : {},
6566
6566
  ...this.selectedIndex !== void 0 ? { "^selected-index": this.selectedIndex } : {},
6567
6567
  onClick: (event) => this.$emit("click", event),
@@ -6703,11 +6703,11 @@ const VProgress = defineComponent({
6703
6703
  ...this.value !== void 0 ? { "^value": this.value } : {},
6704
6704
  ...this.min !== void 0 ? { "^min": this.min } : {},
6705
6705
  ...this.max !== void 0 ? { "^max": this.max } : {},
6706
- ...this.paused !== void 0 ? { "^paused": this.paused } : {},
6706
+ ...this.paused !== void 0 && this.paused !== false ? { "^paused": this.paused } : {},
6707
6707
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
6708
6708
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
6709
6709
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
6710
- ...this.reverse !== void 0 ? { "^reverse": this.reverse } : {},
6710
+ ...this.reverse !== void 0 && this.reverse !== false ? { "^reverse": this.reverse } : {},
6711
6711
  onClick: (event) => this.$emit("click", event),
6712
6712
  onFocus: (event) => this.$emit("focus", event),
6713
6713
  onBlur: (event) => this.$emit("blur", event),
@@ -6838,7 +6838,7 @@ const VProgressRing = defineComponent({
6838
6838
  ...this.value !== void 0 ? { "^value": this.value } : {},
6839
6839
  ...this.min !== void 0 ? { "^min": this.min } : {},
6840
6840
  ...this.max !== void 0 ? { "^max": this.max } : {},
6841
- ...this.paused !== void 0 ? { "^paused": this.paused } : {},
6841
+ ...this.paused !== void 0 && this.paused !== false ? { "^paused": this.paused } : {},
6842
6842
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
6843
6843
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
6844
6844
  ...this.size !== void 0 ? { "^size": this.size } : {},
@@ -7004,14 +7004,14 @@ const VRadio = defineComponent({
7004
7004
  ref: "element",
7005
7005
  class: "vvd-component",
7006
7006
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
7007
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
7007
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
7008
7008
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
7009
7009
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
7010
7010
  ...this.name !== void 0 ? { "^name": this.name } : {},
7011
- ...this.required !== void 0 ? { "^required": this.required } : {},
7012
- ...this.defaultChecked !== void 0 ? { "^checked": this.defaultChecked } : {},
7013
- ...this.checked !== void 0 ? { "^current-checked": this.checked } : {},
7014
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
7011
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
7012
+ ...this.defaultChecked !== void 0 && this.defaultChecked !== false ? { "^checked": this.defaultChecked } : {},
7013
+ ...this.checked !== void 0 && this.checked !== false ? { "^current-checked": this.checked } : {},
7014
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
7015
7015
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
7016
7016
  ...this.label !== void 0 ? { "^label": this.label } : {},
7017
7017
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
@@ -7137,7 +7137,7 @@ const VRadioGroup = defineComponent({
7137
7137
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
7138
7138
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
7139
7139
  ...this.name !== void 0 ? { name: this.name } : {},
7140
- ...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
7140
+ ...(this.modelValue ?? this.value) !== void 0 ? { value: this.modelValue ?? this.value } : {},
7141
7141
  ...this.orientation !== void 0 ? { orientation: this.orientation } : {},
7142
7142
  ...this.label !== void 0 ? { label: this.label } : {}
7143
7143
  },
@@ -7167,10 +7167,10 @@ const VRadioGroup = defineComponent({
7167
7167
  ref: "element",
7168
7168
  class: "vvd-component",
7169
7169
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
7170
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
7171
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
7170
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
7171
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
7172
7172
  ...this.name !== void 0 ? { "^name": this.name } : {},
7173
- ...this.modelValue ?? this.value !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
7173
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
7174
7174
  ...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
7175
7175
  ...this.label !== void 0 ? { "^label": this.label } : {},
7176
7176
  onClick: (event) => this.$emit("click", event),
@@ -7425,11 +7425,11 @@ const VRangeSlider = defineComponent({
7425
7425
  class: "vvd-component",
7426
7426
  ...this.label !== void 0 ? { "^label": this.label } : {},
7427
7427
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
7428
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
7428
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
7429
7429
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
7430
7430
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
7431
7431
  ...this.name !== void 0 ? { "^name": this.name } : {},
7432
- ...this.required !== void 0 ? { "^required": this.required } : {},
7432
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
7433
7433
  ...this.initialStart !== void 0 ? { "^start": this.initialStart } : {},
7434
7434
  ...this.start !== void 0 ? { "^current-start": this.start } : {},
7435
7435
  ...this.initialEnd !== void 0 ? { "^end": this.initialEnd } : {},
@@ -7440,7 +7440,7 @@ const VRangeSlider = defineComponent({
7440
7440
  ...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
7441
7441
  ...this.ariaStartLabel !== void 0 ? { "^aria-start-label": this.ariaStartLabel } : {},
7442
7442
  ...this.ariaEndLabel !== void 0 ? { "^aria-end-label": this.ariaEndLabel } : {},
7443
- ...this.markers !== void 0 ? { "^markers": this.markers } : {},
7443
+ ...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
7444
7444
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
7445
7445
  onClick: (event) => this.$emit("click", event),
7446
7446
  onFocus: (event) => this.$emit("focus", event),
@@ -7645,6 +7645,9 @@ const VSelect = defineComponent({
7645
7645
  },
7646
7646
  slottedOptionsChanged(prev, next) {
7647
7647
  return this.element?.slottedOptionsChanged(prev, next);
7648
+ },
7649
+ formResetCallback() {
7650
+ return this.element?.formResetCallback();
7648
7651
  }
7649
7652
  },
7650
7653
  setup(props, ctx) {
@@ -7668,7 +7671,7 @@ const VSelect = defineComponent({
7668
7671
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
7669
7672
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
7670
7673
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
7671
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
7674
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
7672
7675
  ...this.name !== void 0 ? { name: this.name } : {},
7673
7676
  ...this.required !== void 0 ? { required: this.required } : {},
7674
7677
  ...this.open !== void 0 ? { open: this.open } : {},
@@ -7717,19 +7720,19 @@ const VSelect = defineComponent({
7717
7720
  ...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
7718
7721
  ...this.label !== void 0 ? { "^label": this.label } : {},
7719
7722
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
7720
- ...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
7723
+ ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
7721
7724
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
7722
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
7725
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
7723
7726
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
7724
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
7727
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
7725
7728
  ...this.name !== void 0 ? { "^name": this.name } : {},
7726
- ...this.required !== void 0 ? { "^required": this.required } : {},
7727
- ...this.open !== void 0 ? { "^open": this.open } : {},
7729
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
7730
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
7728
7731
  ...this.position !== void 0 ? { "^position": this.position } : {},
7729
- ...this.multiple !== void 0 ? { "^multiple": this.multiple } : {},
7732
+ ...this.multiple !== void 0 && this.multiple !== false ? { "^multiple": this.multiple } : {},
7730
7733
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
7731
7734
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
7732
- ...this.fixedDropdown !== void 0 ? { "^fixed-dropdown": this.fixedDropdown } : {},
7735
+ ...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
7733
7736
  ...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
7734
7737
  onClick: (event) => this.$emit("click", event),
7735
7738
  onFocus: (event) => this.$emit("focus", event),
@@ -7884,12 +7887,12 @@ const VSelectableBox = defineComponent({
7884
7887
  class: "vvd-component",
7885
7888
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
7886
7889
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
7887
- ...this.checked !== void 0 ? { "^checked": this.checked } : {},
7888
- ...this.clickable !== void 0 ? { "^clickable": this.clickable } : {},
7889
- ...this.clickableBox !== void 0 ? { "^clickable-box": this.clickableBox } : {},
7890
+ ...this.checked !== void 0 && this.checked !== false ? { "^checked": this.checked } : {},
7891
+ ...this.clickable !== void 0 && this.clickable !== false ? { "^clickable": this.clickable } : {},
7892
+ ...this.clickableBox !== void 0 && this.clickableBox !== false ? { "^clickable-box": this.clickableBox } : {},
7890
7893
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
7891
7894
  ...this.controlType !== void 0 ? { "^control-type": this.controlType } : {},
7892
- ...this.tight !== void 0 ? { "^tight": this.tight } : {},
7895
+ ...this.tight !== void 0 && this.tight !== false ? { "^tight": this.tight } : {},
7893
7896
  onClick: (event) => this.$emit("click", event),
7894
7897
  onFocus: (event) => this.$emit("focus", event),
7895
7898
  onBlur: (event) => this.$emit("blur", event),
@@ -8019,10 +8022,10 @@ const VSideDrawer = defineComponent({
8019
8022
  ref: "element",
8020
8023
  class: "vvd-component",
8021
8024
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
8022
- ...this.alternate !== void 0 ? { "^alternate": this.alternate } : {},
8023
- ...this.modal !== void 0 ? { "^modal": this.modal } : {},
8024
- ...this.open !== void 0 ? { "^open": this.open } : {},
8025
- ...this.trailing !== void 0 ? { "^trailing": this.trailing } : {},
8025
+ ...this.alternate !== void 0 && this.alternate !== false ? { "^alternate": this.alternate } : {},
8026
+ ...this.modal !== void 0 && this.modal !== false ? { "^modal": this.modal } : {},
8027
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
8028
+ ...this.trailing !== void 0 && this.trailing !== false ? { "^trailing": this.trailing } : {},
8026
8029
  onClick: (event) => this.$emit("click", event),
8027
8030
  onFocus: (event) => this.$emit("focus", event),
8028
8031
  onBlur: (event) => this.$emit("blur", event),
@@ -8207,7 +8210,7 @@ const VSlider = defineComponent({
8207
8210
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
8208
8211
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
8209
8212
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
8210
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
8213
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
8211
8214
  ...this.name !== void 0 ? { name: this.name } : {},
8212
8215
  ...this.required !== void 0 ? { required: this.required } : {},
8213
8216
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
@@ -8247,12 +8250,12 @@ const VSlider = defineComponent({
8247
8250
  ref: "element",
8248
8251
  class: "vvd-component",
8249
8252
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
8250
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
8253
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
8251
8254
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
8252
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
8255
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
8253
8256
  ...this.name !== void 0 ? { "^name": this.name } : {},
8254
- ...this.required !== void 0 ? { "^required": this.required } : {},
8255
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
8257
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
8258
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
8256
8259
  ...this.min !== void 0 ? { "^min": this.min } : {},
8257
8260
  ...this.max !== void 0 ? { "^max": this.max } : {},
8258
8261
  ...this.step !== void 0 ? { "^step": this.step } : {},
@@ -8260,7 +8263,7 @@ const VSlider = defineComponent({
8260
8263
  ...this.mode !== void 0 ? { "^mode": this.mode } : {},
8261
8264
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
8262
8265
  ...this.ariaValuetext !== void 0 ? { "^aria-valuetext": this.ariaValuetext } : {},
8263
- ...this.markers !== void 0 ? { "^markers": this.markers } : {},
8266
+ ...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
8264
8267
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
8265
8268
  onClick: (event) => this.$emit("click", event),
8266
8269
  onFocus: (event) => this.$emit("focus", event),
@@ -8451,7 +8454,7 @@ const VSplitButton = defineComponent({
8451
8454
  ...this.label !== void 0 ? { "^label": this.label } : {},
8452
8455
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
8453
8456
  ...this.splitIndicator !== void 0 ? { "^split-indicator": this.splitIndicator } : {},
8454
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
8457
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
8455
8458
  ...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
8456
8459
  ...this.ariaExpanded !== void 0 ? { "^aria-expanded": this.ariaExpanded } : {},
8457
8460
  ...this.indicatorAriaLabel !== void 0 ? { "^indicator-aria-label": this.indicatorAriaLabel } : {},
@@ -8611,7 +8614,7 @@ const VSwitch = defineComponent({
8611
8614
  ...this.name !== void 0 ? { name: this.name } : {},
8612
8615
  ...this.required !== void 0 ? { required: this.required } : {},
8613
8616
  ...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
8614
- ...this.modelValue ?? this.checked !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
8617
+ ...(this.modelValue ?? this.checked) !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
8615
8618
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
8616
8619
  ...this.label !== void 0 ? { label: this.label } : {},
8617
8620
  ...this.connotation !== void 0 ? { connotation: this.connotation } : {}
@@ -8642,14 +8645,14 @@ const VSwitch = defineComponent({
8642
8645
  ref: "element",
8643
8646
  class: "vvd-component",
8644
8647
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
8645
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
8648
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
8646
8649
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
8647
8650
  ...this.value !== void 0 ? { "^current-value": this.value } : {},
8648
8651
  ...this.name !== void 0 ? { "^name": this.name } : {},
8649
- ...this.required !== void 0 ? { "^required": this.required } : {},
8650
- ...this.defaultChecked !== void 0 ? { "^checked": this.defaultChecked } : {},
8651
- ...this.modelValue ?? this.checked !== void 0 ? { "^current-checked": this.modelValue ?? this.checked } : {},
8652
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
8652
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
8653
+ ...this.defaultChecked !== void 0 && this.defaultChecked !== false ? { "^checked": this.defaultChecked } : {},
8654
+ ...(this.modelValue ?? this.checked) !== void 0 && (this.modelValue ?? this.checked) !== false ? { "^current-checked": this.modelValue ?? this.checked } : {},
8655
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
8653
8656
  ...this.label !== void 0 ? { "^label": this.label } : {},
8654
8657
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
8655
8658
  onClick: (event) => this.$emit("click", event),
@@ -8796,9 +8799,9 @@ const VTab = defineComponent({
8796
8799
  ref: "element",
8797
8800
  class: "vvd-component",
8798
8801
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
8799
- ...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
8802
+ ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
8800
8803
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
8801
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
8804
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
8802
8805
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
8803
8806
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
8804
8807
  ...this.label !== void 0 ? { "^label": this.label } : {},
@@ -9062,10 +9065,10 @@ const VTabs = defineComponent({
9062
9065
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
9063
9066
  ...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
9064
9067
  ...this.activeid !== void 0 ? { "^activeid": this.activeid } : {},
9065
- ...this.activeindicator !== void 0 ? { "^activeindicator": this.activeindicator } : {},
9068
+ ...this.activeindicator !== void 0 && this.activeindicator !== false ? { "^activeindicator": this.activeindicator } : {},
9066
9069
  ...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
9067
9070
  ...this.gutters !== void 0 ? { "^gutters": this.gutters } : {},
9068
- ...this.scrollablePanel !== void 0 ? { "^scrollable-panel": this.scrollablePanel } : {},
9071
+ ...this.scrollablePanel !== void 0 && this.scrollablePanel !== false ? { "^scrollable-panel": this.scrollablePanel } : {},
9069
9072
  onClick: (event) => this.$emit("click", event),
9070
9073
  onFocus: (event) => this.$emit("focus", event),
9071
9074
  onBlur: (event) => this.$emit("blur", event),
@@ -9242,10 +9245,10 @@ const VTag = defineComponent({
9242
9245
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
9243
9246
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
9244
9247
  ...this.label !== void 0 ? { "^label": this.label } : {},
9245
- ...this.removable !== void 0 ? { "^removable": this.removable } : {},
9246
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
9247
- ...this.selectable !== void 0 ? { "^selectable": this.selectable } : {},
9248
- ...this.selected !== void 0 ? { "^selected": this.selected } : {},
9248
+ ...this.removable !== void 0 && this.removable !== false ? { "^removable": this.removable } : {},
9249
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
9250
+ ...this.selectable !== void 0 && this.selectable !== false ? { "^selectable": this.selectable } : {},
9251
+ ...this.selected !== void 0 && this.selected !== false ? { "^selected": this.selected } : {},
9249
9252
  onClick: (event) => this.$emit("click", event),
9250
9253
  onFocus: (event) => this.$emit("focus", event),
9251
9254
  onBlur: (event) => this.$emit("blur", event),
@@ -9559,7 +9562,7 @@ const VTextArea = defineComponent({
9559
9562
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
9560
9563
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
9561
9564
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
9562
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
9565
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
9563
9566
  ...this.required !== void 0 ? { required: this.required } : {},
9564
9567
  ...this.readOnly !== void 0 ? { readOnly: this.readOnly } : {},
9565
9568
  ...this.resize !== void 0 ? { resize: this.resize } : {},
@@ -9606,17 +9609,17 @@ const VTextArea = defineComponent({
9606
9609
  class: "vvd-component",
9607
9610
  ...this.successText !== void 0 ? { "^success-text": this.successText } : {},
9608
9611
  ...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
9609
- ...this.charCount !== void 0 ? { "^char-count": this.charCount } : {},
9612
+ ...this.charCount !== void 0 && this.charCount !== false ? { "^char-count": this.charCount } : {},
9610
9613
  ...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
9611
9614
  ...this.label !== void 0 ? { "^label": this.label } : {},
9612
9615
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
9613
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
9616
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
9614
9617
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
9615
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
9616
- ...this.required !== void 0 ? { "^required": this.required } : {},
9617
- ...this.readOnly !== void 0 ? { "^readOnly": this.readOnly } : {},
9618
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
9619
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
9620
+ ...this.readOnly !== void 0 && this.readOnly !== false ? { "^readOnly": this.readOnly } : {},
9618
9621
  ...this.resize !== void 0 ? { "^resize": this.resize } : {},
9619
- ...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
9622
+ ...this.autofocus !== void 0 && this.autofocus !== false ? { "^autofocus": this.autofocus } : {},
9620
9623
  ...this.form !== void 0 ? { "^form": this.form } : {},
9621
9624
  ...this.list !== void 0 ? { "^list": this.list } : {},
9622
9625
  ...this.maxlength !== void 0 ? { "^maxlength": this.maxlength } : {},
@@ -9625,7 +9628,7 @@ const VTextArea = defineComponent({
9625
9628
  ...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
9626
9629
  ...this.cols !== void 0 ? { "^cols": this.cols } : {},
9627
9630
  ...this.rows !== void 0 ? { "^rows": this.rows } : {},
9628
- ...this.spellcheck !== void 0 ? { "^spellcheck": this.spellcheck } : {},
9631
+ ...this.spellcheck !== void 0 && this.spellcheck !== false ? { "^spellcheck": this.spellcheck } : {},
9629
9632
  ...this.wrap !== void 0 ? { "^wrap": this.wrap } : {},
9630
9633
  onClick: (event) => this.$emit("click", event),
9631
9634
  onFocus: (event) => this.$emit("focus", event),
@@ -9853,7 +9856,7 @@ const VTextField = defineComponent({
9853
9856
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
9854
9857
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
9855
9858
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
9856
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
9859
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
9857
9860
  ...this.name !== void 0 ? { name: this.name } : {},
9858
9861
  ...this.required !== void 0 ? { required: this.required } : {},
9859
9862
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
@@ -9908,18 +9911,18 @@ const VTextField = defineComponent({
9908
9911
  class: "vvd-component",
9909
9912
  ...this.successText !== void 0 ? { "^success-text": this.successText } : {},
9910
9913
  ...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
9911
- ...this.charCount !== void 0 ? { "^char-count": this.charCount } : {},
9914
+ ...this.charCount !== void 0 && this.charCount !== false ? { "^char-count": this.charCount } : {},
9912
9915
  ...this.label !== void 0 ? { "^label": this.label } : {},
9913
9916
  ...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
9914
9917
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
9915
9918
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
9916
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
9919
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
9917
9920
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
9918
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
9921
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
9919
9922
  ...this.name !== void 0 ? { "^name": this.name } : {},
9920
- ...this.required !== void 0 ? { "^required": this.required } : {},
9921
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
9922
- ...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
9923
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
9924
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
9925
+ ...this.autofocus !== void 0 && this.autofocus !== false ? { "^autofocus": this.autofocus } : {},
9923
9926
  ...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
9924
9927
  ...this.type !== void 0 ? { "^type": this.type } : {},
9925
9928
  ...this.list !== void 0 ? { "^list": this.list } : {},
@@ -9927,7 +9930,7 @@ const VTextField = defineComponent({
9927
9930
  ...this.minlength !== void 0 ? { "^minlength": this.minlength } : {},
9928
9931
  ...this.pattern !== void 0 ? { "^pattern": this.pattern } : {},
9929
9932
  ...this.size !== void 0 ? { "^size": this.size } : {},
9930
- ...this.spellcheck !== void 0 ? { "^spellcheck": this.spellcheck } : {},
9933
+ ...this.spellcheck !== void 0 && this.spellcheck !== false ? { "^spellcheck": this.spellcheck } : {},
9931
9934
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
9932
9935
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
9933
9936
  ...this.autoComplete !== void 0 ? { "^autoComplete": this.autoComplete } : {},
@@ -10107,7 +10110,7 @@ const VTimePicker = defineComponent({
10107
10110
  ...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
10108
10111
  ...this.disabled !== void 0 ? { disabled: this.disabled } : {},
10109
10112
  ...this.initialValue !== void 0 ? { value: this.initialValue } : {},
10110
- ...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
10113
+ ...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
10111
10114
  ...this.name !== void 0 ? { name: this.name } : {},
10112
10115
  ...this.required !== void 0 ? { required: this.required } : {},
10113
10116
  ...this.readonly !== void 0 ? { readonly: this.readonly } : {},
@@ -10150,12 +10153,12 @@ const VTimePicker = defineComponent({
10150
10153
  ...this.label !== void 0 ? { "^label": this.label } : {},
10151
10154
  ...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
10152
10155
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
10153
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
10156
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
10154
10157
  ...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
10155
- ...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
10158
+ ...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
10156
10159
  ...this.name !== void 0 ? { "^name": this.name } : {},
10157
- ...this.required !== void 0 ? { "^required": this.required } : {},
10158
- ...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
10160
+ ...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
10161
+ ...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
10159
10162
  ...this.minutesStep !== void 0 ? { "^minutes-step": this.minutesStep } : {},
10160
10163
  ...this.secondsStep !== void 0 ? { "^seconds-step": this.secondsStep } : {},
10161
10164
  ...this.clock !== void 0 ? { "^clock": this.clock } : {},
@@ -10307,9 +10310,9 @@ const VToggletip = defineComponent({
10307
10310
  ...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
10308
10311
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
10309
10312
  ...this.headline !== void 0 ? { "^headline": this.headline } : {},
10310
- ...this.alternate !== void 0 ? { "^alternate": this.alternate } : {},
10313
+ ...this.alternate !== void 0 && this.alternate !== false ? { "^alternate": this.alternate } : {},
10311
10314
  ...this.placement !== void 0 ? { "^placement": this.placement } : {},
10312
- ...this.open !== void 0 ? { "^open": this.open } : {},
10315
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
10313
10316
  onClick: (event) => this.$emit("click", event),
10314
10317
  onFocus: (event) => this.$emit("focus", event),
10315
10318
  onBlur: (event) => this.$emit("blur", event),
@@ -10436,7 +10439,7 @@ const VTooltip = defineComponent({
10436
10439
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
10437
10440
  ...this.text !== void 0 ? { "^text": this.text } : {},
10438
10441
  ...this.placement !== void 0 ? { "^placement": this.placement } : {},
10439
- ...this.open !== void 0 ? { "^open": this.open } : {},
10442
+ ...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
10440
10443
  onClick: (event) => this.$emit("click", event),
10441
10444
  onFocus: (event) => this.$emit("focus", event),
10442
10445
  onBlur: (event) => this.$emit("blur", event),
@@ -10576,9 +10579,9 @@ const VTreeItem = defineComponent({
10576
10579
  class: "vvd-component",
10577
10580
  ...this.icon !== void 0 ? { "^icon": this.icon } : {},
10578
10581
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
10579
- ...this.expanded !== void 0 ? { "^expanded": this.expanded } : {},
10580
- ...this.selected !== void 0 ? { "^selected": this.selected } : {},
10581
- ...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
10582
+ ...this.expanded !== void 0 && this.expanded !== false ? { "^expanded": this.expanded } : {},
10583
+ ...this.selected !== void 0 && this.selected !== false ? { "^selected": this.selected } : {},
10584
+ ...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
10582
10585
  ...this.text !== void 0 ? { "^text": this.text } : {},
10583
10586
  onClick: (event) => this.$emit("click", event),
10584
10587
  onFocus: (event) => this.$emit("focus", event),
@@ -10687,7 +10690,7 @@ const VTreeView = defineComponent({
10687
10690
  ref: "element",
10688
10691
  class: "vvd-component",
10689
10692
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
10690
- ...this.renderCollapsedNodes !== void 0 ? { "^render-collapsed-nodes": this.renderCollapsedNodes } : {},
10693
+ ...this.renderCollapsedNodes !== void 0 && this.renderCollapsedNodes !== false ? { "^render-collapsed-nodes": this.renderCollapsedNodes } : {},
10691
10694
  onClick: (event) => this.$emit("click", event),
10692
10695
  onFocus: (event) => this.$emit("focus", event),
10693
10696
  onBlur: (event) => this.$emit("blur", event),
@@ -10836,8 +10839,8 @@ const VVideoPlayer = defineComponent({
10836
10839
  ...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
10837
10840
  ...this.poster !== void 0 ? { "^poster": this.poster } : {},
10838
10841
  ...this.src !== void 0 ? { "^src": this.src } : {},
10839
- ...this.autoplay !== void 0 ? { "^autoplay": this.autoplay } : {},
10840
- ...this.loop !== void 0 ? { "^loop": this.loop } : {},
10842
+ ...this.autoplay !== void 0 && this.autoplay !== false ? { "^autoplay": this.autoplay } : {},
10843
+ ...this.loop !== void 0 && this.loop !== false ? { "^loop": this.loop } : {},
10841
10844
  ...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
10842
10845
  ...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
10843
10846
  onClick: (event) => this.$emit("click", event),
@@ -12082,17 +12085,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
12082
12085
  return Icon2;
12083
12086
  })(Icon || {});
12084
12087
 
12085
- const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n}\n";
12088
+ const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n}\n";
12086
12089
 
12087
- const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n}\n";
12090
+ const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n}\n";
12088
12091
 
12089
12092
  const fontsSpeziaVariableCss = "@font-face {\n font-family: SpeziaCompleteVariableUpright;\n font-stretch: 50% 200%;\n font-weight: 1 1000;\n font-display: block;\n src: url(\"https://fonts.resources.vonage.com/fonts/v2/SpeziaCompleteVariableUprightWeb.woff2\") format(\"woff2\");\n}\n@font-face {\n font-family: SpeziaMonoCompleteVariable;\n font-stretch: 50% 200%;\n font-weight: 1 1000;\n font-display: block;\n src: url(\"https://fonts.resources.vonage.com/fonts/v2/SpeziaMonoCompleteVariableWeb.woff2\") format(\"woff2\");\n}\n.vvd-root {\n --vvd-typography-headline: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 4.125) / 1.3333333333333333\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-subtitle: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 3.25) / 1.3076923076923077\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-1: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 2.5) / 1.3\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-2: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 2) / 1.375\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-3: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 1.625) / 1.3846153846153846\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-4: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 1.25) / 1.4\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.875) / 1.4285714285714286\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-bold: 600 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.875) / 1.4285714285714286\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-code: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.875) / 1.4285714285714286\n \tSpeziaMonoCompleteVariable;\n --vvd-typography-base-condensed: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.75) / 1.3333333333333333\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-condensed-bold: 600 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.75) / 1.3333333333333333\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-extended: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px)) / 1.5\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-extended-bold: 600 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px)) / 1.5\n \tSpeziaCompleteVariableUpright;\n}\n";
12090
12093
 
12091
- const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n.vvd-root, ::part(vvd-root),\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --_vvd3--vvd-color-neutral-50: var(\n \t--vvd-color-neutral-50\n );\n}\n\n.vvd-component:not(.vvd-theme-alternate) {\n --vvd-color-neutral-50: var(--_vvd3--vvd-color-neutral-50);\n}\n";
12094
+ const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n.vvd-root, ::part(vvd-root),\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --_vvd3--vvd-color-neutral-50: var(\n \t--vvd-color-neutral-50\n );\n}\n\n.vvd-component:not(.vvd-theme-alternate) {\n --vvd-color-neutral-50: var(--_vvd3--vvd-color-neutral-50);\n}\n";
12092
12095
 
12093
- const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n.vvd-root {\n color-scheme: var(--vvd-color-scheme);\n background-color: var(--vvd-color-canvas);\n color: var(--vvd-color-canvas-text);\n}\n";
12096
+ const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n.vvd-root {\n color-scheme: var(--vvd-color-scheme);\n background-color: var(--vvd-color-canvas);\n color: var(--vvd-color-canvas-text);\n}\n";
12094
12097
 
12095
- const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Tue, 02 Jul 2024 08:24:07 GMT\n */\n.vvd-root:root {\n --vvd-size-font-scale-base: 1rem;\n font-size: unset;\n}\n.vvd-root:root > body {\n font: var(--vvd-typography-base);\n font-feature-settings: \"kern\"; /* turns on kerning */\n text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\n -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */\n -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */\n}\n.vvd-root:not(:root) {\n font: var(--vvd-typography-base);\n font-feature-settings: \"kern\"; /* turns on kerning */\n text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\n -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */\n -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */\n}\n.vvd-root p,\n.vvd-root .font-base {\n font: var(--vvd-typography-base);\n margin-block: 16px;\n}\n.vvd-root p.tight,\n.vvd-root .font-base.tight {\n margin-block: 0;\n}\n.vvd-root .font-base-bold {\n font: var(--vvd-typography-base-bold);\n}\n.vvd-root .font-base-condensed {\n font: var(--vvd-typography-base-condensed);\n}\n.vvd-root .font-base-condensed-bold {\n font: var(--vvd-typography-base-condensed-bold);\n}\n.vvd-root .font-base-extended {\n font: var(--vvd-typography-base-extended);\n}\n.vvd-root .font-base-extended-bold {\n font: var(--vvd-typography-base-extended-bold);\n}\n.vvd-root .font-base-code {\n font: var(--vvd-typography-base-code);\n}\n.vvd-root b, .vvd-root strong {\n font-weight: 600;\n}\n.vvd-root pre, .vvd-root var, .vvd-root code, .vvd-root kbd, .vvd-root samp {\n font: var(--vvd-typography-base-code);\n}\n.vvd-root .headline {\n font: var(--vvd-typography-headline);\n margin-block: 40px;\n}\n.vvd-root .subtitle {\n font: var(--vvd-typography-subtitle);\n margin-block: 40px;\n}\n.vvd-root h1,\n.vvd-root .heading1 {\n font: var(--vvd-typography-heading-1);\n margin-block: 32px;\n}\n.vvd-root h2,\n.vvd-root .heading2 {\n font: var(--vvd-typography-heading-2);\n margin-block: 32px;\n}\n.vvd-root h3,\n.vvd-root .heading3 {\n font: var(--vvd-typography-heading-3);\n margin-block: 24px;\n}\n.vvd-root h4,\n.vvd-root .heading4 {\n font: var(--vvd-typography-heading-4);\n margin-block: 24px;\n}\n.vvd-root .headline b, .vvd-root .headline strong,\n.vvd-root .subtitle b,\n.vvd-root .subtitle strong,\n.vvd-root h1 b,\n.vvd-root h1 strong,\n.vvd-root .heading1 b,\n.vvd-root .heading1 strong,\n.vvd-root h2 b,\n.vvd-root h2 strong,\n.vvd-root .heading2 b,\n.vvd-root .heading2 strong,\n.vvd-root h3 b,\n.vvd-root h3 strong,\n.vvd-root .heading3 b,\n.vvd-root .heading3 strong,\n.vvd-root h4 b,\n.vvd-root h4 strong,\n.vvd-root .heading4 b,\n.vvd-root .heading4 strong {\n font-weight: 500;\n}\n.vvd-root .headline.tight,\n.vvd-root .subtitle.tight,\n.vvd-root h1.tight,\n.vvd-root .heading1.tight,\n.vvd-root h2.tight,\n.vvd-root .heading2.tight,\n.vvd-root h3.tight,\n.vvd-root .heading3.tight,\n.vvd-root h4.tight,\n.vvd-root .heading4.tight {\n margin-block: 0;\n}\n.vvd-root small,\n.vvd-root figcaption {\n font: var(--vvd-typography-base-condensed);\n}\n.vvd-root sub,\n.vvd-root sup {\n font: var(--vvd-typography-base-condensed);\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n.vvd-root sub {\n bottom: -0.25em;\n}\n.vvd-root sup {\n top: -0.5em;\n}\n";
12098
+ const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Thu, 11 Jul 2024 10:35:07 GMT\n */\n.vvd-root:root {\n --vvd-size-font-scale-base: 1rem;\n font-size: unset;\n}\n.vvd-root:root > body {\n font: var(--vvd-typography-base);\n font-feature-settings: \"kern\"; /* turns on kerning */\n text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\n -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */\n -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */\n}\n.vvd-root:not(:root) {\n font: var(--vvd-typography-base);\n font-feature-settings: \"kern\"; /* turns on kerning */\n text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\n -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */\n -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */\n}\n.vvd-root p,\n.vvd-root .font-base {\n font: var(--vvd-typography-base);\n margin-block: 16px;\n}\n.vvd-root p.tight,\n.vvd-root .font-base.tight {\n margin-block: 0;\n}\n.vvd-root .font-base-bold {\n font: var(--vvd-typography-base-bold);\n}\n.vvd-root .font-base-condensed {\n font: var(--vvd-typography-base-condensed);\n}\n.vvd-root .font-base-condensed-bold {\n font: var(--vvd-typography-base-condensed-bold);\n}\n.vvd-root .font-base-extended {\n font: var(--vvd-typography-base-extended);\n}\n.vvd-root .font-base-extended-bold {\n font: var(--vvd-typography-base-extended-bold);\n}\n.vvd-root .font-base-code {\n font: var(--vvd-typography-base-code);\n}\n.vvd-root b, .vvd-root strong {\n font-weight: 600;\n}\n.vvd-root pre, .vvd-root var, .vvd-root code, .vvd-root kbd, .vvd-root samp {\n font: var(--vvd-typography-base-code);\n}\n.vvd-root .headline {\n font: var(--vvd-typography-headline);\n margin-block: 40px;\n}\n.vvd-root .subtitle {\n font: var(--vvd-typography-subtitle);\n margin-block: 40px;\n}\n.vvd-root h1,\n.vvd-root .heading1 {\n font: var(--vvd-typography-heading-1);\n margin-block: 32px;\n}\n.vvd-root h2,\n.vvd-root .heading2 {\n font: var(--vvd-typography-heading-2);\n margin-block: 32px;\n}\n.vvd-root h3,\n.vvd-root .heading3 {\n font: var(--vvd-typography-heading-3);\n margin-block: 24px;\n}\n.vvd-root h4,\n.vvd-root .heading4 {\n font: var(--vvd-typography-heading-4);\n margin-block: 24px;\n}\n.vvd-root .headline b, .vvd-root .headline strong,\n.vvd-root .subtitle b,\n.vvd-root .subtitle strong,\n.vvd-root h1 b,\n.vvd-root h1 strong,\n.vvd-root .heading1 b,\n.vvd-root .heading1 strong,\n.vvd-root h2 b,\n.vvd-root h2 strong,\n.vvd-root .heading2 b,\n.vvd-root .heading2 strong,\n.vvd-root h3 b,\n.vvd-root h3 strong,\n.vvd-root .heading3 b,\n.vvd-root .heading3 strong,\n.vvd-root h4 b,\n.vvd-root h4 strong,\n.vvd-root .heading4 b,\n.vvd-root .heading4 strong {\n font-weight: 500;\n}\n.vvd-root .headline.tight,\n.vvd-root .subtitle.tight,\n.vvd-root h1.tight,\n.vvd-root .heading1.tight,\n.vvd-root h2.tight,\n.vvd-root .heading2.tight,\n.vvd-root h3.tight,\n.vvd-root .heading3.tight,\n.vvd-root h4.tight,\n.vvd-root .heading4.tight {\n margin-block: 0;\n}\n.vvd-root small,\n.vvd-root figcaption {\n font: var(--vvd-typography-base-condensed);\n}\n.vvd-root sub,\n.vvd-root sup {\n font: var(--vvd-typography-base-condensed);\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n.vvd-root sub {\n bottom: -0.25em;\n}\n.vvd-root sup {\n top: -0.5em;\n}\n";
12096
12099
 
12097
12100
  const theme = {
12098
12101
  name: "core/theme",