@vonage/vivid-vue 3.59.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 +8 -8
- package/generated/components/VButton.vue3.d.ts +8 -8
- package/generated/components/VCheckbox.vue2.d.ts +10 -10
- package/generated/components/VCheckbox.vue3.d.ts +10 -10
- package/generated/components/VCombobox.vue2.d.ts +5 -5
- package/generated/components/VCombobox.vue3.d.ts +5 -5
- 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 +9 -9
- package/generated/components/VDatePicker.vue3.d.ts +9 -9
- package/generated/components/VDateRangePicker.vue2.d.ts +25 -37
- package/generated/components/VDateRangePicker.vue3.d.ts +25 -37
- package/generated/components/VFab.vue2.d.ts +5 -5
- package/generated/components/VFab.vue3.d.ts +5 -5
- package/generated/components/VFilePicker.vue2.d.ts +5 -5
- package/generated/components/VFilePicker.vue3.d.ts +5 -5
- package/generated/components/VNumberField.vue2.d.ts +5 -5
- package/generated/components/VNumberField.vue3.d.ts +5 -5
- package/generated/components/VOption.vue2.d.ts +3 -3
- package/generated/components/VOption.vue3.d.ts +3 -3
- package/generated/components/VRadio.vue2.d.ts +10 -10
- package/generated/components/VRadio.vue3.d.ts +10 -10
- package/generated/components/VRangeSlider.vue2.d.ts +19 -31
- package/generated/components/VRangeSlider.vue3.d.ts +19 -31
- package/generated/components/VSelect.vue2.d.ts +6 -5
- package/generated/components/VSelect.vue3.d.ts +6 -5
- package/generated/components/VSlider.vue2.d.ts +5 -5
- package/generated/components/VSlider.vue3.d.ts +5 -5
- package/generated/components/VSwitch.vue2.d.ts +10 -10
- package/generated/components/VSwitch.vue3.d.ts +10 -10
- 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 +5 -5
- package/generated/components/VTextArea.vue3.d.ts +5 -5
- package/generated/components/VTextField.vue2.d.ts +5 -5
- package/generated/components/VTextField.vue3.d.ts +5 -5
- package/generated/components/VTimePicker.vue2.d.ts +5 -5
- package/generated/components/VTimePicker.vue3.d.ts +5 -5
- package/index.cjs +717 -719
- package/index.js +717 -719
- package/package.json +2 -2
- package/web-types.json +52 -52
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),
|
|
@@ -1503,7 +1503,7 @@ const VButton = vue.defineComponent({
|
|
|
1503
1503
|
* The initial value of the form. This value sets the `value` property
|
|
1504
1504
|
* only when the `value` property has not been explicitly set.
|
|
1505
1505
|
*/
|
|
1506
|
-
|
|
1506
|
+
initialValue: { type: String, default: void 0 },
|
|
1507
1507
|
/**
|
|
1508
1508
|
* The current value of the element. This property serves as a mechanism
|
|
1509
1509
|
* to set the `value` property through both property assignment and the
|
|
@@ -1511,7 +1511,7 @@ const VButton = vue.defineComponent({
|
|
|
1511
1511
|
* in UI libraries that bind data through the .setAttribute() API
|
|
1512
1512
|
* and don't support IDL attribute binding.
|
|
1513
1513
|
*/
|
|
1514
|
-
|
|
1514
|
+
value: { type: String, default: void 0 },
|
|
1515
1515
|
/**
|
|
1516
1516
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
1517
1517
|
*/
|
|
@@ -1688,8 +1688,8 @@ const VButton = vue.defineComponent({
|
|
|
1688
1688
|
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
1689
1689
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
1690
1690
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
1691
|
-
...this.
|
|
1692
|
-
...this.
|
|
1691
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
1692
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
1693
1693
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
1694
1694
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
1695
1695
|
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
@@ -1739,38 +1739,38 @@ const VButton = vue.defineComponent({
|
|
|
1739
1739
|
{
|
|
1740
1740
|
ref: "element",
|
|
1741
1741
|
class: "vvd-component",
|
|
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.
|
|
1747
|
-
...this.
|
|
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 } : {},
|
|
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 } : {},
|
|
1774
1774
|
onClick: (event) => this.$emit("click", event),
|
|
1775
1775
|
onFocus: (event) => this.$emit("focus", event),
|
|
1776
1776
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -1926,11 +1926,11 @@ const VCalendar = vue.defineComponent({
|
|
|
1926
1926
|
{
|
|
1927
1927
|
ref: "element",
|
|
1928
1928
|
class: "vvd-component",
|
|
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 } : {},
|
|
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 } : {},
|
|
1934
1934
|
onClick: (event) => this.$emit("click", event),
|
|
1935
1935
|
onFocus: (event) => this.$emit("focus", event),
|
|
1936
1936
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2080,14 +2080,14 @@ const VCalendarEvent = vue.defineComponent({
|
|
|
2080
2080
|
{
|
|
2081
2081
|
ref: "element",
|
|
2082
2082
|
class: "vvd-component",
|
|
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 } : {},
|
|
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 } : {},
|
|
2091
2091
|
onClick: (event) => this.$emit("click", event),
|
|
2092
2092
|
onFocus: (event) => this.$emit("focus", event),
|
|
2093
2093
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2231,13 +2231,13 @@ const VCard = vue.defineComponent({
|
|
|
2231
2231
|
{
|
|
2232
2232
|
ref: "element",
|
|
2233
2233
|
class: "vvd-component",
|
|
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 } : {},
|
|
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 } : {},
|
|
2241
2241
|
onClick: (event) => this.$emit("click", event),
|
|
2242
2242
|
onFocus: (event) => this.$emit("focus", event),
|
|
2243
2243
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2301,7 +2301,7 @@ const VCheckbox = vue.defineComponent({
|
|
|
2301
2301
|
* The initial value of the form. This value sets the `value` property
|
|
2302
2302
|
* only when the `value` property has not been explicitly set.
|
|
2303
2303
|
*/
|
|
2304
|
-
|
|
2304
|
+
initialValue: { type: String, default: void 0 },
|
|
2305
2305
|
/**
|
|
2306
2306
|
* The current value of the element. This property serves as a mechanism
|
|
2307
2307
|
* to set the `value` property through both property assignment and the
|
|
@@ -2309,7 +2309,7 @@ const VCheckbox = vue.defineComponent({
|
|
|
2309
2309
|
* in UI libraries that bind data through the .setAttribute() API
|
|
2310
2310
|
* and don't support IDL attribute binding.
|
|
2311
2311
|
*/
|
|
2312
|
-
|
|
2312
|
+
value: { type: String, default: void 0 },
|
|
2313
2313
|
/**
|
|
2314
2314
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
2315
2315
|
*/
|
|
@@ -2321,7 +2321,7 @@ const VCheckbox = vue.defineComponent({
|
|
|
2321
2321
|
/**
|
|
2322
2322
|
* Provides the default checkedness of the input element
|
|
2323
2323
|
*/
|
|
2324
|
-
|
|
2324
|
+
defaultChecked: { type: Boolean, default: void 0 },
|
|
2325
2325
|
/**
|
|
2326
2326
|
* The current checkedness of the element. This property serves as a mechanism
|
|
2327
2327
|
* to set the `checked` property through both property assignment and the
|
|
@@ -2329,7 +2329,7 @@ const VCheckbox = vue.defineComponent({
|
|
|
2329
2329
|
* in UI libraries that bind data through the .setAttribute() API
|
|
2330
2330
|
* and don't support IDL attribute binding.
|
|
2331
2331
|
*/
|
|
2332
|
-
|
|
2332
|
+
checked: { type: Boolean, default: void 0 },
|
|
2333
2333
|
/**
|
|
2334
2334
|
* The current checkedness of the element. This property serves as a mechanism
|
|
2335
2335
|
* to set the `checked` property through both property assignment and the
|
|
@@ -2413,12 +2413,12 @@ const VCheckbox = vue.defineComponent({
|
|
|
2413
2413
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
2414
2414
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2415
2415
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
2416
|
-
...this.
|
|
2417
|
-
...this.
|
|
2416
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
2417
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
2418
2418
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2419
2419
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2420
|
-
...this.
|
|
2421
|
-
...this.modelValue ?? this.
|
|
2420
|
+
...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
|
|
2421
|
+
...this.modelValue ?? this.checked !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
|
|
2422
2422
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
2423
2423
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
2424
2424
|
...this.tabindex !== void 0 ? { tabindex: this.tabindex } : {},
|
|
@@ -2453,22 +2453,22 @@ const VCheckbox = vue.defineComponent({
|
|
|
2453
2453
|
{
|
|
2454
2454
|
ref: "element",
|
|
2455
2455
|
class: "vvd-component",
|
|
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.
|
|
2463
|
-
...this.
|
|
2464
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
2465
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
2466
|
-
...this.
|
|
2467
|
-
...this.modelValue ?? this.
|
|
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 } : {},
|
|
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 } : {},
|
|
2472
2472
|
onClick: (event) => this.$emit("click", event),
|
|
2473
2473
|
onFocus: (event) => this.$emit("focus", event),
|
|
2474
2474
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2520,7 +2520,7 @@ const VCombobox = vue.defineComponent({
|
|
|
2520
2520
|
* The initial value of the form. This value sets the `value` property
|
|
2521
2521
|
* only when the `value` property has not been explicitly set.
|
|
2522
2522
|
*/
|
|
2523
|
-
|
|
2523
|
+
initialValue: { type: String, default: void 0 },
|
|
2524
2524
|
/**
|
|
2525
2525
|
* The current value of the element. This property serves as a mechanism
|
|
2526
2526
|
* to set the `value` property through both property assignment and the
|
|
@@ -2528,7 +2528,7 @@ const VCombobox = vue.defineComponent({
|
|
|
2528
2528
|
* in UI libraries that bind data through the .setAttribute() API
|
|
2529
2529
|
* and don't support IDL attribute binding.
|
|
2530
2530
|
*/
|
|
2531
|
-
|
|
2531
|
+
value: { type: String, default: void 0 },
|
|
2532
2532
|
/**
|
|
2533
2533
|
* The current value of the element. This property serves as a mechanism
|
|
2534
2534
|
* to set the `value` property through both property assignment and the
|
|
@@ -2681,8 +2681,8 @@ const VCombobox = vue.defineComponent({
|
|
|
2681
2681
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
2682
2682
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
2683
2683
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2684
|
-
...this.
|
|
2685
|
-
...this.modelValue ?? this.
|
|
2684
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
2685
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
2686
2686
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2687
2687
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2688
2688
|
...this.autocomplete !== void 0 ? { autocomplete: this.autocomplete } : {},
|
|
@@ -2719,21 +2719,21 @@ const VCombobox = vue.defineComponent({
|
|
|
2719
2719
|
{
|
|
2720
2720
|
ref: "element",
|
|
2721
2721
|
class: "vvd-component",
|
|
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.
|
|
2726
|
-
...this.modelValue ?? this.
|
|
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 } : {},
|
|
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 } : {},
|
|
2737
2737
|
onClick: (event) => this.$emit("click", event),
|
|
2738
2738
|
onFocus: (event) => this.$emit("focus", event),
|
|
2739
2739
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2879,12 +2879,12 @@ const VDataGrid = vue.defineComponent({
|
|
|
2879
2879
|
{
|
|
2880
2880
|
ref: "element",
|
|
2881
2881
|
class: "vvd-component",
|
|
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 } : {},
|
|
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 } : {},
|
|
2888
2888
|
onClick: (event) => this.$emit("click", event),
|
|
2889
2889
|
onFocus: (event) => this.$emit("focus", event),
|
|
2890
2890
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2907,10 +2907,7 @@ const VDataGridCell = vue.defineComponent({
|
|
|
2907
2907
|
/**
|
|
2908
2908
|
* Extends the data grid cell definition to hold more options.
|
|
2909
2909
|
*/
|
|
2910
|
-
columnDefinition: {
|
|
2911
|
-
type: null,
|
|
2912
|
-
default: void 0
|
|
2913
|
-
},
|
|
2910
|
+
columnDefinition: { type: Object, default: void 0 },
|
|
2914
2911
|
/**
|
|
2915
2912
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
2916
2913
|
*/
|
|
@@ -3013,7 +3010,6 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3013
3010
|
{
|
|
3014
3011
|
ref: "element",
|
|
3015
3012
|
attrs: {
|
|
3016
|
-
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {},
|
|
3017
3013
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3018
3014
|
...this.cellType !== void 0 ? { "cell-type": this.cellType } : {},
|
|
3019
3015
|
...this.gridColumn !== void 0 ? { "grid-column": this.gridColumn } : {},
|
|
@@ -3021,6 +3017,9 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3021
3017
|
...this.ariaSort !== void 0 ? { "aria-sort": this.ariaSort } : {}
|
|
3022
3018
|
},
|
|
3023
3019
|
class: "vvd-component",
|
|
3020
|
+
domProps: {
|
|
3021
|
+
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {}
|
|
3022
|
+
},
|
|
3024
3023
|
on: {
|
|
3025
3024
|
click: (event) => this.$emit("click", event),
|
|
3026
3025
|
focus: (event) => this.$emit("focus", event),
|
|
@@ -3041,12 +3040,12 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3041
3040
|
{
|
|
3042
3041
|
ref: "element",
|
|
3043
3042
|
class: "vvd-component",
|
|
3044
|
-
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {},
|
|
3045
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3046
|
-
...this.cellType !== void 0 ? { "cell-type": this.cellType } : {},
|
|
3047
|
-
...this.gridColumn !== void 0 ? { "grid-column": this.gridColumn } : {},
|
|
3048
|
-
...this.ariaSelected !== void 0 ? { "aria-selected": this.ariaSelected } : {},
|
|
3049
|
-
...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 } : {},
|
|
3050
3049
|
onClick: (event) => this.$emit("click", event),
|
|
3051
3050
|
onFocus: (event) => this.$emit("focus", event),
|
|
3052
3051
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3184,10 +3183,10 @@ const VDataGridRow = vue.defineComponent({
|
|
|
3184
3183
|
{
|
|
3185
3184
|
ref: "element",
|
|
3186
3185
|
class: "vvd-component",
|
|
3187
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3188
|
-
...this.gridTemplateColumns !== void 0 ? { "grid-template-columns": this.gridTemplateColumns } : {},
|
|
3189
|
-
...this.rowType !== void 0 ? { "row-type": this.rowType } : {},
|
|
3190
|
-
...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 } : {},
|
|
3191
3190
|
onClick: (event) => this.$emit("click", event),
|
|
3192
3191
|
onFocus: (event) => this.$emit("focus", event),
|
|
3193
3192
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3250,15 +3249,15 @@ const VDatePicker = vue.defineComponent({
|
|
|
3250
3249
|
/**
|
|
3251
3250
|
* The initial value of the date-picker.
|
|
3252
3251
|
*/
|
|
3253
|
-
|
|
3252
|
+
initialValue: { type: String, default: void 0 },
|
|
3254
3253
|
/**
|
|
3255
|
-
* The
|
|
3254
|
+
* The current value of the date-picker.
|
|
3256
3255
|
*/
|
|
3257
|
-
|
|
3256
|
+
value: { type: String, default: void 0 },
|
|
3258
3257
|
/**
|
|
3259
3258
|
* The current value of the date-picker.
|
|
3260
3259
|
*/
|
|
3261
|
-
|
|
3260
|
+
modelValue: { type: String, default: void 0 },
|
|
3262
3261
|
/**
|
|
3263
3262
|
* Whether the date-picker is readonly.
|
|
3264
3263
|
*/
|
|
@@ -3332,8 +3331,8 @@ const VDatePicker = vue.defineComponent({
|
|
|
3332
3331
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3333
3332
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3334
3333
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3335
|
-
...this.
|
|
3336
|
-
...this.
|
|
3334
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
3335
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
3337
3336
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {}
|
|
3338
3337
|
},
|
|
3339
3338
|
class: "vvd-component",
|
|
@@ -3366,17 +3365,17 @@ const VDatePicker = vue.defineComponent({
|
|
|
3366
3365
|
{
|
|
3367
3366
|
ref: "element",
|
|
3368
3367
|
class: "vvd-component",
|
|
3369
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
3370
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
3371
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3372
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3373
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
3374
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
3375
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
3376
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
3377
|
-
...this.
|
|
3378
|
-
...this.
|
|
3379
|
-
...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 } : {},
|
|
3380
3379
|
onClick: (event) => this.$emit("click", event),
|
|
3381
3380
|
onFocus: (event) => this.$emit("focus", event),
|
|
3382
3381
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3437,13 +3436,15 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3437
3436
|
*/
|
|
3438
3437
|
max: { type: String, default: void 0 },
|
|
3439
3438
|
/**
|
|
3440
|
-
* The
|
|
3441
|
-
*
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3439
|
+
* The initial start value. This value sets the `start` property
|
|
3440
|
+
* only when the `start` property has not been explicitly set.
|
|
3441
|
+
*/
|
|
3442
|
+
initialStart: { type: String, default: void 0 },
|
|
3443
|
+
/**
|
|
3444
|
+
* The initial end value. This value sets the `end` property
|
|
3445
|
+
* only when the `end` property has not been explicitly set.
|
|
3445
3446
|
*/
|
|
3446
|
-
|
|
3447
|
+
initialEnd: { type: String, default: void 0 },
|
|
3447
3448
|
/**
|
|
3448
3449
|
* The current start value of the element. This property serves as a mechanism
|
|
3449
3450
|
* to set the `start` property through both property assignment and the
|
|
@@ -3452,14 +3453,6 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3452
3453
|
* and don't support IDL attribute binding.
|
|
3453
3454
|
*/
|
|
3454
3455
|
start: { type: String, default: void 0 },
|
|
3455
|
-
/**
|
|
3456
|
-
* The current end value of the element. This property serves as a mechanism
|
|
3457
|
-
* to set the `end` property through both property assignment and the
|
|
3458
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
3459
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
3460
|
-
* and don't support IDL attribute binding.
|
|
3461
|
-
*/
|
|
3462
|
-
currentEnd: { type: String, default: void 0 },
|
|
3463
3456
|
/**
|
|
3464
3457
|
* The current end value of the element. This property serves as a mechanism
|
|
3465
3458
|
* to set the `end` property through both property assignment and the
|
|
@@ -3475,11 +3468,11 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3475
3468
|
/**
|
|
3476
3469
|
* The initial value of the date-picker.
|
|
3477
3470
|
*/
|
|
3478
|
-
|
|
3471
|
+
initialValue: { type: String, default: void 0 },
|
|
3479
3472
|
/**
|
|
3480
3473
|
* The current value of the date-picker.
|
|
3481
3474
|
*/
|
|
3482
|
-
|
|
3475
|
+
value: { type: String, default: void 0 },
|
|
3483
3476
|
/**
|
|
3484
3477
|
* Whether the date-picker is readonly.
|
|
3485
3478
|
*/
|
|
@@ -3570,11 +3563,13 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3570
3563
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
3571
3564
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3572
3565
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3573
|
-
...this.
|
|
3574
|
-
...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 } : {},
|
|
3575
3570
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3576
|
-
...this.
|
|
3577
|
-
...this.
|
|
3571
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
3572
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
3578
3573
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {}
|
|
3579
3574
|
},
|
|
3580
3575
|
class: "vvd-component",
|
|
@@ -3609,19 +3604,21 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3609
3604
|
{
|
|
3610
3605
|
ref: "element",
|
|
3611
3606
|
class: "vvd-component",
|
|
3612
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
3613
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
3614
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3615
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3616
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
3617
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
3618
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
3619
|
-
...this.
|
|
3620
|
-
...this.
|
|
3621
|
-
...this.
|
|
3622
|
-
...this.
|
|
3623
|
-
...this.
|
|
3624
|
-
...this.
|
|
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 } : {},
|
|
3625
3622
|
onClick: (event) => this.$emit("click", event),
|
|
3626
3623
|
onFocus: (event) => this.$emit("focus", event),
|
|
3627
3624
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3821,18 +3818,18 @@ const VDialPad = vue.defineComponent({
|
|
|
3821
3818
|
{
|
|
3822
3819
|
ref: "element",
|
|
3823
3820
|
class: "vvd-component",
|
|
3824
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3825
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
3826
|
-
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
3827
|
-
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
3828
|
-
...this.pattern !== void 0 ? { pattern: this.pattern } : {},
|
|
3829
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3830
|
-
...this.pending !== void 0 ? { pending: this.pending } : {},
|
|
3831
|
-
...this.callActive !== void 0 ? { "call-active": this.callActive } : {},
|
|
3832
|
-
...this.noCall !== void 0 ? { "no-call": this.noCall } : {},
|
|
3833
|
-
...this.noInput !== void 0 ? { "no-input": this.noInput } : {},
|
|
3834
|
-
...this.endCallButtonLabel !== void 0 ? { "end-call-button-label": this.endCallButtonLabel } : {},
|
|
3835
|
-
...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 } : {},
|
|
3836
3833
|
onClick: (event) => this.$emit("click", event),
|
|
3837
3834
|
onKeydown: (event) => this.$emit("keydown", event),
|
|
3838
3835
|
onKeyup: (event) => this.$emit("keyup", event),
|
|
@@ -3990,16 +3987,16 @@ const VDialog = vue.defineComponent({
|
|
|
3990
3987
|
{
|
|
3991
3988
|
ref: "element",
|
|
3992
3989
|
class: "vvd-component",
|
|
3993
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3994
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
3995
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
3996
|
-
...this.iconPlacement !== void 0 ? { "icon-placement": this.iconPlacement } : {},
|
|
3997
|
-
...this.subtitle !== void 0 ? { subtitle: this.subtitle } : {},
|
|
3998
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
3999
|
-
...this.fullWidthBody !== void 0 ? { "full-width-body": this.fullWidthBody } : {},
|
|
4000
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
4001
|
-
...this.dismissButtonAriaLabel !== void 0 ? { "dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
4002
|
-
...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 } : {},
|
|
4003
4000
|
onClick: (event) => this.$emit("click", event),
|
|
4004
4001
|
onFocus: (event) => this.$emit("focus", event),
|
|
4005
4002
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4118,9 +4115,9 @@ const VDivider = vue.defineComponent({
|
|
|
4118
4115
|
{
|
|
4119
4116
|
ref: "element",
|
|
4120
4117
|
class: "vvd-component",
|
|
4121
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4122
|
-
...this.role !== void 0 ? { role: this.role } : {},
|
|
4123
|
-
...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 } : {},
|
|
4124
4121
|
onClick: (event) => this.$emit("click", event),
|
|
4125
4122
|
onFocus: (event) => this.$emit("focus", event),
|
|
4126
4123
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4229,9 +4226,9 @@ const VEmptyState = vue.defineComponent({
|
|
|
4229
4226
|
{
|
|
4230
4227
|
ref: "element",
|
|
4231
4228
|
class: "vvd-component",
|
|
4232
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4233
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
4234
|
-
...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 } : {},
|
|
4235
4232
|
onClick: (event) => this.$emit("click", event),
|
|
4236
4233
|
onFocus: (event) => this.$emit("focus", event),
|
|
4237
4234
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4278,7 +4275,7 @@ const VFab = vue.defineComponent({
|
|
|
4278
4275
|
* The initial value of the form. This value sets the `value` property
|
|
4279
4276
|
* only when the `value` property has not been explicitly set.
|
|
4280
4277
|
*/
|
|
4281
|
-
|
|
4278
|
+
initialValue: { type: String, default: void 0 },
|
|
4282
4279
|
/**
|
|
4283
4280
|
* The current value of the element. This property serves as a mechanism
|
|
4284
4281
|
* to set the `value` property through both property assignment and the
|
|
@@ -4286,7 +4283,7 @@ const VFab = vue.defineComponent({
|
|
|
4286
4283
|
* in UI libraries that bind data through the .setAttribute() API
|
|
4287
4284
|
* and don't support IDL attribute binding.
|
|
4288
4285
|
*/
|
|
4289
|
-
|
|
4286
|
+
value: { type: String, default: void 0 },
|
|
4290
4287
|
/**
|
|
4291
4288
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
4292
4289
|
*/
|
|
@@ -4408,8 +4405,8 @@ const VFab = vue.defineComponent({
|
|
|
4408
4405
|
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
4409
4406
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4410
4407
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4411
|
-
...this.
|
|
4412
|
-
...this.
|
|
4408
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
4409
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
4413
4410
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
4414
4411
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
4415
4412
|
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
@@ -4446,25 +4443,25 @@ const VFab = vue.defineComponent({
|
|
|
4446
4443
|
{
|
|
4447
4444
|
ref: "element",
|
|
4448
4445
|
class: "vvd-component",
|
|
4449
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
4450
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
4451
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4452
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4453
|
-
...this.
|
|
4454
|
-
...this.
|
|
4455
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
4456
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
4457
|
-
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
4458
|
-
...this.form !== void 0 ? { form: this.form } : {},
|
|
4459
|
-
...this.formaction !== void 0 ? { formaction: this.formaction } : {},
|
|
4460
|
-
...this.formenctype !== void 0 ? { formenctype: this.formenctype } : {},
|
|
4461
|
-
...this.formmethod !== void 0 ? { formmethod: this.formmethod } : {},
|
|
4462
|
-
...this.formnovalidate !== void 0 ? { formnovalidate: this.formnovalidate } : {},
|
|
4463
|
-
...this.formtarget !== void 0 ? { formtarget: this.formtarget } : {},
|
|
4464
|
-
...this.type !== void 0 ? { type: this.type } : {},
|
|
4465
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
4466
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
4467
|
-
...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 } : {},
|
|
4468
4465
|
onClick: (event) => this.$emit("click", event),
|
|
4469
4466
|
onFocus: (event) => this.$emit("focus", event),
|
|
4470
4467
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4512,7 +4509,7 @@ const VFilePicker = vue.defineComponent({
|
|
|
4512
4509
|
* The initial value of the form. This value sets the `value` property
|
|
4513
4510
|
* only when the `value` property has not been explicitly set.
|
|
4514
4511
|
*/
|
|
4515
|
-
|
|
4512
|
+
initialValue: { type: String, default: void 0 },
|
|
4516
4513
|
/**
|
|
4517
4514
|
* The current value of the element. This property serves as a mechanism
|
|
4518
4515
|
* to set the `value` property through both property assignment and the
|
|
@@ -4520,7 +4517,7 @@ const VFilePicker = vue.defineComponent({
|
|
|
4520
4517
|
* in UI libraries that bind data through the .setAttribute() API
|
|
4521
4518
|
* and don't support IDL attribute binding.
|
|
4522
4519
|
*/
|
|
4523
|
-
|
|
4520
|
+
value: { type: String, default: void 0 },
|
|
4524
4521
|
/**
|
|
4525
4522
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
4526
4523
|
*/
|
|
@@ -4623,8 +4620,8 @@ const VFilePicker = vue.defineComponent({
|
|
|
4623
4620
|
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
4624
4621
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4625
4622
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4626
|
-
...this.
|
|
4627
|
-
...this.
|
|
4623
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
4624
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
4628
4625
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
4629
4626
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
4630
4627
|
...this.maxFiles !== void 0 ? { "max-files": this.maxFiles } : {},
|
|
@@ -4655,19 +4652,19 @@ const VFilePicker = vue.defineComponent({
|
|
|
4655
4652
|
{
|
|
4656
4653
|
ref: "element",
|
|
4657
4654
|
class: "vvd-component",
|
|
4658
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
4659
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
4660
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
4661
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4662
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
4663
|
-
...this.
|
|
4664
|
-
...this.
|
|
4665
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
4666
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
4667
|
-
...this.maxFiles !== void 0 ? { "max-files": this.maxFiles } : {},
|
|
4668
|
-
...this.maxFileSize !== void 0 ? { "max-file-size": this.maxFileSize } : {},
|
|
4669
|
-
...this.accept !== void 0 ? { accept: this.accept } : {},
|
|
4670
|
-
...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 } : {},
|
|
4671
4668
|
onClick: (event) => this.$emit("click", event),
|
|
4672
4669
|
onFocus: (event) => this.$emit("focus", event),
|
|
4673
4670
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4778,9 +4775,9 @@ const VHeader = vue.defineComponent({
|
|
|
4778
4775
|
{
|
|
4779
4776
|
ref: "element",
|
|
4780
4777
|
class: "vvd-component",
|
|
4781
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4782
|
-
...this.elevationShadow !== void 0 ? { "elevation-shadow": this.elevationShadow } : {},
|
|
4783
|
-
...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 } : {},
|
|
4784
4781
|
onClick: (event) => this.$emit("click", event),
|
|
4785
4782
|
onFocus: (event) => this.$emit("focus", event),
|
|
4786
4783
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -4899,10 +4896,10 @@ const VIcon = vue.defineComponent({
|
|
|
4899
4896
|
{
|
|
4900
4897
|
ref: "element",
|
|
4901
4898
|
class: "vvd-component",
|
|
4902
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4903
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
4904
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
4905
|
-
...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 } : {},
|
|
4906
4903
|
onClick: (event) => this.$emit("click", event),
|
|
4907
4904
|
onFocus: (event) => this.$emit("focus", event),
|
|
4908
4905
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5034,12 +5031,12 @@ const VLayout = vue.defineComponent({
|
|
|
5034
5031
|
{
|
|
5035
5032
|
ref: "element",
|
|
5036
5033
|
class: "vvd-component",
|
|
5037
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5038
|
-
...this.gutters !== void 0 ? { gutters: this.gutters } : {},
|
|
5039
|
-
...this.columnBasis !== void 0 ? { "column-basis": this.columnBasis } : {},
|
|
5040
|
-
...this.columnSpacing !== void 0 ? { "column-spacing": this.columnSpacing } : {},
|
|
5041
|
-
...this.rowSpacing !== void 0 ? { "row-spacing": this.rowSpacing } : {},
|
|
5042
|
-
...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 } : {},
|
|
5043
5040
|
onClick: (event) => this.$emit("click", event),
|
|
5044
5041
|
onFocus: (event) => this.$emit("focus", event),
|
|
5045
5042
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5205,13 +5202,13 @@ const VMenu = vue.defineComponent({
|
|
|
5205
5202
|
{
|
|
5206
5203
|
ref: "element",
|
|
5207
5204
|
class: "vvd-component",
|
|
5208
|
-
...this.anchor !== void 0 ? { anchor: this.anchor } : {},
|
|
5209
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5210
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
5211
|
-
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
5212
|
-
...this.trigger !== void 0 ? { trigger: this.trigger } : {},
|
|
5213
|
-
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
5214
|
-
...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 } : {},
|
|
5215
5212
|
onClick: (event) => this.$emit("click", event),
|
|
5216
5213
|
onFocus: (event) => this.$emit("focus", event),
|
|
5217
5214
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5410,17 +5407,17 @@ const VMenuItem = vue.defineComponent({
|
|
|
5410
5407
|
{
|
|
5411
5408
|
ref: "element",
|
|
5412
5409
|
class: "vvd-component",
|
|
5413
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5414
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5415
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
5416
|
-
...this.expanded !== void 0 ? { expanded: this.expanded } : {},
|
|
5417
|
-
...this.role !== void 0 ? { role: this.role } : {},
|
|
5418
|
-
...this.modelValue ?? this.checked !== void 0 ? { checked: this.modelValue ?? this.checked } : {},
|
|
5419
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
5420
|
-
...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {},
|
|
5421
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5422
|
-
...this.checkTrailing !== void 0 ? { "check-trailing": this.checkTrailing } : {},
|
|
5423
|
-
...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 } : {},
|
|
5424
5421
|
onClick: (event) => this.$emit("click", event),
|
|
5425
5422
|
onFocus: (event) => this.$emit("focus", event),
|
|
5426
5423
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5526,7 +5523,7 @@ const VNav = vue.defineComponent({
|
|
|
5526
5523
|
{
|
|
5527
5524
|
ref: "element",
|
|
5528
5525
|
class: "vvd-component",
|
|
5529
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5526
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5530
5527
|
onClick: (event) => this.$emit("click", event),
|
|
5531
5528
|
onFocus: (event) => this.$emit("focus", event),
|
|
5532
5529
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5656,12 +5653,12 @@ const VNavDisclosure = vue.defineComponent({
|
|
|
5656
5653
|
{
|
|
5657
5654
|
ref: "element",
|
|
5658
5655
|
class: "vvd-component",
|
|
5659
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5660
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
5661
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
5662
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5663
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
5664
|
-
...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 } : {},
|
|
5665
5662
|
onClick: (event) => this.$emit("click", event),
|
|
5666
5663
|
onFocus: (event) => this.$emit("focus", event),
|
|
5667
5664
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5838,19 +5835,19 @@ const VNavItem = vue.defineComponent({
|
|
|
5838
5835
|
{
|
|
5839
5836
|
ref: "element",
|
|
5840
5837
|
class: "vvd-component",
|
|
5841
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5842
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5843
|
-
...this.download !== void 0 ? { download: this.download } : {},
|
|
5844
|
-
...this.href !== void 0 ? { href: this.href } : {},
|
|
5845
|
-
...this.hreflang !== void 0 ? { hreflang: this.hreflang } : {},
|
|
5846
|
-
...this.ping !== void 0 ? { ping: this.ping } : {},
|
|
5847
|
-
...this.referrerpolicy !== void 0 ? { referrerpolicy: this.referrerpolicy } : {},
|
|
5848
|
-
...this.rel !== void 0 ? { rel: this.rel } : {},
|
|
5849
|
-
...this.target !== void 0 ? { target: this.target } : {},
|
|
5850
|
-
...this.type !== void 0 ? { type: this.type } : {},
|
|
5851
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
5852
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5853
|
-
...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 } : {},
|
|
5854
5851
|
onClick: (event) => this.$emit("click", event),
|
|
5855
5852
|
onFocus: (event) => this.$emit("focus", event),
|
|
5856
5853
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5966,10 +5963,10 @@ const VNote = vue.defineComponent({
|
|
|
5966
5963
|
{
|
|
5967
5964
|
ref: "element",
|
|
5968
5965
|
class: "vvd-component",
|
|
5969
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5970
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5971
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
5972
|
-
...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 } : {},
|
|
5973
5970
|
onClick: (event) => this.$emit("click", event),
|
|
5974
5971
|
onFocus: (event) => this.$emit("focus", event),
|
|
5975
5972
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6034,7 +6031,7 @@ const VNumberField = vue.defineComponent({
|
|
|
6034
6031
|
* The initial value of the form. This value sets the `value` property
|
|
6035
6032
|
* only when the `value` property has not been explicitly set.
|
|
6036
6033
|
*/
|
|
6037
|
-
|
|
6034
|
+
initialValue: { type: String, default: void 0 },
|
|
6038
6035
|
/**
|
|
6039
6036
|
* The current value of the element. This property serves as a mechanism
|
|
6040
6037
|
* to set the `value` property through both property assignment and the
|
|
@@ -6042,7 +6039,7 @@ const VNumberField = vue.defineComponent({
|
|
|
6042
6039
|
* in UI libraries that bind data through the .setAttribute() API
|
|
6043
6040
|
* and don't support IDL attribute binding.
|
|
6044
6041
|
*/
|
|
6045
|
-
|
|
6042
|
+
value: { type: String, default: void 0 },
|
|
6046
6043
|
/**
|
|
6047
6044
|
* The current value of the element. This property serves as a mechanism
|
|
6048
6045
|
* to set the `value` property through both property assignment and the
|
|
@@ -6208,8 +6205,8 @@ const VNumberField = vue.defineComponent({
|
|
|
6208
6205
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
6209
6206
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6210
6207
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6211
|
-
...this.
|
|
6212
|
-
...this.modelValue ?? this.
|
|
6208
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
6209
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
6213
6210
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
6214
6211
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
6215
6212
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -6257,33 +6254,33 @@ const VNumberField = vue.defineComponent({
|
|
|
6257
6254
|
{
|
|
6258
6255
|
ref: "element",
|
|
6259
6256
|
class: "vvd-component",
|
|
6260
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
6261
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
6262
|
-
...this.charCount !== void 0 ? { "char-count": this.charCount } : {},
|
|
6263
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
6264
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
6265
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
6266
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6267
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6268
|
-
...this.
|
|
6269
|
-
...this.modelValue ?? this.
|
|
6270
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
6271
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
6272
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
6273
|
-
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
6274
|
-
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
6275
|
-
...this.list !== void 0 ? { list: this.list } : {},
|
|
6276
|
-
...this.maxlength !== void 0 ? { maxlength: this.maxlength } : {},
|
|
6277
|
-
...this.minlength !== void 0 ? { minlength: this.minlength } : {},
|
|
6278
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
6279
|
-
...this.step !== void 0 ? { step: this.step } : {},
|
|
6280
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
6281
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
6282
|
-
...this.incrementButtonAriaLabel !== void 0 ? { "increment-button-aria-label": this.incrementButtonAriaLabel } : {},
|
|
6283
|
-
...this.decrementButtonAriaLabel !== void 0 ? { "decrement-button-aria-label": this.decrementButtonAriaLabel } : {},
|
|
6284
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
6285
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
6286
|
-
...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 } : {},
|
|
6287
6284
|
onClick: (event) => this.$emit("click", event),
|
|
6288
6285
|
onFocus: (event) => this.$emit("focus", event),
|
|
6289
6286
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6339,7 +6336,7 @@ const VOption = vue.defineComponent({
|
|
|
6339
6336
|
* The initial value of the option. This value sets the `value` property
|
|
6340
6337
|
* only when the `value` property has not been explicitly set.
|
|
6341
6338
|
*/
|
|
6342
|
-
|
|
6339
|
+
initialValue: { type: String, default: void 0 },
|
|
6343
6340
|
text: { type: String, default: void 0 },
|
|
6344
6341
|
label: { type: String, default: void 0 }
|
|
6345
6342
|
},
|
|
@@ -6403,7 +6400,7 @@ const VOption = vue.defineComponent({
|
|
|
6403
6400
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6404
6401
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6405
6402
|
...this.selected !== void 0 ? { selected: this.selected } : {},
|
|
6406
|
-
...this.
|
|
6403
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
6407
6404
|
...this.text !== void 0 ? { text: this.text } : {},
|
|
6408
6405
|
...this.label !== void 0 ? { label: this.label } : {}
|
|
6409
6406
|
},
|
|
@@ -6429,14 +6426,14 @@ const VOption = vue.defineComponent({
|
|
|
6429
6426
|
{
|
|
6430
6427
|
ref: "element",
|
|
6431
6428
|
class: "vvd-component",
|
|
6432
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
6433
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
6434
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6435
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6436
|
-
...this.selected !== void 0 ? { selected: this.selected } : {},
|
|
6437
|
-
...this.
|
|
6438
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
6439
|
-
...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 } : {},
|
|
6440
6437
|
onClick: (event) => this.$emit("click", event),
|
|
6441
6438
|
onFocus: (event) => this.$emit("focus", event),
|
|
6442
6439
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6565,12 +6562,12 @@ const VPagination = vue.defineComponent({
|
|
|
6565
6562
|
{
|
|
6566
6563
|
ref: "element",
|
|
6567
6564
|
class: "vvd-component",
|
|
6568
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6569
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
6570
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
6571
|
-
...this.navIcons !== void 0 ? { "nav-icons": this.navIcons } : {},
|
|
6572
|
-
...this.total !== void 0 ? { total: this.total } : {},
|
|
6573
|
-
...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 } : {},
|
|
6574
6571
|
onClick: (event) => this.$emit("click", event),
|
|
6575
6572
|
onFocus: (event) => this.$emit("focus", event),
|
|
6576
6573
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6706,15 +6703,15 @@ const VProgress = vue.defineComponent({
|
|
|
6706
6703
|
{
|
|
6707
6704
|
ref: "element",
|
|
6708
6705
|
class: "vvd-component",
|
|
6709
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6710
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
6711
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
6712
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
6713
|
-
...this.paused !== void 0 ? { paused: this.paused } : {},
|
|
6714
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
6715
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
6716
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
6717
|
-
...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 } : {},
|
|
6718
6715
|
onClick: (event) => this.$emit("click", event),
|
|
6719
6716
|
onFocus: (event) => this.$emit("focus", event),
|
|
6720
6717
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6841,14 +6838,14 @@ const VProgressRing = vue.defineComponent({
|
|
|
6841
6838
|
{
|
|
6842
6839
|
ref: "element",
|
|
6843
6840
|
class: "vvd-component",
|
|
6844
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6845
|
-
...this.value !== void 0 ? { value: this.value } : {},
|
|
6846
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
6847
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
6848
|
-
...this.paused !== void 0 ? { paused: this.paused } : {},
|
|
6849
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
6850
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
6851
|
-
...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 } : {},
|
|
6852
6849
|
onClick: (event) => this.$emit("click", event),
|
|
6853
6850
|
onFocus: (event) => this.$emit("focus", event),
|
|
6854
6851
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -6882,7 +6879,7 @@ const VRadio = vue.defineComponent({
|
|
|
6882
6879
|
* The initial value of the form. This value sets the `value` property
|
|
6883
6880
|
* only when the `value` property has not been explicitly set.
|
|
6884
6881
|
*/
|
|
6885
|
-
|
|
6882
|
+
initialValue: { type: String, default: void 0 },
|
|
6886
6883
|
/**
|
|
6887
6884
|
* The current value of the element. This property serves as a mechanism
|
|
6888
6885
|
* to set the `value` property through both property assignment and the
|
|
@@ -6890,7 +6887,7 @@ const VRadio = vue.defineComponent({
|
|
|
6890
6887
|
* in UI libraries that bind data through the .setAttribute() API
|
|
6891
6888
|
* and don't support IDL attribute binding.
|
|
6892
6889
|
*/
|
|
6893
|
-
|
|
6890
|
+
value: { type: String, default: void 0 },
|
|
6894
6891
|
/**
|
|
6895
6892
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
6896
6893
|
*/
|
|
@@ -6902,7 +6899,7 @@ const VRadio = vue.defineComponent({
|
|
|
6902
6899
|
/**
|
|
6903
6900
|
* Provides the default checkedness of the input element
|
|
6904
6901
|
*/
|
|
6905
|
-
|
|
6902
|
+
defaultChecked: { type: Boolean, default: void 0 },
|
|
6906
6903
|
/**
|
|
6907
6904
|
* The current checkedness of the element. This property serves as a mechanism
|
|
6908
6905
|
* to set the `checked` property through both property assignment and the
|
|
@@ -6910,7 +6907,7 @@ const VRadio = vue.defineComponent({
|
|
|
6910
6907
|
* in UI libraries that bind data through the .setAttribute() API
|
|
6911
6908
|
* and don't support IDL attribute binding.
|
|
6912
6909
|
*/
|
|
6913
|
-
|
|
6910
|
+
checked: { type: Boolean, default: void 0 },
|
|
6914
6911
|
/**
|
|
6915
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.
|
|
6916
6913
|
*/
|
|
@@ -6980,12 +6977,12 @@ const VRadio = vue.defineComponent({
|
|
|
6980
6977
|
attrs: {
|
|
6981
6978
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6982
6979
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6983
|
-
...this.
|
|
6984
|
-
...this.
|
|
6980
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
6981
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
6985
6982
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
6986
6983
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
6987
|
-
...this.
|
|
6988
|
-
...this.
|
|
6984
|
+
...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
|
|
6985
|
+
...this.checked !== void 0 ? { "current-checked": this.checked } : {},
|
|
6989
6986
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
6990
6987
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
6991
6988
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
@@ -7010,18 +7007,18 @@ const VRadio = vue.defineComponent({
|
|
|
7010
7007
|
{
|
|
7011
7008
|
ref: "element",
|
|
7012
7009
|
class: "vvd-component",
|
|
7013
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7014
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7015
|
-
...this.
|
|
7016
|
-
...this.
|
|
7017
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
7018
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
7019
|
-
...this.
|
|
7020
|
-
...this.
|
|
7021
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
7022
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
7023
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
7024
|
-
...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 } : {},
|
|
7025
7022
|
onClick: (event) => this.$emit("click", event),
|
|
7026
7023
|
onFocus: (event) => this.$emit("focus", event),
|
|
7027
7024
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7173,13 +7170,13 @@ const VRadioGroup = vue.defineComponent({
|
|
|
7173
7170
|
{
|
|
7174
7171
|
ref: "element",
|
|
7175
7172
|
class: "vvd-component",
|
|
7176
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7177
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
7178
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7179
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
7180
|
-
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
7181
|
-
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
7182
|
-
...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 } : {},
|
|
7183
7180
|
onClick: (event) => this.$emit("click", event),
|
|
7184
7181
|
onFocus: (event) => this.$emit("focus", event),
|
|
7185
7182
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7224,7 +7221,7 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7224
7221
|
* The initial value of the form. This value sets the `value` property
|
|
7225
7222
|
* only when the `value` property has not been explicitly set.
|
|
7226
7223
|
*/
|
|
7227
|
-
|
|
7224
|
+
initialValue: { type: String, default: void 0 },
|
|
7228
7225
|
/**
|
|
7229
7226
|
* The current value of the element. This property serves as a mechanism
|
|
7230
7227
|
* to set the `value` property through both property assignment and the
|
|
@@ -7232,7 +7229,7 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7232
7229
|
* in UI libraries that bind data through the .setAttribute() API
|
|
7233
7230
|
* and don't support IDL attribute binding.
|
|
7234
7231
|
*/
|
|
7235
|
-
|
|
7232
|
+
value: { type: String, default: void 0 },
|
|
7236
7233
|
/**
|
|
7237
7234
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
7238
7235
|
*/
|
|
@@ -7242,13 +7239,10 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7242
7239
|
*/
|
|
7243
7240
|
required: { type: Boolean, default: void 0 },
|
|
7244
7241
|
/**
|
|
7245
|
-
* The
|
|
7246
|
-
*
|
|
7247
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
7248
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
7249
|
-
* and don't support IDL attribute binding.
|
|
7242
|
+
* The initial start value. This value sets the `start` property
|
|
7243
|
+
* only when the `start` property has not been explicitly set.
|
|
7250
7244
|
*/
|
|
7251
|
-
|
|
7245
|
+
initialStart: { type: String, default: void 0 },
|
|
7252
7246
|
/**
|
|
7253
7247
|
* The current start value of the element. This property serves as a mechanism
|
|
7254
7248
|
* to set the `start` property through both property assignment and the
|
|
@@ -7258,13 +7252,10 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7258
7252
|
*/
|
|
7259
7253
|
start: { type: String, default: void 0 },
|
|
7260
7254
|
/**
|
|
7261
|
-
* The
|
|
7262
|
-
*
|
|
7263
|
-
* .setAttribute() method. This is useful for setting the field's value
|
|
7264
|
-
* in UI libraries that bind data through the .setAttribute() API
|
|
7265
|
-
* and don't support IDL attribute binding.
|
|
7255
|
+
* The initial end value. This value sets the `end` property
|
|
7256
|
+
* only when the `end` property has not been explicitly set.
|
|
7266
7257
|
*/
|
|
7267
|
-
|
|
7258
|
+
initialEnd: { type: String, default: void 0 },
|
|
7268
7259
|
/**
|
|
7269
7260
|
* The current end value of the element. This property serves as a mechanism
|
|
7270
7261
|
* to set the `end` property through both property assignment and the
|
|
@@ -7392,12 +7383,14 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7392
7383
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
7393
7384
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7394
7385
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7395
|
-
...this.
|
|
7396
|
-
...this.
|
|
7386
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
7387
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
7397
7388
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7398
7389
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7399
|
-
...this.
|
|
7400
|
-
...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 } : {},
|
|
7401
7394
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
7402
7395
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
7403
7396
|
...this.step !== void 0 ? { step: this.step } : {},
|
|
@@ -7434,23 +7427,25 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7434
7427
|
{
|
|
7435
7428
|
ref: "element",
|
|
7436
7429
|
class: "vvd-component",
|
|
7437
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
7438
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7439
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7440
|
-
...this.
|
|
7441
|
-
...this.
|
|
7442
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
7443
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
7444
|
-
...this.
|
|
7445
|
-
...this.
|
|
7446
|
-
...this.
|
|
7447
|
-
...this.
|
|
7448
|
-
...this.
|
|
7449
|
-
...this.
|
|
7450
|
-
...this.
|
|
7451
|
-
...this.
|
|
7452
|
-
...this.
|
|
7453
|
-
...this.
|
|
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 } : {},
|
|
7454
7449
|
onClick: (event) => this.$emit("click", event),
|
|
7455
7450
|
onFocus: (event) => this.$emit("focus", event),
|
|
7456
7451
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7522,7 +7517,7 @@ const VSelect = vue.defineComponent({
|
|
|
7522
7517
|
* The initial value of the form. This value sets the `value` property
|
|
7523
7518
|
* only when the `value` property has not been explicitly set.
|
|
7524
7519
|
*/
|
|
7525
|
-
|
|
7520
|
+
initialValue: { type: String, default: void 0 },
|
|
7526
7521
|
/**
|
|
7527
7522
|
* The current value of the element. This property serves as a mechanism
|
|
7528
7523
|
* to set the `value` property through both property assignment and the
|
|
@@ -7530,7 +7525,7 @@ const VSelect = vue.defineComponent({
|
|
|
7530
7525
|
* in UI libraries that bind data through the .setAttribute() API
|
|
7531
7526
|
* and don't support IDL attribute binding.
|
|
7532
7527
|
*/
|
|
7533
|
-
|
|
7528
|
+
value: { type: String, default: void 0 },
|
|
7534
7529
|
/**
|
|
7535
7530
|
* The current value of the element. This property serves as a mechanism
|
|
7536
7531
|
* to set the `value` property through both property assignment and the
|
|
@@ -7651,6 +7646,9 @@ const VSelect = vue.defineComponent({
|
|
|
7651
7646
|
},
|
|
7652
7647
|
setDefaultSelectedOption() {
|
|
7653
7648
|
return this.element?.setDefaultSelectedOption();
|
|
7649
|
+
},
|
|
7650
|
+
slottedOptionsChanged(prev, next) {
|
|
7651
|
+
return this.element?.slottedOptionsChanged(prev, next);
|
|
7654
7652
|
}
|
|
7655
7653
|
},
|
|
7656
7654
|
setup(props, ctx) {
|
|
@@ -7673,8 +7671,8 @@ const VSelect = vue.defineComponent({
|
|
|
7673
7671
|
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
7674
7672
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7675
7673
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7676
|
-
...this.
|
|
7677
|
-
...this.modelValue ?? this.
|
|
7674
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
7675
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
7678
7676
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7679
7677
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7680
7678
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
@@ -7718,25 +7716,25 @@ const VSelect = vue.defineComponent({
|
|
|
7718
7716
|
{
|
|
7719
7717
|
ref: "element",
|
|
7720
7718
|
class: "vvd-component",
|
|
7721
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
7722
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
7723
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
7724
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
7725
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
7726
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
7727
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7728
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7729
|
-
...this.
|
|
7730
|
-
...this.modelValue ?? this.
|
|
7731
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
7732
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
7733
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
7734
|
-
...this.position !== void 0 ? { position: this.position } : {},
|
|
7735
|
-
...this.multiple !== void 0 ? { multiple: this.multiple } : {},
|
|
7736
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
7737
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
7738
|
-
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
|
|
7739
|
-
...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 } : {},
|
|
7740
7738
|
onClick: (event) => this.$emit("click", event),
|
|
7741
7739
|
onFocus: (event) => this.$emit("focus", event),
|
|
7742
7740
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7888,14 +7886,14 @@ const VSelectableBox = vue.defineComponent({
|
|
|
7888
7886
|
{
|
|
7889
7887
|
ref: "element",
|
|
7890
7888
|
class: "vvd-component",
|
|
7891
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7892
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
7893
|
-
...this.checked !== void 0 ? { checked: this.checked } : {},
|
|
7894
|
-
...this.clickable !== void 0 ? { clickable: this.clickable } : {},
|
|
7895
|
-
...this.clickableBox !== void 0 ? { "clickable-box": this.clickableBox } : {},
|
|
7896
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
7897
|
-
...this.controlType !== void 0 ? { "control-type": this.controlType } : {},
|
|
7898
|
-
...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 } : {},
|
|
7899
7897
|
onClick: (event) => this.$emit("click", event),
|
|
7900
7898
|
onFocus: (event) => this.$emit("focus", event),
|
|
7901
7899
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8024,11 +8022,11 @@ const VSideDrawer = vue.defineComponent({
|
|
|
8024
8022
|
{
|
|
8025
8023
|
ref: "element",
|
|
8026
8024
|
class: "vvd-component",
|
|
8027
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8028
|
-
...this.alternate !== void 0 ? { alternate: this.alternate } : {},
|
|
8029
|
-
...this.modal !== void 0 ? { modal: this.modal } : {},
|
|
8030
|
-
...this.open !== void 0 ? { open: this.open } : {},
|
|
8031
|
-
...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 } : {},
|
|
8032
8030
|
onClick: (event) => this.$emit("click", event),
|
|
8033
8031
|
onFocus: (event) => this.$emit("focus", event),
|
|
8034
8032
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8070,7 +8068,7 @@ const VSlider = vue.defineComponent({
|
|
|
8070
8068
|
* The initial value of the form. This value sets the `value` property
|
|
8071
8069
|
* only when the `value` property has not been explicitly set.
|
|
8072
8070
|
*/
|
|
8073
|
-
|
|
8071
|
+
initialValue: { type: String, default: void 0 },
|
|
8074
8072
|
/**
|
|
8075
8073
|
* The current value of the element. This property serves as a mechanism
|
|
8076
8074
|
* to set the `value` property through both property assignment and the
|
|
@@ -8078,7 +8076,7 @@ const VSlider = vue.defineComponent({
|
|
|
8078
8076
|
* in UI libraries that bind data through the .setAttribute() API
|
|
8079
8077
|
* and don't support IDL attribute binding.
|
|
8080
8078
|
*/
|
|
8081
|
-
|
|
8079
|
+
value: { type: String, default: void 0 },
|
|
8082
8080
|
/**
|
|
8083
8081
|
* The current value of the element. This property serves as a mechanism
|
|
8084
8082
|
* to set the `value` property through both property assignment and the
|
|
@@ -8212,8 +8210,8 @@ const VSlider = vue.defineComponent({
|
|
|
8212
8210
|
attrs: {
|
|
8213
8211
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8214
8212
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8215
|
-
...this.
|
|
8216
|
-
...this.modelValue ?? this.
|
|
8213
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
8214
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
8217
8215
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8218
8216
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8219
8217
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -8252,22 +8250,22 @@ const VSlider = vue.defineComponent({
|
|
|
8252
8250
|
{
|
|
8253
8251
|
ref: "element",
|
|
8254
8252
|
class: "vvd-component",
|
|
8255
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8256
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8257
|
-
...this.
|
|
8258
|
-
...this.modelValue ?? this.
|
|
8259
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
8260
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
8261
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
8262
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
8263
|
-
...this.max !== void 0 ? { max: this.max } : {},
|
|
8264
|
-
...this.step !== void 0 ? { step: this.step } : {},
|
|
8265
|
-
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
8266
|
-
...this.mode !== void 0 ? { mode: this.mode } : {},
|
|
8267
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
8268
|
-
...this.ariaValuetext !== void 0 ? { "aria-valuetext": this.ariaValuetext } : {},
|
|
8269
|
-
...this.markers !== void 0 ? { markers: this.markers } : {},
|
|
8270
|
-
...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 } : {},
|
|
8271
8269
|
onClick: (event) => this.$emit("click", event),
|
|
8272
8270
|
onFocus: (event) => this.$emit("focus", event),
|
|
8273
8271
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8449,18 +8447,18 @@ const VSplitButton = vue.defineComponent({
|
|
|
8449
8447
|
{
|
|
8450
8448
|
ref: "element",
|
|
8451
8449
|
class: "vvd-component",
|
|
8452
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8453
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8454
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8455
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
8456
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
8457
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
8458
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
8459
|
-
...this.splitIndicator !== void 0 ? { "split-indicator": this.splitIndicator } : {},
|
|
8460
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8461
|
-
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
8462
|
-
...this.ariaExpanded !== void 0 ? { "aria-expanded": this.ariaExpanded } : {},
|
|
8463
|
-
...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 } : {},
|
|
8464
8462
|
onClick: (event) => this.$emit("click", event),
|
|
8465
8463
|
onFocus: (event) => this.$emit("focus", event),
|
|
8466
8464
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8502,7 +8500,7 @@ const VSwitch = vue.defineComponent({
|
|
|
8502
8500
|
* The initial value of the form. This value sets the `value` property
|
|
8503
8501
|
* only when the `value` property has not been explicitly set.
|
|
8504
8502
|
*/
|
|
8505
|
-
|
|
8503
|
+
initialValue: { type: String, default: void 0 },
|
|
8506
8504
|
/**
|
|
8507
8505
|
* The current value of the element. This property serves as a mechanism
|
|
8508
8506
|
* to set the `value` property through both property assignment and the
|
|
@@ -8510,7 +8508,7 @@ const VSwitch = vue.defineComponent({
|
|
|
8510
8508
|
* in UI libraries that bind data through the .setAttribute() API
|
|
8511
8509
|
* and don't support IDL attribute binding.
|
|
8512
8510
|
*/
|
|
8513
|
-
|
|
8511
|
+
value: { type: String, default: void 0 },
|
|
8514
8512
|
/**
|
|
8515
8513
|
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
8516
8514
|
*/
|
|
@@ -8522,7 +8520,7 @@ const VSwitch = vue.defineComponent({
|
|
|
8522
8520
|
/**
|
|
8523
8521
|
* Provides the default checkedness of the input element
|
|
8524
8522
|
*/
|
|
8525
|
-
|
|
8523
|
+
defaultChecked: { type: Boolean, default: void 0 },
|
|
8526
8524
|
/**
|
|
8527
8525
|
* The current checkedness of the element. This property serves as a mechanism
|
|
8528
8526
|
* to set the `checked` property through both property assignment and the
|
|
@@ -8530,7 +8528,7 @@ const VSwitch = vue.defineComponent({
|
|
|
8530
8528
|
* in UI libraries that bind data through the .setAttribute() API
|
|
8531
8529
|
* and don't support IDL attribute binding.
|
|
8532
8530
|
*/
|
|
8533
|
-
|
|
8531
|
+
checked: { type: Boolean, default: void 0 },
|
|
8534
8532
|
/**
|
|
8535
8533
|
* The current checkedness of the element. This property serves as a mechanism
|
|
8536
8534
|
* to set the `checked` property through both property assignment and the
|
|
@@ -8612,12 +8610,12 @@ const VSwitch = vue.defineComponent({
|
|
|
8612
8610
|
attrs: {
|
|
8613
8611
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8614
8612
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8615
|
-
...this.
|
|
8616
|
-
...this.
|
|
8613
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
8614
|
+
...this.value !== void 0 ? { "current-value": this.value } : {},
|
|
8617
8615
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8618
8616
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8619
|
-
...this.
|
|
8620
|
-
...this.modelValue ?? this.
|
|
8617
|
+
...this.defaultChecked !== void 0 ? { checked: this.defaultChecked } : {},
|
|
8618
|
+
...this.modelValue ?? this.checked !== void 0 ? { "current-checked": this.modelValue ?? this.checked } : {},
|
|
8621
8619
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
8622
8620
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
8623
8621
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
@@ -8647,17 +8645,17 @@ const VSwitch = vue.defineComponent({
|
|
|
8647
8645
|
{
|
|
8648
8646
|
ref: "element",
|
|
8649
8647
|
class: "vvd-component",
|
|
8650
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8651
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8652
|
-
...this.
|
|
8653
|
-
...this.
|
|
8654
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
8655
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
8656
|
-
...this.
|
|
8657
|
-
...this.modelValue ?? this.
|
|
8658
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
8659
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
8660
|
-
...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 } : {},
|
|
8661
8659
|
onClick: (event) => this.$emit("click", event),
|
|
8662
8660
|
onFocus: (event) => this.$emit("focus", event),
|
|
8663
8661
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8721,7 +8719,7 @@ const VTab = vue.defineComponent({
|
|
|
8721
8719
|
* Indicates the tab's label.
|
|
8722
8720
|
*/
|
|
8723
8721
|
label: { type: String, default: void 0 },
|
|
8724
|
-
tabIndex: { type:
|
|
8722
|
+
tabIndex: { type: Number, default: void 0 },
|
|
8725
8723
|
ariaSelected: { type: String, default: void 0 }
|
|
8726
8724
|
},
|
|
8727
8725
|
emits: [
|
|
@@ -8801,15 +8799,15 @@ const VTab = vue.defineComponent({
|
|
|
8801
8799
|
{
|
|
8802
8800
|
ref: "element",
|
|
8803
8801
|
class: "vvd-component",
|
|
8804
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
8805
|
-
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
8806
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8807
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8808
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8809
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8810
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
8811
|
-
...this.tabIndex !== void 0 ? { tabIndex: this.tabIndex } : {},
|
|
8812
|
-
...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 } : {},
|
|
8813
8811
|
onClick: (event) => this.$emit("click", event),
|
|
8814
8812
|
onFocus: (event) => this.$emit("focus", event),
|
|
8815
8813
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -8903,7 +8901,7 @@ const VTabPanel = vue.defineComponent({
|
|
|
8903
8901
|
{
|
|
8904
8902
|
ref: "element",
|
|
8905
8903
|
class: "vvd-component",
|
|
8906
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8904
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8907
8905
|
onClick: (event) => this.$emit("click", event),
|
|
8908
8906
|
onFocus: (event) => this.$emit("focus", event),
|
|
8909
8907
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9065,13 +9063,13 @@ const VTabs = vue.defineComponent({
|
|
|
9065
9063
|
{
|
|
9066
9064
|
ref: "element",
|
|
9067
9065
|
class: "vvd-component",
|
|
9068
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9069
|
-
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
9070
|
-
...this.activeid !== void 0 ? { activeid: this.activeid } : {},
|
|
9071
|
-
...this.activeindicator !== void 0 ? { activeindicator: this.activeindicator } : {},
|
|
9072
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
9073
|
-
...this.gutters !== void 0 ? { gutters: this.gutters } : {},
|
|
9074
|
-
...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 } : {},
|
|
9075
9073
|
onClick: (event) => this.$emit("click", event),
|
|
9076
9074
|
onFocus: (event) => this.$emit("focus", event),
|
|
9077
9075
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9242,16 +9240,16 @@ const VTag = vue.defineComponent({
|
|
|
9242
9240
|
{
|
|
9243
9241
|
ref: "element",
|
|
9244
9242
|
class: "vvd-component",
|
|
9245
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
9246
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9247
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
9248
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
9249
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
9250
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
9251
|
-
...this.removable !== void 0 ? { removable: this.removable } : {},
|
|
9252
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9253
|
-
...this.selectable !== void 0 ? { selectable: this.selectable } : {},
|
|
9254
|
-
...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 } : {},
|
|
9255
9253
|
onClick: (event) => this.$emit("click", event),
|
|
9256
9254
|
onFocus: (event) => this.$emit("focus", event),
|
|
9257
9255
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9349,8 +9347,8 @@ const VTagGroup = vue.defineComponent({
|
|
|
9349
9347
|
{
|
|
9350
9348
|
ref: "element",
|
|
9351
9349
|
class: "vvd-component",
|
|
9352
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9353
|
-
...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 } : {},
|
|
9354
9352
|
onClick: (event) => this.$emit("click", event),
|
|
9355
9353
|
onFocus: (event) => this.$emit("focus", event),
|
|
9356
9354
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9408,7 +9406,7 @@ const VTextArea = vue.defineComponent({
|
|
|
9408
9406
|
* The initial value of the form. This value sets the `value` property
|
|
9409
9407
|
* only when the `value` property has not been explicitly set.
|
|
9410
9408
|
*/
|
|
9411
|
-
|
|
9409
|
+
initialValue: { type: String, default: void 0 },
|
|
9412
9410
|
/**
|
|
9413
9411
|
* The current value of the element. This property serves as a mechanism
|
|
9414
9412
|
* to set the `value` property through both property assignment and the
|
|
@@ -9416,7 +9414,7 @@ const VTextArea = vue.defineComponent({
|
|
|
9416
9414
|
* in UI libraries that bind data through the .setAttribute() API
|
|
9417
9415
|
* and don't support IDL attribute binding.
|
|
9418
9416
|
*/
|
|
9419
|
-
|
|
9417
|
+
value: { type: String, default: void 0 },
|
|
9420
9418
|
/**
|
|
9421
9419
|
* The current value of the element. This property serves as a mechanism
|
|
9422
9420
|
* to set the `value` property through both property assignment and the
|
|
@@ -9564,8 +9562,8 @@ const VTextArea = vue.defineComponent({
|
|
|
9564
9562
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
9565
9563
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9566
9564
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9567
|
-
...this.
|
|
9568
|
-
...this.modelValue ?? this.
|
|
9565
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
9566
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
9569
9567
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9570
9568
|
...this.readOnly !== void 0 ? { readOnly: this.readOnly } : {},
|
|
9571
9569
|
...this.resize !== void 0 ? { resize: this.resize } : {},
|
|
@@ -9610,29 +9608,29 @@ const VTextArea = vue.defineComponent({
|
|
|
9610
9608
|
{
|
|
9611
9609
|
ref: "element",
|
|
9612
9610
|
class: "vvd-component",
|
|
9613
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
9614
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
9615
|
-
...this.charCount !== void 0 ? { "char-count": this.charCount } : {},
|
|
9616
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
9617
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
9618
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9619
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9620
|
-
...this.
|
|
9621
|
-
...this.modelValue ?? this.
|
|
9622
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
9623
|
-
...this.readOnly !== void 0 ? { readOnly: this.readOnly } : {},
|
|
9624
|
-
...this.resize !== void 0 ? { resize: this.resize } : {},
|
|
9625
|
-
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
9626
|
-
...this.form !== void 0 ? { form: this.form } : {},
|
|
9627
|
-
...this.list !== void 0 ? { list: this.list } : {},
|
|
9628
|
-
...this.maxlength !== void 0 ? { maxlength: this.maxlength } : {},
|
|
9629
|
-
...this.minlength !== void 0 ? { minlength: this.minlength } : {},
|
|
9630
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
9631
|
-
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
9632
|
-
...this.cols !== void 0 ? { cols: this.cols } : {},
|
|
9633
|
-
...this.rows !== void 0 ? { rows: this.rows } : {},
|
|
9634
|
-
...this.spellcheck !== void 0 ? { spellcheck: this.spellcheck } : {},
|
|
9635
|
-
...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 } : {},
|
|
9636
9634
|
onClick: (event) => this.$emit("click", event),
|
|
9637
9635
|
onFocus: (event) => this.$emit("focus", event),
|
|
9638
9636
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -9704,7 +9702,7 @@ const VTextField = vue.defineComponent({
|
|
|
9704
9702
|
* The initial value of the form. This value sets the `value` property
|
|
9705
9703
|
* only when the `value` property has not been explicitly set.
|
|
9706
9704
|
*/
|
|
9707
|
-
|
|
9705
|
+
initialValue: { type: String, default: void 0 },
|
|
9708
9706
|
/**
|
|
9709
9707
|
* The current value of the element. This property serves as a mechanism
|
|
9710
9708
|
* to set the `value` property through both property assignment and the
|
|
@@ -9712,7 +9710,7 @@ const VTextField = vue.defineComponent({
|
|
|
9712
9710
|
* in UI libraries that bind data through the .setAttribute() API
|
|
9713
9711
|
* and don't support IDL attribute binding.
|
|
9714
9712
|
*/
|
|
9715
|
-
|
|
9713
|
+
value: { type: String, default: void 0 },
|
|
9716
9714
|
/**
|
|
9717
9715
|
* The current value of the element. This property serves as a mechanism
|
|
9718
9716
|
* to set the `value` property through both property assignment and the
|
|
@@ -9858,8 +9856,8 @@ const VTextField = vue.defineComponent({
|
|
|
9858
9856
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
9859
9857
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9860
9858
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9861
|
-
...this.
|
|
9862
|
-
...this.modelValue ?? this.
|
|
9859
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
9860
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
9863
9861
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
9864
9862
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9865
9863
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -9912,31 +9910,31 @@ const VTextField = vue.defineComponent({
|
|
|
9912
9910
|
{
|
|
9913
9911
|
ref: "element",
|
|
9914
9912
|
class: "vvd-component",
|
|
9915
|
-
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
9916
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
9917
|
-
...this.charCount !== void 0 ? { "char-count": this.charCount } : {},
|
|
9918
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
9919
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
9920
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
9921
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9922
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9923
|
-
...this.
|
|
9924
|
-
...this.modelValue ?? this.
|
|
9925
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
9926
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
9927
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
9928
|
-
...this.autofocus !== void 0 ? { autofocus: this.autofocus } : {},
|
|
9929
|
-
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
9930
|
-
...this.type !== void 0 ? { type: this.type } : {},
|
|
9931
|
-
...this.list !== void 0 ? { list: this.list } : {},
|
|
9932
|
-
...this.maxlength !== void 0 ? { maxlength: this.maxlength } : {},
|
|
9933
|
-
...this.minlength !== void 0 ? { minlength: this.minlength } : {},
|
|
9934
|
-
...this.pattern !== void 0 ? { pattern: this.pattern } : {},
|
|
9935
|
-
...this.size !== void 0 ? { size: this.size } : {},
|
|
9936
|
-
...this.spellcheck !== void 0 ? { spellcheck: this.spellcheck } : {},
|
|
9937
|
-
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
9938
|
-
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
9939
|
-
...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 } : {},
|
|
9940
9938
|
onClick: (event) => this.$emit("click", event),
|
|
9941
9939
|
onFocus: (event) => this.$emit("focus", event),
|
|
9942
9940
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10002,7 +10000,7 @@ const VTimePicker = vue.defineComponent({
|
|
|
10002
10000
|
* The initial value of the form. This value sets the `value` property
|
|
10003
10001
|
* only when the `value` property has not been explicitly set.
|
|
10004
10002
|
*/
|
|
10005
|
-
|
|
10003
|
+
initialValue: { type: String, default: void 0 },
|
|
10006
10004
|
/**
|
|
10007
10005
|
* The current value of the element. This property serves as a mechanism
|
|
10008
10006
|
* to set the `value` property through both property assignment and the
|
|
@@ -10010,7 +10008,7 @@ const VTimePicker = vue.defineComponent({
|
|
|
10010
10008
|
* in UI libraries that bind data through the .setAttribute() API
|
|
10011
10009
|
* and don't support IDL attribute binding.
|
|
10012
10010
|
*/
|
|
10013
|
-
|
|
10011
|
+
value: { type: String, default: void 0 },
|
|
10014
10012
|
/**
|
|
10015
10013
|
* The current value of the element. This property serves as a mechanism
|
|
10016
10014
|
* to set the `value` property through both property assignment and the
|
|
@@ -10112,8 +10110,8 @@ const VTimePicker = vue.defineComponent({
|
|
|
10112
10110
|
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
10113
10111
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10114
10112
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10115
|
-
...this.
|
|
10116
|
-
...this.modelValue ?? this.
|
|
10113
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
10114
|
+
...this.modelValue ?? this.value !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
10117
10115
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
10118
10116
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
10119
10117
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -10152,21 +10150,21 @@ const VTimePicker = vue.defineComponent({
|
|
|
10152
10150
|
{
|
|
10153
10151
|
ref: "element",
|
|
10154
10152
|
class: "vvd-component",
|
|
10155
|
-
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
10156
|
-
...this.label !== void 0 ? { label: this.label } : {},
|
|
10157
|
-
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
10158
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10159
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10160
|
-
...this.
|
|
10161
|
-
...this.modelValue ?? this.
|
|
10162
|
-
...this.name !== void 0 ? { name: this.name } : {},
|
|
10163
|
-
...this.required !== void 0 ? { required: this.required } : {},
|
|
10164
|
-
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
10165
|
-
...this.minutesStep !== void 0 ? { "minutes-step": this.minutesStep } : {},
|
|
10166
|
-
...this.secondsStep !== void 0 ? { "seconds-step": this.secondsStep } : {},
|
|
10167
|
-
...this.clock !== void 0 ? { clock: this.clock } : {},
|
|
10168
|
-
...this.min !== void 0 ? { min: this.min } : {},
|
|
10169
|
-
...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 } : {},
|
|
10170
10168
|
onClick: (event) => this.$emit("click", event),
|
|
10171
10169
|
onFocus: (event) => this.$emit("focus", event),
|
|
10172
10170
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10310,12 +10308,12 @@ const VToggletip = vue.defineComponent({
|
|
|
10310
10308
|
{
|
|
10311
10309
|
ref: "element",
|
|
10312
10310
|
class: "vvd-component",
|
|
10313
|
-
...this.anchor !== void 0 ? { anchor: this.anchor } : {},
|
|
10314
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10315
|
-
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
10316
|
-
...this.alternate !== void 0 ? { alternate: this.alternate } : {},
|
|
10317
|
-
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
10318
|
-
...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 } : {},
|
|
10319
10317
|
onClick: (event) => this.$emit("click", event),
|
|
10320
10318
|
onFocus: (event) => this.$emit("focus", event),
|
|
10321
10319
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10438,11 +10436,11 @@ const VTooltip = vue.defineComponent({
|
|
|
10438
10436
|
{
|
|
10439
10437
|
ref: "element",
|
|
10440
10438
|
class: "vvd-component",
|
|
10441
|
-
...this.anchor !== void 0 ? { anchor: this.anchor } : {},
|
|
10442
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10443
|
-
...this.text !== void 0 ? { text: this.text } : {},
|
|
10444
|
-
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
10445
|
-
...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 } : {},
|
|
10446
10444
|
onClick: (event) => this.$emit("click", event),
|
|
10447
10445
|
onFocus: (event) => this.$emit("focus", event),
|
|
10448
10446
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10580,12 +10578,12 @@ const VTreeItem = vue.defineComponent({
|
|
|
10580
10578
|
{
|
|
10581
10579
|
ref: "element",
|
|
10582
10580
|
class: "vvd-component",
|
|
10583
|
-
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
10584
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10585
|
-
...this.expanded !== void 0 ? { expanded: this.expanded } : {},
|
|
10586
|
-
...this.selected !== void 0 ? { selected: this.selected } : {},
|
|
10587
|
-
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10588
|
-
...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 } : {},
|
|
10589
10587
|
onClick: (event) => this.$emit("click", event),
|
|
10590
10588
|
onFocus: (event) => this.$emit("focus", event),
|
|
10591
10589
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10692,8 +10690,8 @@ const VTreeView = vue.defineComponent({
|
|
|
10692
10690
|
{
|
|
10693
10691
|
ref: "element",
|
|
10694
10692
|
class: "vvd-component",
|
|
10695
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10696
|
-
...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 } : {},
|
|
10697
10695
|
onClick: (event) => this.$emit("click", event),
|
|
10698
10696
|
onFocus: (event) => this.$emit("focus", event),
|
|
10699
10697
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -10839,13 +10837,13 @@ const VVideoPlayer = vue.defineComponent({
|
|
|
10839
10837
|
{
|
|
10840
10838
|
ref: "element",
|
|
10841
10839
|
class: "vvd-component",
|
|
10842
|
-
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10843
|
-
...this.poster !== void 0 ? { poster: this.poster } : {},
|
|
10844
|
-
...this.src !== void 0 ? { src: this.src } : {},
|
|
10845
|
-
...this.autoplay !== void 0 ? { autoplay: this.autoplay } : {},
|
|
10846
|
-
...this.loop !== void 0 ? { loop: this.loop } : {},
|
|
10847
|
-
...this.playbackRates !== void 0 ? { "playback-rates": this.playbackRates } : {},
|
|
10848
|
-
...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 } : {},
|
|
10849
10847
|
onClick: (event) => this.$emit("click", event),
|
|
10850
10848
|
onFocus: (event) => this.$emit("focus", event),
|
|
10851
10849
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -12088,17 +12086,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
12088
12086
|
return Icon2;
|
|
12089
12087
|
})(Icon || {});
|
|
12090
12088
|
|
|
12091
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 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";
|
|
12092
12090
|
|
|
12093
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 GMT\n */\n/**\n * Do not edit directly\n * Generated on Tue, 18 Jun 2024 12:08:56 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";
|
|
12094
12092
|
|
|
12095
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";
|
|
12096
12094
|
|
|
12097
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Tue,
|
|
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";
|
|
12098
12096
|
|
|
12099
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Tue,
|
|
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";
|
|
12100
12098
|
|
|
12101
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Tue,
|
|
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";
|
|
12102
12100
|
|
|
12103
12101
|
const theme = {
|
|
12104
12102
|
name: "core/theme",
|