@vonage/vivid-vue 4.4.0 → 4.6.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/VFab.vue2.d.ts +3 -3
- package/generated/components/VFab.vue3.d.ts +3 -3
- package/generated/components/VIcon.vue2.d.ts +3 -3
- package/generated/components/VIcon.vue3.d.ts +3 -3
- package/generated/components/VMenu.vue2.d.ts +15 -0
- package/generated/components/VMenu.vue3.d.ts +15 -0
- package/generated/components/VNumberField.vue2.d.ts +15 -0
- package/generated/components/VNumberField.vue3.d.ts +15 -0
- package/generated/components/VSearchableSelect.d.ts +10 -0
- package/generated/components/VSearchableSelect.vue2.d.ts +328 -0
- package/generated/components/VSearchableSelect.vue3.d.ts +410 -0
- package/generated/components/VSelect.vue2.d.ts +16 -0
- package/generated/components/VSelect.vue3.d.ts +16 -0
- package/generated/components/VTab.vue2.d.ts +19 -1
- package/generated/components/VTab.vue3.d.ts +19 -1
- package/generated/components/VTextField.vue2.d.ts +15 -0
- package/generated/components/VTextField.vue3.d.ts +15 -0
- package/generated/components/index.d.ts +1 -0
- package/index.cjs +2857 -847
- package/index.js +2858 -849
- package/package.json +2 -2
- package/web-types.json +249 -3
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref, version, onBeforeMount, defineComponent, h } from 'vue';
|
|
2
|
-
import { registerAccordion, registerAccordionItem, registerActionGroup, registerAlert, registerAudioPlayer, registerAvatar, registerBadge, registerBanner, registerBreadcrumb, registerBreadcrumbItem, registerButton, registerCalendar, registerCalendarEvent, registerCard, registerCheckbox, registerCombobox, registerDataGrid, registerDatePicker, registerDateRangePicker, registerDialPad, registerDialog, registerDivider, registerEmptyState, registerFab, registerFilePicker, registerHeader, registerIcon, registerLayout, registerMenu, registerMenuItem, registerNav, registerNavDisclosure, registerNavItem, registerNote, registerNumberField, registerOption, registerPagination, registerProgress, registerProgressRing, registerRadio, registerRadioGroup, registerRangeSlider, registerSelect, registerSelectableBox, registerSideDrawer, registerSlider, registerSplitButton, registerSwitch, registerTab, registerTabPanel, registerTabs, registerTag, registerTagGroup, registerTextArea, registerTextField, registerTimePicker, registerToggletip, registerTooltip, registerTreeItem, registerTreeView, registerVideoPlayer } from '@vonage/vivid';
|
|
2
|
+
import { registerAccordion, registerAccordionItem, registerActionGroup, registerAlert, registerAudioPlayer, registerAvatar, registerBadge, registerBanner, registerBreadcrumb, registerBreadcrumbItem, registerButton, registerCalendar, registerCalendarEvent, registerCard, registerCheckbox, registerCombobox, registerDataGrid, registerDatePicker, registerDateRangePicker, registerDialPad, registerDialog, registerDivider, registerEmptyState, registerFab, registerFilePicker, registerHeader, registerIcon, registerLayout, registerMenu, registerMenuItem, registerNav, registerNavDisclosure, registerNavItem, registerNote, registerNumberField, registerOption, registerPagination, registerProgress, registerProgressRing, registerRadio, registerRadioGroup, registerRangeSlider, registerSearchableSelect, registerSelect, registerSelectableBox, registerSideDrawer, registerSlider, registerSplitButton, registerSwitch, registerTab, registerTabPanel, registerTabs, registerTag, registerTagGroup, registerTextArea, registerTextField, registerTimePicker, registerToggletip, registerTooltip, registerTreeItem, registerTreeView, registerVideoPlayer } from '@vonage/vivid';
|
|
3
3
|
|
|
4
4
|
const CustomComponentPrefix = ref("vvd3");
|
|
5
5
|
function setCustomComponentPrefix(prefix) {
|
|
@@ -94,13 +94,27 @@ const VAccordion = defineComponent({
|
|
|
94
94
|
},
|
|
95
95
|
class: "vvd-component",
|
|
96
96
|
on: {
|
|
97
|
-
click: (event) =>
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
97
|
+
click: (event) => {
|
|
98
|
+
this.$emit("click", event);
|
|
99
|
+
},
|
|
100
|
+
focus: (event) => {
|
|
101
|
+
this.$emit("focus", event);
|
|
102
|
+
},
|
|
103
|
+
blur: (event) => {
|
|
104
|
+
this.$emit("blur", event);
|
|
105
|
+
},
|
|
106
|
+
keydown: (event) => {
|
|
107
|
+
this.$emit("keydown", event);
|
|
108
|
+
},
|
|
109
|
+
keyup: (event) => {
|
|
110
|
+
this.$emit("keyup", event);
|
|
111
|
+
},
|
|
112
|
+
input: (event) => {
|
|
113
|
+
this.$emit("input", event);
|
|
114
|
+
},
|
|
115
|
+
change: (event) => {
|
|
116
|
+
this.$emit("change", event);
|
|
117
|
+
}
|
|
104
118
|
}
|
|
105
119
|
},
|
|
106
120
|
[this.$slots.default]
|
|
@@ -113,13 +127,27 @@ const VAccordion = defineComponent({
|
|
|
113
127
|
class: "vvd-component",
|
|
114
128
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
115
129
|
...this.expandMode !== void 0 ? { "^expand-mode": this.expandMode } : {},
|
|
116
|
-
onClick: (event) =>
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
130
|
+
onClick: (event) => {
|
|
131
|
+
this.$emit("click", event);
|
|
132
|
+
},
|
|
133
|
+
onFocus: (event) => {
|
|
134
|
+
this.$emit("focus", event);
|
|
135
|
+
},
|
|
136
|
+
onBlur: (event) => {
|
|
137
|
+
this.$emit("blur", event);
|
|
138
|
+
},
|
|
139
|
+
onKeydown: (event) => {
|
|
140
|
+
this.$emit("keydown", event);
|
|
141
|
+
},
|
|
142
|
+
onKeyup: (event) => {
|
|
143
|
+
this.$emit("keyup", event);
|
|
144
|
+
},
|
|
145
|
+
onInput: (event) => {
|
|
146
|
+
this.$emit("input", event);
|
|
147
|
+
},
|
|
148
|
+
onChange: (event) => {
|
|
149
|
+
this.$emit("change", event);
|
|
150
|
+
}
|
|
123
151
|
},
|
|
124
152
|
[
|
|
125
153
|
// @ts-ignore
|
|
@@ -263,13 +291,27 @@ const VAccordionItem = defineComponent({
|
|
|
263
291
|
},
|
|
264
292
|
class: "vvd-component",
|
|
265
293
|
on: {
|
|
266
|
-
click: (event) =>
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
294
|
+
click: (event) => {
|
|
295
|
+
this.$emit("click", event);
|
|
296
|
+
},
|
|
297
|
+
focus: (event) => {
|
|
298
|
+
this.$emit("focus", event);
|
|
299
|
+
},
|
|
300
|
+
blur: (event) => {
|
|
301
|
+
this.$emit("blur", event);
|
|
302
|
+
},
|
|
303
|
+
keydown: (event) => {
|
|
304
|
+
this.$emit("keydown", event);
|
|
305
|
+
},
|
|
306
|
+
keyup: (event) => {
|
|
307
|
+
this.$emit("keyup", event);
|
|
308
|
+
},
|
|
309
|
+
input: (event) => {
|
|
310
|
+
this.$emit("input", event);
|
|
311
|
+
},
|
|
312
|
+
change: (event) => {
|
|
313
|
+
this.$emit("change", event);
|
|
314
|
+
}
|
|
273
315
|
}
|
|
274
316
|
},
|
|
275
317
|
[
|
|
@@ -294,13 +336,27 @@ const VAccordionItem = defineComponent({
|
|
|
294
336
|
...this.noIndicator !== void 0 && this.noIndicator !== false ? { "^no-indicator": this.noIndicator } : {},
|
|
295
337
|
...this.meta !== void 0 ? { "^meta": this.meta } : {},
|
|
296
338
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
297
|
-
onClick: (event) =>
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
339
|
+
onClick: (event) => {
|
|
340
|
+
this.$emit("click", event);
|
|
341
|
+
},
|
|
342
|
+
onFocus: (event) => {
|
|
343
|
+
this.$emit("focus", event);
|
|
344
|
+
},
|
|
345
|
+
onBlur: (event) => {
|
|
346
|
+
this.$emit("blur", event);
|
|
347
|
+
},
|
|
348
|
+
onKeydown: (event) => {
|
|
349
|
+
this.$emit("keydown", event);
|
|
350
|
+
},
|
|
351
|
+
onKeyup: (event) => {
|
|
352
|
+
this.$emit("keyup", event);
|
|
353
|
+
},
|
|
354
|
+
onInput: (event) => {
|
|
355
|
+
this.$emit("input", event);
|
|
356
|
+
},
|
|
357
|
+
onChange: (event) => {
|
|
358
|
+
this.$emit("change", event);
|
|
359
|
+
}
|
|
304
360
|
},
|
|
305
361
|
[
|
|
306
362
|
// @ts-ignore
|
|
@@ -397,12 +453,24 @@ const VActionGroup = defineComponent({
|
|
|
397
453
|
},
|
|
398
454
|
class: "vvd-component",
|
|
399
455
|
on: {
|
|
400
|
-
click: (event) =>
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
456
|
+
click: (event) => {
|
|
457
|
+
this.$emit("click", event);
|
|
458
|
+
},
|
|
459
|
+
focus: (event) => {
|
|
460
|
+
this.$emit("focus", event);
|
|
461
|
+
},
|
|
462
|
+
blur: (event) => {
|
|
463
|
+
this.$emit("blur", event);
|
|
464
|
+
},
|
|
465
|
+
keydown: (event) => {
|
|
466
|
+
this.$emit("keydown", event);
|
|
467
|
+
},
|
|
468
|
+
keyup: (event) => {
|
|
469
|
+
this.$emit("keyup", event);
|
|
470
|
+
},
|
|
471
|
+
input: (event) => {
|
|
472
|
+
this.$emit("input", event);
|
|
473
|
+
}
|
|
406
474
|
}
|
|
407
475
|
},
|
|
408
476
|
[this.$slots.default]
|
|
@@ -419,12 +487,24 @@ const VActionGroup = defineComponent({
|
|
|
419
487
|
...this.tight !== void 0 && this.tight !== false ? { "^tight": this.tight } : {},
|
|
420
488
|
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
421
489
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
422
|
-
onClick: (event) =>
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
490
|
+
onClick: (event) => {
|
|
491
|
+
this.$emit("click", event);
|
|
492
|
+
},
|
|
493
|
+
onFocus: (event) => {
|
|
494
|
+
this.$emit("focus", event);
|
|
495
|
+
},
|
|
496
|
+
onBlur: (event) => {
|
|
497
|
+
this.$emit("blur", event);
|
|
498
|
+
},
|
|
499
|
+
onKeydown: (event) => {
|
|
500
|
+
this.$emit("keydown", event);
|
|
501
|
+
},
|
|
502
|
+
onKeyup: (event) => {
|
|
503
|
+
this.$emit("keyup", event);
|
|
504
|
+
},
|
|
505
|
+
onInput: (event) => {
|
|
506
|
+
this.$emit("input", event);
|
|
507
|
+
}
|
|
428
508
|
},
|
|
429
509
|
[
|
|
430
510
|
// @ts-ignore
|
|
@@ -572,14 +652,30 @@ const VAlert = defineComponent({
|
|
|
572
652
|
},
|
|
573
653
|
class: "vvd-component",
|
|
574
654
|
on: {
|
|
575
|
-
click: (event) =>
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
655
|
+
click: (event) => {
|
|
656
|
+
this.$emit("click", event);
|
|
657
|
+
},
|
|
658
|
+
focus: (event) => {
|
|
659
|
+
this.$emit("focus", event);
|
|
660
|
+
},
|
|
661
|
+
blur: (event) => {
|
|
662
|
+
this.$emit("blur", event);
|
|
663
|
+
},
|
|
664
|
+
keydown: (event) => {
|
|
665
|
+
this.$emit("keydown", event);
|
|
666
|
+
},
|
|
667
|
+
keyup: (event) => {
|
|
668
|
+
this.$emit("keyup", event);
|
|
669
|
+
},
|
|
670
|
+
input: (event) => {
|
|
671
|
+
this.$emit("input", event);
|
|
672
|
+
},
|
|
673
|
+
open: (event) => {
|
|
674
|
+
this.$emit("open", event);
|
|
675
|
+
},
|
|
676
|
+
close: (event) => {
|
|
677
|
+
this.$emit("close", event);
|
|
678
|
+
}
|
|
583
679
|
}
|
|
584
680
|
},
|
|
585
681
|
[
|
|
@@ -609,14 +705,30 @@ const VAlert = defineComponent({
|
|
|
609
705
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
610
706
|
...this.strategy !== void 0 ? { "^strategy": this.strategy } : {},
|
|
611
707
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
612
|
-
onClick: (event) =>
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
708
|
+
onClick: (event) => {
|
|
709
|
+
this.$emit("click", event);
|
|
710
|
+
},
|
|
711
|
+
onFocus: (event) => {
|
|
712
|
+
this.$emit("focus", event);
|
|
713
|
+
},
|
|
714
|
+
onBlur: (event) => {
|
|
715
|
+
this.$emit("blur", event);
|
|
716
|
+
},
|
|
717
|
+
onKeydown: (event) => {
|
|
718
|
+
this.$emit("keydown", event);
|
|
719
|
+
},
|
|
720
|
+
onKeyup: (event) => {
|
|
721
|
+
this.$emit("keyup", event);
|
|
722
|
+
},
|
|
723
|
+
onInput: (event) => {
|
|
724
|
+
this.$emit("input", event);
|
|
725
|
+
},
|
|
726
|
+
onOpen: (event) => {
|
|
727
|
+
this.$emit("open", event);
|
|
728
|
+
},
|
|
729
|
+
onClose: (event) => {
|
|
730
|
+
this.$emit("close", event);
|
|
731
|
+
}
|
|
620
732
|
},
|
|
621
733
|
[
|
|
622
734
|
// @ts-ignore
|
|
@@ -760,12 +872,24 @@ const VAudioPlayer = defineComponent({
|
|
|
760
872
|
},
|
|
761
873
|
class: "vvd-component",
|
|
762
874
|
on: {
|
|
763
|
-
click: (event) =>
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
875
|
+
click: (event) => {
|
|
876
|
+
this.$emit("click", event);
|
|
877
|
+
},
|
|
878
|
+
focus: (event) => {
|
|
879
|
+
this.$emit("focus", event);
|
|
880
|
+
},
|
|
881
|
+
blur: (event) => {
|
|
882
|
+
this.$emit("blur", event);
|
|
883
|
+
},
|
|
884
|
+
keydown: (event) => {
|
|
885
|
+
this.$emit("keydown", event);
|
|
886
|
+
},
|
|
887
|
+
keyup: (event) => {
|
|
888
|
+
this.$emit("keyup", event);
|
|
889
|
+
},
|
|
890
|
+
input: (event) => {
|
|
891
|
+
this.$emit("input", event);
|
|
892
|
+
}
|
|
769
893
|
}
|
|
770
894
|
},
|
|
771
895
|
[this.$slots.default]
|
|
@@ -788,12 +912,24 @@ const VAudioPlayer = defineComponent({
|
|
|
788
912
|
...this.notime !== void 0 && this.notime !== false ? { "^notime": this.notime } : {},
|
|
789
913
|
...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
|
|
790
914
|
...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
|
|
791
|
-
onClick: (event) =>
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
915
|
+
onClick: (event) => {
|
|
916
|
+
this.$emit("click", event);
|
|
917
|
+
},
|
|
918
|
+
onFocus: (event) => {
|
|
919
|
+
this.$emit("focus", event);
|
|
920
|
+
},
|
|
921
|
+
onBlur: (event) => {
|
|
922
|
+
this.$emit("blur", event);
|
|
923
|
+
},
|
|
924
|
+
onKeydown: (event) => {
|
|
925
|
+
this.$emit("keydown", event);
|
|
926
|
+
},
|
|
927
|
+
onKeyup: (event) => {
|
|
928
|
+
this.$emit("keyup", event);
|
|
929
|
+
},
|
|
930
|
+
onInput: (event) => {
|
|
931
|
+
this.$emit("input", event);
|
|
932
|
+
}
|
|
797
933
|
},
|
|
798
934
|
[
|
|
799
935
|
// @ts-ignore
|
|
@@ -903,12 +1039,24 @@ const VAvatar = defineComponent({
|
|
|
903
1039
|
},
|
|
904
1040
|
class: "vvd-component",
|
|
905
1041
|
on: {
|
|
906
|
-
click: (event) =>
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
1042
|
+
click: (event) => {
|
|
1043
|
+
this.$emit("click", event);
|
|
1044
|
+
},
|
|
1045
|
+
focus: (event) => {
|
|
1046
|
+
this.$emit("focus", event);
|
|
1047
|
+
},
|
|
1048
|
+
blur: (event) => {
|
|
1049
|
+
this.$emit("blur", event);
|
|
1050
|
+
},
|
|
1051
|
+
keydown: (event) => {
|
|
1052
|
+
this.$emit("keydown", event);
|
|
1053
|
+
},
|
|
1054
|
+
keyup: (event) => {
|
|
1055
|
+
this.$emit("keyup", event);
|
|
1056
|
+
},
|
|
1057
|
+
input: (event) => {
|
|
1058
|
+
this.$emit("input", event);
|
|
1059
|
+
}
|
|
912
1060
|
}
|
|
913
1061
|
},
|
|
914
1062
|
[
|
|
@@ -930,12 +1078,24 @@ const VAvatar = defineComponent({
|
|
|
930
1078
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
931
1079
|
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
932
1080
|
...this.initials !== void 0 ? { "^initials": this.initials } : {},
|
|
933
|
-
onClick: (event) =>
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
1081
|
+
onClick: (event) => {
|
|
1082
|
+
this.$emit("click", event);
|
|
1083
|
+
},
|
|
1084
|
+
onFocus: (event) => {
|
|
1085
|
+
this.$emit("focus", event);
|
|
1086
|
+
},
|
|
1087
|
+
onBlur: (event) => {
|
|
1088
|
+
this.$emit("blur", event);
|
|
1089
|
+
},
|
|
1090
|
+
onKeydown: (event) => {
|
|
1091
|
+
this.$emit("keydown", event);
|
|
1092
|
+
},
|
|
1093
|
+
onKeyup: (event) => {
|
|
1094
|
+
this.$emit("keyup", event);
|
|
1095
|
+
},
|
|
1096
|
+
onInput: (event) => {
|
|
1097
|
+
this.$emit("input", event);
|
|
1098
|
+
}
|
|
939
1099
|
},
|
|
940
1100
|
[
|
|
941
1101
|
// @ts-ignore
|
|
@@ -1044,12 +1204,24 @@ const VBadge = defineComponent({
|
|
|
1044
1204
|
},
|
|
1045
1205
|
class: "vvd-component",
|
|
1046
1206
|
on: {
|
|
1047
|
-
click: (event) =>
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1207
|
+
click: (event) => {
|
|
1208
|
+
this.$emit("click", event);
|
|
1209
|
+
},
|
|
1210
|
+
focus: (event) => {
|
|
1211
|
+
this.$emit("focus", event);
|
|
1212
|
+
},
|
|
1213
|
+
blur: (event) => {
|
|
1214
|
+
this.$emit("blur", event);
|
|
1215
|
+
},
|
|
1216
|
+
keydown: (event) => {
|
|
1217
|
+
this.$emit("keydown", event);
|
|
1218
|
+
},
|
|
1219
|
+
keyup: (event) => {
|
|
1220
|
+
this.$emit("keyup", event);
|
|
1221
|
+
},
|
|
1222
|
+
input: (event) => {
|
|
1223
|
+
this.$emit("input", event);
|
|
1224
|
+
}
|
|
1053
1225
|
}
|
|
1054
1226
|
},
|
|
1055
1227
|
[
|
|
@@ -1071,12 +1243,24 @@ const VBadge = defineComponent({
|
|
|
1071
1243
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
1072
1244
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
1073
1245
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1074
|
-
onClick: (event) =>
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1246
|
+
onClick: (event) => {
|
|
1247
|
+
this.$emit("click", event);
|
|
1248
|
+
},
|
|
1249
|
+
onFocus: (event) => {
|
|
1250
|
+
this.$emit("focus", event);
|
|
1251
|
+
},
|
|
1252
|
+
onBlur: (event) => {
|
|
1253
|
+
this.$emit("blur", event);
|
|
1254
|
+
},
|
|
1255
|
+
onKeydown: (event) => {
|
|
1256
|
+
this.$emit("keydown", event);
|
|
1257
|
+
},
|
|
1258
|
+
onKeyup: (event) => {
|
|
1259
|
+
this.$emit("keyup", event);
|
|
1260
|
+
},
|
|
1261
|
+
onInput: (event) => {
|
|
1262
|
+
this.$emit("input", event);
|
|
1263
|
+
}
|
|
1080
1264
|
},
|
|
1081
1265
|
[
|
|
1082
1266
|
// @ts-ignore
|
|
@@ -1177,12 +1361,24 @@ const VBanner = defineComponent({
|
|
|
1177
1361
|
},
|
|
1178
1362
|
class: "vvd-component",
|
|
1179
1363
|
on: {
|
|
1180
|
-
click: (event) =>
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1364
|
+
click: (event) => {
|
|
1365
|
+
this.$emit("click", event);
|
|
1366
|
+
},
|
|
1367
|
+
focus: (event) => {
|
|
1368
|
+
this.$emit("focus", event);
|
|
1369
|
+
},
|
|
1370
|
+
blur: (event) => {
|
|
1371
|
+
this.$emit("blur", event);
|
|
1372
|
+
},
|
|
1373
|
+
keydown: (event) => {
|
|
1374
|
+
this.$emit("keydown", event);
|
|
1375
|
+
},
|
|
1376
|
+
keyup: (event) => {
|
|
1377
|
+
this.$emit("keyup", event);
|
|
1378
|
+
},
|
|
1379
|
+
input: (event) => {
|
|
1380
|
+
this.$emit("input", event);
|
|
1381
|
+
}
|
|
1186
1382
|
}
|
|
1187
1383
|
},
|
|
1188
1384
|
[
|
|
@@ -1209,12 +1405,24 @@ const VBanner = defineComponent({
|
|
|
1209
1405
|
...this.ariaLive !== void 0 ? { "^aria-live": this.ariaLive } : {},
|
|
1210
1406
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1211
1407
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
1212
|
-
onClick: (event) =>
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1408
|
+
onClick: (event) => {
|
|
1409
|
+
this.$emit("click", event);
|
|
1410
|
+
},
|
|
1411
|
+
onFocus: (event) => {
|
|
1412
|
+
this.$emit("focus", event);
|
|
1413
|
+
},
|
|
1414
|
+
onBlur: (event) => {
|
|
1415
|
+
this.$emit("blur", event);
|
|
1416
|
+
},
|
|
1417
|
+
onKeydown: (event) => {
|
|
1418
|
+
this.$emit("keydown", event);
|
|
1419
|
+
},
|
|
1420
|
+
onKeyup: (event) => {
|
|
1421
|
+
this.$emit("keyup", event);
|
|
1422
|
+
},
|
|
1423
|
+
onInput: (event) => {
|
|
1424
|
+
this.$emit("input", event);
|
|
1425
|
+
}
|
|
1218
1426
|
},
|
|
1219
1427
|
[
|
|
1220
1428
|
// @ts-ignore
|
|
@@ -1288,12 +1496,24 @@ const VBreadcrumb = defineComponent({
|
|
|
1288
1496
|
},
|
|
1289
1497
|
class: "vvd-component",
|
|
1290
1498
|
on: {
|
|
1291
|
-
click: (event) =>
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1499
|
+
click: (event) => {
|
|
1500
|
+
this.$emit("click", event);
|
|
1501
|
+
},
|
|
1502
|
+
focus: (event) => {
|
|
1503
|
+
this.$emit("focus", event);
|
|
1504
|
+
},
|
|
1505
|
+
blur: (event) => {
|
|
1506
|
+
this.$emit("blur", event);
|
|
1507
|
+
},
|
|
1508
|
+
keydown: (event) => {
|
|
1509
|
+
this.$emit("keydown", event);
|
|
1510
|
+
},
|
|
1511
|
+
keyup: (event) => {
|
|
1512
|
+
this.$emit("keyup", event);
|
|
1513
|
+
},
|
|
1514
|
+
input: (event) => {
|
|
1515
|
+
this.$emit("input", event);
|
|
1516
|
+
}
|
|
1297
1517
|
}
|
|
1298
1518
|
},
|
|
1299
1519
|
[this.$slots.default]
|
|
@@ -1305,12 +1525,24 @@ const VBreadcrumb = defineComponent({
|
|
|
1305
1525
|
ref: "element",
|
|
1306
1526
|
class: "vvd-component",
|
|
1307
1527
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1308
|
-
onClick: (event) =>
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1528
|
+
onClick: (event) => {
|
|
1529
|
+
this.$emit("click", event);
|
|
1530
|
+
},
|
|
1531
|
+
onFocus: (event) => {
|
|
1532
|
+
this.$emit("focus", event);
|
|
1533
|
+
},
|
|
1534
|
+
onBlur: (event) => {
|
|
1535
|
+
this.$emit("blur", event);
|
|
1536
|
+
},
|
|
1537
|
+
onKeydown: (event) => {
|
|
1538
|
+
this.$emit("keydown", event);
|
|
1539
|
+
},
|
|
1540
|
+
onKeyup: (event) => {
|
|
1541
|
+
this.$emit("keyup", event);
|
|
1542
|
+
},
|
|
1543
|
+
onInput: (event) => {
|
|
1544
|
+
this.$emit("input", event);
|
|
1545
|
+
}
|
|
1314
1546
|
},
|
|
1315
1547
|
[
|
|
1316
1548
|
// @ts-ignore
|
|
@@ -1428,12 +1660,24 @@ const VBreadcrumbItem = defineComponent({
|
|
|
1428
1660
|
},
|
|
1429
1661
|
class: "vvd-component",
|
|
1430
1662
|
on: {
|
|
1431
|
-
click: (event) =>
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1663
|
+
click: (event) => {
|
|
1664
|
+
this.$emit("click", event);
|
|
1665
|
+
},
|
|
1666
|
+
focus: (event) => {
|
|
1667
|
+
this.$emit("focus", event);
|
|
1668
|
+
},
|
|
1669
|
+
blur: (event) => {
|
|
1670
|
+
this.$emit("blur", event);
|
|
1671
|
+
},
|
|
1672
|
+
keydown: (event) => {
|
|
1673
|
+
this.$emit("keydown", event);
|
|
1674
|
+
},
|
|
1675
|
+
keyup: (event) => {
|
|
1676
|
+
this.$emit("keyup", event);
|
|
1677
|
+
},
|
|
1678
|
+
input: (event) => {
|
|
1679
|
+
this.$emit("input", event);
|
|
1680
|
+
}
|
|
1437
1681
|
}
|
|
1438
1682
|
},
|
|
1439
1683
|
[this.$slots.default]
|
|
@@ -1454,12 +1698,24 @@ const VBreadcrumbItem = defineComponent({
|
|
|
1454
1698
|
...this.target !== void 0 ? { "^target": this.target } : {},
|
|
1455
1699
|
...this.type !== void 0 ? { "^type": this.type } : {},
|
|
1456
1700
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1457
|
-
onClick: (event) =>
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1701
|
+
onClick: (event) => {
|
|
1702
|
+
this.$emit("click", event);
|
|
1703
|
+
},
|
|
1704
|
+
onFocus: (event) => {
|
|
1705
|
+
this.$emit("focus", event);
|
|
1706
|
+
},
|
|
1707
|
+
onBlur: (event) => {
|
|
1708
|
+
this.$emit("blur", event);
|
|
1709
|
+
},
|
|
1710
|
+
onKeydown: (event) => {
|
|
1711
|
+
this.$emit("keydown", event);
|
|
1712
|
+
},
|
|
1713
|
+
onKeyup: (event) => {
|
|
1714
|
+
this.$emit("keyup", event);
|
|
1715
|
+
},
|
|
1716
|
+
onInput: (event) => {
|
|
1717
|
+
this.$emit("input", event);
|
|
1718
|
+
}
|
|
1463
1719
|
},
|
|
1464
1720
|
[
|
|
1465
1721
|
// @ts-ignore
|
|
@@ -1720,12 +1976,24 @@ const VButton = defineComponent({
|
|
|
1720
1976
|
},
|
|
1721
1977
|
class: "vvd-component",
|
|
1722
1978
|
on: {
|
|
1723
|
-
click: (event) =>
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1979
|
+
click: (event) => {
|
|
1980
|
+
this.$emit("click", event);
|
|
1981
|
+
},
|
|
1982
|
+
focus: (event) => {
|
|
1983
|
+
this.$emit("focus", event);
|
|
1984
|
+
},
|
|
1985
|
+
blur: (event) => {
|
|
1986
|
+
this.$emit("blur", event);
|
|
1987
|
+
},
|
|
1988
|
+
keydown: (event) => {
|
|
1989
|
+
this.$emit("keydown", event);
|
|
1990
|
+
},
|
|
1991
|
+
keyup: (event) => {
|
|
1992
|
+
this.$emit("keyup", event);
|
|
1993
|
+
},
|
|
1994
|
+
input: (event) => {
|
|
1995
|
+
this.$emit("input", event);
|
|
1996
|
+
}
|
|
1729
1997
|
}
|
|
1730
1998
|
},
|
|
1731
1999
|
[
|
|
@@ -1773,12 +2041,24 @@ const VButton = defineComponent({
|
|
|
1773
2041
|
...this.referrerpolicy !== void 0 ? { "^referrerpolicy": this.referrerpolicy } : {},
|
|
1774
2042
|
...this.rel !== void 0 ? { "^rel": this.rel } : {},
|
|
1775
2043
|
...this.target !== void 0 ? { "^target": this.target } : {},
|
|
1776
|
-
onClick: (event) =>
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
2044
|
+
onClick: (event) => {
|
|
2045
|
+
this.$emit("click", event);
|
|
2046
|
+
},
|
|
2047
|
+
onFocus: (event) => {
|
|
2048
|
+
this.$emit("focus", event);
|
|
2049
|
+
},
|
|
2050
|
+
onBlur: (event) => {
|
|
2051
|
+
this.$emit("blur", event);
|
|
2052
|
+
},
|
|
2053
|
+
onKeydown: (event) => {
|
|
2054
|
+
this.$emit("keydown", event);
|
|
2055
|
+
},
|
|
2056
|
+
onKeyup: (event) => {
|
|
2057
|
+
this.$emit("keyup", event);
|
|
2058
|
+
},
|
|
2059
|
+
onInput: (event) => {
|
|
2060
|
+
this.$emit("input", event);
|
|
2061
|
+
}
|
|
1782
2062
|
},
|
|
1783
2063
|
[
|
|
1784
2064
|
// @ts-ignore
|
|
@@ -1896,12 +2176,24 @@ const VCalendar = defineComponent({
|
|
|
1896
2176
|
...this.locales !== void 0 ? { locales: this.locales } : {}
|
|
1897
2177
|
},
|
|
1898
2178
|
on: {
|
|
1899
|
-
click: (event) =>
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
2179
|
+
click: (event) => {
|
|
2180
|
+
this.$emit("click", event);
|
|
2181
|
+
},
|
|
2182
|
+
focus: (event) => {
|
|
2183
|
+
this.$emit("focus", event);
|
|
2184
|
+
},
|
|
2185
|
+
blur: (event) => {
|
|
2186
|
+
this.$emit("blur", event);
|
|
2187
|
+
},
|
|
2188
|
+
keydown: (event) => {
|
|
2189
|
+
this.$emit("keydown", event);
|
|
2190
|
+
},
|
|
2191
|
+
keyup: (event) => {
|
|
2192
|
+
this.$emit("keyup", event);
|
|
2193
|
+
},
|
|
2194
|
+
input: (event) => {
|
|
2195
|
+
this.$emit("input", event);
|
|
2196
|
+
}
|
|
1905
2197
|
}
|
|
1906
2198
|
},
|
|
1907
2199
|
[
|
|
@@ -1933,12 +2225,24 @@ const VCalendar = defineComponent({
|
|
|
1933
2225
|
...this.startDay !== void 0 ? { "^start-day": this.startDay } : {},
|
|
1934
2226
|
...this.locales !== void 0 ? { ".locales": this.locales } : {},
|
|
1935
2227
|
...this.hour12 !== void 0 && this.hour12 !== false ? { "^hour12": this.hour12 } : {},
|
|
1936
|
-
onClick: (event) =>
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
2228
|
+
onClick: (event) => {
|
|
2229
|
+
this.$emit("click", event);
|
|
2230
|
+
},
|
|
2231
|
+
onFocus: (event) => {
|
|
2232
|
+
this.$emit("focus", event);
|
|
2233
|
+
},
|
|
2234
|
+
onBlur: (event) => {
|
|
2235
|
+
this.$emit("blur", event);
|
|
2236
|
+
},
|
|
2237
|
+
onKeydown: (event) => {
|
|
2238
|
+
this.$emit("keydown", event);
|
|
2239
|
+
},
|
|
2240
|
+
onKeyup: (event) => {
|
|
2241
|
+
this.$emit("keyup", event);
|
|
2242
|
+
},
|
|
2243
|
+
onInput: (event) => {
|
|
2244
|
+
this.$emit("input", event);
|
|
2245
|
+
}
|
|
1942
2246
|
},
|
|
1943
2247
|
[
|
|
1944
2248
|
// @ts-ignore
|
|
@@ -2066,12 +2370,24 @@ const VCalendarEvent = defineComponent({
|
|
|
2066
2370
|
},
|
|
2067
2371
|
class: "vvd-component",
|
|
2068
2372
|
on: {
|
|
2069
|
-
click: (event) =>
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2373
|
+
click: (event) => {
|
|
2374
|
+
this.$emit("click", event);
|
|
2375
|
+
},
|
|
2376
|
+
focus: (event) => {
|
|
2377
|
+
this.$emit("focus", event);
|
|
2378
|
+
},
|
|
2379
|
+
blur: (event) => {
|
|
2380
|
+
this.$emit("blur", event);
|
|
2381
|
+
},
|
|
2382
|
+
keydown: (event) => {
|
|
2383
|
+
this.$emit("keydown", event);
|
|
2384
|
+
},
|
|
2385
|
+
keyup: (event) => {
|
|
2386
|
+
this.$emit("keyup", event);
|
|
2387
|
+
},
|
|
2388
|
+
input: (event) => {
|
|
2389
|
+
this.$emit("input", event);
|
|
2390
|
+
}
|
|
2075
2391
|
}
|
|
2076
2392
|
},
|
|
2077
2393
|
[this.$slots.default]
|
|
@@ -2090,12 +2406,24 @@ const VCalendarEvent = defineComponent({
|
|
|
2090
2406
|
...this.overlapCount !== void 0 ? { "^overlap-count": this.overlapCount } : {},
|
|
2091
2407
|
...this.start !== void 0 ? { "^start": this.start } : {},
|
|
2092
2408
|
...this.duration !== void 0 ? { "^duration": this.duration } : {},
|
|
2093
|
-
onClick: (event) =>
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2409
|
+
onClick: (event) => {
|
|
2410
|
+
this.$emit("click", event);
|
|
2411
|
+
},
|
|
2412
|
+
onFocus: (event) => {
|
|
2413
|
+
this.$emit("focus", event);
|
|
2414
|
+
},
|
|
2415
|
+
onBlur: (event) => {
|
|
2416
|
+
this.$emit("blur", event);
|
|
2417
|
+
},
|
|
2418
|
+
onKeydown: (event) => {
|
|
2419
|
+
this.$emit("keydown", event);
|
|
2420
|
+
},
|
|
2421
|
+
onKeyup: (event) => {
|
|
2422
|
+
this.$emit("keyup", event);
|
|
2423
|
+
},
|
|
2424
|
+
onInput: (event) => {
|
|
2425
|
+
this.$emit("input", event);
|
|
2426
|
+
}
|
|
2099
2427
|
},
|
|
2100
2428
|
[
|
|
2101
2429
|
// @ts-ignore
|
|
@@ -2205,12 +2533,24 @@ const VCard = defineComponent({
|
|
|
2205
2533
|
},
|
|
2206
2534
|
class: "vvd-component",
|
|
2207
2535
|
on: {
|
|
2208
|
-
click: (event) =>
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2536
|
+
click: (event) => {
|
|
2537
|
+
this.$emit("click", event);
|
|
2538
|
+
},
|
|
2539
|
+
focus: (event) => {
|
|
2540
|
+
this.$emit("focus", event);
|
|
2541
|
+
},
|
|
2542
|
+
blur: (event) => {
|
|
2543
|
+
this.$emit("blur", event);
|
|
2544
|
+
},
|
|
2545
|
+
keydown: (event) => {
|
|
2546
|
+
this.$emit("keydown", event);
|
|
2547
|
+
},
|
|
2548
|
+
keyup: (event) => {
|
|
2549
|
+
this.$emit("keyup", event);
|
|
2550
|
+
},
|
|
2551
|
+
input: (event) => {
|
|
2552
|
+
this.$emit("input", event);
|
|
2553
|
+
}
|
|
2214
2554
|
}
|
|
2215
2555
|
},
|
|
2216
2556
|
[
|
|
@@ -2240,12 +2580,24 @@ const VCard = defineComponent({
|
|
|
2240
2580
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
2241
2581
|
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
2242
2582
|
...this.elevation !== void 0 ? { "^elevation": this.elevation } : {},
|
|
2243
|
-
onClick: (event) =>
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2583
|
+
onClick: (event) => {
|
|
2584
|
+
this.$emit("click", event);
|
|
2585
|
+
},
|
|
2586
|
+
onFocus: (event) => {
|
|
2587
|
+
this.$emit("focus", event);
|
|
2588
|
+
},
|
|
2589
|
+
onBlur: (event) => {
|
|
2590
|
+
this.$emit("blur", event);
|
|
2591
|
+
},
|
|
2592
|
+
onKeydown: (event) => {
|
|
2593
|
+
this.$emit("keydown", event);
|
|
2594
|
+
},
|
|
2595
|
+
onKeyup: (event) => {
|
|
2596
|
+
this.$emit("keyup", event);
|
|
2597
|
+
},
|
|
2598
|
+
onInput: (event) => {
|
|
2599
|
+
this.$emit("input", event);
|
|
2600
|
+
}
|
|
2249
2601
|
},
|
|
2250
2602
|
[
|
|
2251
2603
|
// @ts-ignore
|
|
@@ -2428,11 +2780,21 @@ const VCheckbox = defineComponent({
|
|
|
2428
2780
|
},
|
|
2429
2781
|
class: "vvd-component",
|
|
2430
2782
|
on: {
|
|
2431
|
-
click: (event) =>
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2783
|
+
click: (event) => {
|
|
2784
|
+
this.$emit("click", event);
|
|
2785
|
+
},
|
|
2786
|
+
focus: (event) => {
|
|
2787
|
+
this.$emit("focus", event);
|
|
2788
|
+
},
|
|
2789
|
+
blur: (event) => {
|
|
2790
|
+
this.$emit("blur", event);
|
|
2791
|
+
},
|
|
2792
|
+
keydown: (event) => {
|
|
2793
|
+
this.$emit("keydown", event);
|
|
2794
|
+
},
|
|
2795
|
+
keyup: (event) => {
|
|
2796
|
+
this.$emit("keyup", event);
|
|
2797
|
+
},
|
|
2436
2798
|
change: (event) => {
|
|
2437
2799
|
this.$emit(
|
|
2438
2800
|
"update:modelValue",
|
|
@@ -2440,7 +2802,9 @@ const VCheckbox = defineComponent({
|
|
|
2440
2802
|
);
|
|
2441
2803
|
this.$emit("change", event);
|
|
2442
2804
|
},
|
|
2443
|
-
input: (event) =>
|
|
2805
|
+
input: (event) => {
|
|
2806
|
+
this.$emit("input", event);
|
|
2807
|
+
}
|
|
2444
2808
|
}
|
|
2445
2809
|
},
|
|
2446
2810
|
[
|
|
@@ -2471,11 +2835,21 @@ const VCheckbox = defineComponent({
|
|
|
2471
2835
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
2472
2836
|
...this.tabindex !== void 0 ? { "^tabindex": this.tabindex } : {},
|
|
2473
2837
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
2474
|
-
onClick: (event) =>
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2838
|
+
onClick: (event) => {
|
|
2839
|
+
this.$emit("click", event);
|
|
2840
|
+
},
|
|
2841
|
+
onFocus: (event) => {
|
|
2842
|
+
this.$emit("focus", event);
|
|
2843
|
+
},
|
|
2844
|
+
onBlur: (event) => {
|
|
2845
|
+
this.$emit("blur", event);
|
|
2846
|
+
},
|
|
2847
|
+
onKeydown: (event) => {
|
|
2848
|
+
this.$emit("keydown", event);
|
|
2849
|
+
},
|
|
2850
|
+
onKeyup: (event) => {
|
|
2851
|
+
this.$emit("keyup", event);
|
|
2852
|
+
},
|
|
2479
2853
|
onChange: (event) => {
|
|
2480
2854
|
this.$emit(
|
|
2481
2855
|
"update:modelValue",
|
|
@@ -2483,7 +2857,9 @@ const VCheckbox = defineComponent({
|
|
|
2483
2857
|
);
|
|
2484
2858
|
this.$emit("change", event);
|
|
2485
2859
|
},
|
|
2486
|
-
onInput: (event) =>
|
|
2860
|
+
onInput: (event) => {
|
|
2861
|
+
this.$emit("input", event);
|
|
2862
|
+
}
|
|
2487
2863
|
},
|
|
2488
2864
|
[
|
|
2489
2865
|
// @ts-ignore
|
|
@@ -2698,12 +3074,24 @@ const VCombobox = defineComponent({
|
|
|
2698
3074
|
},
|
|
2699
3075
|
class: "vvd-component",
|
|
2700
3076
|
on: {
|
|
2701
|
-
click: (event) =>
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
3077
|
+
click: (event) => {
|
|
3078
|
+
this.$emit("click", event);
|
|
3079
|
+
},
|
|
3080
|
+
focus: (event) => {
|
|
3081
|
+
this.$emit("focus", event);
|
|
3082
|
+
},
|
|
3083
|
+
blur: (event) => {
|
|
3084
|
+
this.$emit("blur", event);
|
|
3085
|
+
},
|
|
3086
|
+
keydown: (event) => {
|
|
3087
|
+
this.$emit("keydown", event);
|
|
3088
|
+
},
|
|
3089
|
+
keyup: (event) => {
|
|
3090
|
+
this.$emit("keyup", event);
|
|
3091
|
+
},
|
|
3092
|
+
input: (event) => {
|
|
3093
|
+
this.$emit("input", event);
|
|
3094
|
+
},
|
|
2707
3095
|
change: (event) => {
|
|
2708
3096
|
this.$emit(
|
|
2709
3097
|
"update:modelValue",
|
|
@@ -2736,12 +3124,24 @@ const VCombobox = defineComponent({
|
|
|
2736
3124
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
2737
3125
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
2738
3126
|
...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
2739
|
-
onClick: (event) =>
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
3127
|
+
onClick: (event) => {
|
|
3128
|
+
this.$emit("click", event);
|
|
3129
|
+
},
|
|
3130
|
+
onFocus: (event) => {
|
|
3131
|
+
this.$emit("focus", event);
|
|
3132
|
+
},
|
|
3133
|
+
onBlur: (event) => {
|
|
3134
|
+
this.$emit("blur", event);
|
|
3135
|
+
},
|
|
3136
|
+
onKeydown: (event) => {
|
|
3137
|
+
this.$emit("keydown", event);
|
|
3138
|
+
},
|
|
3139
|
+
onKeyup: (event) => {
|
|
3140
|
+
this.$emit("keyup", event);
|
|
3141
|
+
},
|
|
3142
|
+
onInput: (event) => {
|
|
3143
|
+
this.$emit("input", event);
|
|
3144
|
+
},
|
|
2745
3145
|
onChange: (event) => {
|
|
2746
3146
|
this.$emit(
|
|
2747
3147
|
"update:modelValue",
|
|
@@ -2864,13 +3264,27 @@ const VDataGrid = defineComponent({
|
|
|
2864
3264
|
...this.rowsData !== void 0 ? { rowsData: this.rowsData } : {}
|
|
2865
3265
|
},
|
|
2866
3266
|
on: {
|
|
2867
|
-
click: (event) =>
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
3267
|
+
click: (event) => {
|
|
3268
|
+
this.$emit("click", event);
|
|
3269
|
+
},
|
|
3270
|
+
focus: (event) => {
|
|
3271
|
+
this.$emit("focus", event);
|
|
3272
|
+
},
|
|
3273
|
+
blur: (event) => {
|
|
3274
|
+
this.$emit("blur", event);
|
|
3275
|
+
},
|
|
3276
|
+
keydown: (event) => {
|
|
3277
|
+
this.$emit("keydown", event);
|
|
3278
|
+
},
|
|
3279
|
+
keyup: (event) => {
|
|
3280
|
+
this.$emit("keyup", event);
|
|
3281
|
+
},
|
|
3282
|
+
input: (event) => {
|
|
3283
|
+
this.$emit("input", event);
|
|
3284
|
+
},
|
|
3285
|
+
"cell-click": (event) => {
|
|
3286
|
+
this.$emit("cell-click", event);
|
|
3287
|
+
}
|
|
2874
3288
|
}
|
|
2875
3289
|
},
|
|
2876
3290
|
[this.$slots.default]
|
|
@@ -2887,13 +3301,27 @@ const VDataGrid = defineComponent({
|
|
|
2887
3301
|
...this.gridTemplateColumns !== void 0 ? { "^grid-template-columns": this.gridTemplateColumns } : {},
|
|
2888
3302
|
...this.selectionMode !== void 0 ? { "^selection-mode": this.selectionMode } : {},
|
|
2889
3303
|
...this.rowsData !== void 0 ? { ".rowsData": this.rowsData } : {},
|
|
2890
|
-
onClick: (event) =>
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
3304
|
+
onClick: (event) => {
|
|
3305
|
+
this.$emit("click", event);
|
|
3306
|
+
},
|
|
3307
|
+
onFocus: (event) => {
|
|
3308
|
+
this.$emit("focus", event);
|
|
3309
|
+
},
|
|
3310
|
+
onBlur: (event) => {
|
|
3311
|
+
this.$emit("blur", event);
|
|
3312
|
+
},
|
|
3313
|
+
onKeydown: (event) => {
|
|
3314
|
+
this.$emit("keydown", event);
|
|
3315
|
+
},
|
|
3316
|
+
onKeyup: (event) => {
|
|
3317
|
+
this.$emit("keyup", event);
|
|
3318
|
+
},
|
|
3319
|
+
onInput: (event) => {
|
|
3320
|
+
this.$emit("input", event);
|
|
3321
|
+
},
|
|
3322
|
+
onCellClick: (event) => {
|
|
3323
|
+
this.$emit("cell-click", event);
|
|
3324
|
+
}
|
|
2897
3325
|
},
|
|
2898
3326
|
[
|
|
2899
3327
|
// @ts-ignore
|
|
@@ -3023,15 +3451,33 @@ const VDataGridCell = defineComponent({
|
|
|
3023
3451
|
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {}
|
|
3024
3452
|
},
|
|
3025
3453
|
on: {
|
|
3026
|
-
click: (event) =>
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3454
|
+
click: (event) => {
|
|
3455
|
+
this.$emit("click", event);
|
|
3456
|
+
},
|
|
3457
|
+
focus: (event) => {
|
|
3458
|
+
this.$emit("focus", event);
|
|
3459
|
+
},
|
|
3460
|
+
blur: (event) => {
|
|
3461
|
+
this.$emit("blur", event);
|
|
3462
|
+
},
|
|
3463
|
+
keydown: (event) => {
|
|
3464
|
+
this.$emit("keydown", event);
|
|
3465
|
+
},
|
|
3466
|
+
keyup: (event) => {
|
|
3467
|
+
this.$emit("keyup", event);
|
|
3468
|
+
},
|
|
3469
|
+
input: (event) => {
|
|
3470
|
+
this.$emit("input", event);
|
|
3471
|
+
},
|
|
3472
|
+
sort: (event) => {
|
|
3473
|
+
this.$emit("sort", event);
|
|
3474
|
+
},
|
|
3475
|
+
"cell-click": (event) => {
|
|
3476
|
+
this.$emit("cell-click", event);
|
|
3477
|
+
},
|
|
3478
|
+
"cell-focused": (event) => {
|
|
3479
|
+
this.$emit("cell-focused", event);
|
|
3480
|
+
}
|
|
3035
3481
|
}
|
|
3036
3482
|
},
|
|
3037
3483
|
[this.$slots.default]
|
|
@@ -3048,15 +3494,33 @@ const VDataGridCell = defineComponent({
|
|
|
3048
3494
|
...this.gridColumn !== void 0 ? { "^grid-column": this.gridColumn } : {},
|
|
3049
3495
|
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
3050
3496
|
...this.ariaSort !== void 0 ? { "^aria-sort": this.ariaSort } : {},
|
|
3051
|
-
onClick: (event) =>
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3497
|
+
onClick: (event) => {
|
|
3498
|
+
this.$emit("click", event);
|
|
3499
|
+
},
|
|
3500
|
+
onFocus: (event) => {
|
|
3501
|
+
this.$emit("focus", event);
|
|
3502
|
+
},
|
|
3503
|
+
onBlur: (event) => {
|
|
3504
|
+
this.$emit("blur", event);
|
|
3505
|
+
},
|
|
3506
|
+
onKeydown: (event) => {
|
|
3507
|
+
this.$emit("keydown", event);
|
|
3508
|
+
},
|
|
3509
|
+
onKeyup: (event) => {
|
|
3510
|
+
this.$emit("keyup", event);
|
|
3511
|
+
},
|
|
3512
|
+
onInput: (event) => {
|
|
3513
|
+
this.$emit("input", event);
|
|
3514
|
+
},
|
|
3515
|
+
onSort: (event) => {
|
|
3516
|
+
this.$emit("sort", event);
|
|
3517
|
+
},
|
|
3518
|
+
onCellClick: (event) => {
|
|
3519
|
+
this.$emit("cell-click", event);
|
|
3520
|
+
},
|
|
3521
|
+
onCellFocused: (event) => {
|
|
3522
|
+
this.$emit("cell-focused", event);
|
|
3523
|
+
}
|
|
3060
3524
|
},
|
|
3061
3525
|
[
|
|
3062
3526
|
// @ts-ignore
|
|
@@ -3167,14 +3631,30 @@ const VDataGridRow = defineComponent({
|
|
|
3167
3631
|
},
|
|
3168
3632
|
class: "vvd-component",
|
|
3169
3633
|
on: {
|
|
3170
|
-
click: (event) =>
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3634
|
+
click: (event) => {
|
|
3635
|
+
this.$emit("click", event);
|
|
3636
|
+
},
|
|
3637
|
+
focus: (event) => {
|
|
3638
|
+
this.$emit("focus", event);
|
|
3639
|
+
},
|
|
3640
|
+
blur: (event) => {
|
|
3641
|
+
this.$emit("blur", event);
|
|
3642
|
+
},
|
|
3643
|
+
keydown: (event) => {
|
|
3644
|
+
this.$emit("keydown", event);
|
|
3645
|
+
},
|
|
3646
|
+
keyup: (event) => {
|
|
3647
|
+
this.$emit("keyup", event);
|
|
3648
|
+
},
|
|
3649
|
+
input: (event) => {
|
|
3650
|
+
this.$emit("input", event);
|
|
3651
|
+
},
|
|
3652
|
+
"cell-click": (event) => {
|
|
3653
|
+
this.$emit("cell-click", event);
|
|
3654
|
+
},
|
|
3655
|
+
"row-focused": (event) => {
|
|
3656
|
+
this.$emit("row-focused", event);
|
|
3657
|
+
}
|
|
3178
3658
|
}
|
|
3179
3659
|
},
|
|
3180
3660
|
[this.$slots.default]
|
|
@@ -3189,14 +3669,30 @@ const VDataGridRow = defineComponent({
|
|
|
3189
3669
|
...this.gridTemplateColumns !== void 0 ? { "^grid-template-columns": this.gridTemplateColumns } : {},
|
|
3190
3670
|
...this.rowType !== void 0 ? { "^row-type": this.rowType } : {},
|
|
3191
3671
|
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
3192
|
-
onClick: (event) =>
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3672
|
+
onClick: (event) => {
|
|
3673
|
+
this.$emit("click", event);
|
|
3674
|
+
},
|
|
3675
|
+
onFocus: (event) => {
|
|
3676
|
+
this.$emit("focus", event);
|
|
3677
|
+
},
|
|
3678
|
+
onBlur: (event) => {
|
|
3679
|
+
this.$emit("blur", event);
|
|
3680
|
+
},
|
|
3681
|
+
onKeydown: (event) => {
|
|
3682
|
+
this.$emit("keydown", event);
|
|
3683
|
+
},
|
|
3684
|
+
onKeyup: (event) => {
|
|
3685
|
+
this.$emit("keyup", event);
|
|
3686
|
+
},
|
|
3687
|
+
onInput: (event) => {
|
|
3688
|
+
this.$emit("input", event);
|
|
3689
|
+
},
|
|
3690
|
+
onCellClick: (event) => {
|
|
3691
|
+
this.$emit("cell-click", event);
|
|
3692
|
+
},
|
|
3693
|
+
onRowFocused: (event) => {
|
|
3694
|
+
this.$emit("row-focused", event);
|
|
3695
|
+
}
|
|
3200
3696
|
},
|
|
3201
3697
|
[
|
|
3202
3698
|
// @ts-ignore
|
|
@@ -3339,11 +3835,21 @@ const VDatePicker = defineComponent({
|
|
|
3339
3835
|
},
|
|
3340
3836
|
class: "vvd-component",
|
|
3341
3837
|
on: {
|
|
3342
|
-
click: (event) =>
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3838
|
+
click: (event) => {
|
|
3839
|
+
this.$emit("click", event);
|
|
3840
|
+
},
|
|
3841
|
+
focus: (event) => {
|
|
3842
|
+
this.$emit("focus", event);
|
|
3843
|
+
},
|
|
3844
|
+
blur: (event) => {
|
|
3845
|
+
this.$emit("blur", event);
|
|
3846
|
+
},
|
|
3847
|
+
keydown: (event) => {
|
|
3848
|
+
this.$emit("keydown", event);
|
|
3849
|
+
},
|
|
3850
|
+
keyup: (event) => {
|
|
3851
|
+
this.$emit("keyup", event);
|
|
3852
|
+
},
|
|
3347
3853
|
input: (event) => {
|
|
3348
3854
|
this.$emit(
|
|
3349
3855
|
"update:modelValue",
|
|
@@ -3351,8 +3857,12 @@ const VDatePicker = defineComponent({
|
|
|
3351
3857
|
);
|
|
3352
3858
|
this.$emit("input", event);
|
|
3353
3859
|
},
|
|
3354
|
-
change: (event) =>
|
|
3355
|
-
|
|
3860
|
+
change: (event) => {
|
|
3861
|
+
this.$emit("change", event);
|
|
3862
|
+
},
|
|
3863
|
+
"clear-click": (event) => {
|
|
3864
|
+
this.$emit("clear-click", event);
|
|
3865
|
+
}
|
|
3356
3866
|
}
|
|
3357
3867
|
},
|
|
3358
3868
|
[
|
|
@@ -3378,11 +3888,21 @@ const VDatePicker = defineComponent({
|
|
|
3378
3888
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
3379
3889
|
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
3380
3890
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
3381
|
-
onClick: (event) =>
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3891
|
+
onClick: (event) => {
|
|
3892
|
+
this.$emit("click", event);
|
|
3893
|
+
},
|
|
3894
|
+
onFocus: (event) => {
|
|
3895
|
+
this.$emit("focus", event);
|
|
3896
|
+
},
|
|
3897
|
+
onBlur: (event) => {
|
|
3898
|
+
this.$emit("blur", event);
|
|
3899
|
+
},
|
|
3900
|
+
onKeydown: (event) => {
|
|
3901
|
+
this.$emit("keydown", event);
|
|
3902
|
+
},
|
|
3903
|
+
onKeyup: (event) => {
|
|
3904
|
+
this.$emit("keyup", event);
|
|
3905
|
+
},
|
|
3386
3906
|
onInput: (event) => {
|
|
3387
3907
|
this.$emit(
|
|
3388
3908
|
"update:modelValue",
|
|
@@ -3390,8 +3910,12 @@ const VDatePicker = defineComponent({
|
|
|
3390
3910
|
);
|
|
3391
3911
|
this.$emit("input", event);
|
|
3392
3912
|
},
|
|
3393
|
-
onChange: (event) =>
|
|
3394
|
-
|
|
3913
|
+
onChange: (event) => {
|
|
3914
|
+
this.$emit("change", event);
|
|
3915
|
+
},
|
|
3916
|
+
onClearClick: (event) => {
|
|
3917
|
+
this.$emit("clear-click", event);
|
|
3918
|
+
}
|
|
3395
3919
|
},
|
|
3396
3920
|
[
|
|
3397
3921
|
// @ts-ignore
|
|
@@ -3576,11 +4100,21 @@ const VDateRangePicker = defineComponent({
|
|
|
3576
4100
|
},
|
|
3577
4101
|
class: "vvd-component",
|
|
3578
4102
|
on: {
|
|
3579
|
-
click: (event) =>
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
4103
|
+
click: (event) => {
|
|
4104
|
+
this.$emit("click", event);
|
|
4105
|
+
},
|
|
4106
|
+
focus: (event) => {
|
|
4107
|
+
this.$emit("focus", event);
|
|
4108
|
+
},
|
|
4109
|
+
blur: (event) => {
|
|
4110
|
+
this.$emit("blur", event);
|
|
4111
|
+
},
|
|
4112
|
+
keydown: (event) => {
|
|
4113
|
+
this.$emit("keydown", event);
|
|
4114
|
+
},
|
|
4115
|
+
keyup: (event) => {
|
|
4116
|
+
this.$emit("keyup", event);
|
|
4117
|
+
},
|
|
3584
4118
|
"input:start": (event) => {
|
|
3585
4119
|
this.$emit("update:start", event.target.start);
|
|
3586
4120
|
this.$emit("input:start", event);
|
|
@@ -3589,9 +4123,15 @@ const VDateRangePicker = defineComponent({
|
|
|
3589
4123
|
this.$emit("update:end", event.target.end);
|
|
3590
4124
|
this.$emit("input:end", event);
|
|
3591
4125
|
},
|
|
3592
|
-
input: (event) =>
|
|
3593
|
-
|
|
3594
|
-
|
|
4126
|
+
input: (event) => {
|
|
4127
|
+
this.$emit("input", event);
|
|
4128
|
+
},
|
|
4129
|
+
change: (event) => {
|
|
4130
|
+
this.$emit("change", event);
|
|
4131
|
+
},
|
|
4132
|
+
"clear-click": (event) => {
|
|
4133
|
+
this.$emit("clear-click", event);
|
|
4134
|
+
}
|
|
3595
4135
|
}
|
|
3596
4136
|
},
|
|
3597
4137
|
[
|
|
@@ -3621,11 +4161,21 @@ const VDateRangePicker = defineComponent({
|
|
|
3621
4161
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
3622
4162
|
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
3623
4163
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
3624
|
-
onClick: (event) =>
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
4164
|
+
onClick: (event) => {
|
|
4165
|
+
this.$emit("click", event);
|
|
4166
|
+
},
|
|
4167
|
+
onFocus: (event) => {
|
|
4168
|
+
this.$emit("focus", event);
|
|
4169
|
+
},
|
|
4170
|
+
onBlur: (event) => {
|
|
4171
|
+
this.$emit("blur", event);
|
|
4172
|
+
},
|
|
4173
|
+
onKeydown: (event) => {
|
|
4174
|
+
this.$emit("keydown", event);
|
|
4175
|
+
},
|
|
4176
|
+
onKeyup: (event) => {
|
|
4177
|
+
this.$emit("keyup", event);
|
|
4178
|
+
},
|
|
3629
4179
|
"onInput:start": (event) => {
|
|
3630
4180
|
this.$emit("update:start", event.target.start);
|
|
3631
4181
|
this.$emit("input:start", event);
|
|
@@ -3634,9 +4184,15 @@ const VDateRangePicker = defineComponent({
|
|
|
3634
4184
|
this.$emit("update:end", event.target.end);
|
|
3635
4185
|
this.$emit("input:end", event);
|
|
3636
4186
|
},
|
|
3637
|
-
onInput: (event) =>
|
|
3638
|
-
|
|
3639
|
-
|
|
4187
|
+
onInput: (event) => {
|
|
4188
|
+
this.$emit("input", event);
|
|
4189
|
+
},
|
|
4190
|
+
onChange: (event) => {
|
|
4191
|
+
this.$emit("change", event);
|
|
4192
|
+
},
|
|
4193
|
+
onClearClick: (event) => {
|
|
4194
|
+
this.$emit("clear-click", event);
|
|
4195
|
+
}
|
|
3640
4196
|
},
|
|
3641
4197
|
[
|
|
3642
4198
|
// @ts-ignore
|
|
@@ -3797,19 +4353,37 @@ const VDialPad = defineComponent({
|
|
|
3797
4353
|
},
|
|
3798
4354
|
class: "vvd-component",
|
|
3799
4355
|
on: {
|
|
3800
|
-
click: (event) =>
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
4356
|
+
click: (event) => {
|
|
4357
|
+
this.$emit("click", event);
|
|
4358
|
+
},
|
|
4359
|
+
keydown: (event) => {
|
|
4360
|
+
this.$emit("keydown", event);
|
|
4361
|
+
},
|
|
4362
|
+
keyup: (event) => {
|
|
4363
|
+
this.$emit("keyup", event);
|
|
4364
|
+
},
|
|
4365
|
+
change: (event) => {
|
|
4366
|
+
this.$emit("change", event);
|
|
4367
|
+
},
|
|
3804
4368
|
input: (event) => {
|
|
3805
4369
|
this.$emit("update:modelValue", event.target.value);
|
|
3806
4370
|
this.$emit("input", event);
|
|
3807
4371
|
},
|
|
3808
|
-
blur: (event) =>
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
4372
|
+
blur: (event) => {
|
|
4373
|
+
this.$emit("blur", event);
|
|
4374
|
+
},
|
|
4375
|
+
focus: (event) => {
|
|
4376
|
+
this.$emit("focus", event);
|
|
4377
|
+
},
|
|
4378
|
+
"keypad-click": (event) => {
|
|
4379
|
+
this.$emit("keypad-click", event);
|
|
4380
|
+
},
|
|
4381
|
+
dial: (event) => {
|
|
4382
|
+
this.$emit("dial", event);
|
|
4383
|
+
},
|
|
4384
|
+
"end-call": (event) => {
|
|
4385
|
+
this.$emit("end-call", event);
|
|
4386
|
+
}
|
|
3813
4387
|
}
|
|
3814
4388
|
},
|
|
3815
4389
|
[this.$slots.default]
|
|
@@ -3832,19 +4406,37 @@ const VDialPad = defineComponent({
|
|
|
3832
4406
|
...this.noInput !== void 0 && this.noInput !== false ? { "^no-input": this.noInput } : {},
|
|
3833
4407
|
...this.endCallButtonLabel !== void 0 ? { "^end-call-button-label": this.endCallButtonLabel } : {},
|
|
3834
4408
|
...this.callButtonLabel !== void 0 ? { "^call-button-label": this.callButtonLabel } : {},
|
|
3835
|
-
onClick: (event) =>
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
4409
|
+
onClick: (event) => {
|
|
4410
|
+
this.$emit("click", event);
|
|
4411
|
+
},
|
|
4412
|
+
onKeydown: (event) => {
|
|
4413
|
+
this.$emit("keydown", event);
|
|
4414
|
+
},
|
|
4415
|
+
onKeyup: (event) => {
|
|
4416
|
+
this.$emit("keyup", event);
|
|
4417
|
+
},
|
|
4418
|
+
onChange: (event) => {
|
|
4419
|
+
this.$emit("change", event);
|
|
4420
|
+
},
|
|
3839
4421
|
onInput: (event) => {
|
|
3840
4422
|
this.$emit("update:modelValue", event.target.value);
|
|
3841
4423
|
this.$emit("input", event);
|
|
3842
4424
|
},
|
|
3843
|
-
onBlur: (event) =>
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
4425
|
+
onBlur: (event) => {
|
|
4426
|
+
this.$emit("blur", event);
|
|
4427
|
+
},
|
|
4428
|
+
onFocus: (event) => {
|
|
4429
|
+
this.$emit("focus", event);
|
|
4430
|
+
},
|
|
4431
|
+
onKeypadClick: (event) => {
|
|
4432
|
+
this.$emit("keypad-click", event);
|
|
4433
|
+
},
|
|
4434
|
+
onDial: (event) => {
|
|
4435
|
+
this.$emit("dial", event);
|
|
4436
|
+
},
|
|
4437
|
+
onEndCall: (event) => {
|
|
4438
|
+
this.$emit("end-call", event);
|
|
4439
|
+
}
|
|
3848
4440
|
},
|
|
3849
4441
|
[
|
|
3850
4442
|
// @ts-ignore
|
|
@@ -3975,12 +4567,24 @@ const VDialog = defineComponent({
|
|
|
3975
4567
|
},
|
|
3976
4568
|
class: "vvd-component",
|
|
3977
4569
|
on: {
|
|
3978
|
-
click: (event) =>
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
4570
|
+
click: (event) => {
|
|
4571
|
+
this.$emit("click", event);
|
|
4572
|
+
},
|
|
4573
|
+
focus: (event) => {
|
|
4574
|
+
this.$emit("focus", event);
|
|
4575
|
+
},
|
|
4576
|
+
blur: (event) => {
|
|
4577
|
+
this.$emit("blur", event);
|
|
4578
|
+
},
|
|
4579
|
+
keydown: (event) => {
|
|
4580
|
+
this.$emit("keydown", event);
|
|
4581
|
+
},
|
|
4582
|
+
keyup: (event) => {
|
|
4583
|
+
this.$emit("keyup", event);
|
|
4584
|
+
},
|
|
4585
|
+
input: (event) => {
|
|
4586
|
+
this.$emit("input", event);
|
|
4587
|
+
},
|
|
3984
4588
|
open: (event) => {
|
|
3985
4589
|
this.$emit("update:open", event.target.open);
|
|
3986
4590
|
this.$emit("open", event);
|
|
@@ -4022,12 +4626,24 @@ const VDialog = defineComponent({
|
|
|
4022
4626
|
...this.dismissButtonAriaLabel !== void 0 ? { "^dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
4023
4627
|
...this.noLightDismiss !== void 0 && this.noLightDismiss !== false ? { "^no-light-dismiss": this.noLightDismiss } : {},
|
|
4024
4628
|
...this.modal !== void 0 && this.modal !== false ? { "^modal": this.modal } : {},
|
|
4025
|
-
onClick: (event) =>
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4629
|
+
onClick: (event) => {
|
|
4630
|
+
this.$emit("click", event);
|
|
4631
|
+
},
|
|
4632
|
+
onFocus: (event) => {
|
|
4633
|
+
this.$emit("focus", event);
|
|
4634
|
+
},
|
|
4635
|
+
onBlur: (event) => {
|
|
4636
|
+
this.$emit("blur", event);
|
|
4637
|
+
},
|
|
4638
|
+
onKeydown: (event) => {
|
|
4639
|
+
this.$emit("keydown", event);
|
|
4640
|
+
},
|
|
4641
|
+
onKeyup: (event) => {
|
|
4642
|
+
this.$emit("keyup", event);
|
|
4643
|
+
},
|
|
4644
|
+
onInput: (event) => {
|
|
4645
|
+
this.$emit("input", event);
|
|
4646
|
+
},
|
|
4031
4647
|
onOpen: (event) => {
|
|
4032
4648
|
this.$emit("update:open", event.target.open);
|
|
4033
4649
|
this.$emit("open", event);
|
|
@@ -4131,12 +4747,24 @@ const VDivider = defineComponent({
|
|
|
4131
4747
|
},
|
|
4132
4748
|
class: "vvd-component",
|
|
4133
4749
|
on: {
|
|
4134
|
-
click: (event) =>
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4750
|
+
click: (event) => {
|
|
4751
|
+
this.$emit("click", event);
|
|
4752
|
+
},
|
|
4753
|
+
focus: (event) => {
|
|
4754
|
+
this.$emit("focus", event);
|
|
4755
|
+
},
|
|
4756
|
+
blur: (event) => {
|
|
4757
|
+
this.$emit("blur", event);
|
|
4758
|
+
},
|
|
4759
|
+
keydown: (event) => {
|
|
4760
|
+
this.$emit("keydown", event);
|
|
4761
|
+
},
|
|
4762
|
+
keyup: (event) => {
|
|
4763
|
+
this.$emit("keyup", event);
|
|
4764
|
+
},
|
|
4765
|
+
input: (event) => {
|
|
4766
|
+
this.$emit("input", event);
|
|
4767
|
+
}
|
|
4140
4768
|
}
|
|
4141
4769
|
},
|
|
4142
4770
|
[this.$slots.default]
|
|
@@ -4150,12 +4778,24 @@ const VDivider = defineComponent({
|
|
|
4150
4778
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4151
4779
|
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
4152
4780
|
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
4153
|
-
onClick: (event) =>
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4781
|
+
onClick: (event) => {
|
|
4782
|
+
this.$emit("click", event);
|
|
4783
|
+
},
|
|
4784
|
+
onFocus: (event) => {
|
|
4785
|
+
this.$emit("focus", event);
|
|
4786
|
+
},
|
|
4787
|
+
onBlur: (event) => {
|
|
4788
|
+
this.$emit("blur", event);
|
|
4789
|
+
},
|
|
4790
|
+
onKeydown: (event) => {
|
|
4791
|
+
this.$emit("keydown", event);
|
|
4792
|
+
},
|
|
4793
|
+
onKeyup: (event) => {
|
|
4794
|
+
this.$emit("keyup", event);
|
|
4795
|
+
},
|
|
4796
|
+
onInput: (event) => {
|
|
4797
|
+
this.$emit("input", event);
|
|
4798
|
+
}
|
|
4159
4799
|
},
|
|
4160
4800
|
[
|
|
4161
4801
|
// @ts-ignore
|
|
@@ -4252,12 +4892,24 @@ const VEmptyState = defineComponent({
|
|
|
4252
4892
|
},
|
|
4253
4893
|
class: "vvd-component",
|
|
4254
4894
|
on: {
|
|
4255
|
-
click: (event) =>
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4895
|
+
click: (event) => {
|
|
4896
|
+
this.$emit("click", event);
|
|
4897
|
+
},
|
|
4898
|
+
focus: (event) => {
|
|
4899
|
+
this.$emit("focus", event);
|
|
4900
|
+
},
|
|
4901
|
+
blur: (event) => {
|
|
4902
|
+
this.$emit("blur", event);
|
|
4903
|
+
},
|
|
4904
|
+
keydown: (event) => {
|
|
4905
|
+
this.$emit("keydown", event);
|
|
4906
|
+
},
|
|
4907
|
+
keyup: (event) => {
|
|
4908
|
+
this.$emit("keyup", event);
|
|
4909
|
+
},
|
|
4910
|
+
input: (event) => {
|
|
4911
|
+
this.$emit("input", event);
|
|
4912
|
+
}
|
|
4261
4913
|
}
|
|
4262
4914
|
},
|
|
4263
4915
|
[
|
|
@@ -4279,12 +4931,24 @@ const VEmptyState = defineComponent({
|
|
|
4279
4931
|
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
4280
4932
|
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
4281
4933
|
...this.iconDecoration !== void 0 ? { "^icon-decoration": this.iconDecoration } : {},
|
|
4282
|
-
onClick: (event) =>
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4934
|
+
onClick: (event) => {
|
|
4935
|
+
this.$emit("click", event);
|
|
4936
|
+
},
|
|
4937
|
+
onFocus: (event) => {
|
|
4938
|
+
this.$emit("focus", event);
|
|
4939
|
+
},
|
|
4940
|
+
onBlur: (event) => {
|
|
4941
|
+
this.$emit("blur", event);
|
|
4942
|
+
},
|
|
4943
|
+
onKeydown: (event) => {
|
|
4944
|
+
this.$emit("keydown", event);
|
|
4945
|
+
},
|
|
4946
|
+
onKeyup: (event) => {
|
|
4947
|
+
this.$emit("keyup", event);
|
|
4948
|
+
},
|
|
4949
|
+
onInput: (event) => {
|
|
4950
|
+
this.$emit("input", event);
|
|
4951
|
+
}
|
|
4288
4952
|
},
|
|
4289
4953
|
[
|
|
4290
4954
|
// @ts-ignore
|
|
@@ -4473,12 +5137,24 @@ const VFab = defineComponent({
|
|
|
4473
5137
|
},
|
|
4474
5138
|
class: "vvd-component",
|
|
4475
5139
|
on: {
|
|
4476
|
-
click: (event) =>
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
5140
|
+
click: (event) => {
|
|
5141
|
+
this.$emit("click", event);
|
|
5142
|
+
},
|
|
5143
|
+
focus: (event) => {
|
|
5144
|
+
this.$emit("focus", event);
|
|
5145
|
+
},
|
|
5146
|
+
blur: (event) => {
|
|
5147
|
+
this.$emit("blur", event);
|
|
5148
|
+
},
|
|
5149
|
+
keydown: (event) => {
|
|
5150
|
+
this.$emit("keydown", event);
|
|
5151
|
+
},
|
|
5152
|
+
keyup: (event) => {
|
|
5153
|
+
this.$emit("keyup", event);
|
|
5154
|
+
},
|
|
5155
|
+
input: (event) => {
|
|
5156
|
+
this.$emit("input", event);
|
|
5157
|
+
}
|
|
4482
5158
|
}
|
|
4483
5159
|
},
|
|
4484
5160
|
[
|
|
@@ -4512,12 +5188,24 @@ const VFab = defineComponent({
|
|
|
4512
5188
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
4513
5189
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4514
5190
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
4515
|
-
onClick: (event) =>
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
5191
|
+
onClick: (event) => {
|
|
5192
|
+
this.$emit("click", event);
|
|
5193
|
+
},
|
|
5194
|
+
onFocus: (event) => {
|
|
5195
|
+
this.$emit("focus", event);
|
|
5196
|
+
},
|
|
5197
|
+
onBlur: (event) => {
|
|
5198
|
+
this.$emit("blur", event);
|
|
5199
|
+
},
|
|
5200
|
+
onKeydown: (event) => {
|
|
5201
|
+
this.$emit("keydown", event);
|
|
5202
|
+
},
|
|
5203
|
+
onKeyup: (event) => {
|
|
5204
|
+
this.$emit("keyup", event);
|
|
5205
|
+
},
|
|
5206
|
+
onInput: (event) => {
|
|
5207
|
+
this.$emit("input", event);
|
|
5208
|
+
}
|
|
4521
5209
|
},
|
|
4522
5210
|
[
|
|
4523
5211
|
// @ts-ignore
|
|
@@ -4681,13 +5369,27 @@ const VFilePicker = defineComponent({
|
|
|
4681
5369
|
},
|
|
4682
5370
|
class: "vvd-component",
|
|
4683
5371
|
on: {
|
|
4684
|
-
click: (event) =>
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
5372
|
+
click: (event) => {
|
|
5373
|
+
this.$emit("click", event);
|
|
5374
|
+
},
|
|
5375
|
+
focus: (event) => {
|
|
5376
|
+
this.$emit("focus", event);
|
|
5377
|
+
},
|
|
5378
|
+
blur: (event) => {
|
|
5379
|
+
this.$emit("blur", event);
|
|
5380
|
+
},
|
|
5381
|
+
keydown: (event) => {
|
|
5382
|
+
this.$emit("keydown", event);
|
|
5383
|
+
},
|
|
5384
|
+
keyup: (event) => {
|
|
5385
|
+
this.$emit("keyup", event);
|
|
5386
|
+
},
|
|
5387
|
+
input: (event) => {
|
|
5388
|
+
this.$emit("input", event);
|
|
5389
|
+
},
|
|
5390
|
+
change: (event) => {
|
|
5391
|
+
this.$emit("change", event);
|
|
5392
|
+
}
|
|
4691
5393
|
}
|
|
4692
5394
|
},
|
|
4693
5395
|
[
|
|
@@ -4715,13 +5417,27 @@ const VFilePicker = defineComponent({
|
|
|
4715
5417
|
...this.maxFileSize !== void 0 ? { "^max-file-size": this.maxFileSize } : {},
|
|
4716
5418
|
...this.accept !== void 0 ? { "^accept": this.accept } : {},
|
|
4717
5419
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4718
|
-
onClick: (event) =>
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
5420
|
+
onClick: (event) => {
|
|
5421
|
+
this.$emit("click", event);
|
|
5422
|
+
},
|
|
5423
|
+
onFocus: (event) => {
|
|
5424
|
+
this.$emit("focus", event);
|
|
5425
|
+
},
|
|
5426
|
+
onBlur: (event) => {
|
|
5427
|
+
this.$emit("blur", event);
|
|
5428
|
+
},
|
|
5429
|
+
onKeydown: (event) => {
|
|
5430
|
+
this.$emit("keydown", event);
|
|
5431
|
+
},
|
|
5432
|
+
onKeyup: (event) => {
|
|
5433
|
+
this.$emit("keyup", event);
|
|
5434
|
+
},
|
|
5435
|
+
onInput: (event) => {
|
|
5436
|
+
this.$emit("input", event);
|
|
5437
|
+
},
|
|
5438
|
+
onChange: (event) => {
|
|
5439
|
+
this.$emit("change", event);
|
|
5440
|
+
}
|
|
4725
5441
|
},
|
|
4726
5442
|
[
|
|
4727
5443
|
// @ts-ignore
|
|
@@ -4803,12 +5519,24 @@ const VHeader = defineComponent({
|
|
|
4803
5519
|
},
|
|
4804
5520
|
class: "vvd-component",
|
|
4805
5521
|
on: {
|
|
4806
|
-
click: (event) =>
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
5522
|
+
click: (event) => {
|
|
5523
|
+
this.$emit("click", event);
|
|
5524
|
+
},
|
|
5525
|
+
focus: (event) => {
|
|
5526
|
+
this.$emit("focus", event);
|
|
5527
|
+
},
|
|
5528
|
+
blur: (event) => {
|
|
5529
|
+
this.$emit("blur", event);
|
|
5530
|
+
},
|
|
5531
|
+
keydown: (event) => {
|
|
5532
|
+
this.$emit("keydown", event);
|
|
5533
|
+
},
|
|
5534
|
+
keyup: (event) => {
|
|
5535
|
+
this.$emit("keyup", event);
|
|
5536
|
+
},
|
|
5537
|
+
input: (event) => {
|
|
5538
|
+
this.$emit("input", event);
|
|
5539
|
+
}
|
|
4812
5540
|
}
|
|
4813
5541
|
},
|
|
4814
5542
|
[
|
|
@@ -4828,12 +5556,24 @@ const VHeader = defineComponent({
|
|
|
4828
5556
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4829
5557
|
...this.elevationShadow !== void 0 && this.elevationShadow !== false ? { "^elevation-shadow": this.elevationShadow } : {},
|
|
4830
5558
|
...this.alternate !== void 0 && this.alternate !== false ? { "^alternate": this.alternate } : {},
|
|
4831
|
-
onClick: (event) =>
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
5559
|
+
onClick: (event) => {
|
|
5560
|
+
this.$emit("click", event);
|
|
5561
|
+
},
|
|
5562
|
+
onFocus: (event) => {
|
|
5563
|
+
this.$emit("focus", event);
|
|
5564
|
+
},
|
|
5565
|
+
onBlur: (event) => {
|
|
5566
|
+
this.$emit("blur", event);
|
|
5567
|
+
},
|
|
5568
|
+
onKeydown: (event) => {
|
|
5569
|
+
this.$emit("keydown", event);
|
|
5570
|
+
},
|
|
5571
|
+
onKeyup: (event) => {
|
|
5572
|
+
this.$emit("keyup", event);
|
|
5573
|
+
},
|
|
5574
|
+
onInput: (event) => {
|
|
5575
|
+
this.$emit("input", event);
|
|
5576
|
+
}
|
|
4837
5577
|
},
|
|
4838
5578
|
[
|
|
4839
5579
|
// @ts-ignore
|
|
@@ -4930,18 +5670,30 @@ const VIcon = defineComponent({
|
|
|
4930
5670
|
},
|
|
4931
5671
|
class: "vvd-component",
|
|
4932
5672
|
on: {
|
|
4933
|
-
click: (event) =>
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
|
|
5673
|
+
click: (event) => {
|
|
5674
|
+
this.$emit("click", event);
|
|
5675
|
+
},
|
|
5676
|
+
focus: (event) => {
|
|
5677
|
+
this.$emit("focus", event);
|
|
5678
|
+
},
|
|
5679
|
+
blur: (event) => {
|
|
5680
|
+
this.$emit("blur", event);
|
|
5681
|
+
},
|
|
5682
|
+
keydown: (event) => {
|
|
5683
|
+
this.$emit("keydown", event);
|
|
5684
|
+
},
|
|
5685
|
+
keyup: (event) => {
|
|
5686
|
+
this.$emit("keyup", event);
|
|
5687
|
+
},
|
|
5688
|
+
input: (event) => {
|
|
5689
|
+
this.$emit("input", event);
|
|
5690
|
+
}
|
|
5691
|
+
}
|
|
5692
|
+
},
|
|
5693
|
+
[this.$slots.default]
|
|
5694
|
+
);
|
|
5695
|
+
}
|
|
5696
|
+
return h(
|
|
4945
5697
|
this.componentName,
|
|
4946
5698
|
{
|
|
4947
5699
|
ref: "element",
|
|
@@ -4950,12 +5702,24 @@ const VIcon = defineComponent({
|
|
|
4950
5702
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
4951
5703
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4952
5704
|
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
4953
|
-
onClick: (event) =>
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
5705
|
+
onClick: (event) => {
|
|
5706
|
+
this.$emit("click", event);
|
|
5707
|
+
},
|
|
5708
|
+
onFocus: (event) => {
|
|
5709
|
+
this.$emit("focus", event);
|
|
5710
|
+
},
|
|
5711
|
+
onBlur: (event) => {
|
|
5712
|
+
this.$emit("blur", event);
|
|
5713
|
+
},
|
|
5714
|
+
onKeydown: (event) => {
|
|
5715
|
+
this.$emit("keydown", event);
|
|
5716
|
+
},
|
|
5717
|
+
onKeyup: (event) => {
|
|
5718
|
+
this.$emit("keyup", event);
|
|
5719
|
+
},
|
|
5720
|
+
onInput: (event) => {
|
|
5721
|
+
this.$emit("input", event);
|
|
5722
|
+
}
|
|
4959
5723
|
},
|
|
4960
5724
|
[
|
|
4961
5725
|
// @ts-ignore
|
|
@@ -5065,12 +5829,24 @@ const VLayout = defineComponent({
|
|
|
5065
5829
|
},
|
|
5066
5830
|
class: "vvd-component",
|
|
5067
5831
|
on: {
|
|
5068
|
-
click: (event) =>
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5832
|
+
click: (event) => {
|
|
5833
|
+
this.$emit("click", event);
|
|
5834
|
+
},
|
|
5835
|
+
focus: (event) => {
|
|
5836
|
+
this.$emit("focus", event);
|
|
5837
|
+
},
|
|
5838
|
+
blur: (event) => {
|
|
5839
|
+
this.$emit("blur", event);
|
|
5840
|
+
},
|
|
5841
|
+
keydown: (event) => {
|
|
5842
|
+
this.$emit("keydown", event);
|
|
5843
|
+
},
|
|
5844
|
+
keyup: (event) => {
|
|
5845
|
+
this.$emit("keyup", event);
|
|
5846
|
+
},
|
|
5847
|
+
input: (event) => {
|
|
5848
|
+
this.$emit("input", event);
|
|
5849
|
+
}
|
|
5074
5850
|
}
|
|
5075
5851
|
},
|
|
5076
5852
|
[this.$slots.default]
|
|
@@ -5087,12 +5863,24 @@ const VLayout = defineComponent({
|
|
|
5087
5863
|
...this.columnSpacing !== void 0 ? { "^column-spacing": this.columnSpacing } : {},
|
|
5088
5864
|
...this.rowSpacing !== void 0 ? { "^row-spacing": this.rowSpacing } : {},
|
|
5089
5865
|
...this.autoSizing !== void 0 ? { "^auto-sizing": this.autoSizing } : {},
|
|
5090
|
-
onClick: (event) =>
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5866
|
+
onClick: (event) => {
|
|
5867
|
+
this.$emit("click", event);
|
|
5868
|
+
},
|
|
5869
|
+
onFocus: (event) => {
|
|
5870
|
+
this.$emit("focus", event);
|
|
5871
|
+
},
|
|
5872
|
+
onBlur: (event) => {
|
|
5873
|
+
this.$emit("blur", event);
|
|
5874
|
+
},
|
|
5875
|
+
onKeydown: (event) => {
|
|
5876
|
+
this.$emit("keydown", event);
|
|
5877
|
+
},
|
|
5878
|
+
onKeyup: (event) => {
|
|
5879
|
+
this.$emit("keyup", event);
|
|
5880
|
+
},
|
|
5881
|
+
onInput: (event) => {
|
|
5882
|
+
this.$emit("input", event);
|
|
5883
|
+
}
|
|
5096
5884
|
},
|
|
5097
5885
|
[
|
|
5098
5886
|
// @ts-ignore
|
|
@@ -5138,6 +5926,13 @@ const VMenu = defineComponent({
|
|
|
5138
5926
|
* indicates whether the menu will automatically close when focus moves away from it.
|
|
5139
5927
|
*/
|
|
5140
5928
|
autoDismiss: { type: Boolean, default: void 0 },
|
|
5929
|
+
/**
|
|
5930
|
+
* The strategy-absolute attribute.
|
|
5931
|
+
*/
|
|
5932
|
+
positionStrategy: {
|
|
5933
|
+
type: String,
|
|
5934
|
+
default: void 0
|
|
5935
|
+
},
|
|
5141
5936
|
/**
|
|
5142
5937
|
* indicates whether the menu is open
|
|
5143
5938
|
*/
|
|
@@ -5219,6 +6014,7 @@ const VMenu = defineComponent({
|
|
|
5219
6014
|
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
5220
6015
|
...this.trigger !== void 0 ? { trigger: this.trigger } : {},
|
|
5221
6016
|
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
6017
|
+
...this.positionStrategy !== void 0 ? { "position-strategy": this.positionStrategy } : {},
|
|
5222
6018
|
...this.open !== void 0 ? { open: this.open } : {}
|
|
5223
6019
|
},
|
|
5224
6020
|
class: "vvd-component",
|
|
@@ -5226,14 +6022,30 @@ const VMenu = defineComponent({
|
|
|
5226
6022
|
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
5227
6023
|
},
|
|
5228
6024
|
on: {
|
|
5229
|
-
click: (event) =>
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
6025
|
+
click: (event) => {
|
|
6026
|
+
this.$emit("click", event);
|
|
6027
|
+
},
|
|
6028
|
+
focus: (event) => {
|
|
6029
|
+
this.$emit("focus", event);
|
|
6030
|
+
},
|
|
6031
|
+
blur: (event) => {
|
|
6032
|
+
this.$emit("blur", event);
|
|
6033
|
+
},
|
|
6034
|
+
keydown: (event) => {
|
|
6035
|
+
this.$emit("keydown", event);
|
|
6036
|
+
},
|
|
6037
|
+
keyup: (event) => {
|
|
6038
|
+
this.$emit("keyup", event);
|
|
6039
|
+
},
|
|
6040
|
+
input: (event) => {
|
|
6041
|
+
this.$emit("input", event);
|
|
6042
|
+
},
|
|
6043
|
+
open: (event) => {
|
|
6044
|
+
this.$emit("open", event);
|
|
6045
|
+
},
|
|
6046
|
+
close: (event) => {
|
|
6047
|
+
this.$emit("close", event);
|
|
6048
|
+
}
|
|
5237
6049
|
}
|
|
5238
6050
|
},
|
|
5239
6051
|
[
|
|
@@ -5258,15 +6070,32 @@ const VMenu = defineComponent({
|
|
|
5258
6070
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
5259
6071
|
...this.trigger !== void 0 ? { "^trigger": this.trigger } : {},
|
|
5260
6072
|
...this.autoDismiss !== void 0 && this.autoDismiss !== false ? { "^auto-dismiss": this.autoDismiss } : {},
|
|
6073
|
+
...this.positionStrategy !== void 0 ? { "^position-strategy": this.positionStrategy } : {},
|
|
5261
6074
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
5262
|
-
onClick: (event) =>
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
6075
|
+
onClick: (event) => {
|
|
6076
|
+
this.$emit("click", event);
|
|
6077
|
+
},
|
|
6078
|
+
onFocus: (event) => {
|
|
6079
|
+
this.$emit("focus", event);
|
|
6080
|
+
},
|
|
6081
|
+
onBlur: (event) => {
|
|
6082
|
+
this.$emit("blur", event);
|
|
6083
|
+
},
|
|
6084
|
+
onKeydown: (event) => {
|
|
6085
|
+
this.$emit("keydown", event);
|
|
6086
|
+
},
|
|
6087
|
+
onKeyup: (event) => {
|
|
6088
|
+
this.$emit("keyup", event);
|
|
6089
|
+
},
|
|
6090
|
+
onInput: (event) => {
|
|
6091
|
+
this.$emit("input", event);
|
|
6092
|
+
},
|
|
6093
|
+
onOpen: (event) => {
|
|
6094
|
+
this.$emit("open", event);
|
|
6095
|
+
},
|
|
6096
|
+
onClose: (event) => {
|
|
6097
|
+
this.$emit("close", event);
|
|
6098
|
+
}
|
|
5270
6099
|
},
|
|
5271
6100
|
[
|
|
5272
6101
|
// @ts-ignore
|
|
@@ -5425,13 +6254,27 @@ const VMenuItem = defineComponent({
|
|
|
5425
6254
|
},
|
|
5426
6255
|
class: "vvd-component",
|
|
5427
6256
|
on: {
|
|
5428
|
-
click: (event) =>
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
6257
|
+
click: (event) => {
|
|
6258
|
+
this.$emit("click", event);
|
|
6259
|
+
},
|
|
6260
|
+
focus: (event) => {
|
|
6261
|
+
this.$emit("focus", event);
|
|
6262
|
+
},
|
|
6263
|
+
blur: (event) => {
|
|
6264
|
+
this.$emit("blur", event);
|
|
6265
|
+
},
|
|
6266
|
+
keydown: (event) => {
|
|
6267
|
+
this.$emit("keydown", event);
|
|
6268
|
+
},
|
|
6269
|
+
keyup: (event) => {
|
|
6270
|
+
this.$emit("keyup", event);
|
|
6271
|
+
},
|
|
6272
|
+
input: (event) => {
|
|
6273
|
+
this.$emit("input", event);
|
|
6274
|
+
},
|
|
6275
|
+
"expanded-change": (event) => {
|
|
6276
|
+
this.$emit("expanded-change", event);
|
|
6277
|
+
},
|
|
5435
6278
|
change: (event) => {
|
|
5436
6279
|
this.$emit(
|
|
5437
6280
|
"update:modelValue",
|
|
@@ -5468,13 +6311,27 @@ const VMenuItem = defineComponent({
|
|
|
5468
6311
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5469
6312
|
...this.checkTrailing !== void 0 && this.checkTrailing !== false ? { "^check-trailing": this.checkTrailing } : {},
|
|
5470
6313
|
...this.checkAppearance !== void 0 ? { "^check-appearance": this.checkAppearance } : {},
|
|
5471
|
-
onClick: (event) =>
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
6314
|
+
onClick: (event) => {
|
|
6315
|
+
this.$emit("click", event);
|
|
6316
|
+
},
|
|
6317
|
+
onFocus: (event) => {
|
|
6318
|
+
this.$emit("focus", event);
|
|
6319
|
+
},
|
|
6320
|
+
onBlur: (event) => {
|
|
6321
|
+
this.$emit("blur", event);
|
|
6322
|
+
},
|
|
6323
|
+
onKeydown: (event) => {
|
|
6324
|
+
this.$emit("keydown", event);
|
|
6325
|
+
},
|
|
6326
|
+
onKeyup: (event) => {
|
|
6327
|
+
this.$emit("keyup", event);
|
|
6328
|
+
},
|
|
6329
|
+
onInput: (event) => {
|
|
6330
|
+
this.$emit("input", event);
|
|
6331
|
+
},
|
|
6332
|
+
onExpandedChange: (event) => {
|
|
6333
|
+
this.$emit("expanded-change", event);
|
|
6334
|
+
},
|
|
5478
6335
|
onChange: (event) => {
|
|
5479
6336
|
this.$emit(
|
|
5480
6337
|
"update:modelValue",
|
|
@@ -5557,12 +6414,24 @@ const VNav = defineComponent({
|
|
|
5557
6414
|
},
|
|
5558
6415
|
class: "vvd-component",
|
|
5559
6416
|
on: {
|
|
5560
|
-
click: (event) =>
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
6417
|
+
click: (event) => {
|
|
6418
|
+
this.$emit("click", event);
|
|
6419
|
+
},
|
|
6420
|
+
focus: (event) => {
|
|
6421
|
+
this.$emit("focus", event);
|
|
6422
|
+
},
|
|
6423
|
+
blur: (event) => {
|
|
6424
|
+
this.$emit("blur", event);
|
|
6425
|
+
},
|
|
6426
|
+
keydown: (event) => {
|
|
6427
|
+
this.$emit("keydown", event);
|
|
6428
|
+
},
|
|
6429
|
+
keyup: (event) => {
|
|
6430
|
+
this.$emit("keyup", event);
|
|
6431
|
+
},
|
|
6432
|
+
input: (event) => {
|
|
6433
|
+
this.$emit("input", event);
|
|
6434
|
+
}
|
|
5566
6435
|
}
|
|
5567
6436
|
},
|
|
5568
6437
|
[this.$slots.default]
|
|
@@ -5574,12 +6443,24 @@ const VNav = defineComponent({
|
|
|
5574
6443
|
ref: "element",
|
|
5575
6444
|
class: "vvd-component",
|
|
5576
6445
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5577
|
-
onClick: (event) =>
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
6446
|
+
onClick: (event) => {
|
|
6447
|
+
this.$emit("click", event);
|
|
6448
|
+
},
|
|
6449
|
+
onFocus: (event) => {
|
|
6450
|
+
this.$emit("focus", event);
|
|
6451
|
+
},
|
|
6452
|
+
onBlur: (event) => {
|
|
6453
|
+
this.$emit("blur", event);
|
|
6454
|
+
},
|
|
6455
|
+
onKeydown: (event) => {
|
|
6456
|
+
this.$emit("keydown", event);
|
|
6457
|
+
},
|
|
6458
|
+
onKeyup: (event) => {
|
|
6459
|
+
this.$emit("keyup", event);
|
|
6460
|
+
},
|
|
6461
|
+
onInput: (event) => {
|
|
6462
|
+
this.$emit("input", event);
|
|
6463
|
+
}
|
|
5583
6464
|
},
|
|
5584
6465
|
[
|
|
5585
6466
|
// @ts-ignore
|
|
@@ -5680,13 +6561,27 @@ const VNavDisclosure = defineComponent({
|
|
|
5680
6561
|
},
|
|
5681
6562
|
class: "vvd-component",
|
|
5682
6563
|
on: {
|
|
5683
|
-
click: (event) =>
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
6564
|
+
click: (event) => {
|
|
6565
|
+
this.$emit("click", event);
|
|
6566
|
+
},
|
|
6567
|
+
focus: (event) => {
|
|
6568
|
+
this.$emit("focus", event);
|
|
6569
|
+
},
|
|
6570
|
+
blur: (event) => {
|
|
6571
|
+
this.$emit("blur", event);
|
|
6572
|
+
},
|
|
6573
|
+
keydown: (event) => {
|
|
6574
|
+
this.$emit("keydown", event);
|
|
6575
|
+
},
|
|
6576
|
+
keyup: (event) => {
|
|
6577
|
+
this.$emit("keyup", event);
|
|
6578
|
+
},
|
|
6579
|
+
input: (event) => {
|
|
6580
|
+
this.$emit("input", event);
|
|
6581
|
+
},
|
|
6582
|
+
toggle: (event) => {
|
|
6583
|
+
this.$emit("toggle", event);
|
|
6584
|
+
}
|
|
5690
6585
|
}
|
|
5691
6586
|
},
|
|
5692
6587
|
[
|
|
@@ -5709,13 +6604,27 @@ const VNavDisclosure = defineComponent({
|
|
|
5709
6604
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5710
6605
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
5711
6606
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5712
|
-
onClick: (event) =>
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
|
|
6607
|
+
onClick: (event) => {
|
|
6608
|
+
this.$emit("click", event);
|
|
6609
|
+
},
|
|
6610
|
+
onFocus: (event) => {
|
|
6611
|
+
this.$emit("focus", event);
|
|
6612
|
+
},
|
|
6613
|
+
onBlur: (event) => {
|
|
6614
|
+
this.$emit("blur", event);
|
|
6615
|
+
},
|
|
6616
|
+
onKeydown: (event) => {
|
|
6617
|
+
this.$emit("keydown", event);
|
|
6618
|
+
},
|
|
6619
|
+
onKeyup: (event) => {
|
|
6620
|
+
this.$emit("keyup", event);
|
|
6621
|
+
},
|
|
6622
|
+
onInput: (event) => {
|
|
6623
|
+
this.$emit("input", event);
|
|
6624
|
+
},
|
|
6625
|
+
onToggle: (event) => {
|
|
6626
|
+
this.$emit("toggle", event);
|
|
6627
|
+
}
|
|
5719
6628
|
},
|
|
5720
6629
|
[
|
|
5721
6630
|
// @ts-ignore
|
|
@@ -5863,12 +6772,24 @@ const VNavItem = defineComponent({
|
|
|
5863
6772
|
},
|
|
5864
6773
|
class: "vvd-component",
|
|
5865
6774
|
on: {
|
|
5866
|
-
click: (event) =>
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
6775
|
+
click: (event) => {
|
|
6776
|
+
this.$emit("click", event);
|
|
6777
|
+
},
|
|
6778
|
+
focus: (event) => {
|
|
6779
|
+
this.$emit("focus", event);
|
|
6780
|
+
},
|
|
6781
|
+
blur: (event) => {
|
|
6782
|
+
this.$emit("blur", event);
|
|
6783
|
+
},
|
|
6784
|
+
keydown: (event) => {
|
|
6785
|
+
this.$emit("keydown", event);
|
|
6786
|
+
},
|
|
6787
|
+
keyup: (event) => {
|
|
6788
|
+
this.$emit("keyup", event);
|
|
6789
|
+
},
|
|
6790
|
+
input: (event) => {
|
|
6791
|
+
this.$emit("input", event);
|
|
6792
|
+
}
|
|
5872
6793
|
}
|
|
5873
6794
|
},
|
|
5874
6795
|
[
|
|
@@ -5898,12 +6819,24 @@ const VNavItem = defineComponent({
|
|
|
5898
6819
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
5899
6820
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5900
6821
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
5901
|
-
onClick: (event) =>
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
6822
|
+
onClick: (event) => {
|
|
6823
|
+
this.$emit("click", event);
|
|
6824
|
+
},
|
|
6825
|
+
onFocus: (event) => {
|
|
6826
|
+
this.$emit("focus", event);
|
|
6827
|
+
},
|
|
6828
|
+
onBlur: (event) => {
|
|
6829
|
+
this.$emit("blur", event);
|
|
6830
|
+
},
|
|
6831
|
+
onKeydown: (event) => {
|
|
6832
|
+
this.$emit("keydown", event);
|
|
6833
|
+
},
|
|
6834
|
+
onKeyup: (event) => {
|
|
6835
|
+
this.$emit("keyup", event);
|
|
6836
|
+
},
|
|
6837
|
+
onInput: (event) => {
|
|
6838
|
+
this.$emit("input", event);
|
|
6839
|
+
}
|
|
5907
6840
|
},
|
|
5908
6841
|
[
|
|
5909
6842
|
// @ts-ignore
|
|
@@ -5993,12 +6926,24 @@ const VNote = defineComponent({
|
|
|
5993
6926
|
},
|
|
5994
6927
|
class: "vvd-component",
|
|
5995
6928
|
on: {
|
|
5996
|
-
click: (event) =>
|
|
5997
|
-
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6929
|
+
click: (event) => {
|
|
6930
|
+
this.$emit("click", event);
|
|
6931
|
+
},
|
|
6932
|
+
focus: (event) => {
|
|
6933
|
+
this.$emit("focus", event);
|
|
6934
|
+
},
|
|
6935
|
+
blur: (event) => {
|
|
6936
|
+
this.$emit("blur", event);
|
|
6937
|
+
},
|
|
6938
|
+
keydown: (event) => {
|
|
6939
|
+
this.$emit("keydown", event);
|
|
6940
|
+
},
|
|
6941
|
+
keyup: (event) => {
|
|
6942
|
+
this.$emit("keyup", event);
|
|
6943
|
+
},
|
|
6944
|
+
input: (event) => {
|
|
6945
|
+
this.$emit("input", event);
|
|
6946
|
+
}
|
|
6002
6947
|
}
|
|
6003
6948
|
},
|
|
6004
6949
|
[
|
|
@@ -6017,12 +6962,24 @@ const VNote = defineComponent({
|
|
|
6017
6962
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
6018
6963
|
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
6019
6964
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6020
|
-
onClick: (event) =>
|
|
6021
|
-
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
|
|
6025
|
-
|
|
6965
|
+
onClick: (event) => {
|
|
6966
|
+
this.$emit("click", event);
|
|
6967
|
+
},
|
|
6968
|
+
onFocus: (event) => {
|
|
6969
|
+
this.$emit("focus", event);
|
|
6970
|
+
},
|
|
6971
|
+
onBlur: (event) => {
|
|
6972
|
+
this.$emit("blur", event);
|
|
6973
|
+
},
|
|
6974
|
+
onKeydown: (event) => {
|
|
6975
|
+
this.$emit("keydown", event);
|
|
6976
|
+
},
|
|
6977
|
+
onKeyup: (event) => {
|
|
6978
|
+
this.$emit("keyup", event);
|
|
6979
|
+
},
|
|
6980
|
+
onInput: (event) => {
|
|
6981
|
+
this.$emit("input", event);
|
|
6982
|
+
}
|
|
6026
6983
|
},
|
|
6027
6984
|
[
|
|
6028
6985
|
// @ts-ignore
|
|
@@ -6134,6 +7091,13 @@ const VNumberField = defineComponent({
|
|
|
6134
7091
|
* Sets the width of the element to a specified number of characters.
|
|
6135
7092
|
*/
|
|
6136
7093
|
size: { type: Number, default: void 0 },
|
|
7094
|
+
/**
|
|
7095
|
+
* The size the number-field should have.
|
|
7096
|
+
*/
|
|
7097
|
+
scale: {
|
|
7098
|
+
type: String,
|
|
7099
|
+
default: void 0
|
|
7100
|
+
},
|
|
6137
7101
|
/**
|
|
6138
7102
|
* Amount to increment or decrement the value by
|
|
6139
7103
|
*/
|
|
@@ -6266,6 +7230,7 @@ const VNumberField = defineComponent({
|
|
|
6266
7230
|
...this.maxlength !== void 0 ? { maxlength: this.maxlength } : {},
|
|
6267
7231
|
...this.minlength !== void 0 ? { minlength: this.minlength } : {},
|
|
6268
7232
|
...this.size !== void 0 ? { size: this.size } : {},
|
|
7233
|
+
...this.scale !== void 0 ? { scale: this.scale } : {},
|
|
6269
7234
|
...this.step !== void 0 ? { step: this.step } : {},
|
|
6270
7235
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
6271
7236
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
@@ -6277,11 +7242,21 @@ const VNumberField = defineComponent({
|
|
|
6277
7242
|
},
|
|
6278
7243
|
class: "vvd-component",
|
|
6279
7244
|
on: {
|
|
6280
|
-
click: (event) =>
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
|
|
7245
|
+
click: (event) => {
|
|
7246
|
+
this.$emit("click", event);
|
|
7247
|
+
},
|
|
7248
|
+
focus: (event) => {
|
|
7249
|
+
this.$emit("focus", event);
|
|
7250
|
+
},
|
|
7251
|
+
blur: (event) => {
|
|
7252
|
+
this.$emit("blur", event);
|
|
7253
|
+
},
|
|
7254
|
+
keydown: (event) => {
|
|
7255
|
+
this.$emit("keydown", event);
|
|
7256
|
+
},
|
|
7257
|
+
keyup: (event) => {
|
|
7258
|
+
this.$emit("keyup", event);
|
|
7259
|
+
},
|
|
6285
7260
|
input: (event) => {
|
|
6286
7261
|
this.$emit(
|
|
6287
7262
|
"update:modelValue",
|
|
@@ -6289,7 +7264,9 @@ const VNumberField = defineComponent({
|
|
|
6289
7264
|
);
|
|
6290
7265
|
this.$emit("input", event);
|
|
6291
7266
|
},
|
|
6292
|
-
change: (event) =>
|
|
7267
|
+
change: (event) => {
|
|
7268
|
+
this.$emit("change", event);
|
|
7269
|
+
}
|
|
6293
7270
|
}
|
|
6294
7271
|
},
|
|
6295
7272
|
[
|
|
@@ -6323,6 +7300,7 @@ const VNumberField = defineComponent({
|
|
|
6323
7300
|
...this.maxlength !== void 0 ? { "^maxlength": this.maxlength } : {},
|
|
6324
7301
|
...this.minlength !== void 0 ? { "^minlength": this.minlength } : {},
|
|
6325
7302
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
7303
|
+
...this.scale !== void 0 ? { "^scale": this.scale } : {},
|
|
6326
7304
|
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
6327
7305
|
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
6328
7306
|
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
@@ -6331,11 +7309,21 @@ const VNumberField = defineComponent({
|
|
|
6331
7309
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
6332
7310
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
6333
7311
|
...this.autoComplete !== void 0 ? { "^autoComplete": this.autoComplete } : {},
|
|
6334
|
-
onClick: (event) =>
|
|
6335
|
-
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
7312
|
+
onClick: (event) => {
|
|
7313
|
+
this.$emit("click", event);
|
|
7314
|
+
},
|
|
7315
|
+
onFocus: (event) => {
|
|
7316
|
+
this.$emit("focus", event);
|
|
7317
|
+
},
|
|
7318
|
+
onBlur: (event) => {
|
|
7319
|
+
this.$emit("blur", event);
|
|
7320
|
+
},
|
|
7321
|
+
onKeydown: (event) => {
|
|
7322
|
+
this.$emit("keydown", event);
|
|
7323
|
+
},
|
|
7324
|
+
onKeyup: (event) => {
|
|
7325
|
+
this.$emit("keyup", event);
|
|
7326
|
+
},
|
|
6339
7327
|
onInput: (event) => {
|
|
6340
7328
|
this.$emit(
|
|
6341
7329
|
"update:modelValue",
|
|
@@ -6343,7 +7331,9 @@ const VNumberField = defineComponent({
|
|
|
6343
7331
|
);
|
|
6344
7332
|
this.$emit("input", event);
|
|
6345
7333
|
},
|
|
6346
|
-
onChange: (event) =>
|
|
7334
|
+
onChange: (event) => {
|
|
7335
|
+
this.$emit("change", event);
|
|
7336
|
+
}
|
|
6347
7337
|
},
|
|
6348
7338
|
[
|
|
6349
7339
|
// @ts-ignore
|
|
@@ -6456,12 +7446,24 @@ const VOption = defineComponent({
|
|
|
6456
7446
|
},
|
|
6457
7447
|
class: "vvd-component",
|
|
6458
7448
|
on: {
|
|
6459
|
-
click: (event) =>
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
7449
|
+
click: (event) => {
|
|
7450
|
+
this.$emit("click", event);
|
|
7451
|
+
},
|
|
7452
|
+
focus: (event) => {
|
|
7453
|
+
this.$emit("focus", event);
|
|
7454
|
+
},
|
|
7455
|
+
blur: (event) => {
|
|
7456
|
+
this.$emit("blur", event);
|
|
7457
|
+
},
|
|
7458
|
+
keydown: (event) => {
|
|
7459
|
+
this.$emit("keydown", event);
|
|
7460
|
+
},
|
|
7461
|
+
keyup: (event) => {
|
|
7462
|
+
this.$emit("keyup", event);
|
|
7463
|
+
},
|
|
7464
|
+
input: (event) => {
|
|
7465
|
+
this.$emit("input", event);
|
|
7466
|
+
}
|
|
6465
7467
|
}
|
|
6466
7468
|
},
|
|
6467
7469
|
[
|
|
@@ -6484,12 +7486,24 @@ const VOption = defineComponent({
|
|
|
6484
7486
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
6485
7487
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
6486
7488
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
6487
|
-
onClick: (event) =>
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
7489
|
+
onClick: (event) => {
|
|
7490
|
+
this.$emit("click", event);
|
|
7491
|
+
},
|
|
7492
|
+
onFocus: (event) => {
|
|
7493
|
+
this.$emit("focus", event);
|
|
7494
|
+
},
|
|
7495
|
+
onBlur: (event) => {
|
|
7496
|
+
this.$emit("blur", event);
|
|
7497
|
+
},
|
|
7498
|
+
onKeydown: (event) => {
|
|
7499
|
+
this.$emit("keydown", event);
|
|
7500
|
+
},
|
|
7501
|
+
onKeyup: (event) => {
|
|
7502
|
+
this.$emit("keyup", event);
|
|
7503
|
+
},
|
|
7504
|
+
onInput: (event) => {
|
|
7505
|
+
this.$emit("input", event);
|
|
7506
|
+
}
|
|
6493
7507
|
},
|
|
6494
7508
|
[
|
|
6495
7509
|
// @ts-ignore
|
|
@@ -6595,13 +7609,27 @@ const VPagination = defineComponent({
|
|
|
6595
7609
|
},
|
|
6596
7610
|
class: "vvd-component",
|
|
6597
7611
|
on: {
|
|
6598
|
-
click: (event) =>
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
7612
|
+
click: (event) => {
|
|
7613
|
+
this.$emit("click", event);
|
|
7614
|
+
},
|
|
7615
|
+
focus: (event) => {
|
|
7616
|
+
this.$emit("focus", event);
|
|
7617
|
+
},
|
|
7618
|
+
blur: (event) => {
|
|
7619
|
+
this.$emit("blur", event);
|
|
7620
|
+
},
|
|
7621
|
+
keydown: (event) => {
|
|
7622
|
+
this.$emit("keydown", event);
|
|
7623
|
+
},
|
|
7624
|
+
keyup: (event) => {
|
|
7625
|
+
this.$emit("keyup", event);
|
|
7626
|
+
},
|
|
7627
|
+
input: (event) => {
|
|
7628
|
+
this.$emit("input", event);
|
|
7629
|
+
},
|
|
7630
|
+
"pagination-change": (event) => {
|
|
7631
|
+
this.$emit("pagination-change", event);
|
|
7632
|
+
}
|
|
6605
7633
|
}
|
|
6606
7634
|
},
|
|
6607
7635
|
[this.$slots.default]
|
|
@@ -6618,13 +7646,27 @@ const VPagination = defineComponent({
|
|
|
6618
7646
|
...this.navIcons !== void 0 && this.navIcons !== false ? { "^nav-icons": this.navIcons } : {},
|
|
6619
7647
|
...this.total !== void 0 ? { "^total": this.total } : {},
|
|
6620
7648
|
...this.selectedIndex !== void 0 ? { "^selected-index": this.selectedIndex } : {},
|
|
6621
|
-
onClick: (event) =>
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
|
|
7649
|
+
onClick: (event) => {
|
|
7650
|
+
this.$emit("click", event);
|
|
7651
|
+
},
|
|
7652
|
+
onFocus: (event) => {
|
|
7653
|
+
this.$emit("focus", event);
|
|
7654
|
+
},
|
|
7655
|
+
onBlur: (event) => {
|
|
7656
|
+
this.$emit("blur", event);
|
|
7657
|
+
},
|
|
7658
|
+
onKeydown: (event) => {
|
|
7659
|
+
this.$emit("keydown", event);
|
|
7660
|
+
},
|
|
7661
|
+
onKeyup: (event) => {
|
|
7662
|
+
this.$emit("keyup", event);
|
|
7663
|
+
},
|
|
7664
|
+
onInput: (event) => {
|
|
7665
|
+
this.$emit("input", event);
|
|
7666
|
+
},
|
|
7667
|
+
onPaginationChange: (event) => {
|
|
7668
|
+
this.$emit("pagination-change", event);
|
|
7669
|
+
}
|
|
6628
7670
|
},
|
|
6629
7671
|
[
|
|
6630
7672
|
// @ts-ignore
|
|
@@ -6737,12 +7779,24 @@ const VProgress = defineComponent({
|
|
|
6737
7779
|
},
|
|
6738
7780
|
class: "vvd-component",
|
|
6739
7781
|
on: {
|
|
6740
|
-
click: (event) =>
|
|
6741
|
-
|
|
6742
|
-
|
|
6743
|
-
|
|
6744
|
-
|
|
6745
|
-
|
|
7782
|
+
click: (event) => {
|
|
7783
|
+
this.$emit("click", event);
|
|
7784
|
+
},
|
|
7785
|
+
focus: (event) => {
|
|
7786
|
+
this.$emit("focus", event);
|
|
7787
|
+
},
|
|
7788
|
+
blur: (event) => {
|
|
7789
|
+
this.$emit("blur", event);
|
|
7790
|
+
},
|
|
7791
|
+
keydown: (event) => {
|
|
7792
|
+
this.$emit("keydown", event);
|
|
7793
|
+
},
|
|
7794
|
+
keyup: (event) => {
|
|
7795
|
+
this.$emit("keyup", event);
|
|
7796
|
+
},
|
|
7797
|
+
input: (event) => {
|
|
7798
|
+
this.$emit("input", event);
|
|
7799
|
+
}
|
|
6746
7800
|
}
|
|
6747
7801
|
},
|
|
6748
7802
|
[this.$slots.default]
|
|
@@ -6762,12 +7816,24 @@ const VProgress = defineComponent({
|
|
|
6762
7816
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
6763
7817
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6764
7818
|
...this.reverse !== void 0 && this.reverse !== false ? { "^reverse": this.reverse } : {},
|
|
6765
|
-
onClick: (event) =>
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
|
|
6770
|
-
|
|
7819
|
+
onClick: (event) => {
|
|
7820
|
+
this.$emit("click", event);
|
|
7821
|
+
},
|
|
7822
|
+
onFocus: (event) => {
|
|
7823
|
+
this.$emit("focus", event);
|
|
7824
|
+
},
|
|
7825
|
+
onBlur: (event) => {
|
|
7826
|
+
this.$emit("blur", event);
|
|
7827
|
+
},
|
|
7828
|
+
onKeydown: (event) => {
|
|
7829
|
+
this.$emit("keydown", event);
|
|
7830
|
+
},
|
|
7831
|
+
onKeyup: (event) => {
|
|
7832
|
+
this.$emit("keyup", event);
|
|
7833
|
+
},
|
|
7834
|
+
onInput: (event) => {
|
|
7835
|
+
this.$emit("input", event);
|
|
7836
|
+
}
|
|
6771
7837
|
},
|
|
6772
7838
|
[
|
|
6773
7839
|
// @ts-ignore
|
|
@@ -6872,12 +7938,24 @@ const VProgressRing = defineComponent({
|
|
|
6872
7938
|
},
|
|
6873
7939
|
class: "vvd-component",
|
|
6874
7940
|
on: {
|
|
6875
|
-
click: (event) =>
|
|
6876
|
-
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
7941
|
+
click: (event) => {
|
|
7942
|
+
this.$emit("click", event);
|
|
7943
|
+
},
|
|
7944
|
+
focus: (event) => {
|
|
7945
|
+
this.$emit("focus", event);
|
|
7946
|
+
},
|
|
7947
|
+
blur: (event) => {
|
|
7948
|
+
this.$emit("blur", event);
|
|
7949
|
+
},
|
|
7950
|
+
keydown: (event) => {
|
|
7951
|
+
this.$emit("keydown", event);
|
|
7952
|
+
},
|
|
7953
|
+
keyup: (event) => {
|
|
7954
|
+
this.$emit("keyup", event);
|
|
7955
|
+
},
|
|
7956
|
+
input: (event) => {
|
|
7957
|
+
this.$emit("input", event);
|
|
7958
|
+
}
|
|
6881
7959
|
}
|
|
6882
7960
|
},
|
|
6883
7961
|
[this.$slots.default]
|
|
@@ -6896,12 +7974,24 @@ const VProgressRing = defineComponent({
|
|
|
6896
7974
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
6897
7975
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6898
7976
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
6899
|
-
onClick: (event) =>
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
|
|
6904
|
-
|
|
7977
|
+
onClick: (event) => {
|
|
7978
|
+
this.$emit("click", event);
|
|
7979
|
+
},
|
|
7980
|
+
onFocus: (event) => {
|
|
7981
|
+
this.$emit("focus", event);
|
|
7982
|
+
},
|
|
7983
|
+
onBlur: (event) => {
|
|
7984
|
+
this.$emit("blur", event);
|
|
7985
|
+
},
|
|
7986
|
+
onKeydown: (event) => {
|
|
7987
|
+
this.$emit("keydown", event);
|
|
7988
|
+
},
|
|
7989
|
+
onKeyup: (event) => {
|
|
7990
|
+
this.$emit("keyup", event);
|
|
7991
|
+
},
|
|
7992
|
+
onInput: (event) => {
|
|
7993
|
+
this.$emit("input", event);
|
|
7994
|
+
}
|
|
6905
7995
|
},
|
|
6906
7996
|
[
|
|
6907
7997
|
// @ts-ignore
|
|
@@ -7040,13 +8130,27 @@ const VRadio = defineComponent({
|
|
|
7040
8130
|
},
|
|
7041
8131
|
class: "vvd-component",
|
|
7042
8132
|
on: {
|
|
7043
|
-
click: (event) =>
|
|
7044
|
-
|
|
7045
|
-
|
|
7046
|
-
|
|
7047
|
-
|
|
7048
|
-
|
|
7049
|
-
|
|
8133
|
+
click: (event) => {
|
|
8134
|
+
this.$emit("click", event);
|
|
8135
|
+
},
|
|
8136
|
+
focus: (event) => {
|
|
8137
|
+
this.$emit("focus", event);
|
|
8138
|
+
},
|
|
8139
|
+
blur: (event) => {
|
|
8140
|
+
this.$emit("blur", event);
|
|
8141
|
+
},
|
|
8142
|
+
keydown: (event) => {
|
|
8143
|
+
this.$emit("keydown", event);
|
|
8144
|
+
},
|
|
8145
|
+
keyup: (event) => {
|
|
8146
|
+
this.$emit("keyup", event);
|
|
8147
|
+
},
|
|
8148
|
+
input: (event) => {
|
|
8149
|
+
this.$emit("input", event);
|
|
8150
|
+
},
|
|
8151
|
+
change: (event) => {
|
|
8152
|
+
this.$emit("change", event);
|
|
8153
|
+
}
|
|
7050
8154
|
}
|
|
7051
8155
|
},
|
|
7052
8156
|
[this.$slots.default]
|
|
@@ -7069,16 +8173,30 @@ const VRadio = defineComponent({
|
|
|
7069
8173
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
7070
8174
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7071
8175
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7072
|
-
onClick: (event) =>
|
|
7073
|
-
|
|
7074
|
-
|
|
7075
|
-
|
|
7076
|
-
|
|
7077
|
-
|
|
7078
|
-
|
|
7079
|
-
|
|
7080
|
-
|
|
7081
|
-
|
|
8176
|
+
onClick: (event) => {
|
|
8177
|
+
this.$emit("click", event);
|
|
8178
|
+
},
|
|
8179
|
+
onFocus: (event) => {
|
|
8180
|
+
this.$emit("focus", event);
|
|
8181
|
+
},
|
|
8182
|
+
onBlur: (event) => {
|
|
8183
|
+
this.$emit("blur", event);
|
|
8184
|
+
},
|
|
8185
|
+
onKeydown: (event) => {
|
|
8186
|
+
this.$emit("keydown", event);
|
|
8187
|
+
},
|
|
8188
|
+
onKeyup: (event) => {
|
|
8189
|
+
this.$emit("keyup", event);
|
|
8190
|
+
},
|
|
8191
|
+
onInput: (event) => {
|
|
8192
|
+
this.$emit("input", event);
|
|
8193
|
+
},
|
|
8194
|
+
onChange: (event) => {
|
|
8195
|
+
this.$emit("change", event);
|
|
8196
|
+
}
|
|
8197
|
+
},
|
|
8198
|
+
[
|
|
8199
|
+
// @ts-ignore
|
|
7082
8200
|
this.$slots.default && this.$slots.default()
|
|
7083
8201
|
]
|
|
7084
8202
|
);
|
|
@@ -7197,12 +8315,24 @@ const VRadioGroup = defineComponent({
|
|
|
7197
8315
|
},
|
|
7198
8316
|
class: "vvd-component",
|
|
7199
8317
|
on: {
|
|
7200
|
-
click: (event) =>
|
|
7201
|
-
|
|
7202
|
-
|
|
7203
|
-
|
|
7204
|
-
|
|
7205
|
-
|
|
8318
|
+
click: (event) => {
|
|
8319
|
+
this.$emit("click", event);
|
|
8320
|
+
},
|
|
8321
|
+
focus: (event) => {
|
|
8322
|
+
this.$emit("focus", event);
|
|
8323
|
+
},
|
|
8324
|
+
blur: (event) => {
|
|
8325
|
+
this.$emit("blur", event);
|
|
8326
|
+
},
|
|
8327
|
+
keydown: (event) => {
|
|
8328
|
+
this.$emit("keydown", event);
|
|
8329
|
+
},
|
|
8330
|
+
keyup: (event) => {
|
|
8331
|
+
this.$emit("keyup", event);
|
|
8332
|
+
},
|
|
8333
|
+
input: (event) => {
|
|
8334
|
+
this.$emit("input", event);
|
|
8335
|
+
},
|
|
7206
8336
|
change: (event) => {
|
|
7207
8337
|
this.$emit(
|
|
7208
8338
|
"update:modelValue",
|
|
@@ -7227,12 +8357,24 @@ const VRadioGroup = defineComponent({
|
|
|
7227
8357
|
...(this.modelValue ?? this.value) !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
|
|
7228
8358
|
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
7229
8359
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7230
|
-
onClick: (event) =>
|
|
7231
|
-
|
|
7232
|
-
|
|
7233
|
-
|
|
7234
|
-
|
|
7235
|
-
|
|
8360
|
+
onClick: (event) => {
|
|
8361
|
+
this.$emit("click", event);
|
|
8362
|
+
},
|
|
8363
|
+
onFocus: (event) => {
|
|
8364
|
+
this.$emit("focus", event);
|
|
8365
|
+
},
|
|
8366
|
+
onBlur: (event) => {
|
|
8367
|
+
this.$emit("blur", event);
|
|
8368
|
+
},
|
|
8369
|
+
onKeydown: (event) => {
|
|
8370
|
+
this.$emit("keydown", event);
|
|
8371
|
+
},
|
|
8372
|
+
onKeyup: (event) => {
|
|
8373
|
+
this.$emit("keyup", event);
|
|
8374
|
+
},
|
|
8375
|
+
onInput: (event) => {
|
|
8376
|
+
this.$emit("input", event);
|
|
8377
|
+
},
|
|
7236
8378
|
onChange: (event) => {
|
|
7237
8379
|
this.$emit(
|
|
7238
8380
|
"update:modelValue",
|
|
@@ -7457,11 +8599,21 @@ const VRangeSlider = defineComponent({
|
|
|
7457
8599
|
},
|
|
7458
8600
|
class: "vvd-component",
|
|
7459
8601
|
on: {
|
|
7460
|
-
click: (event) =>
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
8602
|
+
click: (event) => {
|
|
8603
|
+
this.$emit("click", event);
|
|
8604
|
+
},
|
|
8605
|
+
focus: (event) => {
|
|
8606
|
+
this.$emit("focus", event);
|
|
8607
|
+
},
|
|
8608
|
+
blur: (event) => {
|
|
8609
|
+
this.$emit("blur", event);
|
|
8610
|
+
},
|
|
8611
|
+
keydown: (event) => {
|
|
8612
|
+
this.$emit("keydown", event);
|
|
8613
|
+
},
|
|
8614
|
+
keyup: (event) => {
|
|
8615
|
+
this.$emit("keyup", event);
|
|
8616
|
+
},
|
|
7465
8617
|
"input:start": (event) => {
|
|
7466
8618
|
this.$emit("update:start", event.target.start);
|
|
7467
8619
|
this.$emit("input:start", event);
|
|
@@ -7470,8 +8622,12 @@ const VRangeSlider = defineComponent({
|
|
|
7470
8622
|
this.$emit("update:end", event.target.end);
|
|
7471
8623
|
this.$emit("input:end", event);
|
|
7472
8624
|
},
|
|
7473
|
-
input: (event) =>
|
|
7474
|
-
|
|
8625
|
+
input: (event) => {
|
|
8626
|
+
this.$emit("input", event);
|
|
8627
|
+
},
|
|
8628
|
+
change: (event) => {
|
|
8629
|
+
this.$emit("change", event);
|
|
8630
|
+
}
|
|
7475
8631
|
}
|
|
7476
8632
|
},
|
|
7477
8633
|
[this.$slots.default]
|
|
@@ -7502,11 +8658,21 @@ const VRangeSlider = defineComponent({
|
|
|
7502
8658
|
...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
|
|
7503
8659
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7504
8660
|
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
7505
|
-
onClick: (event) =>
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
8661
|
+
onClick: (event) => {
|
|
8662
|
+
this.$emit("click", event);
|
|
8663
|
+
},
|
|
8664
|
+
onFocus: (event) => {
|
|
8665
|
+
this.$emit("focus", event);
|
|
8666
|
+
},
|
|
8667
|
+
onBlur: (event) => {
|
|
8668
|
+
this.$emit("blur", event);
|
|
8669
|
+
},
|
|
8670
|
+
onKeydown: (event) => {
|
|
8671
|
+
this.$emit("keydown", event);
|
|
8672
|
+
},
|
|
8673
|
+
onKeyup: (event) => {
|
|
8674
|
+
this.$emit("keyup", event);
|
|
8675
|
+
},
|
|
7510
8676
|
"onInput:start": (event) => {
|
|
7511
8677
|
this.$emit("update:start", event.target.start);
|
|
7512
8678
|
this.$emit("input:start", event);
|
|
@@ -7515,8 +8681,12 @@ const VRangeSlider = defineComponent({
|
|
|
7515
8681
|
this.$emit("update:end", event.target.end);
|
|
7516
8682
|
this.$emit("input:end", event);
|
|
7517
8683
|
},
|
|
7518
|
-
onInput: (event) =>
|
|
7519
|
-
|
|
8684
|
+
onInput: (event) => {
|
|
8685
|
+
this.$emit("input", event);
|
|
8686
|
+
},
|
|
8687
|
+
onChange: (event) => {
|
|
8688
|
+
this.$emit("change", event);
|
|
8689
|
+
}
|
|
7520
8690
|
},
|
|
7521
8691
|
[
|
|
7522
8692
|
// @ts-ignore
|
|
@@ -7526,6 +8696,303 @@ const VRangeSlider = defineComponent({
|
|
|
7526
8696
|
}
|
|
7527
8697
|
});
|
|
7528
8698
|
|
|
8699
|
+
const VSearchableSelect = defineComponent({
|
|
8700
|
+
name: "VSearchableSelect",
|
|
8701
|
+
model: isVue2 ? {
|
|
8702
|
+
prop: "modelValue",
|
|
8703
|
+
event: "update:modelValue"
|
|
8704
|
+
} : void 0,
|
|
8705
|
+
props: {
|
|
8706
|
+
/**
|
|
8707
|
+
* The success text for the form element.
|
|
8708
|
+
*/
|
|
8709
|
+
successText: { type: String, default: void 0 },
|
|
8710
|
+
/**
|
|
8711
|
+
* The error text for the form element.
|
|
8712
|
+
*/
|
|
8713
|
+
errorText: { type: String, default: void 0 },
|
|
8714
|
+
/**
|
|
8715
|
+
* The helper text for the form element.
|
|
8716
|
+
*/
|
|
8717
|
+
helperText: { type: String, default: void 0 },
|
|
8718
|
+
/**
|
|
8719
|
+
* The label for the form element.
|
|
8720
|
+
*/
|
|
8721
|
+
label: { type: String, default: void 0 },
|
|
8722
|
+
/**
|
|
8723
|
+
* A decorative icon the custom element should have.
|
|
8724
|
+
* See the Vivid Icon Gallery for available icons: https://icons.vivid.vonage.com/
|
|
8725
|
+
*/
|
|
8726
|
+
icon: { type: String, default: void 0 },
|
|
8727
|
+
/**
|
|
8728
|
+
* Indicates the icon affix alignment.
|
|
8729
|
+
*/
|
|
8730
|
+
iconTrailing: { type: Boolean, default: void 0 },
|
|
8731
|
+
/**
|
|
8732
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
8733
|
+
*/
|
|
8734
|
+
ariaCurrent: {
|
|
8735
|
+
type: String,
|
|
8736
|
+
default: void 0
|
|
8737
|
+
},
|
|
8738
|
+
/**
|
|
8739
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
8740
|
+
*/
|
|
8741
|
+
disabled: { type: Boolean, default: void 0 },
|
|
8742
|
+
/**
|
|
8743
|
+
* The initial value of the form. This value sets the `value` property
|
|
8744
|
+
* only when the `value` property has not been explicitly set.
|
|
8745
|
+
*/
|
|
8746
|
+
initialValue: { type: String, default: void 0 },
|
|
8747
|
+
/**
|
|
8748
|
+
* The current value of the element. This property serves as a mechanism
|
|
8749
|
+
* to set the `value` property through both property assignment and the
|
|
8750
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
8751
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
8752
|
+
* and don't support IDL attribute binding.
|
|
8753
|
+
*/
|
|
8754
|
+
value: { type: String, default: void 0 },
|
|
8755
|
+
/**
|
|
8756
|
+
* The current value of the element. This property serves as a mechanism
|
|
8757
|
+
* to set the `value` property through both property assignment and the
|
|
8758
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
8759
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
8760
|
+
* and don't support IDL attribute binding.
|
|
8761
|
+
*/
|
|
8762
|
+
modelValue: { type: String, default: void 0 },
|
|
8763
|
+
/**
|
|
8764
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
8765
|
+
*/
|
|
8766
|
+
name: { type: String, default: void 0 },
|
|
8767
|
+
/**
|
|
8768
|
+
* Require the field to be completed prior to form submission.
|
|
8769
|
+
*/
|
|
8770
|
+
required: { type: Boolean, default: void 0 },
|
|
8771
|
+
appearance: {
|
|
8772
|
+
type: String,
|
|
8773
|
+
default: void 0
|
|
8774
|
+
},
|
|
8775
|
+
shape: { type: String, default: void 0 },
|
|
8776
|
+
fixedDropdown: { type: Boolean, default: void 0 },
|
|
8777
|
+
placeholder: { type: String, default: void 0 },
|
|
8778
|
+
open: { type: Boolean, default: void 0 },
|
|
8779
|
+
multiple: { type: Boolean, default: void 0 },
|
|
8780
|
+
externalTags: { type: Boolean, default: void 0 },
|
|
8781
|
+
maxLines: { type: Number, default: void 0 },
|
|
8782
|
+
/**
|
|
8783
|
+
* Adds a clear button to the input field that clears the selected values.
|
|
8784
|
+
*/
|
|
8785
|
+
clearable: { type: Boolean, default: void 0 },
|
|
8786
|
+
/**
|
|
8787
|
+
* List of selected option values.
|
|
8788
|
+
*/
|
|
8789
|
+
values: { type: Array, default: void 0 }
|
|
8790
|
+
},
|
|
8791
|
+
emits: [
|
|
8792
|
+
/**
|
|
8793
|
+
* Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element.
|
|
8794
|
+
* @type {MouseEvent}
|
|
8795
|
+
*/
|
|
8796
|
+
"click",
|
|
8797
|
+
/**
|
|
8798
|
+
* Fires when the element receives focus.
|
|
8799
|
+
* @type {FocusEvent}
|
|
8800
|
+
*/
|
|
8801
|
+
"focus",
|
|
8802
|
+
/**
|
|
8803
|
+
* Fires when the element loses focus.
|
|
8804
|
+
* @type {FocusEvent}
|
|
8805
|
+
*/
|
|
8806
|
+
"blur",
|
|
8807
|
+
/**
|
|
8808
|
+
* Fires when a key is pressed.
|
|
8809
|
+
* @type {KeyboardEvent}
|
|
8810
|
+
*/
|
|
8811
|
+
"keydown",
|
|
8812
|
+
/**
|
|
8813
|
+
* Fires when a key is released.
|
|
8814
|
+
* @type {KeyboardEvent}
|
|
8815
|
+
*/
|
|
8816
|
+
"keyup",
|
|
8817
|
+
/**
|
|
8818
|
+
* Fired when the selected options change
|
|
8819
|
+
* @type {CustomEvent<undefined>}
|
|
8820
|
+
*/
|
|
8821
|
+
"input",
|
|
8822
|
+
/**
|
|
8823
|
+
* Fired when the selected options change
|
|
8824
|
+
* @type {CustomEvent<undefined>}
|
|
8825
|
+
*/
|
|
8826
|
+
"change",
|
|
8827
|
+
/**
|
|
8828
|
+
* Fires when the modelValue value changes
|
|
8829
|
+
* @type {string}
|
|
8830
|
+
*/
|
|
8831
|
+
"update:modelValue",
|
|
8832
|
+
/**
|
|
8833
|
+
* Fires when the values value changes
|
|
8834
|
+
* @type {string[]}
|
|
8835
|
+
*/
|
|
8836
|
+
"update:values"
|
|
8837
|
+
],
|
|
8838
|
+
methods: {},
|
|
8839
|
+
setup(props, ctx) {
|
|
8840
|
+
const componentName = registerComponent(
|
|
8841
|
+
"searchable-select",
|
|
8842
|
+
registerSearchableSelect
|
|
8843
|
+
);
|
|
8844
|
+
const element = ref(null);
|
|
8845
|
+
return { componentName, element };
|
|
8846
|
+
},
|
|
8847
|
+
render() {
|
|
8848
|
+
if (isVue2) {
|
|
8849
|
+
return h(
|
|
8850
|
+
this.componentName,
|
|
8851
|
+
{
|
|
8852
|
+
ref: "element",
|
|
8853
|
+
attrs: {
|
|
8854
|
+
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
8855
|
+
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
8856
|
+
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
8857
|
+
...this.label !== void 0 ? { label: this.label } : {},
|
|
8858
|
+
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
8859
|
+
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
8860
|
+
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8861
|
+
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8862
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
8863
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
8864
|
+
...this.name !== void 0 ? { name: this.name } : {},
|
|
8865
|
+
...this.required !== void 0 ? { required: this.required } : {},
|
|
8866
|
+
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
8867
|
+
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8868
|
+
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
|
|
8869
|
+
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
8870
|
+
...this.open !== void 0 ? { open: this.open } : {},
|
|
8871
|
+
...this.multiple !== void 0 ? { multiple: this.multiple } : {},
|
|
8872
|
+
...this.externalTags !== void 0 ? { "external-tags": this.externalTags } : {},
|
|
8873
|
+
...this.maxLines !== void 0 ? { "max-lines": this.maxLines } : {},
|
|
8874
|
+
...this.clearable !== void 0 ? { clearable: this.clearable } : {}
|
|
8875
|
+
},
|
|
8876
|
+
class: "vvd-component",
|
|
8877
|
+
domProps: {
|
|
8878
|
+
...this.values !== void 0 ? { values: this.values } : {}
|
|
8879
|
+
},
|
|
8880
|
+
on: {
|
|
8881
|
+
click: (event) => {
|
|
8882
|
+
this.$emit("click", event);
|
|
8883
|
+
},
|
|
8884
|
+
focus: (event) => {
|
|
8885
|
+
this.$emit("focus", event);
|
|
8886
|
+
},
|
|
8887
|
+
blur: (event) => {
|
|
8888
|
+
this.$emit("blur", event);
|
|
8889
|
+
},
|
|
8890
|
+
keydown: (event) => {
|
|
8891
|
+
this.$emit("keydown", event);
|
|
8892
|
+
},
|
|
8893
|
+
keyup: (event) => {
|
|
8894
|
+
this.$emit("keyup", event);
|
|
8895
|
+
},
|
|
8896
|
+
input: (event) => {
|
|
8897
|
+
this.$emit(
|
|
8898
|
+
"update:modelValue",
|
|
8899
|
+
event.target.value
|
|
8900
|
+
);
|
|
8901
|
+
this.$emit("update:values", event.target.values);
|
|
8902
|
+
this.$emit("input", event);
|
|
8903
|
+
},
|
|
8904
|
+
change: (event) => {
|
|
8905
|
+
this.$emit("change", event);
|
|
8906
|
+
}
|
|
8907
|
+
}
|
|
8908
|
+
},
|
|
8909
|
+
[
|
|
8910
|
+
this.$slots.default,
|
|
8911
|
+
// @slot icon Slot to add an icon to the control.
|
|
8912
|
+
handleNamedSlot("icon", this.$slots["icon"]),
|
|
8913
|
+
// @slot meta Slot to add meta content to the control.
|
|
8914
|
+
handleNamedSlot("meta", this.$slots["meta"]),
|
|
8915
|
+
// @slot helper-text Describes how to use the component. Alternative to the `helper-text` attribute.
|
|
8916
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"]),
|
|
8917
|
+
// @slot no-options Message that appears when no options are available.
|
|
8918
|
+
handleNamedSlot("no-options", this.$slots["no-options"]),
|
|
8919
|
+
// @slot no-matches Message that appears when no options match the search query.
|
|
8920
|
+
handleNamedSlot("no-matches", this.$slots["no-matches"])
|
|
8921
|
+
]
|
|
8922
|
+
);
|
|
8923
|
+
}
|
|
8924
|
+
return h(
|
|
8925
|
+
this.componentName,
|
|
8926
|
+
{
|
|
8927
|
+
ref: "element",
|
|
8928
|
+
class: "vvd-component",
|
|
8929
|
+
...this.successText !== void 0 ? { "^success-text": this.successText } : {},
|
|
8930
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
8931
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
8932
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
8933
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
8934
|
+
...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
|
|
8935
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8936
|
+
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
8937
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
8938
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
8939
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
8940
|
+
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
8941
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
8942
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8943
|
+
...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
8944
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
8945
|
+
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
8946
|
+
...this.multiple !== void 0 && this.multiple !== false ? { "^multiple": this.multiple } : {},
|
|
8947
|
+
...this.externalTags !== void 0 && this.externalTags !== false ? { "^external-tags": this.externalTags } : {},
|
|
8948
|
+
...this.maxLines !== void 0 ? { "^max-lines": this.maxLines } : {},
|
|
8949
|
+
...this.clearable !== void 0 && this.clearable !== false ? { "^clearable": this.clearable } : {},
|
|
8950
|
+
...this.values !== void 0 ? { ".values": this.values } : {},
|
|
8951
|
+
onClick: (event) => {
|
|
8952
|
+
this.$emit("click", event);
|
|
8953
|
+
},
|
|
8954
|
+
onFocus: (event) => {
|
|
8955
|
+
this.$emit("focus", event);
|
|
8956
|
+
},
|
|
8957
|
+
onBlur: (event) => {
|
|
8958
|
+
this.$emit("blur", event);
|
|
8959
|
+
},
|
|
8960
|
+
onKeydown: (event) => {
|
|
8961
|
+
this.$emit("keydown", event);
|
|
8962
|
+
},
|
|
8963
|
+
onKeyup: (event) => {
|
|
8964
|
+
this.$emit("keyup", event);
|
|
8965
|
+
},
|
|
8966
|
+
onInput: (event) => {
|
|
8967
|
+
this.$emit(
|
|
8968
|
+
"update:modelValue",
|
|
8969
|
+
event.target.value
|
|
8970
|
+
);
|
|
8971
|
+
this.$emit("update:values", event.target.values);
|
|
8972
|
+
this.$emit("input", event);
|
|
8973
|
+
},
|
|
8974
|
+
onChange: (event) => {
|
|
8975
|
+
this.$emit("change", event);
|
|
8976
|
+
}
|
|
8977
|
+
},
|
|
8978
|
+
[
|
|
8979
|
+
// @ts-ignore
|
|
8980
|
+
this.$slots.default && this.$slots.default(),
|
|
8981
|
+
// @slot icon Slot to add an icon to the control.
|
|
8982
|
+
handleNamedSlot("icon", this.$slots["icon"]),
|
|
8983
|
+
// @slot meta Slot to add meta content to the control.
|
|
8984
|
+
handleNamedSlot("meta", this.$slots["meta"]),
|
|
8985
|
+
// @slot helper-text Describes how to use the component. Alternative to the `helper-text` attribute.
|
|
8986
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"]),
|
|
8987
|
+
// @slot no-options Message that appears when no options are available.
|
|
8988
|
+
handleNamedSlot("no-options", this.$slots["no-options"]),
|
|
8989
|
+
// @slot no-matches Message that appears when no options match the search query.
|
|
8990
|
+
handleNamedSlot("no-matches", this.$slots["no-matches"])
|
|
8991
|
+
]
|
|
8992
|
+
);
|
|
8993
|
+
}
|
|
8994
|
+
});
|
|
8995
|
+
|
|
7529
8996
|
const VSelect = defineComponent({
|
|
7530
8997
|
name: "VSelect",
|
|
7531
8998
|
model: isVue2 ? {
|
|
@@ -7613,6 +9080,13 @@ const VSelect = defineComponent({
|
|
|
7613
9080
|
* Indicates if the listbox is in multi-selection mode.
|
|
7614
9081
|
*/
|
|
7615
9082
|
multiple: { type: Boolean, default: void 0 },
|
|
9083
|
+
/**
|
|
9084
|
+
* The size the select should have.
|
|
9085
|
+
*/
|
|
9086
|
+
scale: {
|
|
9087
|
+
type: String,
|
|
9088
|
+
default: void 0
|
|
9089
|
+
},
|
|
7616
9090
|
/**
|
|
7617
9091
|
* The appearance attribute.
|
|
7618
9092
|
*/
|
|
@@ -7700,6 +9174,9 @@ const VSelect = defineComponent({
|
|
|
7700
9174
|
selectFirstOption() {
|
|
7701
9175
|
return this.element?.selectFirstOption();
|
|
7702
9176
|
},
|
|
9177
|
+
labelChanged() {
|
|
9178
|
+
return this.element?.labelChanged();
|
|
9179
|
+
},
|
|
7703
9180
|
setDefaultSelectedOption() {
|
|
7704
9181
|
return this.element?.setDefaultSelectedOption();
|
|
7705
9182
|
},
|
|
@@ -7737,6 +9214,7 @@ const VSelect = defineComponent({
|
|
|
7737
9214
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
7738
9215
|
...this.position !== void 0 ? { position: this.position } : {},
|
|
7739
9216
|
...this.multiple !== void 0 ? { multiple: this.multiple } : {},
|
|
9217
|
+
...this.scale !== void 0 ? { scale: this.scale } : {},
|
|
7740
9218
|
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
7741
9219
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
7742
9220
|
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
|
|
@@ -7744,11 +9222,21 @@ const VSelect = defineComponent({
|
|
|
7744
9222
|
},
|
|
7745
9223
|
class: "vvd-component",
|
|
7746
9224
|
on: {
|
|
7747
|
-
click: (event) =>
|
|
7748
|
-
|
|
7749
|
-
|
|
7750
|
-
|
|
7751
|
-
|
|
9225
|
+
click: (event) => {
|
|
9226
|
+
this.$emit("click", event);
|
|
9227
|
+
},
|
|
9228
|
+
focus: (event) => {
|
|
9229
|
+
this.$emit("focus", event);
|
|
9230
|
+
},
|
|
9231
|
+
blur: (event) => {
|
|
9232
|
+
this.$emit("blur", event);
|
|
9233
|
+
},
|
|
9234
|
+
keydown: (event) => {
|
|
9235
|
+
this.$emit("keydown", event);
|
|
9236
|
+
},
|
|
9237
|
+
keyup: (event) => {
|
|
9238
|
+
this.$emit("keyup", event);
|
|
9239
|
+
},
|
|
7752
9240
|
input: (event) => {
|
|
7753
9241
|
this.$emit(
|
|
7754
9242
|
"update:modelValue",
|
|
@@ -7756,7 +9244,9 @@ const VSelect = defineComponent({
|
|
|
7756
9244
|
);
|
|
7757
9245
|
this.$emit("input", event);
|
|
7758
9246
|
},
|
|
7759
|
-
change: (event) =>
|
|
9247
|
+
change: (event) => {
|
|
9248
|
+
this.$emit("change", event);
|
|
9249
|
+
}
|
|
7760
9250
|
}
|
|
7761
9251
|
},
|
|
7762
9252
|
[
|
|
@@ -7790,15 +9280,26 @@ const VSelect = defineComponent({
|
|
|
7790
9280
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
7791
9281
|
...this.position !== void 0 ? { "^position": this.position } : {},
|
|
7792
9282
|
...this.multiple !== void 0 && this.multiple !== false ? { "^multiple": this.multiple } : {},
|
|
9283
|
+
...this.scale !== void 0 ? { "^scale": this.scale } : {},
|
|
7793
9284
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
7794
9285
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
7795
9286
|
...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
7796
9287
|
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
7797
|
-
onClick: (event) =>
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
|
|
9288
|
+
onClick: (event) => {
|
|
9289
|
+
this.$emit("click", event);
|
|
9290
|
+
},
|
|
9291
|
+
onFocus: (event) => {
|
|
9292
|
+
this.$emit("focus", event);
|
|
9293
|
+
},
|
|
9294
|
+
onBlur: (event) => {
|
|
9295
|
+
this.$emit("blur", event);
|
|
9296
|
+
},
|
|
9297
|
+
onKeydown: (event) => {
|
|
9298
|
+
this.$emit("keydown", event);
|
|
9299
|
+
},
|
|
9300
|
+
onKeyup: (event) => {
|
|
9301
|
+
this.$emit("keyup", event);
|
|
9302
|
+
},
|
|
7802
9303
|
onInput: (event) => {
|
|
7803
9304
|
this.$emit(
|
|
7804
9305
|
"update:modelValue",
|
|
@@ -7806,7 +9307,9 @@ const VSelect = defineComponent({
|
|
|
7806
9307
|
);
|
|
7807
9308
|
this.$emit("input", event);
|
|
7808
9309
|
},
|
|
7809
|
-
onChange: (event) =>
|
|
9310
|
+
onChange: (event) => {
|
|
9311
|
+
this.$emit("change", event);
|
|
9312
|
+
}
|
|
7810
9313
|
},
|
|
7811
9314
|
[
|
|
7812
9315
|
// @ts-ignore
|
|
@@ -7928,13 +9431,27 @@ const VSelectableBox = defineComponent({
|
|
|
7928
9431
|
},
|
|
7929
9432
|
class: "vvd-component",
|
|
7930
9433
|
on: {
|
|
7931
|
-
click: (event) =>
|
|
7932
|
-
|
|
7933
|
-
|
|
7934
|
-
|
|
7935
|
-
|
|
7936
|
-
|
|
7937
|
-
|
|
9434
|
+
click: (event) => {
|
|
9435
|
+
this.$emit("click", event);
|
|
9436
|
+
},
|
|
9437
|
+
focus: (event) => {
|
|
9438
|
+
this.$emit("focus", event);
|
|
9439
|
+
},
|
|
9440
|
+
blur: (event) => {
|
|
9441
|
+
this.$emit("blur", event);
|
|
9442
|
+
},
|
|
9443
|
+
keydown: (event) => {
|
|
9444
|
+
this.$emit("keydown", event);
|
|
9445
|
+
},
|
|
9446
|
+
keyup: (event) => {
|
|
9447
|
+
this.$emit("keyup", event);
|
|
9448
|
+
},
|
|
9449
|
+
input: (event) => {
|
|
9450
|
+
this.$emit("input", event);
|
|
9451
|
+
},
|
|
9452
|
+
change: (event) => {
|
|
9453
|
+
this.$emit("change", event);
|
|
9454
|
+
}
|
|
7938
9455
|
}
|
|
7939
9456
|
},
|
|
7940
9457
|
[this.$slots.default]
|
|
@@ -7953,13 +9470,27 @@ const VSelectableBox = defineComponent({
|
|
|
7953
9470
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7954
9471
|
...this.controlType !== void 0 ? { "^control-type": this.controlType } : {},
|
|
7955
9472
|
...this.tight !== void 0 && this.tight !== false ? { "^tight": this.tight } : {},
|
|
7956
|
-
onClick: (event) =>
|
|
7957
|
-
|
|
7958
|
-
|
|
7959
|
-
|
|
7960
|
-
|
|
7961
|
-
|
|
7962
|
-
|
|
9473
|
+
onClick: (event) => {
|
|
9474
|
+
this.$emit("click", event);
|
|
9475
|
+
},
|
|
9476
|
+
onFocus: (event) => {
|
|
9477
|
+
this.$emit("focus", event);
|
|
9478
|
+
},
|
|
9479
|
+
onBlur: (event) => {
|
|
9480
|
+
this.$emit("blur", event);
|
|
9481
|
+
},
|
|
9482
|
+
onKeydown: (event) => {
|
|
9483
|
+
this.$emit("keydown", event);
|
|
9484
|
+
},
|
|
9485
|
+
onKeyup: (event) => {
|
|
9486
|
+
this.$emit("keyup", event);
|
|
9487
|
+
},
|
|
9488
|
+
onInput: (event) => {
|
|
9489
|
+
this.$emit("input", event);
|
|
9490
|
+
},
|
|
9491
|
+
onChange: (event) => {
|
|
9492
|
+
this.$emit("change", event);
|
|
9493
|
+
}
|
|
7963
9494
|
},
|
|
7964
9495
|
[
|
|
7965
9496
|
// @ts-ignore
|
|
@@ -8059,14 +9590,30 @@ const VSideDrawer = defineComponent({
|
|
|
8059
9590
|
},
|
|
8060
9591
|
class: "vvd-component",
|
|
8061
9592
|
on: {
|
|
8062
|
-
click: (event) =>
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
|
|
8067
|
-
|
|
8068
|
-
|
|
8069
|
-
|
|
9593
|
+
click: (event) => {
|
|
9594
|
+
this.$emit("click", event);
|
|
9595
|
+
},
|
|
9596
|
+
focus: (event) => {
|
|
9597
|
+
this.$emit("focus", event);
|
|
9598
|
+
},
|
|
9599
|
+
blur: (event) => {
|
|
9600
|
+
this.$emit("blur", event);
|
|
9601
|
+
},
|
|
9602
|
+
keydown: (event) => {
|
|
9603
|
+
this.$emit("keydown", event);
|
|
9604
|
+
},
|
|
9605
|
+
keyup: (event) => {
|
|
9606
|
+
this.$emit("keyup", event);
|
|
9607
|
+
},
|
|
9608
|
+
input: (event) => {
|
|
9609
|
+
this.$emit("input", event);
|
|
9610
|
+
},
|
|
9611
|
+
close: (event) => {
|
|
9612
|
+
this.$emit("close", event);
|
|
9613
|
+
},
|
|
9614
|
+
open: (event) => {
|
|
9615
|
+
this.$emit("open", event);
|
|
9616
|
+
}
|
|
8070
9617
|
}
|
|
8071
9618
|
},
|
|
8072
9619
|
[
|
|
@@ -8086,14 +9633,30 @@ const VSideDrawer = defineComponent({
|
|
|
8086
9633
|
...this.modal !== void 0 && this.modal !== false ? { "^modal": this.modal } : {},
|
|
8087
9634
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
8088
9635
|
...this.trailing !== void 0 && this.trailing !== false ? { "^trailing": this.trailing } : {},
|
|
8089
|
-
onClick: (event) =>
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8094
|
-
|
|
8095
|
-
|
|
8096
|
-
|
|
9636
|
+
onClick: (event) => {
|
|
9637
|
+
this.$emit("click", event);
|
|
9638
|
+
},
|
|
9639
|
+
onFocus: (event) => {
|
|
9640
|
+
this.$emit("focus", event);
|
|
9641
|
+
},
|
|
9642
|
+
onBlur: (event) => {
|
|
9643
|
+
this.$emit("blur", event);
|
|
9644
|
+
},
|
|
9645
|
+
onKeydown: (event) => {
|
|
9646
|
+
this.$emit("keydown", event);
|
|
9647
|
+
},
|
|
9648
|
+
onKeyup: (event) => {
|
|
9649
|
+
this.$emit("keyup", event);
|
|
9650
|
+
},
|
|
9651
|
+
onInput: (event) => {
|
|
9652
|
+
this.$emit("input", event);
|
|
9653
|
+
},
|
|
9654
|
+
onClose: (event) => {
|
|
9655
|
+
this.$emit("close", event);
|
|
9656
|
+
},
|
|
9657
|
+
onOpen: (event) => {
|
|
9658
|
+
this.$emit("open", event);
|
|
9659
|
+
}
|
|
8097
9660
|
},
|
|
8098
9661
|
[
|
|
8099
9662
|
// @ts-ignore
|
|
@@ -8291,12 +9854,24 @@ const VSlider = defineComponent({
|
|
|
8291
9854
|
},
|
|
8292
9855
|
class: "vvd-component",
|
|
8293
9856
|
on: {
|
|
8294
|
-
click: (event) =>
|
|
8295
|
-
|
|
8296
|
-
|
|
8297
|
-
|
|
8298
|
-
|
|
8299
|
-
|
|
9857
|
+
click: (event) => {
|
|
9858
|
+
this.$emit("click", event);
|
|
9859
|
+
},
|
|
9860
|
+
focus: (event) => {
|
|
9861
|
+
this.$emit("focus", event);
|
|
9862
|
+
},
|
|
9863
|
+
blur: (event) => {
|
|
9864
|
+
this.$emit("blur", event);
|
|
9865
|
+
},
|
|
9866
|
+
keydown: (event) => {
|
|
9867
|
+
this.$emit("keydown", event);
|
|
9868
|
+
},
|
|
9869
|
+
keyup: (event) => {
|
|
9870
|
+
this.$emit("keyup", event);
|
|
9871
|
+
},
|
|
9872
|
+
input: (event) => {
|
|
9873
|
+
this.$emit("input", event);
|
|
9874
|
+
},
|
|
8300
9875
|
change: (event) => {
|
|
8301
9876
|
this.$emit(
|
|
8302
9877
|
"update:modelValue",
|
|
@@ -8331,12 +9906,24 @@ const VSlider = defineComponent({
|
|
|
8331
9906
|
...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
|
|
8332
9907
|
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
8333
9908
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8334
|
-
onClick: (event) =>
|
|
8335
|
-
|
|
8336
|
-
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
9909
|
+
onClick: (event) => {
|
|
9910
|
+
this.$emit("click", event);
|
|
9911
|
+
},
|
|
9912
|
+
onFocus: (event) => {
|
|
9913
|
+
this.$emit("focus", event);
|
|
9914
|
+
},
|
|
9915
|
+
onBlur: (event) => {
|
|
9916
|
+
this.$emit("blur", event);
|
|
9917
|
+
},
|
|
9918
|
+
onKeydown: (event) => {
|
|
9919
|
+
this.$emit("keydown", event);
|
|
9920
|
+
},
|
|
9921
|
+
onKeyup: (event) => {
|
|
9922
|
+
this.$emit("keyup", event);
|
|
9923
|
+
},
|
|
9924
|
+
onInput: (event) => {
|
|
9925
|
+
this.$emit("input", event);
|
|
9926
|
+
},
|
|
8340
9927
|
onChange: (event) => {
|
|
8341
9928
|
this.$emit(
|
|
8342
9929
|
"update:modelValue",
|
|
@@ -8490,14 +10077,30 @@ const VSplitButton = defineComponent({
|
|
|
8490
10077
|
},
|
|
8491
10078
|
class: "vvd-component",
|
|
8492
10079
|
on: {
|
|
8493
|
-
click: (event) =>
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
|
|
8500
|
-
|
|
10080
|
+
click: (event) => {
|
|
10081
|
+
this.$emit("click", event);
|
|
10082
|
+
},
|
|
10083
|
+
focus: (event) => {
|
|
10084
|
+
this.$emit("focus", event);
|
|
10085
|
+
},
|
|
10086
|
+
blur: (event) => {
|
|
10087
|
+
this.$emit("blur", event);
|
|
10088
|
+
},
|
|
10089
|
+
keydown: (event) => {
|
|
10090
|
+
this.$emit("keydown", event);
|
|
10091
|
+
},
|
|
10092
|
+
keyup: (event) => {
|
|
10093
|
+
this.$emit("keyup", event);
|
|
10094
|
+
},
|
|
10095
|
+
input: (event) => {
|
|
10096
|
+
this.$emit("input", event);
|
|
10097
|
+
},
|
|
10098
|
+
"action-click": (event) => {
|
|
10099
|
+
this.$emit("action-click", event);
|
|
10100
|
+
},
|
|
10101
|
+
"indicator-click": (event) => {
|
|
10102
|
+
this.$emit("indicator-click", event);
|
|
10103
|
+
}
|
|
8501
10104
|
}
|
|
8502
10105
|
},
|
|
8503
10106
|
[
|
|
@@ -8524,14 +10127,30 @@ const VSplitButton = defineComponent({
|
|
|
8524
10127
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
8525
10128
|
...this.ariaExpanded !== void 0 ? { "^aria-expanded": this.ariaExpanded } : {},
|
|
8526
10129
|
...this.indicatorAriaLabel !== void 0 ? { "^indicator-aria-label": this.indicatorAriaLabel } : {},
|
|
8527
|
-
onClick: (event) =>
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
10130
|
+
onClick: (event) => {
|
|
10131
|
+
this.$emit("click", event);
|
|
10132
|
+
},
|
|
10133
|
+
onFocus: (event) => {
|
|
10134
|
+
this.$emit("focus", event);
|
|
10135
|
+
},
|
|
10136
|
+
onBlur: (event) => {
|
|
10137
|
+
this.$emit("blur", event);
|
|
10138
|
+
},
|
|
10139
|
+
onKeydown: (event) => {
|
|
10140
|
+
this.$emit("keydown", event);
|
|
10141
|
+
},
|
|
10142
|
+
onKeyup: (event) => {
|
|
10143
|
+
this.$emit("keyup", event);
|
|
10144
|
+
},
|
|
10145
|
+
onInput: (event) => {
|
|
10146
|
+
this.$emit("input", event);
|
|
10147
|
+
},
|
|
10148
|
+
onActionClick: (event) => {
|
|
10149
|
+
this.$emit("action-click", event);
|
|
10150
|
+
},
|
|
10151
|
+
onIndicatorClick: (event) => {
|
|
10152
|
+
this.$emit("indicator-click", event);
|
|
10153
|
+
}
|
|
8535
10154
|
},
|
|
8536
10155
|
[
|
|
8537
10156
|
// @ts-ignore
|
|
@@ -8687,12 +10306,24 @@ const VSwitch = defineComponent({
|
|
|
8687
10306
|
},
|
|
8688
10307
|
class: "vvd-component",
|
|
8689
10308
|
on: {
|
|
8690
|
-
click: (event) =>
|
|
8691
|
-
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
10309
|
+
click: (event) => {
|
|
10310
|
+
this.$emit("click", event);
|
|
10311
|
+
},
|
|
10312
|
+
focus: (event) => {
|
|
10313
|
+
this.$emit("focus", event);
|
|
10314
|
+
},
|
|
10315
|
+
blur: (event) => {
|
|
10316
|
+
this.$emit("blur", event);
|
|
10317
|
+
},
|
|
10318
|
+
keydown: (event) => {
|
|
10319
|
+
this.$emit("keydown", event);
|
|
10320
|
+
},
|
|
10321
|
+
keyup: (event) => {
|
|
10322
|
+
this.$emit("keyup", event);
|
|
10323
|
+
},
|
|
10324
|
+
input: (event) => {
|
|
10325
|
+
this.$emit("input", event);
|
|
10326
|
+
},
|
|
8696
10327
|
change: (event) => {
|
|
8697
10328
|
this.$emit(
|
|
8698
10329
|
"update:modelValue",
|
|
@@ -8721,12 +10352,24 @@ const VSwitch = defineComponent({
|
|
|
8721
10352
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
8722
10353
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
8723
10354
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8724
|
-
onClick: (event) =>
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
|
|
8728
|
-
|
|
8729
|
-
|
|
10355
|
+
onClick: (event) => {
|
|
10356
|
+
this.$emit("click", event);
|
|
10357
|
+
},
|
|
10358
|
+
onFocus: (event) => {
|
|
10359
|
+
this.$emit("focus", event);
|
|
10360
|
+
},
|
|
10361
|
+
onBlur: (event) => {
|
|
10362
|
+
this.$emit("blur", event);
|
|
10363
|
+
},
|
|
10364
|
+
onKeydown: (event) => {
|
|
10365
|
+
this.$emit("keydown", event);
|
|
10366
|
+
},
|
|
10367
|
+
onKeyup: (event) => {
|
|
10368
|
+
this.$emit("keyup", event);
|
|
10369
|
+
},
|
|
10370
|
+
onInput: (event) => {
|
|
10371
|
+
this.$emit("input", event);
|
|
10372
|
+
},
|
|
8730
10373
|
onChange: (event) => {
|
|
8731
10374
|
this.$emit(
|
|
8732
10375
|
"update:modelValue",
|
|
@@ -8784,6 +10427,10 @@ const VTab = defineComponent({
|
|
|
8784
10427
|
* Indicates the tab's label.
|
|
8785
10428
|
*/
|
|
8786
10429
|
label: { type: String, default: void 0 },
|
|
10430
|
+
/**
|
|
10431
|
+
* Indicates the tab's label.
|
|
10432
|
+
*/
|
|
10433
|
+
removable: { type: Boolean, default: void 0 },
|
|
8787
10434
|
tabIndex: { type: Number, default: void 0 },
|
|
8788
10435
|
ariaSelected: { type: String, default: void 0 }
|
|
8789
10436
|
},
|
|
@@ -8819,7 +10466,14 @@ const VTab = defineComponent({
|
|
|
8819
10466
|
*/
|
|
8820
10467
|
"input"
|
|
8821
10468
|
],
|
|
8822
|
-
methods: {
|
|
10469
|
+
methods: {
|
|
10470
|
+
_handleCloseClick(e) {
|
|
10471
|
+
return this.element?._handleCloseClick(e);
|
|
10472
|
+
},
|
|
10473
|
+
_onKeyDown(e) {
|
|
10474
|
+
return this.element?._onKeyDown(e);
|
|
10475
|
+
}
|
|
10476
|
+
},
|
|
8823
10477
|
setup(props, ctx) {
|
|
8824
10478
|
const componentName = registerComponent("tab", registerTab);
|
|
8825
10479
|
const element = ref(null);
|
|
@@ -8839,17 +10493,30 @@ const VTab = defineComponent({
|
|
|
8839
10493
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8840
10494
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8841
10495
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
10496
|
+
...this.removable !== void 0 ? { removable: this.removable } : {},
|
|
8842
10497
|
...this.tabIndex !== void 0 ? { tabIndex: this.tabIndex } : {},
|
|
8843
10498
|
...this.ariaSelected !== void 0 ? { "aria-selected": this.ariaSelected } : {}
|
|
8844
10499
|
},
|
|
8845
10500
|
class: "vvd-component",
|
|
8846
10501
|
on: {
|
|
8847
|
-
click: (event) =>
|
|
8848
|
-
|
|
8849
|
-
|
|
8850
|
-
|
|
8851
|
-
|
|
8852
|
-
|
|
10502
|
+
click: (event) => {
|
|
10503
|
+
this.$emit("click", event);
|
|
10504
|
+
},
|
|
10505
|
+
focus: (event) => {
|
|
10506
|
+
this.$emit("focus", event);
|
|
10507
|
+
},
|
|
10508
|
+
blur: (event) => {
|
|
10509
|
+
this.$emit("blur", event);
|
|
10510
|
+
},
|
|
10511
|
+
keydown: (event) => {
|
|
10512
|
+
this.$emit("keydown", event);
|
|
10513
|
+
},
|
|
10514
|
+
keyup: (event) => {
|
|
10515
|
+
this.$emit("keyup", event);
|
|
10516
|
+
},
|
|
10517
|
+
input: (event) => {
|
|
10518
|
+
this.$emit("input", event);
|
|
10519
|
+
}
|
|
8853
10520
|
}
|
|
8854
10521
|
},
|
|
8855
10522
|
[
|
|
@@ -8871,14 +10538,27 @@ const VTab = defineComponent({
|
|
|
8871
10538
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8872
10539
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8873
10540
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
10541
|
+
...this.removable !== void 0 && this.removable !== false ? { "^removable": this.removable } : {},
|
|
8874
10542
|
...this.tabIndex !== void 0 ? { "^tabIndex": this.tabIndex } : {},
|
|
8875
10543
|
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
8876
|
-
onClick: (event) =>
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
10544
|
+
onClick: (event) => {
|
|
10545
|
+
this.$emit("click", event);
|
|
10546
|
+
},
|
|
10547
|
+
onFocus: (event) => {
|
|
10548
|
+
this.$emit("focus", event);
|
|
10549
|
+
},
|
|
10550
|
+
onBlur: (event) => {
|
|
10551
|
+
this.$emit("blur", event);
|
|
10552
|
+
},
|
|
10553
|
+
onKeydown: (event) => {
|
|
10554
|
+
this.$emit("keydown", event);
|
|
10555
|
+
},
|
|
10556
|
+
onKeyup: (event) => {
|
|
10557
|
+
this.$emit("keyup", event);
|
|
10558
|
+
},
|
|
10559
|
+
onInput: (event) => {
|
|
10560
|
+
this.$emit("input", event);
|
|
10561
|
+
}
|
|
8882
10562
|
},
|
|
8883
10563
|
[
|
|
8884
10564
|
// @ts-ignore
|
|
@@ -8950,12 +10630,24 @@ const VTabPanel = defineComponent({
|
|
|
8950
10630
|
},
|
|
8951
10631
|
class: "vvd-component",
|
|
8952
10632
|
on: {
|
|
8953
|
-
click: (event) =>
|
|
8954
|
-
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
|
|
8958
|
-
|
|
10633
|
+
click: (event) => {
|
|
10634
|
+
this.$emit("click", event);
|
|
10635
|
+
},
|
|
10636
|
+
focus: (event) => {
|
|
10637
|
+
this.$emit("focus", event);
|
|
10638
|
+
},
|
|
10639
|
+
blur: (event) => {
|
|
10640
|
+
this.$emit("blur", event);
|
|
10641
|
+
},
|
|
10642
|
+
keydown: (event) => {
|
|
10643
|
+
this.$emit("keydown", event);
|
|
10644
|
+
},
|
|
10645
|
+
keyup: (event) => {
|
|
10646
|
+
this.$emit("keyup", event);
|
|
10647
|
+
},
|
|
10648
|
+
input: (event) => {
|
|
10649
|
+
this.$emit("input", event);
|
|
10650
|
+
}
|
|
8959
10651
|
}
|
|
8960
10652
|
},
|
|
8961
10653
|
[this.$slots.default]
|
|
@@ -8967,12 +10659,24 @@ const VTabPanel = defineComponent({
|
|
|
8967
10659
|
ref: "element",
|
|
8968
10660
|
class: "vvd-component",
|
|
8969
10661
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8970
|
-
onClick: (event) =>
|
|
8971
|
-
|
|
8972
|
-
|
|
8973
|
-
|
|
8974
|
-
|
|
8975
|
-
|
|
10662
|
+
onClick: (event) => {
|
|
10663
|
+
this.$emit("click", event);
|
|
10664
|
+
},
|
|
10665
|
+
onFocus: (event) => {
|
|
10666
|
+
this.$emit("focus", event);
|
|
10667
|
+
},
|
|
10668
|
+
onBlur: (event) => {
|
|
10669
|
+
this.$emit("blur", event);
|
|
10670
|
+
},
|
|
10671
|
+
onKeydown: (event) => {
|
|
10672
|
+
this.$emit("keydown", event);
|
|
10673
|
+
},
|
|
10674
|
+
onKeyup: (event) => {
|
|
10675
|
+
this.$emit("keyup", event);
|
|
10676
|
+
},
|
|
10677
|
+
onInput: (event) => {
|
|
10678
|
+
this.$emit("input", event);
|
|
10679
|
+
}
|
|
8976
10680
|
},
|
|
8977
10681
|
[
|
|
8978
10682
|
// @ts-ignore
|
|
@@ -9111,13 +10815,27 @@ const VTabs = defineComponent({
|
|
|
9111
10815
|
},
|
|
9112
10816
|
class: "vvd-component",
|
|
9113
10817
|
on: {
|
|
9114
|
-
click: (event) =>
|
|
9115
|
-
|
|
9116
|
-
|
|
9117
|
-
|
|
9118
|
-
|
|
9119
|
-
|
|
9120
|
-
|
|
10818
|
+
click: (event) => {
|
|
10819
|
+
this.$emit("click", event);
|
|
10820
|
+
},
|
|
10821
|
+
focus: (event) => {
|
|
10822
|
+
this.$emit("focus", event);
|
|
10823
|
+
},
|
|
10824
|
+
blur: (event) => {
|
|
10825
|
+
this.$emit("blur", event);
|
|
10826
|
+
},
|
|
10827
|
+
keydown: (event) => {
|
|
10828
|
+
this.$emit("keydown", event);
|
|
10829
|
+
},
|
|
10830
|
+
keyup: (event) => {
|
|
10831
|
+
this.$emit("keyup", event);
|
|
10832
|
+
},
|
|
10833
|
+
input: (event) => {
|
|
10834
|
+
this.$emit("input", event);
|
|
10835
|
+
},
|
|
10836
|
+
change: (event) => {
|
|
10837
|
+
this.$emit("change", event);
|
|
10838
|
+
}
|
|
9121
10839
|
}
|
|
9122
10840
|
},
|
|
9123
10841
|
[this.$slots.default]
|
|
@@ -9135,13 +10853,27 @@ const VTabs = defineComponent({
|
|
|
9135
10853
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
9136
10854
|
...this.gutters !== void 0 ? { "^gutters": this.gutters } : {},
|
|
9137
10855
|
...this.scrollablePanel !== void 0 && this.scrollablePanel !== false ? { "^scrollable-panel": this.scrollablePanel } : {},
|
|
9138
|
-
onClick: (event) =>
|
|
9139
|
-
|
|
9140
|
-
|
|
9141
|
-
|
|
9142
|
-
|
|
9143
|
-
|
|
9144
|
-
|
|
10856
|
+
onClick: (event) => {
|
|
10857
|
+
this.$emit("click", event);
|
|
10858
|
+
},
|
|
10859
|
+
onFocus: (event) => {
|
|
10860
|
+
this.$emit("focus", event);
|
|
10861
|
+
},
|
|
10862
|
+
onBlur: (event) => {
|
|
10863
|
+
this.$emit("blur", event);
|
|
10864
|
+
},
|
|
10865
|
+
onKeydown: (event) => {
|
|
10866
|
+
this.$emit("keydown", event);
|
|
10867
|
+
},
|
|
10868
|
+
onKeyup: (event) => {
|
|
10869
|
+
this.$emit("keyup", event);
|
|
10870
|
+
},
|
|
10871
|
+
onInput: (event) => {
|
|
10872
|
+
this.$emit("input", event);
|
|
10873
|
+
},
|
|
10874
|
+
onChange: (event) => {
|
|
10875
|
+
this.$emit("change", event);
|
|
10876
|
+
}
|
|
9145
10877
|
},
|
|
9146
10878
|
[
|
|
9147
10879
|
// @ts-ignore
|
|
@@ -9283,14 +11015,30 @@ const VTag = defineComponent({
|
|
|
9283
11015
|
},
|
|
9284
11016
|
class: "vvd-component",
|
|
9285
11017
|
on: {
|
|
9286
|
-
click: (event) =>
|
|
9287
|
-
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9293
|
-
|
|
11018
|
+
click: (event) => {
|
|
11019
|
+
this.$emit("click", event);
|
|
11020
|
+
},
|
|
11021
|
+
focus: (event) => {
|
|
11022
|
+
this.$emit("focus", event);
|
|
11023
|
+
},
|
|
11024
|
+
blur: (event) => {
|
|
11025
|
+
this.$emit("blur", event);
|
|
11026
|
+
},
|
|
11027
|
+
keydown: (event) => {
|
|
11028
|
+
this.$emit("keydown", event);
|
|
11029
|
+
},
|
|
11030
|
+
keyup: (event) => {
|
|
11031
|
+
this.$emit("keyup", event);
|
|
11032
|
+
},
|
|
11033
|
+
input: (event) => {
|
|
11034
|
+
this.$emit("input", event);
|
|
11035
|
+
},
|
|
11036
|
+
"selected-change": (event) => {
|
|
11037
|
+
this.$emit("selected-change", event);
|
|
11038
|
+
},
|
|
11039
|
+
removed: (event) => {
|
|
11040
|
+
this.$emit("removed", event);
|
|
11041
|
+
}
|
|
9294
11042
|
}
|
|
9295
11043
|
},
|
|
9296
11044
|
[
|
|
@@ -9315,14 +11063,30 @@ const VTag = defineComponent({
|
|
|
9315
11063
|
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
9316
11064
|
...this.selectable !== void 0 && this.selectable !== false ? { "^selectable": this.selectable } : {},
|
|
9317
11065
|
...this.selected !== void 0 && this.selected !== false ? { "^selected": this.selected } : {},
|
|
9318
|
-
onClick: (event) =>
|
|
9319
|
-
|
|
9320
|
-
|
|
9321
|
-
|
|
9322
|
-
|
|
9323
|
-
|
|
9324
|
-
|
|
9325
|
-
|
|
11066
|
+
onClick: (event) => {
|
|
11067
|
+
this.$emit("click", event);
|
|
11068
|
+
},
|
|
11069
|
+
onFocus: (event) => {
|
|
11070
|
+
this.$emit("focus", event);
|
|
11071
|
+
},
|
|
11072
|
+
onBlur: (event) => {
|
|
11073
|
+
this.$emit("blur", event);
|
|
11074
|
+
},
|
|
11075
|
+
onKeydown: (event) => {
|
|
11076
|
+
this.$emit("keydown", event);
|
|
11077
|
+
},
|
|
11078
|
+
onKeyup: (event) => {
|
|
11079
|
+
this.$emit("keyup", event);
|
|
11080
|
+
},
|
|
11081
|
+
onInput: (event) => {
|
|
11082
|
+
this.$emit("input", event);
|
|
11083
|
+
},
|
|
11084
|
+
onSelectedChange: (event) => {
|
|
11085
|
+
this.$emit("selected-change", event);
|
|
11086
|
+
},
|
|
11087
|
+
onRemoved: (event) => {
|
|
11088
|
+
this.$emit("removed", event);
|
|
11089
|
+
}
|
|
9326
11090
|
},
|
|
9327
11091
|
[
|
|
9328
11092
|
// @ts-ignore
|
|
@@ -9396,12 +11160,24 @@ const VTagGroup = defineComponent({
|
|
|
9396
11160
|
},
|
|
9397
11161
|
class: "vvd-component",
|
|
9398
11162
|
on: {
|
|
9399
|
-
click: (event) =>
|
|
9400
|
-
|
|
9401
|
-
|
|
9402
|
-
|
|
9403
|
-
|
|
9404
|
-
|
|
11163
|
+
click: (event) => {
|
|
11164
|
+
this.$emit("click", event);
|
|
11165
|
+
},
|
|
11166
|
+
focus: (event) => {
|
|
11167
|
+
this.$emit("focus", event);
|
|
11168
|
+
},
|
|
11169
|
+
blur: (event) => {
|
|
11170
|
+
this.$emit("blur", event);
|
|
11171
|
+
},
|
|
11172
|
+
keydown: (event) => {
|
|
11173
|
+
this.$emit("keydown", event);
|
|
11174
|
+
},
|
|
11175
|
+
keyup: (event) => {
|
|
11176
|
+
this.$emit("keyup", event);
|
|
11177
|
+
},
|
|
11178
|
+
input: (event) => {
|
|
11179
|
+
this.$emit("input", event);
|
|
11180
|
+
}
|
|
9405
11181
|
}
|
|
9406
11182
|
},
|
|
9407
11183
|
[this.$slots.default]
|
|
@@ -9414,12 +11190,24 @@ const VTagGroup = defineComponent({
|
|
|
9414
11190
|
class: "vvd-component",
|
|
9415
11191
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9416
11192
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
9417
|
-
onClick: (event) =>
|
|
9418
|
-
|
|
9419
|
-
|
|
9420
|
-
|
|
9421
|
-
|
|
9422
|
-
|
|
11193
|
+
onClick: (event) => {
|
|
11194
|
+
this.$emit("click", event);
|
|
11195
|
+
},
|
|
11196
|
+
onFocus: (event) => {
|
|
11197
|
+
this.$emit("focus", event);
|
|
11198
|
+
},
|
|
11199
|
+
onBlur: (event) => {
|
|
11200
|
+
this.$emit("blur", event);
|
|
11201
|
+
},
|
|
11202
|
+
onKeydown: (event) => {
|
|
11203
|
+
this.$emit("keydown", event);
|
|
11204
|
+
},
|
|
11205
|
+
onKeyup: (event) => {
|
|
11206
|
+
this.$emit("keyup", event);
|
|
11207
|
+
},
|
|
11208
|
+
onInput: (event) => {
|
|
11209
|
+
this.$emit("input", event);
|
|
11210
|
+
}
|
|
9423
11211
|
},
|
|
9424
11212
|
[
|
|
9425
11213
|
// @ts-ignore
|
|
@@ -9646,11 +11434,21 @@ const VTextArea = defineComponent({
|
|
|
9646
11434
|
},
|
|
9647
11435
|
class: "vvd-component",
|
|
9648
11436
|
on: {
|
|
9649
|
-
click: (event) =>
|
|
9650
|
-
|
|
9651
|
-
|
|
9652
|
-
|
|
9653
|
-
|
|
11437
|
+
click: (event) => {
|
|
11438
|
+
this.$emit("click", event);
|
|
11439
|
+
},
|
|
11440
|
+
focus: (event) => {
|
|
11441
|
+
this.$emit("focus", event);
|
|
11442
|
+
},
|
|
11443
|
+
blur: (event) => {
|
|
11444
|
+
this.$emit("blur", event);
|
|
11445
|
+
},
|
|
11446
|
+
keydown: (event) => {
|
|
11447
|
+
this.$emit("keydown", event);
|
|
11448
|
+
},
|
|
11449
|
+
keyup: (event) => {
|
|
11450
|
+
this.$emit("keyup", event);
|
|
11451
|
+
},
|
|
9654
11452
|
input: (event) => {
|
|
9655
11453
|
this.$emit(
|
|
9656
11454
|
"update:modelValue",
|
|
@@ -9658,7 +11456,9 @@ const VTextArea = defineComponent({
|
|
|
9658
11456
|
);
|
|
9659
11457
|
this.$emit("input", event);
|
|
9660
11458
|
},
|
|
9661
|
-
change: (event) =>
|
|
11459
|
+
change: (event) => {
|
|
11460
|
+
this.$emit("change", event);
|
|
11461
|
+
}
|
|
9662
11462
|
}
|
|
9663
11463
|
},
|
|
9664
11464
|
[
|
|
@@ -9696,11 +11496,21 @@ const VTextArea = defineComponent({
|
|
|
9696
11496
|
...this.rows !== void 0 ? { "^rows": this.rows } : {},
|
|
9697
11497
|
...this.spellcheck !== void 0 && this.spellcheck !== false ? { "^spellcheck": this.spellcheck } : {},
|
|
9698
11498
|
...this.wrap !== void 0 ? { "^wrap": this.wrap } : {},
|
|
9699
|
-
onClick: (event) =>
|
|
9700
|
-
|
|
9701
|
-
|
|
9702
|
-
|
|
9703
|
-
|
|
11499
|
+
onClick: (event) => {
|
|
11500
|
+
this.$emit("click", event);
|
|
11501
|
+
},
|
|
11502
|
+
onFocus: (event) => {
|
|
11503
|
+
this.$emit("focus", event);
|
|
11504
|
+
},
|
|
11505
|
+
onBlur: (event) => {
|
|
11506
|
+
this.$emit("blur", event);
|
|
11507
|
+
},
|
|
11508
|
+
onKeydown: (event) => {
|
|
11509
|
+
this.$emit("keydown", event);
|
|
11510
|
+
},
|
|
11511
|
+
onKeyup: (event) => {
|
|
11512
|
+
this.$emit("keyup", event);
|
|
11513
|
+
},
|
|
9704
11514
|
onInput: (event) => {
|
|
9705
11515
|
this.$emit(
|
|
9706
11516
|
"update:modelValue",
|
|
@@ -9708,7 +11518,9 @@ const VTextArea = defineComponent({
|
|
|
9708
11518
|
);
|
|
9709
11519
|
this.$emit("input", event);
|
|
9710
11520
|
},
|
|
9711
|
-
onChange: (event) =>
|
|
11521
|
+
onChange: (event) => {
|
|
11522
|
+
this.$emit("change", event);
|
|
11523
|
+
}
|
|
9712
11524
|
},
|
|
9713
11525
|
[
|
|
9714
11526
|
// @ts-ignore
|
|
@@ -9840,7 +11652,14 @@ const VTextField = defineComponent({
|
|
|
9840
11652
|
default: void 0
|
|
9841
11653
|
},
|
|
9842
11654
|
shape: { type: String, default: void 0 },
|
|
9843
|
-
autoComplete: { type: String, default: void 0 }
|
|
11655
|
+
autoComplete: { type: String, default: void 0 },
|
|
11656
|
+
/**
|
|
11657
|
+
* The size the text-field should have.
|
|
11658
|
+
*/
|
|
11659
|
+
scale: {
|
|
11660
|
+
type: String,
|
|
11661
|
+
default: void 0
|
|
11662
|
+
}
|
|
9844
11663
|
},
|
|
9845
11664
|
emits: [
|
|
9846
11665
|
/**
|
|
@@ -9937,15 +11756,26 @@ const VTextField = defineComponent({
|
|
|
9937
11756
|
...this.spellcheck !== void 0 ? { spellcheck: this.spellcheck } : {},
|
|
9938
11757
|
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
9939
11758
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
9940
|
-
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {}
|
|
11759
|
+
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {},
|
|
11760
|
+
...this.scale !== void 0 ? { scale: this.scale } : {}
|
|
9941
11761
|
},
|
|
9942
11762
|
class: "vvd-component",
|
|
9943
11763
|
on: {
|
|
9944
|
-
click: (event) =>
|
|
9945
|
-
|
|
9946
|
-
|
|
9947
|
-
|
|
9948
|
-
|
|
11764
|
+
click: (event) => {
|
|
11765
|
+
this.$emit("click", event);
|
|
11766
|
+
},
|
|
11767
|
+
focus: (event) => {
|
|
11768
|
+
this.$emit("focus", event);
|
|
11769
|
+
},
|
|
11770
|
+
blur: (event) => {
|
|
11771
|
+
this.$emit("blur", event);
|
|
11772
|
+
},
|
|
11773
|
+
keydown: (event) => {
|
|
11774
|
+
this.$emit("keydown", event);
|
|
11775
|
+
},
|
|
11776
|
+
keyup: (event) => {
|
|
11777
|
+
this.$emit("keyup", event);
|
|
11778
|
+
},
|
|
9949
11779
|
input: (event) => {
|
|
9950
11780
|
this.$emit(
|
|
9951
11781
|
"update:modelValue",
|
|
@@ -9953,7 +11783,9 @@ const VTextField = defineComponent({
|
|
|
9953
11783
|
);
|
|
9954
11784
|
this.$emit("input", event);
|
|
9955
11785
|
},
|
|
9956
|
-
change: (event) =>
|
|
11786
|
+
change: (event) => {
|
|
11787
|
+
this.$emit("change", event);
|
|
11788
|
+
}
|
|
9957
11789
|
}
|
|
9958
11790
|
},
|
|
9959
11791
|
[
|
|
@@ -10000,11 +11832,22 @@ const VTextField = defineComponent({
|
|
|
10000
11832
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
10001
11833
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
10002
11834
|
...this.autoComplete !== void 0 ? { "^autoComplete": this.autoComplete } : {},
|
|
10003
|
-
|
|
10004
|
-
|
|
10005
|
-
|
|
10006
|
-
|
|
10007
|
-
|
|
11835
|
+
...this.scale !== void 0 ? { "^scale": this.scale } : {},
|
|
11836
|
+
onClick: (event) => {
|
|
11837
|
+
this.$emit("click", event);
|
|
11838
|
+
},
|
|
11839
|
+
onFocus: (event) => {
|
|
11840
|
+
this.$emit("focus", event);
|
|
11841
|
+
},
|
|
11842
|
+
onBlur: (event) => {
|
|
11843
|
+
this.$emit("blur", event);
|
|
11844
|
+
},
|
|
11845
|
+
onKeydown: (event) => {
|
|
11846
|
+
this.$emit("keydown", event);
|
|
11847
|
+
},
|
|
11848
|
+
onKeyup: (event) => {
|
|
11849
|
+
this.$emit("keyup", event);
|
|
11850
|
+
},
|
|
10008
11851
|
onInput: (event) => {
|
|
10009
11852
|
this.$emit(
|
|
10010
11853
|
"update:modelValue",
|
|
@@ -10012,7 +11855,9 @@ const VTextField = defineComponent({
|
|
|
10012
11855
|
);
|
|
10013
11856
|
this.$emit("input", event);
|
|
10014
11857
|
},
|
|
10015
|
-
onChange: (event) =>
|
|
11858
|
+
onChange: (event) => {
|
|
11859
|
+
this.$emit("change", event);
|
|
11860
|
+
}
|
|
10016
11861
|
},
|
|
10017
11862
|
[
|
|
10018
11863
|
// @ts-ignore
|
|
@@ -10188,11 +12033,21 @@ const VTimePicker = defineComponent({
|
|
|
10188
12033
|
},
|
|
10189
12034
|
class: "vvd-component",
|
|
10190
12035
|
on: {
|
|
10191
|
-
click: (event) =>
|
|
10192
|
-
|
|
10193
|
-
|
|
10194
|
-
|
|
10195
|
-
|
|
12036
|
+
click: (event) => {
|
|
12037
|
+
this.$emit("click", event);
|
|
12038
|
+
},
|
|
12039
|
+
focus: (event) => {
|
|
12040
|
+
this.$emit("focus", event);
|
|
12041
|
+
},
|
|
12042
|
+
blur: (event) => {
|
|
12043
|
+
this.$emit("blur", event);
|
|
12044
|
+
},
|
|
12045
|
+
keydown: (event) => {
|
|
12046
|
+
this.$emit("keydown", event);
|
|
12047
|
+
},
|
|
12048
|
+
keyup: (event) => {
|
|
12049
|
+
this.$emit("keyup", event);
|
|
12050
|
+
},
|
|
10196
12051
|
input: (event) => {
|
|
10197
12052
|
this.$emit(
|
|
10198
12053
|
"update:modelValue",
|
|
@@ -10200,7 +12055,9 @@ const VTimePicker = defineComponent({
|
|
|
10200
12055
|
);
|
|
10201
12056
|
this.$emit("input", event);
|
|
10202
12057
|
},
|
|
10203
|
-
change: (event) =>
|
|
12058
|
+
change: (event) => {
|
|
12059
|
+
this.$emit("change", event);
|
|
12060
|
+
}
|
|
10204
12061
|
}
|
|
10205
12062
|
},
|
|
10206
12063
|
[
|
|
@@ -10230,11 +12087,21 @@ const VTimePicker = defineComponent({
|
|
|
10230
12087
|
...this.clock !== void 0 ? { "^clock": this.clock } : {},
|
|
10231
12088
|
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
10232
12089
|
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
10233
|
-
onClick: (event) =>
|
|
10234
|
-
|
|
10235
|
-
|
|
10236
|
-
|
|
10237
|
-
|
|
12090
|
+
onClick: (event) => {
|
|
12091
|
+
this.$emit("click", event);
|
|
12092
|
+
},
|
|
12093
|
+
onFocus: (event) => {
|
|
12094
|
+
this.$emit("focus", event);
|
|
12095
|
+
},
|
|
12096
|
+
onBlur: (event) => {
|
|
12097
|
+
this.$emit("blur", event);
|
|
12098
|
+
},
|
|
12099
|
+
onKeydown: (event) => {
|
|
12100
|
+
this.$emit("keydown", event);
|
|
12101
|
+
},
|
|
12102
|
+
onKeyup: (event) => {
|
|
12103
|
+
this.$emit("keyup", event);
|
|
12104
|
+
},
|
|
10238
12105
|
onInput: (event) => {
|
|
10239
12106
|
this.$emit(
|
|
10240
12107
|
"update:modelValue",
|
|
@@ -10242,7 +12109,9 @@ const VTimePicker = defineComponent({
|
|
|
10242
12109
|
);
|
|
10243
12110
|
this.$emit("input", event);
|
|
10244
12111
|
},
|
|
10245
|
-
onChange: (event) =>
|
|
12112
|
+
onChange: (event) => {
|
|
12113
|
+
this.$emit("change", event);
|
|
12114
|
+
}
|
|
10246
12115
|
},
|
|
10247
12116
|
[
|
|
10248
12117
|
// @ts-ignore
|
|
@@ -10351,12 +12220,24 @@ const VToggletip = defineComponent({
|
|
|
10351
12220
|
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
10352
12221
|
},
|
|
10353
12222
|
on: {
|
|
10354
|
-
click: (event) =>
|
|
10355
|
-
|
|
10356
|
-
|
|
10357
|
-
|
|
10358
|
-
|
|
10359
|
-
|
|
12223
|
+
click: (event) => {
|
|
12224
|
+
this.$emit("click", event);
|
|
12225
|
+
},
|
|
12226
|
+
focus: (event) => {
|
|
12227
|
+
this.$emit("focus", event);
|
|
12228
|
+
},
|
|
12229
|
+
blur: (event) => {
|
|
12230
|
+
this.$emit("blur", event);
|
|
12231
|
+
},
|
|
12232
|
+
keydown: (event) => {
|
|
12233
|
+
this.$emit("keydown", event);
|
|
12234
|
+
},
|
|
12235
|
+
keyup: (event) => {
|
|
12236
|
+
this.$emit("keyup", event);
|
|
12237
|
+
},
|
|
12238
|
+
input: (event) => {
|
|
12239
|
+
this.$emit("input", event);
|
|
12240
|
+
}
|
|
10360
12241
|
}
|
|
10361
12242
|
},
|
|
10362
12243
|
[
|
|
@@ -10379,12 +12260,24 @@ const VToggletip = defineComponent({
|
|
|
10379
12260
|
...this.alternate !== void 0 && this.alternate !== false ? { "^alternate": this.alternate } : {},
|
|
10380
12261
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10381
12262
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
10382
|
-
onClick: (event) =>
|
|
10383
|
-
|
|
10384
|
-
|
|
10385
|
-
|
|
10386
|
-
|
|
10387
|
-
|
|
12263
|
+
onClick: (event) => {
|
|
12264
|
+
this.$emit("click", event);
|
|
12265
|
+
},
|
|
12266
|
+
onFocus: (event) => {
|
|
12267
|
+
this.$emit("focus", event);
|
|
12268
|
+
},
|
|
12269
|
+
onBlur: (event) => {
|
|
12270
|
+
this.$emit("blur", event);
|
|
12271
|
+
},
|
|
12272
|
+
onKeydown: (event) => {
|
|
12273
|
+
this.$emit("keydown", event);
|
|
12274
|
+
},
|
|
12275
|
+
onKeyup: (event) => {
|
|
12276
|
+
this.$emit("keyup", event);
|
|
12277
|
+
},
|
|
12278
|
+
onInput: (event) => {
|
|
12279
|
+
this.$emit("input", event);
|
|
12280
|
+
}
|
|
10388
12281
|
},
|
|
10389
12282
|
[
|
|
10390
12283
|
// @ts-ignore
|
|
@@ -10481,12 +12374,24 @@ const VTooltip = defineComponent({
|
|
|
10481
12374
|
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
10482
12375
|
},
|
|
10483
12376
|
on: {
|
|
10484
|
-
click: (event) =>
|
|
10485
|
-
|
|
10486
|
-
|
|
10487
|
-
|
|
10488
|
-
|
|
10489
|
-
|
|
12377
|
+
click: (event) => {
|
|
12378
|
+
this.$emit("click", event);
|
|
12379
|
+
},
|
|
12380
|
+
focus: (event) => {
|
|
12381
|
+
this.$emit("focus", event);
|
|
12382
|
+
},
|
|
12383
|
+
blur: (event) => {
|
|
12384
|
+
this.$emit("blur", event);
|
|
12385
|
+
},
|
|
12386
|
+
keydown: (event) => {
|
|
12387
|
+
this.$emit("keydown", event);
|
|
12388
|
+
},
|
|
12389
|
+
keyup: (event) => {
|
|
12390
|
+
this.$emit("keyup", event);
|
|
12391
|
+
},
|
|
12392
|
+
input: (event) => {
|
|
12393
|
+
this.$emit("input", event);
|
|
12394
|
+
}
|
|
10490
12395
|
}
|
|
10491
12396
|
},
|
|
10492
12397
|
[
|
|
@@ -10506,12 +12411,24 @@ const VTooltip = defineComponent({
|
|
|
10506
12411
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
10507
12412
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10508
12413
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
10509
|
-
onClick: (event) =>
|
|
10510
|
-
|
|
10511
|
-
|
|
10512
|
-
|
|
10513
|
-
|
|
10514
|
-
|
|
12414
|
+
onClick: (event) => {
|
|
12415
|
+
this.$emit("click", event);
|
|
12416
|
+
},
|
|
12417
|
+
onFocus: (event) => {
|
|
12418
|
+
this.$emit("focus", event);
|
|
12419
|
+
},
|
|
12420
|
+
onBlur: (event) => {
|
|
12421
|
+
this.$emit("blur", event);
|
|
12422
|
+
},
|
|
12423
|
+
onKeydown: (event) => {
|
|
12424
|
+
this.$emit("keydown", event);
|
|
12425
|
+
},
|
|
12426
|
+
onKeyup: (event) => {
|
|
12427
|
+
this.$emit("keyup", event);
|
|
12428
|
+
},
|
|
12429
|
+
onInput: (event) => {
|
|
12430
|
+
this.$emit("input", event);
|
|
12431
|
+
}
|
|
10515
12432
|
},
|
|
10516
12433
|
[
|
|
10517
12434
|
// @ts-ignore
|
|
@@ -10619,14 +12536,30 @@ const VTreeItem = defineComponent({
|
|
|
10619
12536
|
},
|
|
10620
12537
|
class: "vvd-component",
|
|
10621
12538
|
on: {
|
|
10622
|
-
click: (event) =>
|
|
10623
|
-
|
|
10624
|
-
|
|
10625
|
-
|
|
10626
|
-
|
|
10627
|
-
|
|
10628
|
-
|
|
10629
|
-
|
|
12539
|
+
click: (event) => {
|
|
12540
|
+
this.$emit("click", event);
|
|
12541
|
+
},
|
|
12542
|
+
focus: (event) => {
|
|
12543
|
+
this.$emit("focus", event);
|
|
12544
|
+
},
|
|
12545
|
+
blur: (event) => {
|
|
12546
|
+
this.$emit("blur", event);
|
|
12547
|
+
},
|
|
12548
|
+
keydown: (event) => {
|
|
12549
|
+
this.$emit("keydown", event);
|
|
12550
|
+
},
|
|
12551
|
+
keyup: (event) => {
|
|
12552
|
+
this.$emit("keyup", event);
|
|
12553
|
+
},
|
|
12554
|
+
input: (event) => {
|
|
12555
|
+
this.$emit("input", event);
|
|
12556
|
+
},
|
|
12557
|
+
"expanded-change": (event) => {
|
|
12558
|
+
this.$emit("expanded-change", event);
|
|
12559
|
+
},
|
|
12560
|
+
"selected-change": (event) => {
|
|
12561
|
+
this.$emit("selected-change", event);
|
|
12562
|
+
}
|
|
10630
12563
|
}
|
|
10631
12564
|
},
|
|
10632
12565
|
[
|
|
@@ -10649,14 +12582,30 @@ const VTreeItem = defineComponent({
|
|
|
10649
12582
|
...this.selected !== void 0 && this.selected !== false ? { "^selected": this.selected } : {},
|
|
10650
12583
|
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
10651
12584
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
10652
|
-
onClick: (event) =>
|
|
10653
|
-
|
|
10654
|
-
|
|
10655
|
-
|
|
10656
|
-
|
|
10657
|
-
|
|
10658
|
-
|
|
10659
|
-
|
|
12585
|
+
onClick: (event) => {
|
|
12586
|
+
this.$emit("click", event);
|
|
12587
|
+
},
|
|
12588
|
+
onFocus: (event) => {
|
|
12589
|
+
this.$emit("focus", event);
|
|
12590
|
+
},
|
|
12591
|
+
onBlur: (event) => {
|
|
12592
|
+
this.$emit("blur", event);
|
|
12593
|
+
},
|
|
12594
|
+
onKeydown: (event) => {
|
|
12595
|
+
this.$emit("keydown", event);
|
|
12596
|
+
},
|
|
12597
|
+
onKeyup: (event) => {
|
|
12598
|
+
this.$emit("keyup", event);
|
|
12599
|
+
},
|
|
12600
|
+
onInput: (event) => {
|
|
12601
|
+
this.$emit("input", event);
|
|
12602
|
+
},
|
|
12603
|
+
onExpandedChange: (event) => {
|
|
12604
|
+
this.$emit("expanded-change", event);
|
|
12605
|
+
},
|
|
12606
|
+
onSelectedChange: (event) => {
|
|
12607
|
+
this.$emit("selected-change", event);
|
|
12608
|
+
}
|
|
10660
12609
|
},
|
|
10661
12610
|
[
|
|
10662
12611
|
// @ts-ignore
|
|
@@ -10739,12 +12688,24 @@ const VTreeView = defineComponent({
|
|
|
10739
12688
|
},
|
|
10740
12689
|
class: "vvd-component",
|
|
10741
12690
|
on: {
|
|
10742
|
-
click: (event) =>
|
|
10743
|
-
|
|
10744
|
-
|
|
10745
|
-
|
|
10746
|
-
|
|
10747
|
-
|
|
12691
|
+
click: (event) => {
|
|
12692
|
+
this.$emit("click", event);
|
|
12693
|
+
},
|
|
12694
|
+
focus: (event) => {
|
|
12695
|
+
this.$emit("focus", event);
|
|
12696
|
+
},
|
|
12697
|
+
blur: (event) => {
|
|
12698
|
+
this.$emit("blur", event);
|
|
12699
|
+
},
|
|
12700
|
+
keydown: (event) => {
|
|
12701
|
+
this.$emit("keydown", event);
|
|
12702
|
+
},
|
|
12703
|
+
keyup: (event) => {
|
|
12704
|
+
this.$emit("keyup", event);
|
|
12705
|
+
},
|
|
12706
|
+
input: (event) => {
|
|
12707
|
+
this.$emit("input", event);
|
|
12708
|
+
}
|
|
10748
12709
|
}
|
|
10749
12710
|
},
|
|
10750
12711
|
[this.$slots.default]
|
|
@@ -10757,12 +12718,24 @@ const VTreeView = defineComponent({
|
|
|
10757
12718
|
class: "vvd-component",
|
|
10758
12719
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10759
12720
|
...this.renderCollapsedNodes !== void 0 && this.renderCollapsedNodes !== false ? { "^render-collapsed-nodes": this.renderCollapsedNodes } : {},
|
|
10760
|
-
onClick: (event) =>
|
|
10761
|
-
|
|
10762
|
-
|
|
10763
|
-
|
|
10764
|
-
|
|
10765
|
-
|
|
12721
|
+
onClick: (event) => {
|
|
12722
|
+
this.$emit("click", event);
|
|
12723
|
+
},
|
|
12724
|
+
onFocus: (event) => {
|
|
12725
|
+
this.$emit("focus", event);
|
|
12726
|
+
},
|
|
12727
|
+
onBlur: (event) => {
|
|
12728
|
+
this.$emit("blur", event);
|
|
12729
|
+
},
|
|
12730
|
+
onKeydown: (event) => {
|
|
12731
|
+
this.$emit("keydown", event);
|
|
12732
|
+
},
|
|
12733
|
+
onKeyup: (event) => {
|
|
12734
|
+
this.$emit("keyup", event);
|
|
12735
|
+
},
|
|
12736
|
+
onInput: (event) => {
|
|
12737
|
+
this.$emit("input", event);
|
|
12738
|
+
}
|
|
10766
12739
|
},
|
|
10767
12740
|
[
|
|
10768
12741
|
// @ts-ignore
|
|
@@ -10883,15 +12856,33 @@ const VVideoPlayer = defineComponent({
|
|
|
10883
12856
|
},
|
|
10884
12857
|
class: "vvd-component",
|
|
10885
12858
|
on: {
|
|
10886
|
-
click: (event) =>
|
|
10887
|
-
|
|
10888
|
-
|
|
10889
|
-
|
|
10890
|
-
|
|
10891
|
-
|
|
10892
|
-
|
|
10893
|
-
|
|
10894
|
-
|
|
12859
|
+
click: (event) => {
|
|
12860
|
+
this.$emit("click", event);
|
|
12861
|
+
},
|
|
12862
|
+
focus: (event) => {
|
|
12863
|
+
this.$emit("focus", event);
|
|
12864
|
+
},
|
|
12865
|
+
blur: (event) => {
|
|
12866
|
+
this.$emit("blur", event);
|
|
12867
|
+
},
|
|
12868
|
+
keydown: (event) => {
|
|
12869
|
+
this.$emit("keydown", event);
|
|
12870
|
+
},
|
|
12871
|
+
keyup: (event) => {
|
|
12872
|
+
this.$emit("keyup", event);
|
|
12873
|
+
},
|
|
12874
|
+
input: (event) => {
|
|
12875
|
+
this.$emit("input", event);
|
|
12876
|
+
},
|
|
12877
|
+
play: (event) => {
|
|
12878
|
+
this.$emit("play", event);
|
|
12879
|
+
},
|
|
12880
|
+
pause: (event) => {
|
|
12881
|
+
this.$emit("pause", event);
|
|
12882
|
+
},
|
|
12883
|
+
ended: (event) => {
|
|
12884
|
+
this.$emit("ended", event);
|
|
12885
|
+
}
|
|
10895
12886
|
}
|
|
10896
12887
|
},
|
|
10897
12888
|
[this.$slots.default]
|
|
@@ -10909,15 +12900,33 @@ const VVideoPlayer = defineComponent({
|
|
|
10909
12900
|
...this.loop !== void 0 && this.loop !== false ? { "^loop": this.loop } : {},
|
|
10910
12901
|
...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
|
|
10911
12902
|
...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
|
|
10912
|
-
onClick: (event) =>
|
|
10913
|
-
|
|
10914
|
-
|
|
10915
|
-
|
|
10916
|
-
|
|
10917
|
-
|
|
10918
|
-
|
|
10919
|
-
|
|
10920
|
-
|
|
12903
|
+
onClick: (event) => {
|
|
12904
|
+
this.$emit("click", event);
|
|
12905
|
+
},
|
|
12906
|
+
onFocus: (event) => {
|
|
12907
|
+
this.$emit("focus", event);
|
|
12908
|
+
},
|
|
12909
|
+
onBlur: (event) => {
|
|
12910
|
+
this.$emit("blur", event);
|
|
12911
|
+
},
|
|
12912
|
+
onKeydown: (event) => {
|
|
12913
|
+
this.$emit("keydown", event);
|
|
12914
|
+
},
|
|
12915
|
+
onKeyup: (event) => {
|
|
12916
|
+
this.$emit("keyup", event);
|
|
12917
|
+
},
|
|
12918
|
+
onInput: (event) => {
|
|
12919
|
+
this.$emit("input", event);
|
|
12920
|
+
},
|
|
12921
|
+
onPlay: (event) => {
|
|
12922
|
+
this.$emit("play", event);
|
|
12923
|
+
},
|
|
12924
|
+
onPause: (event) => {
|
|
12925
|
+
this.$emit("pause", event);
|
|
12926
|
+
},
|
|
12927
|
+
onEnded: (event) => {
|
|
12928
|
+
this.$emit("ended", event);
|
|
12929
|
+
}
|
|
10921
12930
|
},
|
|
10922
12931
|
[
|
|
10923
12932
|
// @ts-ignore
|
|
@@ -12151,17 +14160,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
12151
14160
|
return Icon2;
|
|
12152
14161
|
})(Icon || {});
|
|
12153
14162
|
|
|
12154
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 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";
|
|
14163
|
+
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 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";
|
|
12155
14164
|
|
|
12156
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 01 Aug 2024 12:52:05 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";
|
|
14165
|
+
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 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";
|
|
12157
14166
|
|
|
12158
14167
|
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";
|
|
12159
14168
|
|
|
12160
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Thu,
|
|
14169
|
+
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 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";
|
|
12161
14170
|
|
|
12162
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Thu,
|
|
14171
|
+
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 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";
|
|
12163
14172
|
|
|
12164
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Thu,
|
|
14173
|
+
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Thu, 03 Oct 2024 10:57:19 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";
|
|
12165
14174
|
|
|
12166
14175
|
const theme = {
|
|
12167
14176
|
name: "core/theme",
|
|
@@ -12259,4 +14268,4 @@ const vivid3 = {
|
|
|
12259
14268
|
}
|
|
12260
14269
|
};
|
|
12261
14270
|
|
|
12262
|
-
export { Icon, VAccordion, VAccordionItem, VActionGroup, VAlert, VAudioPlayer, VAvatar, VBadge, VBanner, VBreadcrumb, VBreadcrumbItem, VButton, VCalendar, VCalendarEvent, VCard, VCheckbox, VCombobox, VDataGrid, VDataGridCell, VDataGridRow, VDatePicker, VDateRangePicker, VDialPad, VDialog, VDivider, VEmptyState, VFab, VFilePicker, VHeader, VIcon, VLayout, VMenu, VMenuItem, VNav, VNavDisclosure, VNavItem, VNote, VNumberField, VOption, VPagination, VProgress, VProgressRing, VRadio, VRadioGroup, VRangeSlider, VSelect, VSelectableBox, VSideDrawer, VSlider, VSplitButton, VSwitch, VTab, VTabPanel, VTabs, VTag, VTagGroup, VTextArea, VTextField, VTimePicker, VToggletip, VTooltip, VTreeItem, VTreeView, VVideoPlayer, optionalStyles, setCustomComponentPrefix, vivid3 };
|
|
14271
|
+
export { Icon, VAccordion, VAccordionItem, VActionGroup, VAlert, VAudioPlayer, VAvatar, VBadge, VBanner, VBreadcrumb, VBreadcrumbItem, VButton, VCalendar, VCalendarEvent, VCard, VCheckbox, VCombobox, VDataGrid, VDataGridCell, VDataGridRow, VDatePicker, VDateRangePicker, VDialPad, VDialog, VDivider, VEmptyState, VFab, VFilePicker, VHeader, VIcon, VLayout, VMenu, VMenuItem, VNav, VNavDisclosure, VNavItem, VNote, VNumberField, VOption, VPagination, VProgress, VProgressRing, VRadio, VRadioGroup, VRangeSlider, VSearchableSelect, VSelect, VSelectableBox, VSideDrawer, VSlider, VSplitButton, VSwitch, VTab, VTabPanel, VTabs, VTag, VTagGroup, VTextArea, VTextField, VTimePicker, VToggletip, VTooltip, VTreeItem, VTreeView, VVideoPlayer, optionalStyles, setCustomComponentPrefix, vivid3 };
|