@vonage/vivid-vue 3.60.0 → 4.0.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/generated/components/VBanner.vue2.d.ts +3 -3
- package/generated/components/VBanner.vue3.d.ts +3 -3
- package/generated/components/VButton.vue2.d.ts +2 -19
- package/generated/components/VButton.vue3.d.ts +2 -19
- package/generated/components/VCheckbox.vue2.d.ts +4 -36
- package/generated/components/VCheckbox.vue3.d.ts +4 -36
- package/generated/components/VCombobox.vue2.d.ts +2 -19
- package/generated/components/VCombobox.vue3.d.ts +2 -19
- package/generated/components/VDataGridCell.vue2.d.ts +3 -3
- package/generated/components/VDataGridCell.vue3.d.ts +3 -3
- package/generated/components/VDatePicker.vue2.d.ts +4 -19
- package/generated/components/VDatePicker.vue3.d.ts +4 -19
- package/generated/components/VDateRangePicker.vue2.d.ts +2 -63
- package/generated/components/VDateRangePicker.vue3.d.ts +2 -63
- package/generated/components/VFab.vue2.d.ts +2 -19
- package/generated/components/VFab.vue3.d.ts +2 -19
- package/generated/components/VFilePicker.vue2.d.ts +2 -19
- package/generated/components/VFilePicker.vue3.d.ts +2 -19
- package/generated/components/VNumberField.vue2.d.ts +2 -19
- package/generated/components/VNumberField.vue3.d.ts +2 -19
- package/generated/components/VOption.vue2.d.ts +0 -17
- package/generated/components/VOption.vue3.d.ts +0 -17
- package/generated/components/VRadio.vue2.d.ts +4 -36
- package/generated/components/VRadio.vue3.d.ts +4 -36
- package/generated/components/VRangeSlider.vue2.d.ts +2 -65
- package/generated/components/VRangeSlider.vue3.d.ts +2 -65
- package/generated/components/VSelect.vue2.d.ts +2 -19
- package/generated/components/VSelect.vue3.d.ts +2 -19
- package/generated/components/VSlider.vue2.d.ts +2 -19
- package/generated/components/VSlider.vue3.d.ts +2 -19
- package/generated/components/VSwitch.vue2.d.ts +4 -36
- package/generated/components/VSwitch.vue3.d.ts +4 -36
- package/generated/components/VTab.vue2.d.ts +3 -3
- package/generated/components/VTab.vue3.d.ts +3 -3
- package/generated/components/VTextArea.vue2.d.ts +2 -19
- package/generated/components/VTextArea.vue3.d.ts +2 -19
- package/generated/components/VTextField.vue2.d.ts +2 -19
- package/generated/components/VTextField.vue3.d.ts +2 -19
- package/generated/components/VTimePicker.vue2.d.ts +2 -19
- package/generated/components/VTimePicker.vue3.d.ts +2 -19
- package/index.cjs +679 -881
- package/index.js +679 -881
- package/package.json +2 -2
- package/web-types.json +6 -198
package/index.cjs
CHANGED
|
@@ -115,8 +115,8 @@ const VAccordion = vue.defineComponent({
|
|
|
115
115
|
{
|
|
116
116
|
ref: "element",
|
|
117
117
|
class: "vvd-component",
|
|
118
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
119
|
-
...this.expandMode !== void 0 ? { "expand-mode": this.expandMode } : {},
|
|
118
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
119
|
+
...this.expandMode !== void 0 ? { "^expand-mode": this.expandMode } : {},
|
|
120
120
|
onClick: (event) => this.$emit("click", event),
|
|
121
121
|
onFocus: (event) => this.$emit("focus", event),
|
|
122
122
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -291,16 +291,16 @@ const VAccordionItem = vue.defineComponent({
|
|
|
291
291
|
{
|
|
292
292
|
ref: "element",
|
|
293
293
|
class: "vvd-component",
|
|
294
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
295
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
296
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
297
|
-
...this.headingLevel !== void 0 ? { "heading-level": this.headingLevel } : {},
|
|
298
|
-
...this.expanded !== void 0 ? { expanded: this.expanded } : {},
|
|
299
|
-
...this.id !== void 0 ? { id: this.id } : {},
|
|
300
|
-
...this.heading !== void 0 ? { heading: this.heading } : {},
|
|
301
|
-
...this.noIndicator !== void 0 ? { "no-indicator": this.noIndicator } : {},
|
|
302
|
-
...this.meta !== void 0 ? { meta: this.meta } : {},
|
|
303
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
294
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
295
|
+
...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
|
|
296
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
297
|
+
...this.headingLevel !== void 0 ? { "^heading-level": this.headingLevel } : {},
|
|
298
|
+
...this.expanded !== void 0 ? { "^expanded": this.expanded } : {},
|
|
299
|
+
...this.id !== void 0 ? { "^id": this.id } : {},
|
|
300
|
+
...this.heading !== void 0 ? { "^heading": this.heading } : {},
|
|
301
|
+
...this.noIndicator !== void 0 ? { "^no-indicator": this.noIndicator } : {},
|
|
302
|
+
...this.meta !== void 0 ? { "^meta": this.meta } : {},
|
|
303
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
304
304
|
onClick: (event) => this.$emit("click", event),
|
|
305
305
|
onFocus: (event) => this.$emit("focus", event),
|
|
306
306
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -420,12 +420,12 @@ const VActionGroup = vue.defineComponent({
|
|
|
420
420
|
{
|
|
421
421
|
ref: "element",
|
|
422
422
|
class: "vvd-component",
|
|
423
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
424
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
425
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
426
|
-
...this.tight !== void 0 ? { tight: this.tight } : {},
|
|
427
|
-
...this.role !== void 0 ? { role: this.role } : {},
|
|
428
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
423
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
424
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
425
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
426
|
+
...this.tight !== void 0 ? { "^tight": this.tight } : {},
|
|
427
|
+
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
428
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
429
429
|
onClick: (event) => this.$emit("click", event),
|
|
430
430
|
onFocus: (event) => this.$emit("focus", event),
|
|
431
431
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -605,17 +605,17 @@ const VAlert = vue.defineComponent({
|
|
|
605
605
|
{
|
|
606
606
|
ref: "element",
|
|
607
607
|
class: "vvd-component",
|
|
608
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
609
|
-
...this.dismissButtonAriaLabel !== void 0 ? { "dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
610
|
-
...this.removable !== void 0 ? { removable: this.removable } : {},
|
|
611
|
-
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
612
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
613
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
614
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
615
|
-
...this.timeoutms !== void 0 ? { timeoutms: this.timeoutms } : {},
|
|
616
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
617
|
-
...this.strategy !== void 0 ? { strategy: this.strategy } : {},
|
|
618
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
608
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
609
|
+
...this.dismissButtonAriaLabel !== void 0 ? { "^dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
610
|
+
...this.removable !== void 0 ? { "^removable": this.removable } : {},
|
|
611
|
+
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
612
|
+
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
613
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
614
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
615
|
+
...this.timeoutms !== void 0 ? { "^timeoutms": this.timeoutms } : {},
|
|
616
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
617
|
+
...this.strategy !== void 0 ? { "^strategy": this.strategy } : {},
|
|
618
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
619
619
|
onClick: (event) => this.$emit("click", event),
|
|
620
620
|
onFocus: (event) => this.$emit("focus", event),
|
|
621
621
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -783,18 +783,18 @@ const VAudioPlayer = vue.defineComponent({
|
|
|
783
783
|
{
|
|
784
784
|
ref: "element",
|
|
785
785
|
class: "vvd-component",
|
|
786
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
787
|
-
...this.playButtonAriaLabel !== void 0 ? { "play-button-aria-label": this.playButtonAriaLabel } : {},
|
|
788
|
-
...this.pauseButtonAriaLabel !== void 0 ? { "pause-button-aria-label": this.pauseButtonAriaLabel } : {},
|
|
789
|
-
...this.sliderAriaLabel !== void 0 ? { "slider-aria-label": this.sliderAriaLabel } : {},
|
|
790
|
-
...this.skipForwardAriaLabel !== void 0 ? { "skip-forward-aria-label": this.skipForwardAriaLabel } : {},
|
|
791
|
-
...this.skipBackwardAriaLabel !== void 0 ? { "skip-backward-aria-label": this.skipBackwardAriaLabel } : {},
|
|
792
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
793
|
-
...this.src !== void 0 ? { src: this.src } : {},
|
|
794
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
795
|
-
...this.notime !== void 0 ? { notime: this.notime } : {},
|
|
796
|
-
...this.skipBy !== void 0 ? { "skip-by": this.skipBy } : {},
|
|
797
|
-
...this.playbackRates !== void 0 ? { "playback-rates": this.playbackRates } : {},
|
|
786
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
787
|
+
...this.playButtonAriaLabel !== void 0 ? { "^play-button-aria-label": this.playButtonAriaLabel } : {},
|
|
788
|
+
...this.pauseButtonAriaLabel !== void 0 ? { "^pause-button-aria-label": this.pauseButtonAriaLabel } : {},
|
|
789
|
+
...this.sliderAriaLabel !== void 0 ? { "^slider-aria-label": this.sliderAriaLabel } : {},
|
|
790
|
+
...this.skipForwardAriaLabel !== void 0 ? { "^skip-forward-aria-label": this.skipForwardAriaLabel } : {},
|
|
791
|
+
...this.skipBackwardAriaLabel !== void 0 ? { "^skip-backward-aria-label": this.skipBackwardAriaLabel } : {},
|
|
792
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
793
|
+
...this.src !== void 0 ? { "^src": this.src } : {},
|
|
794
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
795
|
+
...this.notime !== void 0 ? { "^notime": this.notime } : {},
|
|
796
|
+
...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
|
|
797
|
+
...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
|
|
798
798
|
onClick: (event) => this.$emit("click", event),
|
|
799
799
|
onFocus: (event) => this.$emit("focus", event),
|
|
800
800
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -930,13 +930,13 @@ const VAvatar = vue.defineComponent({
|
|
|
930
930
|
{
|
|
931
931
|
ref: "element",
|
|
932
932
|
class: "vvd-component",
|
|
933
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
934
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
935
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
936
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
937
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
938
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
939
|
-
...this.initials !== void 0 ? { initials: this.initials } : {},
|
|
933
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
934
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
935
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
936
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
937
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
938
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
939
|
+
...this.initials !== void 0 ? { "^initials": this.initials } : {},
|
|
940
940
|
onClick: (event) => this.$emit("click", event),
|
|
941
941
|
onFocus: (event) => this.$emit("focus", event),
|
|
942
942
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -1071,13 +1071,13 @@ const VBadge = vue.defineComponent({
|
|
|
1071
1071
|
{
|
|
1072
1072
|
ref: "element",
|
|
1073
1073
|
class: "vvd-component",
|
|
1074
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
1075
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
1076
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1077
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
1078
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
1079
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
1080
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
1074
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
1075
|
+
...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
|
|
1076
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1077
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
1078
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
1079
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
1080
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1081
1081
|
onClick: (event) => this.$emit("click", event),
|
|
1082
1082
|
onFocus: (event) => this.$emit("focus", event),
|
|
1083
1083
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -1115,7 +1115,7 @@ const VBanner = vue.defineComponent({
|
|
|
1115
1115
|
actionHref: { type: String, default: void 0 },
|
|
1116
1116
|
actionText: { type: String, default: void 0 },
|
|
1117
1117
|
removable: { type: Boolean, default: void 0 },
|
|
1118
|
-
ariaLive: { type:
|
|
1118
|
+
ariaLive: { type: String, default: void 0 },
|
|
1119
1119
|
text: { type: String, default: void 0 },
|
|
1120
1120
|
connotation: {
|
|
1121
1121
|
type: String,
|
|
@@ -1206,16 +1206,16 @@ const VBanner = vue.defineComponent({
|
|
|
1206
1206
|
{
|
|
1207
1207
|
ref: "element",
|
|
1208
1208
|
class: "vvd-component",
|
|
1209
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
1210
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1211
|
-
...this.dismissAriaLabel !== void 0 ? { "dismiss-aria-label": this.dismissAriaLabel } : {},
|
|
1212
|
-
...this.role !== void 0 ? { role: this.role } : {},
|
|
1213
|
-
...this.actionHref !== void 0 ? { "action-href": this.actionHref } : {},
|
|
1214
|
-
...this.actionText !== void 0 ? { "action-text": this.actionText } : {},
|
|
1215
|
-
...this.removable !== void 0 ? { removable: this.removable } : {},
|
|
1216
|
-
...this.ariaLive !== void 0 ? { "aria-live": this.ariaLive } : {},
|
|
1217
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
1218
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
1209
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
1210
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1211
|
+
...this.dismissAriaLabel !== void 0 ? { "^dismiss-aria-label": this.dismissAriaLabel } : {},
|
|
1212
|
+
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
1213
|
+
...this.actionHref !== void 0 ? { "^action-href": this.actionHref } : {},
|
|
1214
|
+
...this.actionText !== void 0 ? { "^action-text": this.actionText } : {},
|
|
1215
|
+
...this.removable !== void 0 ? { "^removable": this.removable } : {},
|
|
1216
|
+
...this.ariaLive !== void 0 ? { "^aria-live": this.ariaLive } : {},
|
|
1217
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1218
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
1219
1219
|
onClick: (event) => this.$emit("click", event),
|
|
1220
1220
|
onFocus: (event) => this.$emit("focus", event),
|
|
1221
1221
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -1311,7 +1311,7 @@ const VBreadcrumb = vue.defineComponent({
|
|
|
1311
1311
|
{
|
|
1312
1312
|
ref: "element",
|
|
1313
1313
|
class: "vvd-component",
|
|
1314
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1314
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1315
1315
|
onClick: (event) => this.$emit("click", event),
|
|
1316
1316
|
onFocus: (event) => this.$emit("focus", event),
|
|
1317
1317
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -1451,16 +1451,16 @@ const VBreadcrumbItem = vue.defineComponent({
|
|
|
1451
1451
|
{
|
|
1452
1452
|
ref: "element",
|
|
1453
1453
|
class: "vvd-component",
|
|
1454
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1455
|
-
...this.download !== void 0 ? { download: this.download } : {},
|
|
1456
|
-
...this.href !== void 0 ? { href: this.href } : {},
|
|
1457
|
-
...this.hreflang !== void 0 ? { hreflang: this.hreflang } : {},
|
|
1458
|
-
...this.ping !== void 0 ? { ping: this.ping } : {},
|
|
1459
|
-
...this.referrerpolicy !== void 0 ? { referrerpolicy: this.referrerpolicy } : {},
|
|
1460
|
-
...this.rel !== void 0 ? { rel: this.rel } : {},
|
|
1461
|
-
...this.target !== void 0 ? { target: this.target } : {},
|
|
1462
|
-
...this.type !== void 0 ? { type: this.type } : {},
|
|
1463
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
1454
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1455
|
+
...this.download !== void 0 ? { "^download": this.download } : {},
|
|
1456
|
+
...this.href !== void 0 ? { "^href": this.href } : {},
|
|
1457
|
+
...this.hreflang !== void 0 ? { "^hreflang": this.hreflang } : {},
|
|
1458
|
+
...this.ping !== void 0 ? { "^ping": this.ping } : {},
|
|
1459
|
+
...this.referrerpolicy !== void 0 ? { "^referrerpolicy": this.referrerpolicy } : {},
|
|
1460
|
+
...this.rel !== void 0 ? { "^rel": this.rel } : {},
|
|
1461
|
+
...this.target !== void 0 ? { "^target": this.target } : {},
|
|
1462
|
+
...this.type !== void 0 ? { "^type": this.type } : {},
|
|
1463
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1464
1464
|
onClick: (event) => this.$emit("click", event),
|
|
1465
1465
|
onFocus: (event) => this.$emit("focus", event),
|
|
1466
1466
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -1504,11 +1504,6 @@ const VButton = vue.defineComponent({
|
|
|
1504
1504
|
* only when the `value` property has not been explicitly set.
|
|
1505
1505
|
*/
|
|
1506
1506
|
initialValue: { type: String, default: void 0 },
|
|
1507
|
-
/**
|
|
1508
|
-
* The initial value of the form. This value sets the `value` property
|
|
1509
|
-
* only when the `value` property has not been explicitly set.
|
|
1510
|
-
*/
|
|
1511
|
-
value: { type: String, default: void 0 },
|
|
1512
1507
|
/**
|
|
1513
1508
|
* The current value of the element. This property serves as a mechanism
|
|
1514
1509
|
* to set the `value` property through both property assignment and the
|
|
@@ -1516,7 +1511,7 @@ const VButton = vue.defineComponent({
|
|
|
1516
1511
|
* in UI libraries that bind data through the .setAttribute() API
|
|
1517
1512
|
* and don't support IDL attribute binding.
|
|
1518
1513
|
*/
|
|
1519
|
-
|
|
1514
|
+
value: { type: String, default: void 0 },
|
|
1520
1515
|
/**
|
|
1521
1516
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
1522
1517
|
*/
|
|
@@ -1693,8 +1688,8 @@ const VButton = vue.defineComponent({
|
|
|
1693
1688
|
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
1694
1689
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1695
1690
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
1696
|
-
...this.
|
|
1697
|
-
...this.
|
|
1691
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
1692
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
1698
1693
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
1699
1694
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
1700
1695
|
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
@@ -1723,9 +1718,6 @@ const VButton = vue.defineComponent({
|
|
|
1723
1718
|
...this.target !== void 0 ? { target: this.target } : {}
|
|
1724
1719
|
},
|
|
1725
1720
|
class: "vvd-component",
|
|
1726
|
-
domProps: {
|
|
1727
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
1728
|
-
},
|
|
1729
1721
|
on: {
|
|
1730
1722
|
click: (event) => this.$emit("click", event),
|
|
1731
1723
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -1747,39 +1739,38 @@ const VButton = vue.defineComponent({
|
|
|
1747
1739
|
{
|
|
1748
1740
|
ref: "element",
|
|
1749
1741
|
class: "vvd-component",
|
|
1750
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
1751
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
1752
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1753
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
1754
|
-
...this.initialValue !== void 0 ? { "
|
|
1755
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
1756
|
-
...this.
|
|
1757
|
-
...this.
|
|
1758
|
-
...this.
|
|
1759
|
-
...this.
|
|
1760
|
-
...this.
|
|
1761
|
-
...this.
|
|
1762
|
-
...this.
|
|
1763
|
-
...this.
|
|
1764
|
-
...this.
|
|
1765
|
-
...this.
|
|
1766
|
-
...this.
|
|
1767
|
-
...this.
|
|
1768
|
-
...this.
|
|
1769
|
-
...this.
|
|
1770
|
-
...this.
|
|
1771
|
-
...this.
|
|
1772
|
-
...this.
|
|
1773
|
-
...this.
|
|
1774
|
-
...this.
|
|
1775
|
-
...this.
|
|
1776
|
-
...this.
|
|
1777
|
-
...this.
|
|
1778
|
-
...this.
|
|
1779
|
-
...this.
|
|
1780
|
-
...this.
|
|
1781
|
-
...this.
|
|
1782
|
-
...this.target !== void 0 ? { target: this.target } : {},
|
|
1742
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
1743
|
+
...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
|
|
1744
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1745
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
1746
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
1747
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
1748
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
1749
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
1750
|
+
...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
|
|
1751
|
+
...this.form !== void 0 ? { "^form": this.form } : {},
|
|
1752
|
+
...this.formaction !== void 0 ? { "^formaction": this.formaction } : {},
|
|
1753
|
+
...this.formenctype !== void 0 ? { "^formenctype": this.formenctype } : {},
|
|
1754
|
+
...this.formmethod !== void 0 ? { "^formmethod": this.formmethod } : {},
|
|
1755
|
+
...this.formnovalidate !== void 0 ? { "^formnovalidate": this.formnovalidate } : {},
|
|
1756
|
+
...this.formtarget !== void 0 ? { "^formtarget": this.formtarget } : {},
|
|
1757
|
+
...this.type !== void 0 ? { "^type": this.type } : {},
|
|
1758
|
+
...this.title !== void 0 ? { "^title": this.title } : {},
|
|
1759
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
1760
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
1761
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
1762
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
1763
|
+
...this.stacked !== void 0 ? { "^stacked": this.stacked } : {},
|
|
1764
|
+
...this.pending !== void 0 ? { "^pending": this.pending } : {},
|
|
1765
|
+
...this.active !== void 0 ? { "^active": this.active } : {},
|
|
1766
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
1767
|
+
...this.href !== void 0 ? { "^href": this.href } : {},
|
|
1768
|
+
...this.download !== void 0 ? { "^download": this.download } : {},
|
|
1769
|
+
...this.hreflang !== void 0 ? { "^hreflang": this.hreflang } : {},
|
|
1770
|
+
...this.ping !== void 0 ? { "^ping": this.ping } : {},
|
|
1771
|
+
...this.referrerpolicy !== void 0 ? { "^referrerpolicy": this.referrerpolicy } : {},
|
|
1772
|
+
...this.rel !== void 0 ? { "^rel": this.rel } : {},
|
|
1773
|
+
...this.target !== void 0 ? { "^target": this.target } : {},
|
|
1783
1774
|
onClick: (event) => this.$emit("click", event),
|
|
1784
1775
|
onFocus: (event) => this.$emit("focus", event),
|
|
1785
1776
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -1935,11 +1926,11 @@ const VCalendar = vue.defineComponent({
|
|
|
1935
1926
|
{
|
|
1936
1927
|
ref: "element",
|
|
1937
1928
|
class: "vvd-component",
|
|
1938
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1939
|
-
...this.datetime !== void 0 ? { datetime: this.datetime } : {},
|
|
1940
|
-
...this.startDay !== void 0 ? { "start-day": this.startDay } : {},
|
|
1941
|
-
...this.locales !== void 0 ? { locales: this.locales } : {},
|
|
1942
|
-
...this.hour12 !== void 0 ? { hour12: this.hour12 } : {},
|
|
1929
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1930
|
+
...this.datetime !== void 0 ? { ".datetime": this.datetime } : {},
|
|
1931
|
+
...this.startDay !== void 0 ? { "^start-day": this.startDay } : {},
|
|
1932
|
+
...this.locales !== void 0 ? { ".locales": this.locales } : {},
|
|
1933
|
+
...this.hour12 !== void 0 ? { "^hour12": this.hour12 } : {},
|
|
1943
1934
|
onClick: (event) => this.$emit("click", event),
|
|
1944
1935
|
onFocus: (event) => this.$emit("focus", event),
|
|
1945
1936
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2089,14 +2080,14 @@ const VCalendarEvent = vue.defineComponent({
|
|
|
2089
2080
|
{
|
|
2090
2081
|
ref: "element",
|
|
2091
2082
|
class: "vvd-component",
|
|
2092
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2093
|
-
...this.heading !== void 0 ? { heading: this.heading } : {},
|
|
2094
|
-
...this.description !== void 0 ? { description: this.description } : {},
|
|
2095
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
2096
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
2097
|
-
...this.overlapCount !== void 0 ? { "overlap-count": this.overlapCount } : {},
|
|
2098
|
-
...this.start !== void 0 ? { start: this.start } : {},
|
|
2099
|
-
...this.duration !== void 0 ? { duration: this.duration } : {},
|
|
2083
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
2084
|
+
...this.heading !== void 0 ? { "^heading": this.heading } : {},
|
|
2085
|
+
...this.description !== void 0 ? { "^description": this.description } : {},
|
|
2086
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
2087
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
2088
|
+
...this.overlapCount !== void 0 ? { "^overlap-count": this.overlapCount } : {},
|
|
2089
|
+
...this.start !== void 0 ? { "^start": this.start } : {},
|
|
2090
|
+
...this.duration !== void 0 ? { "^duration": this.duration } : {},
|
|
2100
2091
|
onClick: (event) => this.$emit("click", event),
|
|
2101
2092
|
onFocus: (event) => this.$emit("focus", event),
|
|
2102
2093
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2240,13 +2231,13 @@ const VCard = vue.defineComponent({
|
|
|
2240
2231
|
{
|
|
2241
2232
|
ref: "element",
|
|
2242
2233
|
class: "vvd-component",
|
|
2243
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2244
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
2245
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
2246
|
-
...this.subtitle !== void 0 ? { subtitle: this.subtitle } : {},
|
|
2247
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
2248
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
2249
|
-
...this.elevation !== void 0 ? { elevation: this.elevation } : {},
|
|
2234
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
2235
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
2236
|
+
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
2237
|
+
...this.subtitle !== void 0 ? { "^subtitle": this.subtitle } : {},
|
|
2238
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
2239
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
2240
|
+
...this.elevation !== void 0 ? { "^elevation": this.elevation } : {},
|
|
2250
2241
|
onClick: (event) => this.$emit("click", event),
|
|
2251
2242
|
onFocus: (event) => this.$emit("focus", event),
|
|
2252
2243
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2311,11 +2302,6 @@ const VCheckbox = vue.defineComponent({
|
|
|
2311
2302
|
* only when the `value` property has not been explicitly set.
|
|
2312
2303
|
*/
|
|
2313
2304
|
initialValue: { type: String, default: void 0 },
|
|
2314
|
-
/**
|
|
2315
|
-
* The initial value of the form. This value sets the `value` property
|
|
2316
|
-
* only when the `value` property has not been explicitly set.
|
|
2317
|
-
*/
|
|
2318
|
-
value: { type: String, default: void 0 },
|
|
2319
2305
|
/**
|
|
2320
2306
|
* The current value of the element. This property serves as a mechanism
|
|
2321
2307
|
* to set the `value` property through both property assignment and the
|
|
@@ -2323,7 +2309,7 @@ const VCheckbox = vue.defineComponent({
|
|
|
2323
2309
|
* in UI libraries that bind data through the .setAttribute() API
|
|
2324
2310
|
* and don't support IDL attribute binding.
|
|
2325
2311
|
*/
|
|
2326
|
-
|
|
2312
|
+
value: { type: String, default: void 0 },
|
|
2327
2313
|
/**
|
|
2328
2314
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
2329
2315
|
*/
|
|
@@ -2336,10 +2322,6 @@ const VCheckbox = vue.defineComponent({
|
|
|
2336
2322
|
* Provides the default checkedness of the input element
|
|
2337
2323
|
*/
|
|
2338
2324
|
defaultChecked: { type: Boolean, default: void 0 },
|
|
2339
|
-
/**
|
|
2340
|
-
* Provides the default checkedness of the input element
|
|
2341
|
-
*/
|
|
2342
|
-
checked: { type: Boolean, default: void 0 },
|
|
2343
2325
|
/**
|
|
2344
2326
|
* The current checkedness of the element. This property serves as a mechanism
|
|
2345
2327
|
* to set the `checked` property through both property assignment and the
|
|
@@ -2347,7 +2329,7 @@ const VCheckbox = vue.defineComponent({
|
|
|
2347
2329
|
* in UI libraries that bind data through the .setAttribute() API
|
|
2348
2330
|
* and don't support IDL attribute binding.
|
|
2349
2331
|
*/
|
|
2350
|
-
|
|
2332
|
+
checked: { type: Boolean, default: void 0 },
|
|
2351
2333
|
/**
|
|
2352
2334
|
* The current checkedness of the element. This property serves as a mechanism
|
|
2353
2335
|
* to set the `checked` property through both property assignment and the
|
|
@@ -2431,22 +2413,18 @@ const VCheckbox = vue.defineComponent({
|
|
|
2431
2413
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
2432
2414
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2433
2415
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
2434
|
-
...this.
|
|
2435
|
-
...this.
|
|
2416
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
2417
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
2436
2418
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2437
2419
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2438
|
-
...this.
|
|
2439
|
-
...this.modelValue ?? this.
|
|
2420
|
+
...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
|
|
2421
|
+
...this.modelValue ?? this.checked !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
|
|
2440
2422
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
2441
2423
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
2442
2424
|
...this.tabindex !== void 0 ? { tabindex: this.tabindex } : {},
|
|
2443
2425
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
2444
2426
|
},
|
|
2445
2427
|
class: "vvd-component",
|
|
2446
|
-
domProps: {
|
|
2447
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {},
|
|
2448
|
-
...this.defaultChecked !== void 0 ? { defaultChecked: this.defaultChecked } : {}
|
|
2449
|
-
},
|
|
2450
2428
|
on: {
|
|
2451
2429
|
click: (event) => this.$emit("click", event),
|
|
2452
2430
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -2475,24 +2453,22 @@ const VCheckbox = vue.defineComponent({
|
|
|
2475
2453
|
{
|
|
2476
2454
|
ref: "element",
|
|
2477
2455
|
class: "vvd-component",
|
|
2478
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
2479
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
2480
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
2481
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
2482
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2483
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
2484
|
-
...this.initialValue !== void 0 ? { "
|
|
2485
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
2486
|
-
...this.
|
|
2487
|
-
...this.
|
|
2488
|
-
...this.
|
|
2489
|
-
...this.
|
|
2490
|
-
...this.
|
|
2491
|
-
...this.
|
|
2492
|
-
...this.
|
|
2493
|
-
...this.
|
|
2494
|
-
...this.tabindex !== void 0 ? { tabindex: this.tabindex } : {},
|
|
2495
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
2456
|
+
...this.successText !== void 0 ? { "^success-text": this.successText } : {},
|
|
2457
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
2458
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
2459
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
2460
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
2461
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
2462
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
2463
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
2464
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
2465
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
2466
|
+
...this.defaultChecked !== void 0 ? { "^checked": this.defaultChecked } : {},
|
|
2467
|
+
...this.modelValue ?? this.checked !== void 0 ? { "^current-checked": this.modelValue ?? this.checked } : {},
|
|
2468
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
2469
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
2470
|
+
...this.tabindex !== void 0 ? { "^tabindex": this.tabindex } : {},
|
|
2471
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
2496
2472
|
onClick: (event) => this.$emit("click", event),
|
|
2497
2473
|
onFocus: (event) => this.$emit("focus", event),
|
|
2498
2474
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2545,11 +2521,6 @@ const VCombobox = vue.defineComponent({
|
|
|
2545
2521
|
* only when the `value` property has not been explicitly set.
|
|
2546
2522
|
*/
|
|
2547
2523
|
initialValue: { type: String, default: void 0 },
|
|
2548
|
-
/**
|
|
2549
|
-
* The initial value of the form. This value sets the `value` property
|
|
2550
|
-
* only when the `value` property has not been explicitly set.
|
|
2551
|
-
*/
|
|
2552
|
-
value: { type: String, default: void 0 },
|
|
2553
2524
|
/**
|
|
2554
2525
|
* The current value of the element. This property serves as a mechanism
|
|
2555
2526
|
* to set the `value` property through both property assignment and the
|
|
@@ -2557,7 +2528,7 @@ const VCombobox = vue.defineComponent({
|
|
|
2557
2528
|
* in UI libraries that bind data through the .setAttribute() API
|
|
2558
2529
|
* and don't support IDL attribute binding.
|
|
2559
2530
|
*/
|
|
2560
|
-
|
|
2531
|
+
value: { type: String, default: void 0 },
|
|
2561
2532
|
/**
|
|
2562
2533
|
* The current value of the element. This property serves as a mechanism
|
|
2563
2534
|
* to set the `value` property through both property assignment and the
|
|
@@ -2710,8 +2681,8 @@ const VCombobox = vue.defineComponent({
|
|
|
2710
2681
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
2711
2682
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
2712
2683
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2713
|
-
...this.
|
|
2714
|
-
...this.modelValue ?? this.
|
|
2684
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
2685
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
2715
2686
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2716
2687
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2717
2688
|
...this.autocomplete !== void 0 ? { autocomplete: this.autocomplete } : {},
|
|
@@ -2724,9 +2695,6 @@ const VCombobox = vue.defineComponent({
|
|
|
2724
2695
|
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {}
|
|
2725
2696
|
},
|
|
2726
2697
|
class: "vvd-component",
|
|
2727
|
-
domProps: {
|
|
2728
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
2729
|
-
},
|
|
2730
2698
|
on: {
|
|
2731
2699
|
click: (event) => this.$emit("click", event),
|
|
2732
2700
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -2751,22 +2719,21 @@ const VCombobox = vue.defineComponent({
|
|
|
2751
2719
|
{
|
|
2752
2720
|
ref: "element",
|
|
2753
2721
|
class: "vvd-component",
|
|
2754
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
2755
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
2756
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2757
|
-
...this.initialValue !== void 0 ? { "
|
|
2758
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
2759
|
-
...this.
|
|
2760
|
-
...this.
|
|
2761
|
-
...this.
|
|
2762
|
-
...this.
|
|
2763
|
-
...this.
|
|
2764
|
-
...this.
|
|
2765
|
-
...this.
|
|
2766
|
-
...this.
|
|
2767
|
-
...this.
|
|
2768
|
-
...this.
|
|
2769
|
-
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
|
|
2722
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
2723
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
2724
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
2725
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
2726
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
2727
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
2728
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
2729
|
+
...this.autocomplete !== void 0 ? { "^autocomplete": this.autocomplete } : {},
|
|
2730
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
2731
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
2732
|
+
...this.position !== void 0 ? { "^position": this.position } : {},
|
|
2733
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
2734
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
2735
|
+
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
2736
|
+
...this.fixedDropdown !== void 0 ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
2770
2737
|
onClick: (event) => this.$emit("click", event),
|
|
2771
2738
|
onFocus: (event) => this.$emit("focus", event),
|
|
2772
2739
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2912,12 +2879,12 @@ const VDataGrid = vue.defineComponent({
|
|
|
2912
2879
|
{
|
|
2913
2880
|
ref: "element",
|
|
2914
2881
|
class: "vvd-component",
|
|
2915
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2916
|
-
...this.noTabbing !== void 0 ? { "no-tabbing": this.noTabbing } : {},
|
|
2917
|
-
...this.generateHeader !== void 0 ? { "generate-header": this.generateHeader } : {},
|
|
2918
|
-
...this.gridTemplateColumns !== void 0 ? { "grid-template-columns": this.gridTemplateColumns } : {},
|
|
2919
|
-
...this.selectionMode !== void 0 ? { "selection-mode": this.selectionMode } : {},
|
|
2920
|
-
...this.rowsData !== void 0 ? { rowsData: this.rowsData } : {},
|
|
2882
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
2883
|
+
...this.noTabbing !== void 0 ? { "^no-tabbing": this.noTabbing } : {},
|
|
2884
|
+
...this.generateHeader !== void 0 ? { "^generate-header": this.generateHeader } : {},
|
|
2885
|
+
...this.gridTemplateColumns !== void 0 ? { "^grid-template-columns": this.gridTemplateColumns } : {},
|
|
2886
|
+
...this.selectionMode !== void 0 ? { "^selection-mode": this.selectionMode } : {},
|
|
2887
|
+
...this.rowsData !== void 0 ? { ".rowsData": this.rowsData } : {},
|
|
2921
2888
|
onClick: (event) => this.$emit("click", event),
|
|
2922
2889
|
onFocus: (event) => this.$emit("focus", event),
|
|
2923
2890
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2940,10 +2907,7 @@ const VDataGridCell = vue.defineComponent({
|
|
|
2940
2907
|
/**
|
|
2941
2908
|
* Extends the data grid cell definition to hold more options.
|
|
2942
2909
|
*/
|
|
2943
|
-
columnDefinition: {
|
|
2944
|
-
type: null,
|
|
2945
|
-
default: void 0
|
|
2946
|
-
},
|
|
2910
|
+
columnDefinition: { type: Object, default: void 0 },
|
|
2947
2911
|
/**
|
|
2948
2912
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
2949
2913
|
*/
|
|
@@ -3046,7 +3010,6 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3046
3010
|
{
|
|
3047
3011
|
ref: "element",
|
|
3048
3012
|
attrs: {
|
|
3049
|
-
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {},
|
|
3050
3013
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3051
3014
|
...this.cellType !== void 0 ? { "cell-type": this.cellType } : {},
|
|
3052
3015
|
...this.gridColumn !== void 0 ? { "grid-column": this.gridColumn } : {},
|
|
@@ -3054,6 +3017,9 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3054
3017
|
...this.ariaSort !== void 0 ? { "aria-sort": this.ariaSort } : {}
|
|
3055
3018
|
},
|
|
3056
3019
|
class: "vvd-component",
|
|
3020
|
+
domProps: {
|
|
3021
|
+
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {}
|
|
3022
|
+
},
|
|
3057
3023
|
on: {
|
|
3058
3024
|
click: (event) => this.$emit("click", event),
|
|
3059
3025
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -3074,12 +3040,12 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3074
3040
|
{
|
|
3075
3041
|
ref: "element",
|
|
3076
3042
|
class: "vvd-component",
|
|
3077
|
-
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {},
|
|
3078
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3079
|
-
...this.cellType !== void 0 ? { "cell-type": this.cellType } : {},
|
|
3080
|
-
...this.gridColumn !== void 0 ? { "grid-column": this.gridColumn } : {},
|
|
3081
|
-
...this.ariaSelected !== void 0 ? { "aria-selected": this.ariaSelected } : {},
|
|
3082
|
-
...this.ariaSort !== void 0 ? { "aria-sort": this.ariaSort } : {},
|
|
3043
|
+
...this.columnDefinition !== void 0 ? { ".columnDefinition": this.columnDefinition } : {},
|
|
3044
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
3045
|
+
...this.cellType !== void 0 ? { "^cell-type": this.cellType } : {},
|
|
3046
|
+
...this.gridColumn !== void 0 ? { "^grid-column": this.gridColumn } : {},
|
|
3047
|
+
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
3048
|
+
...this.ariaSort !== void 0 ? { "^aria-sort": this.ariaSort } : {},
|
|
3083
3049
|
onClick: (event) => this.$emit("click", event),
|
|
3084
3050
|
onFocus: (event) => this.$emit("focus", event),
|
|
3085
3051
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3217,10 +3183,10 @@ const VDataGridRow = vue.defineComponent({
|
|
|
3217
3183
|
{
|
|
3218
3184
|
ref: "element",
|
|
3219
3185
|
class: "vvd-component",
|
|
3220
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3221
|
-
...this.gridTemplateColumns !== void 0 ? { "grid-template-columns": this.gridTemplateColumns } : {},
|
|
3222
|
-
...this.rowType !== void 0 ? { "row-type": this.rowType } : {},
|
|
3223
|
-
...this.ariaSelected !== void 0 ? { "aria-selected": this.ariaSelected } : {},
|
|
3186
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
3187
|
+
...this.gridTemplateColumns !== void 0 ? { "^grid-template-columns": this.gridTemplateColumns } : {},
|
|
3188
|
+
...this.rowType !== void 0 ? { "^row-type": this.rowType } : {},
|
|
3189
|
+
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
3224
3190
|
onClick: (event) => this.$emit("click", event),
|
|
3225
3191
|
onFocus: (event) => this.$emit("focus", event),
|
|
3226
3192
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3285,17 +3251,13 @@ const VDatePicker = vue.defineComponent({
|
|
|
3285
3251
|
*/
|
|
3286
3252
|
initialValue: { type: String, default: void 0 },
|
|
3287
3253
|
/**
|
|
3288
|
-
* The
|
|
3254
|
+
* The current value of the date-picker.
|
|
3289
3255
|
*/
|
|
3290
3256
|
value: { type: String, default: void 0 },
|
|
3291
|
-
/**
|
|
3292
|
-
* The initial value of the date-picker.
|
|
3293
|
-
*/
|
|
3294
|
-
modelValue: { type: String, default: void 0 },
|
|
3295
3257
|
/**
|
|
3296
3258
|
* The current value of the date-picker.
|
|
3297
3259
|
*/
|
|
3298
|
-
|
|
3260
|
+
modelValue: { type: String, default: void 0 },
|
|
3299
3261
|
/**
|
|
3300
3262
|
* Whether the date-picker is readonly.
|
|
3301
3263
|
*/
|
|
@@ -3369,14 +3331,11 @@ const VDatePicker = vue.defineComponent({
|
|
|
3369
3331
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3370
3332
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3371
3333
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3372
|
-
...this.
|
|
3373
|
-
...this.
|
|
3334
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
3335
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
3374
3336
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {}
|
|
3375
3337
|
},
|
|
3376
3338
|
class: "vvd-component",
|
|
3377
|
-
domProps: {
|
|
3378
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
3379
|
-
},
|
|
3380
3339
|
on: {
|
|
3381
3340
|
click: (event) => this.$emit("click", event),
|
|
3382
3341
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -3406,18 +3365,17 @@ const VDatePicker = vue.defineComponent({
|
|
|
3406
3365
|
{
|
|
3407
3366
|
ref: "element",
|
|
3408
3367
|
class: "vvd-component",
|
|
3409
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
3410
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
3411
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3412
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3413
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
3414
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
3415
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
3416
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
3417
|
-
...this.initialValue !== void 0 ? { "
|
|
3418
|
-
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
3419
|
-
...this.
|
|
3420
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
3368
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
3369
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
3370
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
3371
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
3372
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
3373
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
3374
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
3375
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
3376
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
3377
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
3378
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
3421
3379
|
onClick: (event) => this.$emit("click", event),
|
|
3422
3380
|
onFocus: (event) => this.$emit("focus", event),
|
|
3423
3381
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3487,14 +3445,6 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3487
3445
|
* only when the `end` property has not been explicitly set.
|
|
3488
3446
|
*/
|
|
3489
3447
|
initialEnd: { type: String, default: void 0 },
|
|
3490
|
-
/**
|
|
3491
|
-
* The current start value of the element. This property serves as a mechanism
|
|
3492
|
-
* to set the `start` property through both property assignment and the
|
|
3493
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
3494
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
3495
|
-
* and don't support IDL attribute binding.
|
|
3496
|
-
*/
|
|
3497
|
-
currentStart: { type: String, default: void 0 },
|
|
3498
3448
|
/**
|
|
3499
3449
|
* The current start value of the element. This property serves as a mechanism
|
|
3500
3450
|
* to set the `start` property through both property assignment and the
|
|
@@ -3503,14 +3453,6 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3503
3453
|
* and don't support IDL attribute binding.
|
|
3504
3454
|
*/
|
|
3505
3455
|
start: { type: String, default: void 0 },
|
|
3506
|
-
/**
|
|
3507
|
-
* The current end value of the element. This property serves as a mechanism
|
|
3508
|
-
* to set the `end` property through both property assignment and the
|
|
3509
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
3510
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
3511
|
-
* and don't support IDL attribute binding.
|
|
3512
|
-
*/
|
|
3513
|
-
currentEnd: { type: String, default: void 0 },
|
|
3514
3456
|
/**
|
|
3515
3457
|
* The current end value of the element. This property serves as a mechanism
|
|
3516
3458
|
* to set the `end` property through both property assignment and the
|
|
@@ -3527,14 +3469,10 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3527
3469
|
* The initial value of the date-picker.
|
|
3528
3470
|
*/
|
|
3529
3471
|
initialValue: { type: String, default: void 0 },
|
|
3530
|
-
/**
|
|
3531
|
-
* The initial value of the date-picker.
|
|
3532
|
-
*/
|
|
3533
|
-
value: { type: String, default: void 0 },
|
|
3534
3472
|
/**
|
|
3535
3473
|
* The current value of the date-picker.
|
|
3536
3474
|
*/
|
|
3537
|
-
|
|
3475
|
+
value: { type: String, default: void 0 },
|
|
3538
3476
|
/**
|
|
3539
3477
|
* Whether the date-picker is readonly.
|
|
3540
3478
|
*/
|
|
@@ -3625,19 +3563,16 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3625
3563
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
3626
3564
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3627
3565
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3628
|
-
...this.
|
|
3629
|
-
...this.
|
|
3566
|
+
...this.initialStart !== void 0 ? { start: this.initialStart } : {},
|
|
3567
|
+
...this.initialEnd !== void 0 ? { end: this.initialEnd } : {},
|
|
3568
|
+
...this.start !== void 0 ? { "current-start": this.start } : {},
|
|
3569
|
+
...this.end !== void 0 ? { "current-end": this.end } : {},
|
|
3630
3570
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3631
|
-
...this.
|
|
3632
|
-
...this.
|
|
3571
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
3572
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
3633
3573
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {}
|
|
3634
3574
|
},
|
|
3635
3575
|
class: "vvd-component",
|
|
3636
|
-
domProps: {
|
|
3637
|
-
...this.initialStart !== void 0 ? { initialStart: this.initialStart } : {},
|
|
3638
|
-
...this.initialEnd !== void 0 ? { initialEnd: this.initialEnd } : {},
|
|
3639
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
3640
|
-
},
|
|
3641
3576
|
on: {
|
|
3642
3577
|
click: (event) => this.$emit("click", event),
|
|
3643
3578
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -3669,22 +3604,21 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3669
3604
|
{
|
|
3670
3605
|
ref: "element",
|
|
3671
3606
|
class: "vvd-component",
|
|
3672
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
3673
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
3674
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3675
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3676
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
3677
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
3678
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
3679
|
-
...this.initialStart !== void 0 ? { "
|
|
3680
|
-
...this.initialEnd !== void 0 ? { "
|
|
3681
|
-
...this.start
|
|
3682
|
-
...this.end
|
|
3683
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
3684
|
-
...this.initialValue !== void 0 ? { "
|
|
3685
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
3686
|
-
...this.
|
|
3687
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
3607
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
3608
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
3609
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
3610
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
3611
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
3612
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
3613
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
3614
|
+
...this.initialStart !== void 0 ? { "^start": this.initialStart } : {},
|
|
3615
|
+
...this.initialEnd !== void 0 ? { "^end": this.initialEnd } : {},
|
|
3616
|
+
...this.start !== void 0 ? { "^current-start": this.start } : {},
|
|
3617
|
+
...this.end !== void 0 ? { "^current-end": this.end } : {},
|
|
3618
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
3619
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
3620
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
3621
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
3688
3622
|
onClick: (event) => this.$emit("click", event),
|
|
3689
3623
|
onFocus: (event) => this.$emit("focus", event),
|
|
3690
3624
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3884,18 +3818,18 @@ const VDialPad = vue.defineComponent({
|
|
|
3884
3818
|
{
|
|
3885
3819
|
ref: "element",
|
|
3886
3820
|
class: "vvd-component",
|
|
3887
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3888
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
3889
|
-
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
3890
|
-
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
3891
|
-
...this.pattern !== void 0 ? { pattern: this.pattern } : {},
|
|
3892
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3893
|
-
...this.pending !== void 0 ? { pending: this.pending } : {},
|
|
3894
|
-
...this.callActive !== void 0 ? { "call-active": this.callActive } : {},
|
|
3895
|
-
...this.noCall !== void 0 ? { "no-call": this.noCall } : {},
|
|
3896
|
-
...this.noInput !== void 0 ? { "no-input": this.noInput } : {},
|
|
3897
|
-
...this.endCallButtonLabel !== void 0 ? { "end-call-button-label": this.endCallButtonLabel } : {},
|
|
3898
|
-
...this.callButtonLabel !== void 0 ? { "call-button-label": this.callButtonLabel } : {},
|
|
3821
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
3822
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
3823
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
3824
|
+
...this.modelValue ?? this.value !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
|
|
3825
|
+
...this.pattern !== void 0 ? { "^pattern": this.pattern } : {},
|
|
3826
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
3827
|
+
...this.pending !== void 0 ? { "^pending": this.pending } : {},
|
|
3828
|
+
...this.callActive !== void 0 ? { "^call-active": this.callActive } : {},
|
|
3829
|
+
...this.noCall !== void 0 ? { "^no-call": this.noCall } : {},
|
|
3830
|
+
...this.noInput !== void 0 ? { "^no-input": this.noInput } : {},
|
|
3831
|
+
...this.endCallButtonLabel !== void 0 ? { "^end-call-button-label": this.endCallButtonLabel } : {},
|
|
3832
|
+
...this.callButtonLabel !== void 0 ? { "^call-button-label": this.callButtonLabel } : {},
|
|
3899
3833
|
onClick: (event) => this.$emit("click", event),
|
|
3900
3834
|
onKeydown: (event) => this.$emit("keydown", event),
|
|
3901
3835
|
onKeyup: (event) => this.$emit("keyup", event),
|
|
@@ -4053,16 +3987,16 @@ const VDialog = vue.defineComponent({
|
|
|
4053
3987
|
{
|
|
4054
3988
|
ref: "element",
|
|
4055
3989
|
class: "vvd-component",
|
|
4056
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4057
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
4058
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
4059
|
-
...this.iconPlacement !== void 0 ? { "icon-placement": this.iconPlacement } : {},
|
|
4060
|
-
...this.subtitle !== void 0 ? { subtitle: this.subtitle } : {},
|
|
4061
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
4062
|
-
...this.fullWidthBody !== void 0 ? { "full-width-body": this.fullWidthBody } : {},
|
|
4063
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
4064
|
-
...this.dismissButtonAriaLabel !== void 0 ? { "dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
4065
|
-
...this.noLightDismiss !== void 0 ? { "no-light-dismiss": this.noLightDismiss } : {},
|
|
3990
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
3991
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
3992
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
3993
|
+
...this.iconPlacement !== void 0 ? { "^icon-placement": this.iconPlacement } : {},
|
|
3994
|
+
...this.subtitle !== void 0 ? { "^subtitle": this.subtitle } : {},
|
|
3995
|
+
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
3996
|
+
...this.fullWidthBody !== void 0 ? { "^full-width-body": this.fullWidthBody } : {},
|
|
3997
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
3998
|
+
...this.dismissButtonAriaLabel !== void 0 ? { "^dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
3999
|
+
...this.noLightDismiss !== void 0 ? { "^no-light-dismiss": this.noLightDismiss } : {},
|
|
4066
4000
|
onClick: (event) => this.$emit("click", event),
|
|
4067
4001
|
onFocus: (event) => this.$emit("focus", event),
|
|
4068
4002
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4181,9 +4115,9 @@ const VDivider = vue.defineComponent({
|
|
|
4181
4115
|
{
|
|
4182
4116
|
ref: "element",
|
|
4183
4117
|
class: "vvd-component",
|
|
4184
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4185
|
-
...this.role !== void 0 ? { role: this.role } : {},
|
|
4186
|
-
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
4118
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4119
|
+
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
4120
|
+
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
4187
4121
|
onClick: (event) => this.$emit("click", event),
|
|
4188
4122
|
onFocus: (event) => this.$emit("focus", event),
|
|
4189
4123
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4292,9 +4226,9 @@ const VEmptyState = vue.defineComponent({
|
|
|
4292
4226
|
{
|
|
4293
4227
|
ref: "element",
|
|
4294
4228
|
class: "vvd-component",
|
|
4295
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4296
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
4297
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
4229
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4230
|
+
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
4231
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
4298
4232
|
onClick: (event) => this.$emit("click", event),
|
|
4299
4233
|
onFocus: (event) => this.$emit("focus", event),
|
|
4300
4234
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4342,11 +4276,6 @@ const VFab = vue.defineComponent({
|
|
|
4342
4276
|
* only when the `value` property has not been explicitly set.
|
|
4343
4277
|
*/
|
|
4344
4278
|
initialValue: { type: String, default: void 0 },
|
|
4345
|
-
/**
|
|
4346
|
-
* The initial value of the form. This value sets the `value` property
|
|
4347
|
-
* only when the `value` property has not been explicitly set.
|
|
4348
|
-
*/
|
|
4349
|
-
value: { type: String, default: void 0 },
|
|
4350
4279
|
/**
|
|
4351
4280
|
* The current value of the element. This property serves as a mechanism
|
|
4352
4281
|
* to set the `value` property through both property assignment and the
|
|
@@ -4354,7 +4283,7 @@ const VFab = vue.defineComponent({
|
|
|
4354
4283
|
* in UI libraries that bind data through the .setAttribute() API
|
|
4355
4284
|
* and don't support IDL attribute binding.
|
|
4356
4285
|
*/
|
|
4357
|
-
|
|
4286
|
+
value: { type: String, default: void 0 },
|
|
4358
4287
|
/**
|
|
4359
4288
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
4360
4289
|
*/
|
|
@@ -4476,8 +4405,8 @@ const VFab = vue.defineComponent({
|
|
|
4476
4405
|
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
4477
4406
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4478
4407
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4479
|
-
...this.
|
|
4480
|
-
...this.
|
|
4408
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
4409
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
4481
4410
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
4482
4411
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
4483
4412
|
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
@@ -4493,9 +4422,6 @@ const VFab = vue.defineComponent({
|
|
|
4493
4422
|
...this.label !== void 0 ? { label: this.label } : {}
|
|
4494
4423
|
},
|
|
4495
4424
|
class: "vvd-component",
|
|
4496
|
-
domProps: {
|
|
4497
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
4498
|
-
},
|
|
4499
4425
|
on: {
|
|
4500
4426
|
click: (event) => this.$emit("click", event),
|
|
4501
4427
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -4517,26 +4443,25 @@ const VFab = vue.defineComponent({
|
|
|
4517
4443
|
{
|
|
4518
4444
|
ref: "element",
|
|
4519
4445
|
class: "vvd-component",
|
|
4520
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
4521
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
4522
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4523
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4524
|
-
...this.initialValue !== void 0 ? { "
|
|
4525
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
4526
|
-
...this.
|
|
4527
|
-
...this.
|
|
4528
|
-
...this.
|
|
4529
|
-
...this.
|
|
4530
|
-
...this.
|
|
4531
|
-
...this.
|
|
4532
|
-
...this.
|
|
4533
|
-
...this.
|
|
4534
|
-
...this.
|
|
4535
|
-
...this.
|
|
4536
|
-
...this.
|
|
4537
|
-
...this.
|
|
4538
|
-
...this.
|
|
4539
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
4446
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
4447
|
+
...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
|
|
4448
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4449
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
4450
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
4451
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
4452
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
4453
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
4454
|
+
...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
|
|
4455
|
+
...this.form !== void 0 ? { "^form": this.form } : {},
|
|
4456
|
+
...this.formaction !== void 0 ? { "^formaction": this.formaction } : {},
|
|
4457
|
+
...this.formenctype !== void 0 ? { "^formenctype": this.formenctype } : {},
|
|
4458
|
+
...this.formmethod !== void 0 ? { "^formmethod": this.formmethod } : {},
|
|
4459
|
+
...this.formnovalidate !== void 0 ? { "^formnovalidate": this.formnovalidate } : {},
|
|
4460
|
+
...this.formtarget !== void 0 ? { "^formtarget": this.formtarget } : {},
|
|
4461
|
+
...this.type !== void 0 ? { "^type": this.type } : {},
|
|
4462
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
4463
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4464
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
4540
4465
|
onClick: (event) => this.$emit("click", event),
|
|
4541
4466
|
onFocus: (event) => this.$emit("focus", event),
|
|
4542
4467
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4585,11 +4510,6 @@ const VFilePicker = vue.defineComponent({
|
|
|
4585
4510
|
* only when the `value` property has not been explicitly set.
|
|
4586
4511
|
*/
|
|
4587
4512
|
initialValue: { type: String, default: void 0 },
|
|
4588
|
-
/**
|
|
4589
|
-
* The initial value of the form. This value sets the `value` property
|
|
4590
|
-
* only when the `value` property has not been explicitly set.
|
|
4591
|
-
*/
|
|
4592
|
-
value: { type: String, default: void 0 },
|
|
4593
4513
|
/**
|
|
4594
4514
|
* The current value of the element. This property serves as a mechanism
|
|
4595
4515
|
* to set the `value` property through both property assignment and the
|
|
@@ -4597,7 +4517,7 @@ const VFilePicker = vue.defineComponent({
|
|
|
4597
4517
|
* in UI libraries that bind data through the .setAttribute() API
|
|
4598
4518
|
* and don't support IDL attribute binding.
|
|
4599
4519
|
*/
|
|
4600
|
-
|
|
4520
|
+
value: { type: String, default: void 0 },
|
|
4601
4521
|
/**
|
|
4602
4522
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
4603
4523
|
*/
|
|
@@ -4700,8 +4620,8 @@ const VFilePicker = vue.defineComponent({
|
|
|
4700
4620
|
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
4701
4621
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4702
4622
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4703
|
-
...this.
|
|
4704
|
-
...this.
|
|
4623
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
4624
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
4705
4625
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
4706
4626
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
4707
4627
|
...this.maxFiles !== void 0 ? { "max-files": this.maxFiles } : {},
|
|
@@ -4710,9 +4630,6 @@ const VFilePicker = vue.defineComponent({
|
|
|
4710
4630
|
...this.size !== void 0 ? { size: this.size } : {}
|
|
4711
4631
|
},
|
|
4712
4632
|
class: "vvd-component",
|
|
4713
|
-
domProps: {
|
|
4714
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
4715
|
-
},
|
|
4716
4633
|
on: {
|
|
4717
4634
|
click: (event) => this.$emit("click", event),
|
|
4718
4635
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -4735,20 +4652,19 @@ const VFilePicker = vue.defineComponent({
|
|
|
4735
4652
|
{
|
|
4736
4653
|
ref: "element",
|
|
4737
4654
|
class: "vvd-component",
|
|
4738
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
4739
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
4740
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
4741
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4742
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4743
|
-
...this.initialValue !== void 0 ? { "
|
|
4744
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
4745
|
-
...this.
|
|
4746
|
-
...this.
|
|
4747
|
-
...this.
|
|
4748
|
-
...this.
|
|
4749
|
-
...this.
|
|
4750
|
-
...this.
|
|
4751
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
4655
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
4656
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
4657
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
4658
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4659
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
4660
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
4661
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
4662
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
4663
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
4664
|
+
...this.maxFiles !== void 0 ? { "^max-files": this.maxFiles } : {},
|
|
4665
|
+
...this.maxFileSize !== void 0 ? { "^max-file-size": this.maxFileSize } : {},
|
|
4666
|
+
...this.accept !== void 0 ? { "^accept": this.accept } : {},
|
|
4667
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4752
4668
|
onClick: (event) => this.$emit("click", event),
|
|
4753
4669
|
onFocus: (event) => this.$emit("focus", event),
|
|
4754
4670
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4859,9 +4775,9 @@ const VHeader = vue.defineComponent({
|
|
|
4859
4775
|
{
|
|
4860
4776
|
ref: "element",
|
|
4861
4777
|
class: "vvd-component",
|
|
4862
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4863
|
-
...this.elevationShadow !== void 0 ? { "elevation-shadow": this.elevationShadow } : {},
|
|
4864
|
-
...this.alternate !== void 0 ? { alternate: this.alternate } : {},
|
|
4778
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4779
|
+
...this.elevationShadow !== void 0 ? { "^elevation-shadow": this.elevationShadow } : {},
|
|
4780
|
+
...this.alternate !== void 0 ? { "^alternate": this.alternate } : {},
|
|
4865
4781
|
onClick: (event) => this.$emit("click", event),
|
|
4866
4782
|
onFocus: (event) => this.$emit("focus", event),
|
|
4867
4783
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4980,10 +4896,10 @@ const VIcon = vue.defineComponent({
|
|
|
4980
4896
|
{
|
|
4981
4897
|
ref: "element",
|
|
4982
4898
|
class: "vvd-component",
|
|
4983
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4984
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
4985
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
4986
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
4899
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4900
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
4901
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4902
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
4987
4903
|
onClick: (event) => this.$emit("click", event),
|
|
4988
4904
|
onFocus: (event) => this.$emit("focus", event),
|
|
4989
4905
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5115,12 +5031,12 @@ const VLayout = vue.defineComponent({
|
|
|
5115
5031
|
{
|
|
5116
5032
|
ref: "element",
|
|
5117
5033
|
class: "vvd-component",
|
|
5118
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5119
|
-
...this.gutters !== void 0 ? { gutters: this.gutters } : {},
|
|
5120
|
-
...this.columnBasis !== void 0 ? { "column-basis": this.columnBasis } : {},
|
|
5121
|
-
...this.columnSpacing !== void 0 ? { "column-spacing": this.columnSpacing } : {},
|
|
5122
|
-
...this.rowSpacing !== void 0 ? { "row-spacing": this.rowSpacing } : {},
|
|
5123
|
-
...this.autoSizing !== void 0 ? { "auto-sizing": this.autoSizing } : {},
|
|
5034
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5035
|
+
...this.gutters !== void 0 ? { "^gutters": this.gutters } : {},
|
|
5036
|
+
...this.columnBasis !== void 0 ? { "^column-basis": this.columnBasis } : {},
|
|
5037
|
+
...this.columnSpacing !== void 0 ? { "^column-spacing": this.columnSpacing } : {},
|
|
5038
|
+
...this.rowSpacing !== void 0 ? { "^row-spacing": this.rowSpacing } : {},
|
|
5039
|
+
...this.autoSizing !== void 0 ? { "^auto-sizing": this.autoSizing } : {},
|
|
5124
5040
|
onClick: (event) => this.$emit("click", event),
|
|
5125
5041
|
onFocus: (event) => this.$emit("focus", event),
|
|
5126
5042
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5286,13 +5202,13 @@ const VMenu = vue.defineComponent({
|
|
|
5286
5202
|
{
|
|
5287
5203
|
ref: "element",
|
|
5288
5204
|
class: "vvd-component",
|
|
5289
|
-
...this.anchor !== void 0 ? { anchor: this.anchor } : {},
|
|
5290
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5291
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
5292
|
-
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
5293
|
-
...this.trigger !== void 0 ? { trigger: this.trigger } : {},
|
|
5294
|
-
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
5295
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
5205
|
+
...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
|
|
5206
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5207
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
5208
|
+
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
5209
|
+
...this.trigger !== void 0 ? { "^trigger": this.trigger } : {},
|
|
5210
|
+
...this.autoDismiss !== void 0 ? { "^auto-dismiss": this.autoDismiss } : {},
|
|
5211
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
5296
5212
|
onClick: (event) => this.$emit("click", event),
|
|
5297
5213
|
onFocus: (event) => this.$emit("focus", event),
|
|
5298
5214
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5491,17 +5407,17 @@ const VMenuItem = vue.defineComponent({
|
|
|
5491
5407
|
{
|
|
5492
5408
|
ref: "element",
|
|
5493
5409
|
class: "vvd-component",
|
|
5494
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5495
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5496
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
5497
|
-
...this.expanded !== void 0 ? { expanded: this.expanded } : {},
|
|
5498
|
-
...this.role !== void 0 ? { role: this.role } : {},
|
|
5499
|
-
...this.modelValue ?? this.checked !== void 0 ? { checked: this.modelValue ?? this.checked } : {},
|
|
5500
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
5501
|
-
...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {},
|
|
5502
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5503
|
-
...this.checkTrailing !== void 0 ? { "check-trailing": this.checkTrailing } : {},
|
|
5504
|
-
...this.checkAppearance !== void 0 ? { "check-appearance": this.checkAppearance } : {},
|
|
5410
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
5411
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5412
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
5413
|
+
...this.expanded !== void 0 ? { "^expanded": this.expanded } : {},
|
|
5414
|
+
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
5415
|
+
...this.modelValue ?? this.checked !== void 0 ? { "^checked": this.modelValue ?? this.checked } : {},
|
|
5416
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
5417
|
+
...this.textSecondary !== void 0 ? { "^text-secondary": this.textSecondary } : {},
|
|
5418
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5419
|
+
...this.checkTrailing !== void 0 ? { "^check-trailing": this.checkTrailing } : {},
|
|
5420
|
+
...this.checkAppearance !== void 0 ? { "^check-appearance": this.checkAppearance } : {},
|
|
5505
5421
|
onClick: (event) => this.$emit("click", event),
|
|
5506
5422
|
onFocus: (event) => this.$emit("focus", event),
|
|
5507
5423
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5607,7 +5523,7 @@ const VNav = vue.defineComponent({
|
|
|
5607
5523
|
{
|
|
5608
5524
|
ref: "element",
|
|
5609
5525
|
class: "vvd-component",
|
|
5610
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5526
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5611
5527
|
onClick: (event) => this.$emit("click", event),
|
|
5612
5528
|
onFocus: (event) => this.$emit("focus", event),
|
|
5613
5529
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5737,12 +5653,12 @@ const VNavDisclosure = vue.defineComponent({
|
|
|
5737
5653
|
{
|
|
5738
5654
|
ref: "element",
|
|
5739
5655
|
class: "vvd-component",
|
|
5740
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5741
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
5742
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
5743
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5744
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
5745
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5656
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
5657
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
5658
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
5659
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5660
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
5661
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5746
5662
|
onClick: (event) => this.$emit("click", event),
|
|
5747
5663
|
onFocus: (event) => this.$emit("focus", event),
|
|
5748
5664
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5919,19 +5835,19 @@ const VNavItem = vue.defineComponent({
|
|
|
5919
5835
|
{
|
|
5920
5836
|
ref: "element",
|
|
5921
5837
|
class: "vvd-component",
|
|
5922
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5923
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5924
|
-
...this.download !== void 0 ? { download: this.download } : {},
|
|
5925
|
-
...this.href !== void 0 ? { href: this.href } : {},
|
|
5926
|
-
...this.hreflang !== void 0 ? { hreflang: this.hreflang } : {},
|
|
5927
|
-
...this.ping !== void 0 ? { ping: this.ping } : {},
|
|
5928
|
-
...this.referrerpolicy !== void 0 ? { referrerpolicy: this.referrerpolicy } : {},
|
|
5929
|
-
...this.rel !== void 0 ? { rel: this.rel } : {},
|
|
5930
|
-
...this.target !== void 0 ? { target: this.target } : {},
|
|
5931
|
-
...this.type !== void 0 ? { type: this.type } : {},
|
|
5932
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
5933
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5934
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
5838
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
5839
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5840
|
+
...this.download !== void 0 ? { "^download": this.download } : {},
|
|
5841
|
+
...this.href !== void 0 ? { "^href": this.href } : {},
|
|
5842
|
+
...this.hreflang !== void 0 ? { "^hreflang": this.hreflang } : {},
|
|
5843
|
+
...this.ping !== void 0 ? { "^ping": this.ping } : {},
|
|
5844
|
+
...this.referrerpolicy !== void 0 ? { "^referrerpolicy": this.referrerpolicy } : {},
|
|
5845
|
+
...this.rel !== void 0 ? { "^rel": this.rel } : {},
|
|
5846
|
+
...this.target !== void 0 ? { "^target": this.target } : {},
|
|
5847
|
+
...this.type !== void 0 ? { "^type": this.type } : {},
|
|
5848
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
5849
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5850
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
5935
5851
|
onClick: (event) => this.$emit("click", event),
|
|
5936
5852
|
onFocus: (event) => this.$emit("focus", event),
|
|
5937
5853
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6047,10 +5963,10 @@ const VNote = vue.defineComponent({
|
|
|
6047
5963
|
{
|
|
6048
5964
|
ref: "element",
|
|
6049
5965
|
class: "vvd-component",
|
|
6050
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
6051
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6052
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
6053
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5966
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
5967
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5968
|
+
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
5969
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6054
5970
|
onClick: (event) => this.$emit("click", event),
|
|
6055
5971
|
onFocus: (event) => this.$emit("focus", event),
|
|
6056
5972
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6116,11 +6032,6 @@ const VNumberField = vue.defineComponent({
|
|
|
6116
6032
|
* only when the `value` property has not been explicitly set.
|
|
6117
6033
|
*/
|
|
6118
6034
|
initialValue: { type: String, default: void 0 },
|
|
6119
|
-
/**
|
|
6120
|
-
* The initial value of the form. This value sets the `value` property
|
|
6121
|
-
* only when the `value` property has not been explicitly set.
|
|
6122
|
-
*/
|
|
6123
|
-
value: { type: String, default: void 0 },
|
|
6124
6035
|
/**
|
|
6125
6036
|
* The current value of the element. This property serves as a mechanism
|
|
6126
6037
|
* to set the `value` property through both property assignment and the
|
|
@@ -6128,7 +6039,7 @@ const VNumberField = vue.defineComponent({
|
|
|
6128
6039
|
* in UI libraries that bind data through the .setAttribute() API
|
|
6129
6040
|
* and don't support IDL attribute binding.
|
|
6130
6041
|
*/
|
|
6131
|
-
|
|
6042
|
+
value: { type: String, default: void 0 },
|
|
6132
6043
|
/**
|
|
6133
6044
|
* The current value of the element. This property serves as a mechanism
|
|
6134
6045
|
* to set the `value` property through both property assignment and the
|
|
@@ -6294,8 +6205,8 @@ const VNumberField = vue.defineComponent({
|
|
|
6294
6205
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
6295
6206
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6296
6207
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6297
|
-
...this.
|
|
6298
|
-
...this.modelValue ?? this.
|
|
6208
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
6209
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
6299
6210
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
6300
6211
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
6301
6212
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -6315,9 +6226,6 @@ const VNumberField = vue.defineComponent({
|
|
|
6315
6226
|
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {}
|
|
6316
6227
|
},
|
|
6317
6228
|
class: "vvd-component",
|
|
6318
|
-
domProps: {
|
|
6319
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
6320
|
-
},
|
|
6321
6229
|
on: {
|
|
6322
6230
|
click: (event) => this.$emit("click", event),
|
|
6323
6231
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -6346,34 +6254,33 @@ const VNumberField = vue.defineComponent({
|
|
|
6346
6254
|
{
|
|
6347
6255
|
ref: "element",
|
|
6348
6256
|
class: "vvd-component",
|
|
6349
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
6350
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
6351
|
-
...this.charCount !== void 0 ? { "char-count": this.charCount } : {},
|
|
6352
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
6353
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
6354
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
6355
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6356
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6357
|
-
...this.initialValue !== void 0 ? { "
|
|
6358
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
6359
|
-
...this.
|
|
6360
|
-
...this.
|
|
6361
|
-
...this.
|
|
6362
|
-
...this.
|
|
6363
|
-
...this.
|
|
6364
|
-
...this.
|
|
6365
|
-
...this.
|
|
6366
|
-
...this.
|
|
6367
|
-
...this.
|
|
6368
|
-
...this.
|
|
6369
|
-
...this.
|
|
6370
|
-
...this.
|
|
6371
|
-
...this.
|
|
6372
|
-
...this.
|
|
6373
|
-
...this.
|
|
6374
|
-
...this.
|
|
6375
|
-
...this.
|
|
6376
|
-
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {},
|
|
6257
|
+
...this.successText !== void 0 ? { "^success-text": this.successText } : {},
|
|
6258
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
6259
|
+
...this.charCount !== void 0 ? { "^char-count": this.charCount } : {},
|
|
6260
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
6261
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
6262
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
6263
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
6264
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
6265
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
6266
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
6267
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
6268
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
6269
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
6270
|
+
...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
|
|
6271
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
6272
|
+
...this.list !== void 0 ? { "^list": this.list } : {},
|
|
6273
|
+
...this.maxlength !== void 0 ? { "^maxlength": this.maxlength } : {},
|
|
6274
|
+
...this.minlength !== void 0 ? { "^minlength": this.minlength } : {},
|
|
6275
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
6276
|
+
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
6277
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
6278
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
6279
|
+
...this.incrementButtonAriaLabel !== void 0 ? { "^increment-button-aria-label": this.incrementButtonAriaLabel } : {},
|
|
6280
|
+
...this.decrementButtonAriaLabel !== void 0 ? { "^decrement-button-aria-label": this.decrementButtonAriaLabel } : {},
|
|
6281
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
6282
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
6283
|
+
...this.autoComplete !== void 0 ? { "^autoComplete": this.autoComplete } : {},
|
|
6377
6284
|
onClick: (event) => this.$emit("click", event),
|
|
6378
6285
|
onFocus: (event) => this.$emit("focus", event),
|
|
6379
6286
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6430,11 +6337,6 @@ const VOption = vue.defineComponent({
|
|
|
6430
6337
|
* only when the `value` property has not been explicitly set.
|
|
6431
6338
|
*/
|
|
6432
6339
|
initialValue: { type: String, default: void 0 },
|
|
6433
|
-
/**
|
|
6434
|
-
* The initial value of the option. This value sets the `value` property
|
|
6435
|
-
* only when the `value` property has not been explicitly set.
|
|
6436
|
-
*/
|
|
6437
|
-
value: { type: String, default: void 0 },
|
|
6438
6340
|
text: { type: String, default: void 0 },
|
|
6439
6341
|
label: { type: String, default: void 0 }
|
|
6440
6342
|
},
|
|
@@ -6498,14 +6400,11 @@ const VOption = vue.defineComponent({
|
|
|
6498
6400
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6499
6401
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6500
6402
|
...this.selected !== void 0 ? { selected: this.selected } : {},
|
|
6501
|
-
...this.
|
|
6403
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
6502
6404
|
...this.text !== void 0 ? { text: this.text } : {},
|
|
6503
6405
|
...this.label !== void 0 ? { label: this.label } : {}
|
|
6504
6406
|
},
|
|
6505
6407
|
class: "vvd-component",
|
|
6506
|
-
domProps: {
|
|
6507
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
6508
|
-
},
|
|
6509
6408
|
on: {
|
|
6510
6409
|
click: (event) => this.$emit("click", event),
|
|
6511
6410
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -6527,15 +6426,14 @@ const VOption = vue.defineComponent({
|
|
|
6527
6426
|
{
|
|
6528
6427
|
ref: "element",
|
|
6529
6428
|
class: "vvd-component",
|
|
6530
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
6531
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
6532
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6533
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6534
|
-
...this.selected !== void 0 ? { selected: this.selected } : {},
|
|
6535
|
-
...this.initialValue !== void 0 ? { "
|
|
6536
|
-
...this.
|
|
6537
|
-
...this.
|
|
6538
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
6429
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
6430
|
+
...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
|
|
6431
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
6432
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
6433
|
+
...this.selected !== void 0 ? { "^selected": this.selected } : {},
|
|
6434
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
6435
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
6436
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
6539
6437
|
onClick: (event) => this.$emit("click", event),
|
|
6540
6438
|
onFocus: (event) => this.$emit("focus", event),
|
|
6541
6439
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6664,12 +6562,12 @@ const VPagination = vue.defineComponent({
|
|
|
6664
6562
|
{
|
|
6665
6563
|
ref: "element",
|
|
6666
6564
|
class: "vvd-component",
|
|
6667
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6668
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
6669
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
6670
|
-
...this.navIcons !== void 0 ? { "nav-icons": this.navIcons } : {},
|
|
6671
|
-
...this.total !== void 0 ? { total: this.total } : {},
|
|
6672
|
-
...this.selectedIndex !== void 0 ? { "selected-index": this.selectedIndex } : {},
|
|
6565
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
6566
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
6567
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
6568
|
+
...this.navIcons !== void 0 ? { "^nav-icons": this.navIcons } : {},
|
|
6569
|
+
...this.total !== void 0 ? { "^total": this.total } : {},
|
|
6570
|
+
...this.selectedIndex !== void 0 ? { "^selected-index": this.selectedIndex } : {},
|
|
6673
6571
|
onClick: (event) => this.$emit("click", event),
|
|
6674
6572
|
onFocus: (event) => this.$emit("focus", event),
|
|
6675
6573
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6805,15 +6703,15 @@ const VProgress = vue.defineComponent({
|
|
|
6805
6703
|
{
|
|
6806
6704
|
ref: "element",
|
|
6807
6705
|
class: "vvd-component",
|
|
6808
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6809
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
6810
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
6811
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
6812
|
-
...this.paused !== void 0 ? { paused: this.paused } : {},
|
|
6813
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
6814
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
6815
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
6816
|
-
...this.reverse !== void 0 ? { reverse: this.reverse } : {},
|
|
6706
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
6707
|
+
...this.value !== void 0 ? { "^value": this.value } : {},
|
|
6708
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
6709
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
6710
|
+
...this.paused !== void 0 ? { "^paused": this.paused } : {},
|
|
6711
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
6712
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
6713
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6714
|
+
...this.reverse !== void 0 ? { "^reverse": this.reverse } : {},
|
|
6817
6715
|
onClick: (event) => this.$emit("click", event),
|
|
6818
6716
|
onFocus: (event) => this.$emit("focus", event),
|
|
6819
6717
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6940,14 +6838,14 @@ const VProgressRing = vue.defineComponent({
|
|
|
6940
6838
|
{
|
|
6941
6839
|
ref: "element",
|
|
6942
6840
|
class: "vvd-component",
|
|
6943
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6944
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
6945
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
6946
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
6947
|
-
...this.paused !== void 0 ? { paused: this.paused } : {},
|
|
6948
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
6949
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
6950
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
6841
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
6842
|
+
...this.value !== void 0 ? { "^value": this.value } : {},
|
|
6843
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
6844
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
6845
|
+
...this.paused !== void 0 ? { "^paused": this.paused } : {},
|
|
6846
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
6847
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6848
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
6951
6849
|
onClick: (event) => this.$emit("click", event),
|
|
6952
6850
|
onFocus: (event) => this.$emit("focus", event),
|
|
6953
6851
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6982,11 +6880,6 @@ const VRadio = vue.defineComponent({
|
|
|
6982
6880
|
* only when the `value` property has not been explicitly set.
|
|
6983
6881
|
*/
|
|
6984
6882
|
initialValue: { type: String, default: void 0 },
|
|
6985
|
-
/**
|
|
6986
|
-
* The initial value of the form. This value sets the `value` property
|
|
6987
|
-
* only when the `value` property has not been explicitly set.
|
|
6988
|
-
*/
|
|
6989
|
-
value: { type: String, default: void 0 },
|
|
6990
6883
|
/**
|
|
6991
6884
|
* The current value of the element. This property serves as a mechanism
|
|
6992
6885
|
* to set the `value` property through both property assignment and the
|
|
@@ -6994,7 +6887,7 @@ const VRadio = vue.defineComponent({
|
|
|
6994
6887
|
* in UI libraries that bind data through the .setAttribute() API
|
|
6995
6888
|
* and don't support IDL attribute binding.
|
|
6996
6889
|
*/
|
|
6997
|
-
|
|
6890
|
+
value: { type: String, default: void 0 },
|
|
6998
6891
|
/**
|
|
6999
6892
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
7000
6893
|
*/
|
|
@@ -7007,10 +6900,6 @@ const VRadio = vue.defineComponent({
|
|
|
7007
6900
|
* Provides the default checkedness of the input element
|
|
7008
6901
|
*/
|
|
7009
6902
|
defaultChecked: { type: Boolean, default: void 0 },
|
|
7010
|
-
/**
|
|
7011
|
-
* Provides the default checkedness of the input element
|
|
7012
|
-
*/
|
|
7013
|
-
checked: { type: Boolean, default: void 0 },
|
|
7014
6903
|
/**
|
|
7015
6904
|
* The current checkedness of the element. This property serves as a mechanism
|
|
7016
6905
|
* to set the `checked` property through both property assignment and the
|
|
@@ -7018,7 +6907,7 @@ const VRadio = vue.defineComponent({
|
|
|
7018
6907
|
* in UI libraries that bind data through the .setAttribute() API
|
|
7019
6908
|
* and don't support IDL attribute binding.
|
|
7020
6909
|
*/
|
|
7021
|
-
|
|
6910
|
+
checked: { type: Boolean, default: void 0 },
|
|
7022
6911
|
/**
|
|
7023
6912
|
* When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.
|
|
7024
6913
|
*/
|
|
@@ -7088,22 +6977,18 @@ const VRadio = vue.defineComponent({
|
|
|
7088
6977
|
attrs: {
|
|
7089
6978
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7090
6979
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7091
|
-
...this.
|
|
7092
|
-
...this.
|
|
6980
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
6981
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
7093
6982
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7094
6983
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7095
|
-
...this.
|
|
7096
|
-
...this.
|
|
6984
|
+
...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
|
|
6985
|
+
...this.checked !== void 0 ? { "current-checked": this.checked } : {},
|
|
7097
6986
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
7098
6987
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
7099
6988
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
7100
6989
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
7101
6990
|
},
|
|
7102
6991
|
class: "vvd-component",
|
|
7103
|
-
domProps: {
|
|
7104
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {},
|
|
7105
|
-
...this.defaultChecked !== void 0 ? { defaultChecked: this.defaultChecked } : {}
|
|
7106
|
-
},
|
|
7107
6992
|
on: {
|
|
7108
6993
|
click: (event) => this.$emit("click", event),
|
|
7109
6994
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -7122,20 +7007,18 @@ const VRadio = vue.defineComponent({
|
|
|
7122
7007
|
{
|
|
7123
7008
|
ref: "element",
|
|
7124
7009
|
class: "vvd-component",
|
|
7125
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7126
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7127
|
-
...this.initialValue !== void 0 ? { "
|
|
7128
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
7129
|
-
...this.
|
|
7130
|
-
...this.
|
|
7131
|
-
...this.
|
|
7132
|
-
...this.
|
|
7133
|
-
...this.
|
|
7134
|
-
...this.
|
|
7135
|
-
...this.
|
|
7136
|
-
...this.
|
|
7137
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
7138
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
7010
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
7011
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
7012
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
7013
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
7014
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
7015
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
7016
|
+
...this.defaultChecked !== void 0 ? { "^checked": this.defaultChecked } : {},
|
|
7017
|
+
...this.checked !== void 0 ? { "^current-checked": this.checked } : {},
|
|
7018
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
7019
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
7020
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7021
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7139
7022
|
onClick: (event) => this.$emit("click", event),
|
|
7140
7023
|
onFocus: (event) => this.$emit("focus", event),
|
|
7141
7024
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7287,13 +7170,13 @@ const VRadioGroup = vue.defineComponent({
|
|
|
7287
7170
|
{
|
|
7288
7171
|
ref: "element",
|
|
7289
7172
|
class: "vvd-component",
|
|
7290
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7291
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
7292
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7293
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
7294
|
-
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
7295
|
-
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
7296
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
7173
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
7174
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
7175
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
7176
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
7177
|
+
...this.modelValue ?? this.value !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
|
|
7178
|
+
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
7179
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7297
7180
|
onClick: (event) => this.$emit("click", event),
|
|
7298
7181
|
onFocus: (event) => this.$emit("focus", event),
|
|
7299
7182
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7339,11 +7222,6 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7339
7222
|
* only when the `value` property has not been explicitly set.
|
|
7340
7223
|
*/
|
|
7341
7224
|
initialValue: { type: String, default: void 0 },
|
|
7342
|
-
/**
|
|
7343
|
-
* The initial value of the form. This value sets the `value` property
|
|
7344
|
-
* only when the `value` property has not been explicitly set.
|
|
7345
|
-
*/
|
|
7346
|
-
value: { type: String, default: void 0 },
|
|
7347
7225
|
/**
|
|
7348
7226
|
* The current value of the element. This property serves as a mechanism
|
|
7349
7227
|
* to set the `value` property through both property assignment and the
|
|
@@ -7351,7 +7229,7 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7351
7229
|
* in UI libraries that bind data through the .setAttribute() API
|
|
7352
7230
|
* and don't support IDL attribute binding.
|
|
7353
7231
|
*/
|
|
7354
|
-
|
|
7232
|
+
value: { type: String, default: void 0 },
|
|
7355
7233
|
/**
|
|
7356
7234
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
7357
7235
|
*/
|
|
@@ -7365,14 +7243,6 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7365
7243
|
* only when the `start` property has not been explicitly set.
|
|
7366
7244
|
*/
|
|
7367
7245
|
initialStart: { type: String, default: void 0 },
|
|
7368
|
-
/**
|
|
7369
|
-
* The current start value of the element. This property serves as a mechanism
|
|
7370
|
-
* to set the `start` property through both property assignment and the
|
|
7371
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
7372
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
7373
|
-
* and don't support IDL attribute binding.
|
|
7374
|
-
*/
|
|
7375
|
-
currentStart: { type: String, default: void 0 },
|
|
7376
7246
|
/**
|
|
7377
7247
|
* The current start value of the element. This property serves as a mechanism
|
|
7378
7248
|
* to set the `start` property through both property assignment and the
|
|
@@ -7386,14 +7256,6 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7386
7256
|
* only when the `end` property has not been explicitly set.
|
|
7387
7257
|
*/
|
|
7388
7258
|
initialEnd: { type: String, default: void 0 },
|
|
7389
|
-
/**
|
|
7390
|
-
* The current end value of the element. This property serves as a mechanism
|
|
7391
|
-
* to set the `end` property through both property assignment and the
|
|
7392
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
7393
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
7394
|
-
* and don't support IDL attribute binding.
|
|
7395
|
-
*/
|
|
7396
|
-
currentEnd: { type: String, default: void 0 },
|
|
7397
7259
|
/**
|
|
7398
7260
|
* The current end value of the element. This property serves as a mechanism
|
|
7399
7261
|
* to set the `end` property through both property assignment and the
|
|
@@ -7521,12 +7383,14 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7521
7383
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
7522
7384
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7523
7385
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7524
|
-
...this.
|
|
7525
|
-
...this.
|
|
7386
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
7387
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
7526
7388
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7527
7389
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7528
|
-
...this.
|
|
7529
|
-
...this.
|
|
7390
|
+
...this.initialStart !== void 0 ? { start: this.initialStart } : {},
|
|
7391
|
+
...this.start !== void 0 ? { "current-start": this.start } : {},
|
|
7392
|
+
...this.initialEnd !== void 0 ? { end: this.initialEnd } : {},
|
|
7393
|
+
...this.end !== void 0 ? { "current-end": this.end } : {},
|
|
7530
7394
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
7531
7395
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
7532
7396
|
...this.step !== void 0 ? { step: this.step } : {},
|
|
@@ -7537,11 +7401,6 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7537
7401
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
7538
7402
|
},
|
|
7539
7403
|
class: "vvd-component",
|
|
7540
|
-
domProps: {
|
|
7541
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {},
|
|
7542
|
-
...this.initialStart !== void 0 ? { initialStart: this.initialStart } : {},
|
|
7543
|
-
...this.initialEnd !== void 0 ? { initialEnd: this.initialEnd } : {}
|
|
7544
|
-
},
|
|
7545
7404
|
on: {
|
|
7546
7405
|
click: (event) => this.$emit("click", event),
|
|
7547
7406
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -7568,26 +7427,25 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7568
7427
|
{
|
|
7569
7428
|
ref: "element",
|
|
7570
7429
|
class: "vvd-component",
|
|
7571
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
7572
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7573
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7574
|
-
...this.initialValue !== void 0 ? { "
|
|
7575
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
7576
|
-
...this.
|
|
7577
|
-
...this.
|
|
7578
|
-
...this.
|
|
7579
|
-
...this.
|
|
7580
|
-
...this.
|
|
7581
|
-
...this.
|
|
7582
|
-
...this.
|
|
7583
|
-
...this.
|
|
7584
|
-
...this.
|
|
7585
|
-
...this.
|
|
7586
|
-
...this.
|
|
7587
|
-
...this.
|
|
7588
|
-
...this.
|
|
7589
|
-
...this.
|
|
7590
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
7430
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7431
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
7432
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
7433
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
7434
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
7435
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
7436
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
7437
|
+
...this.initialStart !== void 0 ? { "^start": this.initialStart } : {},
|
|
7438
|
+
...this.start !== void 0 ? { "^current-start": this.start } : {},
|
|
7439
|
+
...this.initialEnd !== void 0 ? { "^end": this.initialEnd } : {},
|
|
7440
|
+
...this.end !== void 0 ? { "^current-end": this.end } : {},
|
|
7441
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
7442
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
7443
|
+
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
7444
|
+
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
7445
|
+
...this.ariaStartLabel !== void 0 ? { "^aria-start-label": this.ariaStartLabel } : {},
|
|
7446
|
+
...this.ariaEndLabel !== void 0 ? { "^aria-end-label": this.ariaEndLabel } : {},
|
|
7447
|
+
...this.markers !== void 0 ? { "^markers": this.markers } : {},
|
|
7448
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7591
7449
|
onClick: (event) => this.$emit("click", event),
|
|
7592
7450
|
onFocus: (event) => this.$emit("focus", event),
|
|
7593
7451
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7660,11 +7518,6 @@ const VSelect = vue.defineComponent({
|
|
|
7660
7518
|
* only when the `value` property has not been explicitly set.
|
|
7661
7519
|
*/
|
|
7662
7520
|
initialValue: { type: String, default: void 0 },
|
|
7663
|
-
/**
|
|
7664
|
-
* The initial value of the form. This value sets the `value` property
|
|
7665
|
-
* only when the `value` property has not been explicitly set.
|
|
7666
|
-
*/
|
|
7667
|
-
value: { type: String, default: void 0 },
|
|
7668
7521
|
/**
|
|
7669
7522
|
* The current value of the element. This property serves as a mechanism
|
|
7670
7523
|
* to set the `value` property through both property assignment and the
|
|
@@ -7672,7 +7525,7 @@ const VSelect = vue.defineComponent({
|
|
|
7672
7525
|
* in UI libraries that bind data through the .setAttribute() API
|
|
7673
7526
|
* and don't support IDL attribute binding.
|
|
7674
7527
|
*/
|
|
7675
|
-
|
|
7528
|
+
value: { type: String, default: void 0 },
|
|
7676
7529
|
/**
|
|
7677
7530
|
* The current value of the element. This property serves as a mechanism
|
|
7678
7531
|
* to set the `value` property through both property assignment and the
|
|
@@ -7818,8 +7671,8 @@ const VSelect = vue.defineComponent({
|
|
|
7818
7671
|
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
7819
7672
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7820
7673
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7821
|
-
...this.
|
|
7822
|
-
...this.modelValue ?? this.
|
|
7674
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
7675
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
7823
7676
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7824
7677
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7825
7678
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
@@ -7831,9 +7684,6 @@ const VSelect = vue.defineComponent({
|
|
|
7831
7684
|
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {}
|
|
7832
7685
|
},
|
|
7833
7686
|
class: "vvd-component",
|
|
7834
|
-
domProps: {
|
|
7835
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
7836
|
-
},
|
|
7837
7687
|
on: {
|
|
7838
7688
|
click: (event) => this.$emit("click", event),
|
|
7839
7689
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -7866,26 +7716,25 @@ const VSelect = vue.defineComponent({
|
|
|
7866
7716
|
{
|
|
7867
7717
|
ref: "element",
|
|
7868
7718
|
class: "vvd-component",
|
|
7869
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
7870
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
7871
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
7872
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
7873
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
7874
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
7875
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7876
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7877
|
-
...this.initialValue !== void 0 ? { "
|
|
7878
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
7879
|
-
...this.
|
|
7880
|
-
...this.
|
|
7881
|
-
...this.
|
|
7882
|
-
...this.
|
|
7883
|
-
...this.
|
|
7884
|
-
...this.
|
|
7885
|
-
...this.
|
|
7886
|
-
...this.
|
|
7887
|
-
...this.
|
|
7888
|
-
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
7719
|
+
...this.successText !== void 0 ? { "^success-text": this.successText } : {},
|
|
7720
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
7721
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
7722
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7723
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
7724
|
+
...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
|
|
7725
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
7726
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
7727
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
7728
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
7729
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
7730
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
7731
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
7732
|
+
...this.position !== void 0 ? { "^position": this.position } : {},
|
|
7733
|
+
...this.multiple !== void 0 ? { "^multiple": this.multiple } : {},
|
|
7734
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
7735
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
7736
|
+
...this.fixedDropdown !== void 0 ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
7737
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
7889
7738
|
onClick: (event) => this.$emit("click", event),
|
|
7890
7739
|
onFocus: (event) => this.$emit("focus", event),
|
|
7891
7740
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8037,14 +7886,14 @@ const VSelectableBox = vue.defineComponent({
|
|
|
8037
7886
|
{
|
|
8038
7887
|
ref: "element",
|
|
8039
7888
|
class: "vvd-component",
|
|
8040
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8041
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
8042
|
-
...this.checked !== void 0 ? { checked: this.checked } : {},
|
|
8043
|
-
...this.clickable !== void 0 ? { clickable: this.clickable } : {},
|
|
8044
|
-
...this.clickableBox !== void 0 ? { "clickable-box": this.clickableBox } : {},
|
|
8045
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8046
|
-
...this.controlType !== void 0 ? { "control-type": this.controlType } : {},
|
|
8047
|
-
...this.tight !== void 0 ? { tight: this.tight } : {},
|
|
7889
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
7890
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
7891
|
+
...this.checked !== void 0 ? { "^checked": this.checked } : {},
|
|
7892
|
+
...this.clickable !== void 0 ? { "^clickable": this.clickable } : {},
|
|
7893
|
+
...this.clickableBox !== void 0 ? { "^clickable-box": this.clickableBox } : {},
|
|
7894
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7895
|
+
...this.controlType !== void 0 ? { "^control-type": this.controlType } : {},
|
|
7896
|
+
...this.tight !== void 0 ? { "^tight": this.tight } : {},
|
|
8048
7897
|
onClick: (event) => this.$emit("click", event),
|
|
8049
7898
|
onFocus: (event) => this.$emit("focus", event),
|
|
8050
7899
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8173,11 +8022,11 @@ const VSideDrawer = vue.defineComponent({
|
|
|
8173
8022
|
{
|
|
8174
8023
|
ref: "element",
|
|
8175
8024
|
class: "vvd-component",
|
|
8176
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8177
|
-
...this.alternate !== void 0 ? { alternate: this.alternate } : {},
|
|
8178
|
-
...this.modal !== void 0 ? { modal: this.modal } : {},
|
|
8179
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
8180
|
-
...this.trailing !== void 0 ? { trailing: this.trailing } : {},
|
|
8025
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8026
|
+
...this.alternate !== void 0 ? { "^alternate": this.alternate } : {},
|
|
8027
|
+
...this.modal !== void 0 ? { "^modal": this.modal } : {},
|
|
8028
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
8029
|
+
...this.trailing !== void 0 ? { "^trailing": this.trailing } : {},
|
|
8181
8030
|
onClick: (event) => this.$emit("click", event),
|
|
8182
8031
|
onFocus: (event) => this.$emit("focus", event),
|
|
8183
8032
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8220,11 +8069,6 @@ const VSlider = vue.defineComponent({
|
|
|
8220
8069
|
* only when the `value` property has not been explicitly set.
|
|
8221
8070
|
*/
|
|
8222
8071
|
initialValue: { type: String, default: void 0 },
|
|
8223
|
-
/**
|
|
8224
|
-
* The initial value of the form. This value sets the `value` property
|
|
8225
|
-
* only when the `value` property has not been explicitly set.
|
|
8226
|
-
*/
|
|
8227
|
-
value: { type: String, default: void 0 },
|
|
8228
8072
|
/**
|
|
8229
8073
|
* The current value of the element. This property serves as a mechanism
|
|
8230
8074
|
* to set the `value` property through both property assignment and the
|
|
@@ -8232,7 +8076,7 @@ const VSlider = vue.defineComponent({
|
|
|
8232
8076
|
* in UI libraries that bind data through the .setAttribute() API
|
|
8233
8077
|
* and don't support IDL attribute binding.
|
|
8234
8078
|
*/
|
|
8235
|
-
|
|
8079
|
+
value: { type: String, default: void 0 },
|
|
8236
8080
|
/**
|
|
8237
8081
|
* The current value of the element. This property serves as a mechanism
|
|
8238
8082
|
* to set the `value` property through both property assignment and the
|
|
@@ -8366,8 +8210,8 @@ const VSlider = vue.defineComponent({
|
|
|
8366
8210
|
attrs: {
|
|
8367
8211
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8368
8212
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8369
|
-
...this.
|
|
8370
|
-
...this.modelValue ?? this.
|
|
8213
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
8214
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
8371
8215
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8372
8216
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8373
8217
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -8382,9 +8226,6 @@ const VSlider = vue.defineComponent({
|
|
|
8382
8226
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
8383
8227
|
},
|
|
8384
8228
|
class: "vvd-component",
|
|
8385
|
-
domProps: {
|
|
8386
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
8387
|
-
},
|
|
8388
8229
|
on: {
|
|
8389
8230
|
click: (event) => this.$emit("click", event),
|
|
8390
8231
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -8409,23 +8250,22 @@ const VSlider = vue.defineComponent({
|
|
|
8409
8250
|
{
|
|
8410
8251
|
ref: "element",
|
|
8411
8252
|
class: "vvd-component",
|
|
8412
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8413
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8414
|
-
...this.initialValue !== void 0 ? { "
|
|
8415
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
8416
|
-
...this.
|
|
8417
|
-
...this.
|
|
8418
|
-
...this.
|
|
8419
|
-
...this.
|
|
8420
|
-
...this.
|
|
8421
|
-
...this.
|
|
8422
|
-
...this.
|
|
8423
|
-
...this.
|
|
8424
|
-
...this.
|
|
8425
|
-
...this.
|
|
8426
|
-
...this.
|
|
8427
|
-
...this.
|
|
8428
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8253
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8254
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
8255
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
8256
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
8257
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
8258
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
8259
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
8260
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
8261
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
8262
|
+
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
8263
|
+
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
8264
|
+
...this.mode !== void 0 ? { "^mode": this.mode } : {},
|
|
8265
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
8266
|
+
...this.ariaValuetext !== void 0 ? { "^aria-valuetext": this.ariaValuetext } : {},
|
|
8267
|
+
...this.markers !== void 0 ? { "^markers": this.markers } : {},
|
|
8268
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8429
8269
|
onClick: (event) => this.$emit("click", event),
|
|
8430
8270
|
onFocus: (event) => this.$emit("focus", event),
|
|
8431
8271
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8607,18 +8447,18 @@ const VSplitButton = vue.defineComponent({
|
|
|
8607
8447
|
{
|
|
8608
8448
|
ref: "element",
|
|
8609
8449
|
class: "vvd-component",
|
|
8610
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8611
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8612
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8613
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
8614
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
8615
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
8616
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
8617
|
-
...this.splitIndicator !== void 0 ? { "split-indicator": this.splitIndicator } : {},
|
|
8618
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8619
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
8620
|
-
...this.ariaExpanded !== void 0 ? { "aria-expanded": this.ariaExpanded } : {},
|
|
8621
|
-
...this.indicatorAriaLabel !== void 0 ? { "indicator-aria-label": this.indicatorAriaLabel } : {},
|
|
8450
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8451
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8452
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8453
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
8454
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
8455
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
8456
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
8457
|
+
...this.splitIndicator !== void 0 ? { "^split-indicator": this.splitIndicator } : {},
|
|
8458
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
8459
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
8460
|
+
...this.ariaExpanded !== void 0 ? { "^aria-expanded": this.ariaExpanded } : {},
|
|
8461
|
+
...this.indicatorAriaLabel !== void 0 ? { "^indicator-aria-label": this.indicatorAriaLabel } : {},
|
|
8622
8462
|
onClick: (event) => this.$emit("click", event),
|
|
8623
8463
|
onFocus: (event) => this.$emit("focus", event),
|
|
8624
8464
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8661,11 +8501,6 @@ const VSwitch = vue.defineComponent({
|
|
|
8661
8501
|
* only when the `value` property has not been explicitly set.
|
|
8662
8502
|
*/
|
|
8663
8503
|
initialValue: { type: String, default: void 0 },
|
|
8664
|
-
/**
|
|
8665
|
-
* The initial value of the form. This value sets the `value` property
|
|
8666
|
-
* only when the `value` property has not been explicitly set.
|
|
8667
|
-
*/
|
|
8668
|
-
value: { type: String, default: void 0 },
|
|
8669
8504
|
/**
|
|
8670
8505
|
* The current value of the element. This property serves as a mechanism
|
|
8671
8506
|
* to set the `value` property through both property assignment and the
|
|
@@ -8673,7 +8508,7 @@ const VSwitch = vue.defineComponent({
|
|
|
8673
8508
|
* in UI libraries that bind data through the .setAttribute() API
|
|
8674
8509
|
* and don't support IDL attribute binding.
|
|
8675
8510
|
*/
|
|
8676
|
-
|
|
8511
|
+
value: { type: String, default: void 0 },
|
|
8677
8512
|
/**
|
|
8678
8513
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
8679
8514
|
*/
|
|
@@ -8686,10 +8521,6 @@ const VSwitch = vue.defineComponent({
|
|
|
8686
8521
|
* Provides the default checkedness of the input element
|
|
8687
8522
|
*/
|
|
8688
8523
|
defaultChecked: { type: Boolean, default: void 0 },
|
|
8689
|
-
/**
|
|
8690
|
-
* Provides the default checkedness of the input element
|
|
8691
|
-
*/
|
|
8692
|
-
checked: { type: Boolean, default: void 0 },
|
|
8693
8524
|
/**
|
|
8694
8525
|
* The current checkedness of the element. This property serves as a mechanism
|
|
8695
8526
|
* to set the `checked` property through both property assignment and the
|
|
@@ -8697,7 +8528,7 @@ const VSwitch = vue.defineComponent({
|
|
|
8697
8528
|
* in UI libraries that bind data through the .setAttribute() API
|
|
8698
8529
|
* and don't support IDL attribute binding.
|
|
8699
8530
|
*/
|
|
8700
|
-
|
|
8531
|
+
checked: { type: Boolean, default: void 0 },
|
|
8701
8532
|
/**
|
|
8702
8533
|
* The current checkedness of the element. This property serves as a mechanism
|
|
8703
8534
|
* to set the `checked` property through both property assignment and the
|
|
@@ -8779,21 +8610,17 @@ const VSwitch = vue.defineComponent({
|
|
|
8779
8610
|
attrs: {
|
|
8780
8611
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8781
8612
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8782
|
-
...this.
|
|
8783
|
-
...this.
|
|
8613
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
8614
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
8784
8615
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8785
8616
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8786
|
-
...this.
|
|
8787
|
-
...this.modelValue ?? this.
|
|
8617
|
+
...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
|
|
8618
|
+
...this.modelValue ?? this.checked !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
|
|
8788
8619
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
8789
8620
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
8790
8621
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
8791
8622
|
},
|
|
8792
8623
|
class: "vvd-component",
|
|
8793
|
-
domProps: {
|
|
8794
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {},
|
|
8795
|
-
...this.defaultChecked !== void 0 ? { defaultChecked: this.defaultChecked } : {}
|
|
8796
|
-
},
|
|
8797
8624
|
on: {
|
|
8798
8625
|
click: (event) => this.$emit("click", event),
|
|
8799
8626
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -8818,19 +8645,17 @@ const VSwitch = vue.defineComponent({
|
|
|
8818
8645
|
{
|
|
8819
8646
|
ref: "element",
|
|
8820
8647
|
class: "vvd-component",
|
|
8821
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8822
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8823
|
-
...this.initialValue !== void 0 ? { "
|
|
8824
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
8825
|
-
...this.
|
|
8826
|
-
...this.
|
|
8827
|
-
...this.
|
|
8828
|
-
...this.
|
|
8829
|
-
...this.
|
|
8830
|
-
...this.
|
|
8831
|
-
...this.
|
|
8832
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
8833
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8648
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8649
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
8650
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
8651
|
+
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
8652
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
8653
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
8654
|
+
...this.defaultChecked !== void 0 ? { "^checked": this.defaultChecked } : {},
|
|
8655
|
+
...this.modelValue ?? this.checked !== void 0 ? { "^current-checked": this.modelValue ?? this.checked } : {},
|
|
8656
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
8657
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
8658
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8834
8659
|
onClick: (event) => this.$emit("click", event),
|
|
8835
8660
|
onFocus: (event) => this.$emit("focus", event),
|
|
8836
8661
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8894,7 +8719,7 @@ const VTab = vue.defineComponent({
|
|
|
8894
8719
|
* Indicates the tab's label.
|
|
8895
8720
|
*/
|
|
8896
8721
|
label: { type: String, default: void 0 },
|
|
8897
|
-
tabIndex: { type:
|
|
8722
|
+
tabIndex: { type: Number, default: void 0 },
|
|
8898
8723
|
ariaSelected: { type: String, default: void 0 }
|
|
8899
8724
|
},
|
|
8900
8725
|
emits: [
|
|
@@ -8974,15 +8799,15 @@ const VTab = vue.defineComponent({
|
|
|
8974
8799
|
{
|
|
8975
8800
|
ref: "element",
|
|
8976
8801
|
class: "vvd-component",
|
|
8977
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
8978
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
8979
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8980
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8981
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8982
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8983
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
8984
|
-
...this.tabIndex !== void 0 ? { tabIndex: this.tabIndex } : {},
|
|
8985
|
-
...this.ariaSelected !== void 0 ? { "aria-selected": this.ariaSelected } : {},
|
|
8802
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
8803
|
+
...this.iconTrailing !== void 0 ? { "^icon-trailing": this.iconTrailing } : {},
|
|
8804
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8805
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
8806
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8807
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8808
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
8809
|
+
...this.tabIndex !== void 0 ? { "^tabIndex": this.tabIndex } : {},
|
|
8810
|
+
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
8986
8811
|
onClick: (event) => this.$emit("click", event),
|
|
8987
8812
|
onFocus: (event) => this.$emit("focus", event),
|
|
8988
8813
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9076,7 +8901,7 @@ const VTabPanel = vue.defineComponent({
|
|
|
9076
8901
|
{
|
|
9077
8902
|
ref: "element",
|
|
9078
8903
|
class: "vvd-component",
|
|
9079
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8904
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9080
8905
|
onClick: (event) => this.$emit("click", event),
|
|
9081
8906
|
onFocus: (event) => this.$emit("focus", event),
|
|
9082
8907
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9238,13 +9063,13 @@ const VTabs = vue.defineComponent({
|
|
|
9238
9063
|
{
|
|
9239
9064
|
ref: "element",
|
|
9240
9065
|
class: "vvd-component",
|
|
9241
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9242
|
-
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
9243
|
-
...this.activeid !== void 0 ? { activeid: this.activeid } : {},
|
|
9244
|
-
...this.activeindicator !== void 0 ? { activeindicator: this.activeindicator } : {},
|
|
9245
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
9246
|
-
...this.gutters !== void 0 ? { gutters: this.gutters } : {},
|
|
9247
|
-
...this.scrollablePanel !== void 0 ? { "scrollable-panel": this.scrollablePanel } : {},
|
|
9066
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9067
|
+
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
9068
|
+
...this.activeid !== void 0 ? { "^activeid": this.activeid } : {},
|
|
9069
|
+
...this.activeindicator !== void 0 ? { "^activeindicator": this.activeindicator } : {},
|
|
9070
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
9071
|
+
...this.gutters !== void 0 ? { "^gutters": this.gutters } : {},
|
|
9072
|
+
...this.scrollablePanel !== void 0 ? { "^scrollable-panel": this.scrollablePanel } : {},
|
|
9248
9073
|
onClick: (event) => this.$emit("click", event),
|
|
9249
9074
|
onFocus: (event) => this.$emit("focus", event),
|
|
9250
9075
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9415,16 +9240,16 @@ const VTag = vue.defineComponent({
|
|
|
9415
9240
|
{
|
|
9416
9241
|
ref: "element",
|
|
9417
9242
|
class: "vvd-component",
|
|
9418
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
9419
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9420
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
9421
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
9422
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
9423
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
9424
|
-
...this.removable !== void 0 ? { removable: this.removable } : {},
|
|
9425
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9426
|
-
...this.selectable !== void 0 ? { selectable: this.selectable } : {},
|
|
9427
|
-
...this.selected !== void 0 ? { selected: this.selected } : {},
|
|
9243
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
9244
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9245
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
9246
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
9247
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
9248
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
9249
|
+
...this.removable !== void 0 ? { "^removable": this.removable } : {},
|
|
9250
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
9251
|
+
...this.selectable !== void 0 ? { "^selectable": this.selectable } : {},
|
|
9252
|
+
...this.selected !== void 0 ? { "^selected": this.selected } : {},
|
|
9428
9253
|
onClick: (event) => this.$emit("click", event),
|
|
9429
9254
|
onFocus: (event) => this.$emit("focus", event),
|
|
9430
9255
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9522,8 +9347,8 @@ const VTagGroup = vue.defineComponent({
|
|
|
9522
9347
|
{
|
|
9523
9348
|
ref: "element",
|
|
9524
9349
|
class: "vvd-component",
|
|
9525
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9526
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
9350
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9351
|
+
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
9527
9352
|
onClick: (event) => this.$emit("click", event),
|
|
9528
9353
|
onFocus: (event) => this.$emit("focus", event),
|
|
9529
9354
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9582,11 +9407,6 @@ const VTextArea = vue.defineComponent({
|
|
|
9582
9407
|
* only when the `value` property has not been explicitly set.
|
|
9583
9408
|
*/
|
|
9584
9409
|
initialValue: { type: String, default: void 0 },
|
|
9585
|
-
/**
|
|
9586
|
-
* The initial value of the form. This value sets the `value` property
|
|
9587
|
-
* only when the `value` property has not been explicitly set.
|
|
9588
|
-
*/
|
|
9589
|
-
value: { type: String, default: void 0 },
|
|
9590
9410
|
/**
|
|
9591
9411
|
* The current value of the element. This property serves as a mechanism
|
|
9592
9412
|
* to set the `value` property through both property assignment and the
|
|
@@ -9594,7 +9414,7 @@ const VTextArea = vue.defineComponent({
|
|
|
9594
9414
|
* in UI libraries that bind data through the .setAttribute() API
|
|
9595
9415
|
* and don't support IDL attribute binding.
|
|
9596
9416
|
*/
|
|
9597
|
-
|
|
9417
|
+
value: { type: String, default: void 0 },
|
|
9598
9418
|
/**
|
|
9599
9419
|
* The current value of the element. This property serves as a mechanism
|
|
9600
9420
|
* to set the `value` property through both property assignment and the
|
|
@@ -9742,8 +9562,8 @@ const VTextArea = vue.defineComponent({
|
|
|
9742
9562
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
9743
9563
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9744
9564
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9745
|
-
...this.
|
|
9746
|
-
...this.modelValue ?? this.
|
|
9565
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
9566
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
9747
9567
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9748
9568
|
...this.readOnly !== void 0 ? { readOnly: this.readOnly } : {},
|
|
9749
9569
|
...this.resize !== void 0 ? { resize: this.resize } : {},
|
|
@@ -9760,9 +9580,6 @@ const VTextArea = vue.defineComponent({
|
|
|
9760
9580
|
...this.wrap !== void 0 ? { wrap: this.wrap } : {}
|
|
9761
9581
|
},
|
|
9762
9582
|
class: "vvd-component",
|
|
9763
|
-
domProps: {
|
|
9764
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
9765
|
-
},
|
|
9766
9583
|
on: {
|
|
9767
9584
|
click: (event) => this.$emit("click", event),
|
|
9768
9585
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -9791,30 +9608,29 @@ const VTextArea = vue.defineComponent({
|
|
|
9791
9608
|
{
|
|
9792
9609
|
ref: "element",
|
|
9793
9610
|
class: "vvd-component",
|
|
9794
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
9795
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
9796
|
-
...this.charCount !== void 0 ? { "char-count": this.charCount } : {},
|
|
9797
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
9798
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
9799
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9800
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9801
|
-
...this.initialValue !== void 0 ? { "
|
|
9802
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
9803
|
-
...this.
|
|
9804
|
-
...this.
|
|
9805
|
-
...this.
|
|
9806
|
-
...this.
|
|
9807
|
-
...this.
|
|
9808
|
-
...this.
|
|
9809
|
-
...this.
|
|
9810
|
-
...this.
|
|
9811
|
-
...this.
|
|
9812
|
-
...this.
|
|
9813
|
-
...this.
|
|
9814
|
-
...this.
|
|
9815
|
-
...this.
|
|
9816
|
-
...this.
|
|
9817
|
-
...this.wrap !== void 0 ? { wrap: this.wrap } : {},
|
|
9611
|
+
...this.successText !== void 0 ? { "^success-text": this.successText } : {},
|
|
9612
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
9613
|
+
...this.charCount !== void 0 ? { "^char-count": this.charCount } : {},
|
|
9614
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
9615
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
9616
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9617
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
9618
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
9619
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
9620
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
9621
|
+
...this.readOnly !== void 0 ? { "^readOnly": this.readOnly } : {},
|
|
9622
|
+
...this.resize !== void 0 ? { "^resize": this.resize } : {},
|
|
9623
|
+
...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
|
|
9624
|
+
...this.form !== void 0 ? { "^form": this.form } : {},
|
|
9625
|
+
...this.list !== void 0 ? { "^list": this.list } : {},
|
|
9626
|
+
...this.maxlength !== void 0 ? { "^maxlength": this.maxlength } : {},
|
|
9627
|
+
...this.minlength !== void 0 ? { "^minlength": this.minlength } : {},
|
|
9628
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
9629
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
9630
|
+
...this.cols !== void 0 ? { "^cols": this.cols } : {},
|
|
9631
|
+
...this.rows !== void 0 ? { "^rows": this.rows } : {},
|
|
9632
|
+
...this.spellcheck !== void 0 ? { "^spellcheck": this.spellcheck } : {},
|
|
9633
|
+
...this.wrap !== void 0 ? { "^wrap": this.wrap } : {},
|
|
9818
9634
|
onClick: (event) => this.$emit("click", event),
|
|
9819
9635
|
onFocus: (event) => this.$emit("focus", event),
|
|
9820
9636
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9887,11 +9703,6 @@ const VTextField = vue.defineComponent({
|
|
|
9887
9703
|
* only when the `value` property has not been explicitly set.
|
|
9888
9704
|
*/
|
|
9889
9705
|
initialValue: { type: String, default: void 0 },
|
|
9890
|
-
/**
|
|
9891
|
-
* The initial value of the form. This value sets the `value` property
|
|
9892
|
-
* only when the `value` property has not been explicitly set.
|
|
9893
|
-
*/
|
|
9894
|
-
value: { type: String, default: void 0 },
|
|
9895
9706
|
/**
|
|
9896
9707
|
* The current value of the element. This property serves as a mechanism
|
|
9897
9708
|
* to set the `value` property through both property assignment and the
|
|
@@ -9899,7 +9710,7 @@ const VTextField = vue.defineComponent({
|
|
|
9899
9710
|
* in UI libraries that bind data through the .setAttribute() API
|
|
9900
9711
|
* and don't support IDL attribute binding.
|
|
9901
9712
|
*/
|
|
9902
|
-
|
|
9713
|
+
value: { type: String, default: void 0 },
|
|
9903
9714
|
/**
|
|
9904
9715
|
* The current value of the element. This property serves as a mechanism
|
|
9905
9716
|
* to set the `value` property through both property assignment and the
|
|
@@ -10045,8 +9856,8 @@ const VTextField = vue.defineComponent({
|
|
|
10045
9856
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
10046
9857
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10047
9858
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10048
|
-
...this.
|
|
10049
|
-
...this.modelValue ?? this.
|
|
9859
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
9860
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
10050
9861
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
10051
9862
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
10052
9863
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -10064,9 +9875,6 @@ const VTextField = vue.defineComponent({
|
|
|
10064
9875
|
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {}
|
|
10065
9876
|
},
|
|
10066
9877
|
class: "vvd-component",
|
|
10067
|
-
domProps: {
|
|
10068
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
10069
|
-
},
|
|
10070
9878
|
on: {
|
|
10071
9879
|
click: (event) => this.$emit("click", event),
|
|
10072
9880
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -10102,32 +9910,31 @@ const VTextField = vue.defineComponent({
|
|
|
10102
9910
|
{
|
|
10103
9911
|
ref: "element",
|
|
10104
9912
|
class: "vvd-component",
|
|
10105
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
10106
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
10107
|
-
...this.charCount !== void 0 ? { "char-count": this.charCount } : {},
|
|
10108
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
10109
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
10110
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
10111
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10112
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10113
|
-
...this.initialValue !== void 0 ? { "
|
|
10114
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
10115
|
-
...this.
|
|
10116
|
-
...this.
|
|
10117
|
-
...this.
|
|
10118
|
-
...this.
|
|
10119
|
-
...this.
|
|
10120
|
-
...this.
|
|
10121
|
-
...this.
|
|
10122
|
-
...this.
|
|
10123
|
-
...this.
|
|
10124
|
-
...this.
|
|
10125
|
-
...this.
|
|
10126
|
-
...this.
|
|
10127
|
-
...this.
|
|
10128
|
-
...this.
|
|
10129
|
-
...this.
|
|
10130
|
-
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {},
|
|
9913
|
+
...this.successText !== void 0 ? { "^success-text": this.successText } : {},
|
|
9914
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
9915
|
+
...this.charCount !== void 0 ? { "^char-count": this.charCount } : {},
|
|
9916
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
9917
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
9918
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
9919
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9920
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
9921
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
9922
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
9923
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
9924
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
9925
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
9926
|
+
...this.autofocus !== void 0 ? { "^autofocus": this.autofocus } : {},
|
|
9927
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
9928
|
+
...this.type !== void 0 ? { "^type": this.type } : {},
|
|
9929
|
+
...this.list !== void 0 ? { "^list": this.list } : {},
|
|
9930
|
+
...this.maxlength !== void 0 ? { "^maxlength": this.maxlength } : {},
|
|
9931
|
+
...this.minlength !== void 0 ? { "^minlength": this.minlength } : {},
|
|
9932
|
+
...this.pattern !== void 0 ? { "^pattern": this.pattern } : {},
|
|
9933
|
+
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
9934
|
+
...this.spellcheck !== void 0 ? { "^spellcheck": this.spellcheck } : {},
|
|
9935
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
9936
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
9937
|
+
...this.autoComplete !== void 0 ? { "^autoComplete": this.autoComplete } : {},
|
|
10131
9938
|
onClick: (event) => this.$emit("click", event),
|
|
10132
9939
|
onFocus: (event) => this.$emit("focus", event),
|
|
10133
9940
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10194,11 +10001,6 @@ const VTimePicker = vue.defineComponent({
|
|
|
10194
10001
|
* only when the `value` property has not been explicitly set.
|
|
10195
10002
|
*/
|
|
10196
10003
|
initialValue: { type: String, default: void 0 },
|
|
10197
|
-
/**
|
|
10198
|
-
* The initial value of the form. This value sets the `value` property
|
|
10199
|
-
* only when the `value` property has not been explicitly set.
|
|
10200
|
-
*/
|
|
10201
|
-
value: { type: String, default: void 0 },
|
|
10202
10004
|
/**
|
|
10203
10005
|
* The current value of the element. This property serves as a mechanism
|
|
10204
10006
|
* to set the `value` property through both property assignment and the
|
|
@@ -10206,7 +10008,7 @@ const VTimePicker = vue.defineComponent({
|
|
|
10206
10008
|
* in UI libraries that bind data through the .setAttribute() API
|
|
10207
10009
|
* and don't support IDL attribute binding.
|
|
10208
10010
|
*/
|
|
10209
|
-
|
|
10011
|
+
value: { type: String, default: void 0 },
|
|
10210
10012
|
/**
|
|
10211
10013
|
* The current value of the element. This property serves as a mechanism
|
|
10212
10014
|
* to set the `value` property through both property assignment and the
|
|
@@ -10308,8 +10110,8 @@ const VTimePicker = vue.defineComponent({
|
|
|
10308
10110
|
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
10309
10111
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10310
10112
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10311
|
-
...this.
|
|
10312
|
-
...this.modelValue ?? this.
|
|
10113
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
10114
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
10313
10115
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
10314
10116
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
10315
10117
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -10320,9 +10122,6 @@ const VTimePicker = vue.defineComponent({
|
|
|
10320
10122
|
...this.max !== void 0 ? { max: this.max } : {}
|
|
10321
10123
|
},
|
|
10322
10124
|
class: "vvd-component",
|
|
10323
|
-
domProps: {
|
|
10324
|
-
...this.initialValue !== void 0 ? { initialValue: this.initialValue } : {}
|
|
10325
|
-
},
|
|
10326
10125
|
on: {
|
|
10327
10126
|
click: (event) => this.$emit("click", event),
|
|
10328
10127
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -10351,22 +10150,21 @@ const VTimePicker = vue.defineComponent({
|
|
|
10351
10150
|
{
|
|
10352
10151
|
ref: "element",
|
|
10353
10152
|
class: "vvd-component",
|
|
10354
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
10355
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
10356
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
10357
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10358
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10359
|
-
...this.initialValue !== void 0 ? { "
|
|
10360
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
10361
|
-
...this.
|
|
10362
|
-
...this.
|
|
10363
|
-
...this.
|
|
10364
|
-
...this.
|
|
10365
|
-
...this.
|
|
10366
|
-
...this.
|
|
10367
|
-
...this.
|
|
10368
|
-
...this.
|
|
10369
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
10153
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
10154
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
10155
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
10156
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10157
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
10158
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
10159
|
+
...this.modelValue ?? this.value !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
10160
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
10161
|
+
...this.required !== void 0 ? { "^required": this.required } : {},
|
|
10162
|
+
...this.readonly !== void 0 ? { "^readonly": this.readonly } : {},
|
|
10163
|
+
...this.minutesStep !== void 0 ? { "^minutes-step": this.minutesStep } : {},
|
|
10164
|
+
...this.secondsStep !== void 0 ? { "^seconds-step": this.secondsStep } : {},
|
|
10165
|
+
...this.clock !== void 0 ? { "^clock": this.clock } : {},
|
|
10166
|
+
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
10167
|
+
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
10370
10168
|
onClick: (event) => this.$emit("click", event),
|
|
10371
10169
|
onFocus: (event) => this.$emit("focus", event),
|
|
10372
10170
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10510,12 +10308,12 @@ const VToggletip = vue.defineComponent({
|
|
|
10510
10308
|
{
|
|
10511
10309
|
ref: "element",
|
|
10512
10310
|
class: "vvd-component",
|
|
10513
|
-
...this.anchor !== void 0 ? { anchor: this.anchor } : {},
|
|
10514
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10515
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
10516
|
-
...this.alternate !== void 0 ? { alternate: this.alternate } : {},
|
|
10517
|
-
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
10518
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
10311
|
+
...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
|
|
10312
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10313
|
+
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
10314
|
+
...this.alternate !== void 0 ? { "^alternate": this.alternate } : {},
|
|
10315
|
+
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10316
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
10519
10317
|
onClick: (event) => this.$emit("click", event),
|
|
10520
10318
|
onFocus: (event) => this.$emit("focus", event),
|
|
10521
10319
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10638,11 +10436,11 @@ const VTooltip = vue.defineComponent({
|
|
|
10638
10436
|
{
|
|
10639
10437
|
ref: "element",
|
|
10640
10438
|
class: "vvd-component",
|
|
10641
|
-
...this.anchor !== void 0 ? { anchor: this.anchor } : {},
|
|
10642
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10643
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
10644
|
-
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
10645
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
10439
|
+
...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
|
|
10440
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10441
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
10442
|
+
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10443
|
+
...this.open !== void 0 ? { "^open": this.open } : {},
|
|
10646
10444
|
onClick: (event) => this.$emit("click", event),
|
|
10647
10445
|
onFocus: (event) => this.$emit("focus", event),
|
|
10648
10446
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10780,12 +10578,12 @@ const VTreeItem = vue.defineComponent({
|
|
|
10780
10578
|
{
|
|
10781
10579
|
ref: "element",
|
|
10782
10580
|
class: "vvd-component",
|
|
10783
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
10784
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10785
|
-
...this.expanded !== void 0 ? { expanded: this.expanded } : {},
|
|
10786
|
-
...this.selected !== void 0 ? { selected: this.selected } : {},
|
|
10787
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10788
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
10581
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
10582
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10583
|
+
...this.expanded !== void 0 ? { "^expanded": this.expanded } : {},
|
|
10584
|
+
...this.selected !== void 0 ? { "^selected": this.selected } : {},
|
|
10585
|
+
...this.disabled !== void 0 ? { "^disabled": this.disabled } : {},
|
|
10586
|
+
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
10789
10587
|
onClick: (event) => this.$emit("click", event),
|
|
10790
10588
|
onFocus: (event) => this.$emit("focus", event),
|
|
10791
10589
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10892,8 +10690,8 @@ const VTreeView = vue.defineComponent({
|
|
|
10892
10690
|
{
|
|
10893
10691
|
ref: "element",
|
|
10894
10692
|
class: "vvd-component",
|
|
10895
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10896
|
-
...this.renderCollapsedNodes !== void 0 ? { "render-collapsed-nodes": this.renderCollapsedNodes } : {},
|
|
10693
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10694
|
+
...this.renderCollapsedNodes !== void 0 ? { "^render-collapsed-nodes": this.renderCollapsedNodes } : {},
|
|
10897
10695
|
onClick: (event) => this.$emit("click", event),
|
|
10898
10696
|
onFocus: (event) => this.$emit("focus", event),
|
|
10899
10697
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -11039,13 +10837,13 @@ const VVideoPlayer = vue.defineComponent({
|
|
|
11039
10837
|
{
|
|
11040
10838
|
ref: "element",
|
|
11041
10839
|
class: "vvd-component",
|
|
11042
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
11043
|
-
...this.poster !== void 0 ? { poster: this.poster } : {},
|
|
11044
|
-
...this.src !== void 0 ? { src: this.src } : {},
|
|
11045
|
-
...this.autoplay !== void 0 ? { autoplay: this.autoplay } : {},
|
|
11046
|
-
...this.loop !== void 0 ? { loop: this.loop } : {},
|
|
11047
|
-
...this.playbackRates !== void 0 ? { "playback-rates": this.playbackRates } : {},
|
|
11048
|
-
...this.skipBy !== void 0 ? { "skip-by": this.skipBy } : {},
|
|
10840
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10841
|
+
...this.poster !== void 0 ? { "^poster": this.poster } : {},
|
|
10842
|
+
...this.src !== void 0 ? { "^src": this.src } : {},
|
|
10843
|
+
...this.autoplay !== void 0 ? { "^autoplay": this.autoplay } : {},
|
|
10844
|
+
...this.loop !== void 0 ? { "^loop": this.loop } : {},
|
|
10845
|
+
...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
|
|
10846
|
+
...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
|
|
11049
10847
|
onClick: (event) => this.$emit("click", event),
|
|
11050
10848
|
onFocus: (event) => this.$emit("focus", event),
|
|
11051
10849
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -12288,17 +12086,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
12288
12086
|
return Icon2;
|
|
12289
12087
|
})(Icon || {});
|
|
12290
12088
|
|
|
12291
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13: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";
|
|
12089
|
+
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";
|
|
12292
12090
|
|
|
12293
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13:24:07 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 01 Jul 2024 13: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";
|
|
12091
|
+
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";
|
|
12294
12092
|
|
|
12295
12093
|
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";
|
|
12296
12094
|
|
|
12297
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on
|
|
12095
|
+
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";
|
|
12298
12096
|
|
|
12299
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on
|
|
12097
|
+
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";
|
|
12300
12098
|
|
|
12301
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on
|
|
12099
|
+
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";
|
|
12302
12100
|
|
|
12303
12101
|
const theme = {
|
|
12304
12102
|
name: "core/theme",
|