@vonage/vivid-vue 4.5.0 → 4.7.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/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 +15 -0
- package/generated/components/VSelect.vue3.d.ts +15 -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 +2854 -847
- package/index.js +2855 -849
- package/package.json +2 -2
- package/web-types.json +247 -1
package/index.cjs
CHANGED
|
@@ -98,13 +98,27 @@ const VAccordion = vue.defineComponent({
|
|
|
98
98
|
},
|
|
99
99
|
class: "vvd-component",
|
|
100
100
|
on: {
|
|
101
|
-
click: (event) =>
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
101
|
+
click: (event) => {
|
|
102
|
+
this.$emit("click", event);
|
|
103
|
+
},
|
|
104
|
+
focus: (event) => {
|
|
105
|
+
this.$emit("focus", event);
|
|
106
|
+
},
|
|
107
|
+
blur: (event) => {
|
|
108
|
+
this.$emit("blur", event);
|
|
109
|
+
},
|
|
110
|
+
keydown: (event) => {
|
|
111
|
+
this.$emit("keydown", event);
|
|
112
|
+
},
|
|
113
|
+
keyup: (event) => {
|
|
114
|
+
this.$emit("keyup", event);
|
|
115
|
+
},
|
|
116
|
+
input: (event) => {
|
|
117
|
+
this.$emit("input", event);
|
|
118
|
+
},
|
|
119
|
+
change: (event) => {
|
|
120
|
+
this.$emit("change", event);
|
|
121
|
+
}
|
|
108
122
|
}
|
|
109
123
|
},
|
|
110
124
|
[this.$slots.default]
|
|
@@ -117,13 +131,27 @@ const VAccordion = vue.defineComponent({
|
|
|
117
131
|
class: "vvd-component",
|
|
118
132
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
119
133
|
...this.expandMode !== void 0 ? { "^expand-mode": this.expandMode } : {},
|
|
120
|
-
onClick: (event) =>
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
134
|
+
onClick: (event) => {
|
|
135
|
+
this.$emit("click", event);
|
|
136
|
+
},
|
|
137
|
+
onFocus: (event) => {
|
|
138
|
+
this.$emit("focus", event);
|
|
139
|
+
},
|
|
140
|
+
onBlur: (event) => {
|
|
141
|
+
this.$emit("blur", event);
|
|
142
|
+
},
|
|
143
|
+
onKeydown: (event) => {
|
|
144
|
+
this.$emit("keydown", event);
|
|
145
|
+
},
|
|
146
|
+
onKeyup: (event) => {
|
|
147
|
+
this.$emit("keyup", event);
|
|
148
|
+
},
|
|
149
|
+
onInput: (event) => {
|
|
150
|
+
this.$emit("input", event);
|
|
151
|
+
},
|
|
152
|
+
onChange: (event) => {
|
|
153
|
+
this.$emit("change", event);
|
|
154
|
+
}
|
|
127
155
|
},
|
|
128
156
|
[
|
|
129
157
|
// @ts-ignore
|
|
@@ -267,13 +295,27 @@ const VAccordionItem = vue.defineComponent({
|
|
|
267
295
|
},
|
|
268
296
|
class: "vvd-component",
|
|
269
297
|
on: {
|
|
270
|
-
click: (event) =>
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
298
|
+
click: (event) => {
|
|
299
|
+
this.$emit("click", event);
|
|
300
|
+
},
|
|
301
|
+
focus: (event) => {
|
|
302
|
+
this.$emit("focus", event);
|
|
303
|
+
},
|
|
304
|
+
blur: (event) => {
|
|
305
|
+
this.$emit("blur", event);
|
|
306
|
+
},
|
|
307
|
+
keydown: (event) => {
|
|
308
|
+
this.$emit("keydown", event);
|
|
309
|
+
},
|
|
310
|
+
keyup: (event) => {
|
|
311
|
+
this.$emit("keyup", event);
|
|
312
|
+
},
|
|
313
|
+
input: (event) => {
|
|
314
|
+
this.$emit("input", event);
|
|
315
|
+
},
|
|
316
|
+
change: (event) => {
|
|
317
|
+
this.$emit("change", event);
|
|
318
|
+
}
|
|
277
319
|
}
|
|
278
320
|
},
|
|
279
321
|
[
|
|
@@ -298,13 +340,27 @@ const VAccordionItem = vue.defineComponent({
|
|
|
298
340
|
...this.noIndicator !== void 0 && this.noIndicator !== false ? { "^no-indicator": this.noIndicator } : {},
|
|
299
341
|
...this.meta !== void 0 ? { "^meta": this.meta } : {},
|
|
300
342
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
301
|
-
onClick: (event) =>
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
343
|
+
onClick: (event) => {
|
|
344
|
+
this.$emit("click", event);
|
|
345
|
+
},
|
|
346
|
+
onFocus: (event) => {
|
|
347
|
+
this.$emit("focus", event);
|
|
348
|
+
},
|
|
349
|
+
onBlur: (event) => {
|
|
350
|
+
this.$emit("blur", event);
|
|
351
|
+
},
|
|
352
|
+
onKeydown: (event) => {
|
|
353
|
+
this.$emit("keydown", event);
|
|
354
|
+
},
|
|
355
|
+
onKeyup: (event) => {
|
|
356
|
+
this.$emit("keyup", event);
|
|
357
|
+
},
|
|
358
|
+
onInput: (event) => {
|
|
359
|
+
this.$emit("input", event);
|
|
360
|
+
},
|
|
361
|
+
onChange: (event) => {
|
|
362
|
+
this.$emit("change", event);
|
|
363
|
+
}
|
|
308
364
|
},
|
|
309
365
|
[
|
|
310
366
|
// @ts-ignore
|
|
@@ -401,12 +457,24 @@ const VActionGroup = vue.defineComponent({
|
|
|
401
457
|
},
|
|
402
458
|
class: "vvd-component",
|
|
403
459
|
on: {
|
|
404
|
-
click: (event) =>
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
460
|
+
click: (event) => {
|
|
461
|
+
this.$emit("click", event);
|
|
462
|
+
},
|
|
463
|
+
focus: (event) => {
|
|
464
|
+
this.$emit("focus", event);
|
|
465
|
+
},
|
|
466
|
+
blur: (event) => {
|
|
467
|
+
this.$emit("blur", event);
|
|
468
|
+
},
|
|
469
|
+
keydown: (event) => {
|
|
470
|
+
this.$emit("keydown", event);
|
|
471
|
+
},
|
|
472
|
+
keyup: (event) => {
|
|
473
|
+
this.$emit("keyup", event);
|
|
474
|
+
},
|
|
475
|
+
input: (event) => {
|
|
476
|
+
this.$emit("input", event);
|
|
477
|
+
}
|
|
410
478
|
}
|
|
411
479
|
},
|
|
412
480
|
[this.$slots.default]
|
|
@@ -423,12 +491,24 @@ const VActionGroup = vue.defineComponent({
|
|
|
423
491
|
...this.tight !== void 0 && this.tight !== false ? { "^tight": this.tight } : {},
|
|
424
492
|
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
425
493
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
426
|
-
onClick: (event) =>
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
494
|
+
onClick: (event) => {
|
|
495
|
+
this.$emit("click", event);
|
|
496
|
+
},
|
|
497
|
+
onFocus: (event) => {
|
|
498
|
+
this.$emit("focus", event);
|
|
499
|
+
},
|
|
500
|
+
onBlur: (event) => {
|
|
501
|
+
this.$emit("blur", event);
|
|
502
|
+
},
|
|
503
|
+
onKeydown: (event) => {
|
|
504
|
+
this.$emit("keydown", event);
|
|
505
|
+
},
|
|
506
|
+
onKeyup: (event) => {
|
|
507
|
+
this.$emit("keyup", event);
|
|
508
|
+
},
|
|
509
|
+
onInput: (event) => {
|
|
510
|
+
this.$emit("input", event);
|
|
511
|
+
}
|
|
432
512
|
},
|
|
433
513
|
[
|
|
434
514
|
// @ts-ignore
|
|
@@ -576,14 +656,30 @@ const VAlert = vue.defineComponent({
|
|
|
576
656
|
},
|
|
577
657
|
class: "vvd-component",
|
|
578
658
|
on: {
|
|
579
|
-
click: (event) =>
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
659
|
+
click: (event) => {
|
|
660
|
+
this.$emit("click", event);
|
|
661
|
+
},
|
|
662
|
+
focus: (event) => {
|
|
663
|
+
this.$emit("focus", event);
|
|
664
|
+
},
|
|
665
|
+
blur: (event) => {
|
|
666
|
+
this.$emit("blur", event);
|
|
667
|
+
},
|
|
668
|
+
keydown: (event) => {
|
|
669
|
+
this.$emit("keydown", event);
|
|
670
|
+
},
|
|
671
|
+
keyup: (event) => {
|
|
672
|
+
this.$emit("keyup", event);
|
|
673
|
+
},
|
|
674
|
+
input: (event) => {
|
|
675
|
+
this.$emit("input", event);
|
|
676
|
+
},
|
|
677
|
+
open: (event) => {
|
|
678
|
+
this.$emit("open", event);
|
|
679
|
+
},
|
|
680
|
+
close: (event) => {
|
|
681
|
+
this.$emit("close", event);
|
|
682
|
+
}
|
|
587
683
|
}
|
|
588
684
|
},
|
|
589
685
|
[
|
|
@@ -613,14 +709,30 @@ const VAlert = vue.defineComponent({
|
|
|
613
709
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
614
710
|
...this.strategy !== void 0 ? { "^strategy": this.strategy } : {},
|
|
615
711
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
616
|
-
onClick: (event) =>
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
712
|
+
onClick: (event) => {
|
|
713
|
+
this.$emit("click", event);
|
|
714
|
+
},
|
|
715
|
+
onFocus: (event) => {
|
|
716
|
+
this.$emit("focus", event);
|
|
717
|
+
},
|
|
718
|
+
onBlur: (event) => {
|
|
719
|
+
this.$emit("blur", event);
|
|
720
|
+
},
|
|
721
|
+
onKeydown: (event) => {
|
|
722
|
+
this.$emit("keydown", event);
|
|
723
|
+
},
|
|
724
|
+
onKeyup: (event) => {
|
|
725
|
+
this.$emit("keyup", event);
|
|
726
|
+
},
|
|
727
|
+
onInput: (event) => {
|
|
728
|
+
this.$emit("input", event);
|
|
729
|
+
},
|
|
730
|
+
onOpen: (event) => {
|
|
731
|
+
this.$emit("open", event);
|
|
732
|
+
},
|
|
733
|
+
onClose: (event) => {
|
|
734
|
+
this.$emit("close", event);
|
|
735
|
+
}
|
|
624
736
|
},
|
|
625
737
|
[
|
|
626
738
|
// @ts-ignore
|
|
@@ -764,12 +876,24 @@ const VAudioPlayer = vue.defineComponent({
|
|
|
764
876
|
},
|
|
765
877
|
class: "vvd-component",
|
|
766
878
|
on: {
|
|
767
|
-
click: (event) =>
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
879
|
+
click: (event) => {
|
|
880
|
+
this.$emit("click", event);
|
|
881
|
+
},
|
|
882
|
+
focus: (event) => {
|
|
883
|
+
this.$emit("focus", event);
|
|
884
|
+
},
|
|
885
|
+
blur: (event) => {
|
|
886
|
+
this.$emit("blur", event);
|
|
887
|
+
},
|
|
888
|
+
keydown: (event) => {
|
|
889
|
+
this.$emit("keydown", event);
|
|
890
|
+
},
|
|
891
|
+
keyup: (event) => {
|
|
892
|
+
this.$emit("keyup", event);
|
|
893
|
+
},
|
|
894
|
+
input: (event) => {
|
|
895
|
+
this.$emit("input", event);
|
|
896
|
+
}
|
|
773
897
|
}
|
|
774
898
|
},
|
|
775
899
|
[this.$slots.default]
|
|
@@ -792,12 +916,24 @@ const VAudioPlayer = vue.defineComponent({
|
|
|
792
916
|
...this.notime !== void 0 && this.notime !== false ? { "^notime": this.notime } : {},
|
|
793
917
|
...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
|
|
794
918
|
...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
|
|
795
|
-
onClick: (event) =>
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
919
|
+
onClick: (event) => {
|
|
920
|
+
this.$emit("click", event);
|
|
921
|
+
},
|
|
922
|
+
onFocus: (event) => {
|
|
923
|
+
this.$emit("focus", event);
|
|
924
|
+
},
|
|
925
|
+
onBlur: (event) => {
|
|
926
|
+
this.$emit("blur", event);
|
|
927
|
+
},
|
|
928
|
+
onKeydown: (event) => {
|
|
929
|
+
this.$emit("keydown", event);
|
|
930
|
+
},
|
|
931
|
+
onKeyup: (event) => {
|
|
932
|
+
this.$emit("keyup", event);
|
|
933
|
+
},
|
|
934
|
+
onInput: (event) => {
|
|
935
|
+
this.$emit("input", event);
|
|
936
|
+
}
|
|
801
937
|
},
|
|
802
938
|
[
|
|
803
939
|
// @ts-ignore
|
|
@@ -907,12 +1043,24 @@ const VAvatar = vue.defineComponent({
|
|
|
907
1043
|
},
|
|
908
1044
|
class: "vvd-component",
|
|
909
1045
|
on: {
|
|
910
|
-
click: (event) =>
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
1046
|
+
click: (event) => {
|
|
1047
|
+
this.$emit("click", event);
|
|
1048
|
+
},
|
|
1049
|
+
focus: (event) => {
|
|
1050
|
+
this.$emit("focus", event);
|
|
1051
|
+
},
|
|
1052
|
+
blur: (event) => {
|
|
1053
|
+
this.$emit("blur", event);
|
|
1054
|
+
},
|
|
1055
|
+
keydown: (event) => {
|
|
1056
|
+
this.$emit("keydown", event);
|
|
1057
|
+
},
|
|
1058
|
+
keyup: (event) => {
|
|
1059
|
+
this.$emit("keyup", event);
|
|
1060
|
+
},
|
|
1061
|
+
input: (event) => {
|
|
1062
|
+
this.$emit("input", event);
|
|
1063
|
+
}
|
|
916
1064
|
}
|
|
917
1065
|
},
|
|
918
1066
|
[
|
|
@@ -934,12 +1082,24 @@ const VAvatar = vue.defineComponent({
|
|
|
934
1082
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
935
1083
|
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
936
1084
|
...this.initials !== void 0 ? { "^initials": this.initials } : {},
|
|
937
|
-
onClick: (event) =>
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
1085
|
+
onClick: (event) => {
|
|
1086
|
+
this.$emit("click", event);
|
|
1087
|
+
},
|
|
1088
|
+
onFocus: (event) => {
|
|
1089
|
+
this.$emit("focus", event);
|
|
1090
|
+
},
|
|
1091
|
+
onBlur: (event) => {
|
|
1092
|
+
this.$emit("blur", event);
|
|
1093
|
+
},
|
|
1094
|
+
onKeydown: (event) => {
|
|
1095
|
+
this.$emit("keydown", event);
|
|
1096
|
+
},
|
|
1097
|
+
onKeyup: (event) => {
|
|
1098
|
+
this.$emit("keyup", event);
|
|
1099
|
+
},
|
|
1100
|
+
onInput: (event) => {
|
|
1101
|
+
this.$emit("input", event);
|
|
1102
|
+
}
|
|
943
1103
|
},
|
|
944
1104
|
[
|
|
945
1105
|
// @ts-ignore
|
|
@@ -1048,12 +1208,24 @@ const VBadge = vue.defineComponent({
|
|
|
1048
1208
|
},
|
|
1049
1209
|
class: "vvd-component",
|
|
1050
1210
|
on: {
|
|
1051
|
-
click: (event) =>
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1211
|
+
click: (event) => {
|
|
1212
|
+
this.$emit("click", event);
|
|
1213
|
+
},
|
|
1214
|
+
focus: (event) => {
|
|
1215
|
+
this.$emit("focus", event);
|
|
1216
|
+
},
|
|
1217
|
+
blur: (event) => {
|
|
1218
|
+
this.$emit("blur", event);
|
|
1219
|
+
},
|
|
1220
|
+
keydown: (event) => {
|
|
1221
|
+
this.$emit("keydown", event);
|
|
1222
|
+
},
|
|
1223
|
+
keyup: (event) => {
|
|
1224
|
+
this.$emit("keyup", event);
|
|
1225
|
+
},
|
|
1226
|
+
input: (event) => {
|
|
1227
|
+
this.$emit("input", event);
|
|
1228
|
+
}
|
|
1057
1229
|
}
|
|
1058
1230
|
},
|
|
1059
1231
|
[
|
|
@@ -1075,12 +1247,24 @@ const VBadge = vue.defineComponent({
|
|
|
1075
1247
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
1076
1248
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
1077
1249
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1078
|
-
onClick: (event) =>
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1250
|
+
onClick: (event) => {
|
|
1251
|
+
this.$emit("click", event);
|
|
1252
|
+
},
|
|
1253
|
+
onFocus: (event) => {
|
|
1254
|
+
this.$emit("focus", event);
|
|
1255
|
+
},
|
|
1256
|
+
onBlur: (event) => {
|
|
1257
|
+
this.$emit("blur", event);
|
|
1258
|
+
},
|
|
1259
|
+
onKeydown: (event) => {
|
|
1260
|
+
this.$emit("keydown", event);
|
|
1261
|
+
},
|
|
1262
|
+
onKeyup: (event) => {
|
|
1263
|
+
this.$emit("keyup", event);
|
|
1264
|
+
},
|
|
1265
|
+
onInput: (event) => {
|
|
1266
|
+
this.$emit("input", event);
|
|
1267
|
+
}
|
|
1084
1268
|
},
|
|
1085
1269
|
[
|
|
1086
1270
|
// @ts-ignore
|
|
@@ -1181,12 +1365,24 @@ const VBanner = vue.defineComponent({
|
|
|
1181
1365
|
},
|
|
1182
1366
|
class: "vvd-component",
|
|
1183
1367
|
on: {
|
|
1184
|
-
click: (event) =>
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1368
|
+
click: (event) => {
|
|
1369
|
+
this.$emit("click", event);
|
|
1370
|
+
},
|
|
1371
|
+
focus: (event) => {
|
|
1372
|
+
this.$emit("focus", event);
|
|
1373
|
+
},
|
|
1374
|
+
blur: (event) => {
|
|
1375
|
+
this.$emit("blur", event);
|
|
1376
|
+
},
|
|
1377
|
+
keydown: (event) => {
|
|
1378
|
+
this.$emit("keydown", event);
|
|
1379
|
+
},
|
|
1380
|
+
keyup: (event) => {
|
|
1381
|
+
this.$emit("keyup", event);
|
|
1382
|
+
},
|
|
1383
|
+
input: (event) => {
|
|
1384
|
+
this.$emit("input", event);
|
|
1385
|
+
}
|
|
1190
1386
|
}
|
|
1191
1387
|
},
|
|
1192
1388
|
[
|
|
@@ -1213,12 +1409,24 @@ const VBanner = vue.defineComponent({
|
|
|
1213
1409
|
...this.ariaLive !== void 0 ? { "^aria-live": this.ariaLive } : {},
|
|
1214
1410
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1215
1411
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
1216
|
-
onClick: (event) =>
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1412
|
+
onClick: (event) => {
|
|
1413
|
+
this.$emit("click", event);
|
|
1414
|
+
},
|
|
1415
|
+
onFocus: (event) => {
|
|
1416
|
+
this.$emit("focus", event);
|
|
1417
|
+
},
|
|
1418
|
+
onBlur: (event) => {
|
|
1419
|
+
this.$emit("blur", event);
|
|
1420
|
+
},
|
|
1421
|
+
onKeydown: (event) => {
|
|
1422
|
+
this.$emit("keydown", event);
|
|
1423
|
+
},
|
|
1424
|
+
onKeyup: (event) => {
|
|
1425
|
+
this.$emit("keyup", event);
|
|
1426
|
+
},
|
|
1427
|
+
onInput: (event) => {
|
|
1428
|
+
this.$emit("input", event);
|
|
1429
|
+
}
|
|
1222
1430
|
},
|
|
1223
1431
|
[
|
|
1224
1432
|
// @ts-ignore
|
|
@@ -1292,12 +1500,24 @@ const VBreadcrumb = vue.defineComponent({
|
|
|
1292
1500
|
},
|
|
1293
1501
|
class: "vvd-component",
|
|
1294
1502
|
on: {
|
|
1295
|
-
click: (event) =>
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1503
|
+
click: (event) => {
|
|
1504
|
+
this.$emit("click", event);
|
|
1505
|
+
},
|
|
1506
|
+
focus: (event) => {
|
|
1507
|
+
this.$emit("focus", event);
|
|
1508
|
+
},
|
|
1509
|
+
blur: (event) => {
|
|
1510
|
+
this.$emit("blur", event);
|
|
1511
|
+
},
|
|
1512
|
+
keydown: (event) => {
|
|
1513
|
+
this.$emit("keydown", event);
|
|
1514
|
+
},
|
|
1515
|
+
keyup: (event) => {
|
|
1516
|
+
this.$emit("keyup", event);
|
|
1517
|
+
},
|
|
1518
|
+
input: (event) => {
|
|
1519
|
+
this.$emit("input", event);
|
|
1520
|
+
}
|
|
1301
1521
|
}
|
|
1302
1522
|
},
|
|
1303
1523
|
[this.$slots.default]
|
|
@@ -1309,12 +1529,24 @@ const VBreadcrumb = vue.defineComponent({
|
|
|
1309
1529
|
ref: "element",
|
|
1310
1530
|
class: "vvd-component",
|
|
1311
1531
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
1312
|
-
onClick: (event) =>
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1532
|
+
onClick: (event) => {
|
|
1533
|
+
this.$emit("click", event);
|
|
1534
|
+
},
|
|
1535
|
+
onFocus: (event) => {
|
|
1536
|
+
this.$emit("focus", event);
|
|
1537
|
+
},
|
|
1538
|
+
onBlur: (event) => {
|
|
1539
|
+
this.$emit("blur", event);
|
|
1540
|
+
},
|
|
1541
|
+
onKeydown: (event) => {
|
|
1542
|
+
this.$emit("keydown", event);
|
|
1543
|
+
},
|
|
1544
|
+
onKeyup: (event) => {
|
|
1545
|
+
this.$emit("keyup", event);
|
|
1546
|
+
},
|
|
1547
|
+
onInput: (event) => {
|
|
1548
|
+
this.$emit("input", event);
|
|
1549
|
+
}
|
|
1318
1550
|
},
|
|
1319
1551
|
[
|
|
1320
1552
|
// @ts-ignore
|
|
@@ -1432,12 +1664,24 @@ const VBreadcrumbItem = vue.defineComponent({
|
|
|
1432
1664
|
},
|
|
1433
1665
|
class: "vvd-component",
|
|
1434
1666
|
on: {
|
|
1435
|
-
click: (event) =>
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1667
|
+
click: (event) => {
|
|
1668
|
+
this.$emit("click", event);
|
|
1669
|
+
},
|
|
1670
|
+
focus: (event) => {
|
|
1671
|
+
this.$emit("focus", event);
|
|
1672
|
+
},
|
|
1673
|
+
blur: (event) => {
|
|
1674
|
+
this.$emit("blur", event);
|
|
1675
|
+
},
|
|
1676
|
+
keydown: (event) => {
|
|
1677
|
+
this.$emit("keydown", event);
|
|
1678
|
+
},
|
|
1679
|
+
keyup: (event) => {
|
|
1680
|
+
this.$emit("keyup", event);
|
|
1681
|
+
},
|
|
1682
|
+
input: (event) => {
|
|
1683
|
+
this.$emit("input", event);
|
|
1684
|
+
}
|
|
1441
1685
|
}
|
|
1442
1686
|
},
|
|
1443
1687
|
[this.$slots.default]
|
|
@@ -1458,12 +1702,24 @@ const VBreadcrumbItem = vue.defineComponent({
|
|
|
1458
1702
|
...this.target !== void 0 ? { "^target": this.target } : {},
|
|
1459
1703
|
...this.type !== void 0 ? { "^type": this.type } : {},
|
|
1460
1704
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
1461
|
-
onClick: (event) =>
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1705
|
+
onClick: (event) => {
|
|
1706
|
+
this.$emit("click", event);
|
|
1707
|
+
},
|
|
1708
|
+
onFocus: (event) => {
|
|
1709
|
+
this.$emit("focus", event);
|
|
1710
|
+
},
|
|
1711
|
+
onBlur: (event) => {
|
|
1712
|
+
this.$emit("blur", event);
|
|
1713
|
+
},
|
|
1714
|
+
onKeydown: (event) => {
|
|
1715
|
+
this.$emit("keydown", event);
|
|
1716
|
+
},
|
|
1717
|
+
onKeyup: (event) => {
|
|
1718
|
+
this.$emit("keyup", event);
|
|
1719
|
+
},
|
|
1720
|
+
onInput: (event) => {
|
|
1721
|
+
this.$emit("input", event);
|
|
1722
|
+
}
|
|
1467
1723
|
},
|
|
1468
1724
|
[
|
|
1469
1725
|
// @ts-ignore
|
|
@@ -1724,12 +1980,24 @@ const VButton = vue.defineComponent({
|
|
|
1724
1980
|
},
|
|
1725
1981
|
class: "vvd-component",
|
|
1726
1982
|
on: {
|
|
1727
|
-
click: (event) =>
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1983
|
+
click: (event) => {
|
|
1984
|
+
this.$emit("click", event);
|
|
1985
|
+
},
|
|
1986
|
+
focus: (event) => {
|
|
1987
|
+
this.$emit("focus", event);
|
|
1988
|
+
},
|
|
1989
|
+
blur: (event) => {
|
|
1990
|
+
this.$emit("blur", event);
|
|
1991
|
+
},
|
|
1992
|
+
keydown: (event) => {
|
|
1993
|
+
this.$emit("keydown", event);
|
|
1994
|
+
},
|
|
1995
|
+
keyup: (event) => {
|
|
1996
|
+
this.$emit("keyup", event);
|
|
1997
|
+
},
|
|
1998
|
+
input: (event) => {
|
|
1999
|
+
this.$emit("input", event);
|
|
2000
|
+
}
|
|
1733
2001
|
}
|
|
1734
2002
|
},
|
|
1735
2003
|
[
|
|
@@ -1777,12 +2045,24 @@ const VButton = vue.defineComponent({
|
|
|
1777
2045
|
...this.referrerpolicy !== void 0 ? { "^referrerpolicy": this.referrerpolicy } : {},
|
|
1778
2046
|
...this.rel !== void 0 ? { "^rel": this.rel } : {},
|
|
1779
2047
|
...this.target !== void 0 ? { "^target": this.target } : {},
|
|
1780
|
-
onClick: (event) =>
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
2048
|
+
onClick: (event) => {
|
|
2049
|
+
this.$emit("click", event);
|
|
2050
|
+
},
|
|
2051
|
+
onFocus: (event) => {
|
|
2052
|
+
this.$emit("focus", event);
|
|
2053
|
+
},
|
|
2054
|
+
onBlur: (event) => {
|
|
2055
|
+
this.$emit("blur", event);
|
|
2056
|
+
},
|
|
2057
|
+
onKeydown: (event) => {
|
|
2058
|
+
this.$emit("keydown", event);
|
|
2059
|
+
},
|
|
2060
|
+
onKeyup: (event) => {
|
|
2061
|
+
this.$emit("keyup", event);
|
|
2062
|
+
},
|
|
2063
|
+
onInput: (event) => {
|
|
2064
|
+
this.$emit("input", event);
|
|
2065
|
+
}
|
|
1786
2066
|
},
|
|
1787
2067
|
[
|
|
1788
2068
|
// @ts-ignore
|
|
@@ -1900,12 +2180,24 @@ const VCalendar = vue.defineComponent({
|
|
|
1900
2180
|
...this.locales !== void 0 ? { locales: this.locales } : {}
|
|
1901
2181
|
},
|
|
1902
2182
|
on: {
|
|
1903
|
-
click: (event) =>
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
2183
|
+
click: (event) => {
|
|
2184
|
+
this.$emit("click", event);
|
|
2185
|
+
},
|
|
2186
|
+
focus: (event) => {
|
|
2187
|
+
this.$emit("focus", event);
|
|
2188
|
+
},
|
|
2189
|
+
blur: (event) => {
|
|
2190
|
+
this.$emit("blur", event);
|
|
2191
|
+
},
|
|
2192
|
+
keydown: (event) => {
|
|
2193
|
+
this.$emit("keydown", event);
|
|
2194
|
+
},
|
|
2195
|
+
keyup: (event) => {
|
|
2196
|
+
this.$emit("keyup", event);
|
|
2197
|
+
},
|
|
2198
|
+
input: (event) => {
|
|
2199
|
+
this.$emit("input", event);
|
|
2200
|
+
}
|
|
1909
2201
|
}
|
|
1910
2202
|
},
|
|
1911
2203
|
[
|
|
@@ -1937,12 +2229,24 @@ const VCalendar = vue.defineComponent({
|
|
|
1937
2229
|
...this.startDay !== void 0 ? { "^start-day": this.startDay } : {},
|
|
1938
2230
|
...this.locales !== void 0 ? { ".locales": this.locales } : {},
|
|
1939
2231
|
...this.hour12 !== void 0 && this.hour12 !== false ? { "^hour12": this.hour12 } : {},
|
|
1940
|
-
onClick: (event) =>
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
2232
|
+
onClick: (event) => {
|
|
2233
|
+
this.$emit("click", event);
|
|
2234
|
+
},
|
|
2235
|
+
onFocus: (event) => {
|
|
2236
|
+
this.$emit("focus", event);
|
|
2237
|
+
},
|
|
2238
|
+
onBlur: (event) => {
|
|
2239
|
+
this.$emit("blur", event);
|
|
2240
|
+
},
|
|
2241
|
+
onKeydown: (event) => {
|
|
2242
|
+
this.$emit("keydown", event);
|
|
2243
|
+
},
|
|
2244
|
+
onKeyup: (event) => {
|
|
2245
|
+
this.$emit("keyup", event);
|
|
2246
|
+
},
|
|
2247
|
+
onInput: (event) => {
|
|
2248
|
+
this.$emit("input", event);
|
|
2249
|
+
}
|
|
1946
2250
|
},
|
|
1947
2251
|
[
|
|
1948
2252
|
// @ts-ignore
|
|
@@ -2070,12 +2374,24 @@ const VCalendarEvent = vue.defineComponent({
|
|
|
2070
2374
|
},
|
|
2071
2375
|
class: "vvd-component",
|
|
2072
2376
|
on: {
|
|
2073
|
-
click: (event) =>
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2377
|
+
click: (event) => {
|
|
2378
|
+
this.$emit("click", event);
|
|
2379
|
+
},
|
|
2380
|
+
focus: (event) => {
|
|
2381
|
+
this.$emit("focus", event);
|
|
2382
|
+
},
|
|
2383
|
+
blur: (event) => {
|
|
2384
|
+
this.$emit("blur", event);
|
|
2385
|
+
},
|
|
2386
|
+
keydown: (event) => {
|
|
2387
|
+
this.$emit("keydown", event);
|
|
2388
|
+
},
|
|
2389
|
+
keyup: (event) => {
|
|
2390
|
+
this.$emit("keyup", event);
|
|
2391
|
+
},
|
|
2392
|
+
input: (event) => {
|
|
2393
|
+
this.$emit("input", event);
|
|
2394
|
+
}
|
|
2079
2395
|
}
|
|
2080
2396
|
},
|
|
2081
2397
|
[this.$slots.default]
|
|
@@ -2094,12 +2410,24 @@ const VCalendarEvent = vue.defineComponent({
|
|
|
2094
2410
|
...this.overlapCount !== void 0 ? { "^overlap-count": this.overlapCount } : {},
|
|
2095
2411
|
...this.start !== void 0 ? { "^start": this.start } : {},
|
|
2096
2412
|
...this.duration !== void 0 ? { "^duration": this.duration } : {},
|
|
2097
|
-
onClick: (event) =>
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2413
|
+
onClick: (event) => {
|
|
2414
|
+
this.$emit("click", event);
|
|
2415
|
+
},
|
|
2416
|
+
onFocus: (event) => {
|
|
2417
|
+
this.$emit("focus", event);
|
|
2418
|
+
},
|
|
2419
|
+
onBlur: (event) => {
|
|
2420
|
+
this.$emit("blur", event);
|
|
2421
|
+
},
|
|
2422
|
+
onKeydown: (event) => {
|
|
2423
|
+
this.$emit("keydown", event);
|
|
2424
|
+
},
|
|
2425
|
+
onKeyup: (event) => {
|
|
2426
|
+
this.$emit("keyup", event);
|
|
2427
|
+
},
|
|
2428
|
+
onInput: (event) => {
|
|
2429
|
+
this.$emit("input", event);
|
|
2430
|
+
}
|
|
2103
2431
|
},
|
|
2104
2432
|
[
|
|
2105
2433
|
// @ts-ignore
|
|
@@ -2209,12 +2537,24 @@ const VCard = vue.defineComponent({
|
|
|
2209
2537
|
},
|
|
2210
2538
|
class: "vvd-component",
|
|
2211
2539
|
on: {
|
|
2212
|
-
click: (event) =>
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2540
|
+
click: (event) => {
|
|
2541
|
+
this.$emit("click", event);
|
|
2542
|
+
},
|
|
2543
|
+
focus: (event) => {
|
|
2544
|
+
this.$emit("focus", event);
|
|
2545
|
+
},
|
|
2546
|
+
blur: (event) => {
|
|
2547
|
+
this.$emit("blur", event);
|
|
2548
|
+
},
|
|
2549
|
+
keydown: (event) => {
|
|
2550
|
+
this.$emit("keydown", event);
|
|
2551
|
+
},
|
|
2552
|
+
keyup: (event) => {
|
|
2553
|
+
this.$emit("keyup", event);
|
|
2554
|
+
},
|
|
2555
|
+
input: (event) => {
|
|
2556
|
+
this.$emit("input", event);
|
|
2557
|
+
}
|
|
2218
2558
|
}
|
|
2219
2559
|
},
|
|
2220
2560
|
[
|
|
@@ -2244,12 +2584,24 @@ const VCard = vue.defineComponent({
|
|
|
2244
2584
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
2245
2585
|
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
2246
2586
|
...this.elevation !== void 0 ? { "^elevation": this.elevation } : {},
|
|
2247
|
-
onClick: (event) =>
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2587
|
+
onClick: (event) => {
|
|
2588
|
+
this.$emit("click", event);
|
|
2589
|
+
},
|
|
2590
|
+
onFocus: (event) => {
|
|
2591
|
+
this.$emit("focus", event);
|
|
2592
|
+
},
|
|
2593
|
+
onBlur: (event) => {
|
|
2594
|
+
this.$emit("blur", event);
|
|
2595
|
+
},
|
|
2596
|
+
onKeydown: (event) => {
|
|
2597
|
+
this.$emit("keydown", event);
|
|
2598
|
+
},
|
|
2599
|
+
onKeyup: (event) => {
|
|
2600
|
+
this.$emit("keyup", event);
|
|
2601
|
+
},
|
|
2602
|
+
onInput: (event) => {
|
|
2603
|
+
this.$emit("input", event);
|
|
2604
|
+
}
|
|
2253
2605
|
},
|
|
2254
2606
|
[
|
|
2255
2607
|
// @ts-ignore
|
|
@@ -2432,11 +2784,21 @@ const VCheckbox = vue.defineComponent({
|
|
|
2432
2784
|
},
|
|
2433
2785
|
class: "vvd-component",
|
|
2434
2786
|
on: {
|
|
2435
|
-
click: (event) =>
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2787
|
+
click: (event) => {
|
|
2788
|
+
this.$emit("click", event);
|
|
2789
|
+
},
|
|
2790
|
+
focus: (event) => {
|
|
2791
|
+
this.$emit("focus", event);
|
|
2792
|
+
},
|
|
2793
|
+
blur: (event) => {
|
|
2794
|
+
this.$emit("blur", event);
|
|
2795
|
+
},
|
|
2796
|
+
keydown: (event) => {
|
|
2797
|
+
this.$emit("keydown", event);
|
|
2798
|
+
},
|
|
2799
|
+
keyup: (event) => {
|
|
2800
|
+
this.$emit("keyup", event);
|
|
2801
|
+
},
|
|
2440
2802
|
change: (event) => {
|
|
2441
2803
|
this.$emit(
|
|
2442
2804
|
"update:modelValue",
|
|
@@ -2444,7 +2806,9 @@ const VCheckbox = vue.defineComponent({
|
|
|
2444
2806
|
);
|
|
2445
2807
|
this.$emit("change", event);
|
|
2446
2808
|
},
|
|
2447
|
-
input: (event) =>
|
|
2809
|
+
input: (event) => {
|
|
2810
|
+
this.$emit("input", event);
|
|
2811
|
+
}
|
|
2448
2812
|
}
|
|
2449
2813
|
},
|
|
2450
2814
|
[
|
|
@@ -2475,11 +2839,21 @@ const VCheckbox = vue.defineComponent({
|
|
|
2475
2839
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
2476
2840
|
...this.tabindex !== void 0 ? { "^tabindex": this.tabindex } : {},
|
|
2477
2841
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
2478
|
-
onClick: (event) =>
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2842
|
+
onClick: (event) => {
|
|
2843
|
+
this.$emit("click", event);
|
|
2844
|
+
},
|
|
2845
|
+
onFocus: (event) => {
|
|
2846
|
+
this.$emit("focus", event);
|
|
2847
|
+
},
|
|
2848
|
+
onBlur: (event) => {
|
|
2849
|
+
this.$emit("blur", event);
|
|
2850
|
+
},
|
|
2851
|
+
onKeydown: (event) => {
|
|
2852
|
+
this.$emit("keydown", event);
|
|
2853
|
+
},
|
|
2854
|
+
onKeyup: (event) => {
|
|
2855
|
+
this.$emit("keyup", event);
|
|
2856
|
+
},
|
|
2483
2857
|
onChange: (event) => {
|
|
2484
2858
|
this.$emit(
|
|
2485
2859
|
"update:modelValue",
|
|
@@ -2487,7 +2861,9 @@ const VCheckbox = vue.defineComponent({
|
|
|
2487
2861
|
);
|
|
2488
2862
|
this.$emit("change", event);
|
|
2489
2863
|
},
|
|
2490
|
-
onInput: (event) =>
|
|
2864
|
+
onInput: (event) => {
|
|
2865
|
+
this.$emit("input", event);
|
|
2866
|
+
}
|
|
2491
2867
|
},
|
|
2492
2868
|
[
|
|
2493
2869
|
// @ts-ignore
|
|
@@ -2702,12 +3078,24 @@ const VCombobox = vue.defineComponent({
|
|
|
2702
3078
|
},
|
|
2703
3079
|
class: "vvd-component",
|
|
2704
3080
|
on: {
|
|
2705
|
-
click: (event) =>
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
3081
|
+
click: (event) => {
|
|
3082
|
+
this.$emit("click", event);
|
|
3083
|
+
},
|
|
3084
|
+
focus: (event) => {
|
|
3085
|
+
this.$emit("focus", event);
|
|
3086
|
+
},
|
|
3087
|
+
blur: (event) => {
|
|
3088
|
+
this.$emit("blur", event);
|
|
3089
|
+
},
|
|
3090
|
+
keydown: (event) => {
|
|
3091
|
+
this.$emit("keydown", event);
|
|
3092
|
+
},
|
|
3093
|
+
keyup: (event) => {
|
|
3094
|
+
this.$emit("keyup", event);
|
|
3095
|
+
},
|
|
3096
|
+
input: (event) => {
|
|
3097
|
+
this.$emit("input", event);
|
|
3098
|
+
},
|
|
2711
3099
|
change: (event) => {
|
|
2712
3100
|
this.$emit(
|
|
2713
3101
|
"update:modelValue",
|
|
@@ -2740,12 +3128,24 @@ const VCombobox = vue.defineComponent({
|
|
|
2740
3128
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
2741
3129
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
2742
3130
|
...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
2743
|
-
onClick: (event) =>
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
3131
|
+
onClick: (event) => {
|
|
3132
|
+
this.$emit("click", event);
|
|
3133
|
+
},
|
|
3134
|
+
onFocus: (event) => {
|
|
3135
|
+
this.$emit("focus", event);
|
|
3136
|
+
},
|
|
3137
|
+
onBlur: (event) => {
|
|
3138
|
+
this.$emit("blur", event);
|
|
3139
|
+
},
|
|
3140
|
+
onKeydown: (event) => {
|
|
3141
|
+
this.$emit("keydown", event);
|
|
3142
|
+
},
|
|
3143
|
+
onKeyup: (event) => {
|
|
3144
|
+
this.$emit("keyup", event);
|
|
3145
|
+
},
|
|
3146
|
+
onInput: (event) => {
|
|
3147
|
+
this.$emit("input", event);
|
|
3148
|
+
},
|
|
2749
3149
|
onChange: (event) => {
|
|
2750
3150
|
this.$emit(
|
|
2751
3151
|
"update:modelValue",
|
|
@@ -2868,13 +3268,27 @@ const VDataGrid = vue.defineComponent({
|
|
|
2868
3268
|
...this.rowsData !== void 0 ? { rowsData: this.rowsData } : {}
|
|
2869
3269
|
},
|
|
2870
3270
|
on: {
|
|
2871
|
-
click: (event) =>
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
3271
|
+
click: (event) => {
|
|
3272
|
+
this.$emit("click", event);
|
|
3273
|
+
},
|
|
3274
|
+
focus: (event) => {
|
|
3275
|
+
this.$emit("focus", event);
|
|
3276
|
+
},
|
|
3277
|
+
blur: (event) => {
|
|
3278
|
+
this.$emit("blur", event);
|
|
3279
|
+
},
|
|
3280
|
+
keydown: (event) => {
|
|
3281
|
+
this.$emit("keydown", event);
|
|
3282
|
+
},
|
|
3283
|
+
keyup: (event) => {
|
|
3284
|
+
this.$emit("keyup", event);
|
|
3285
|
+
},
|
|
3286
|
+
input: (event) => {
|
|
3287
|
+
this.$emit("input", event);
|
|
3288
|
+
},
|
|
3289
|
+
"cell-click": (event) => {
|
|
3290
|
+
this.$emit("cell-click", event);
|
|
3291
|
+
}
|
|
2878
3292
|
}
|
|
2879
3293
|
},
|
|
2880
3294
|
[this.$slots.default]
|
|
@@ -2891,13 +3305,27 @@ const VDataGrid = vue.defineComponent({
|
|
|
2891
3305
|
...this.gridTemplateColumns !== void 0 ? { "^grid-template-columns": this.gridTemplateColumns } : {},
|
|
2892
3306
|
...this.selectionMode !== void 0 ? { "^selection-mode": this.selectionMode } : {},
|
|
2893
3307
|
...this.rowsData !== void 0 ? { ".rowsData": this.rowsData } : {},
|
|
2894
|
-
onClick: (event) =>
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
3308
|
+
onClick: (event) => {
|
|
3309
|
+
this.$emit("click", event);
|
|
3310
|
+
},
|
|
3311
|
+
onFocus: (event) => {
|
|
3312
|
+
this.$emit("focus", event);
|
|
3313
|
+
},
|
|
3314
|
+
onBlur: (event) => {
|
|
3315
|
+
this.$emit("blur", event);
|
|
3316
|
+
},
|
|
3317
|
+
onKeydown: (event) => {
|
|
3318
|
+
this.$emit("keydown", event);
|
|
3319
|
+
},
|
|
3320
|
+
onKeyup: (event) => {
|
|
3321
|
+
this.$emit("keyup", event);
|
|
3322
|
+
},
|
|
3323
|
+
onInput: (event) => {
|
|
3324
|
+
this.$emit("input", event);
|
|
3325
|
+
},
|
|
3326
|
+
onCellClick: (event) => {
|
|
3327
|
+
this.$emit("cell-click", event);
|
|
3328
|
+
}
|
|
2901
3329
|
},
|
|
2902
3330
|
[
|
|
2903
3331
|
// @ts-ignore
|
|
@@ -3027,15 +3455,33 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3027
3455
|
...this.columnDefinition !== void 0 ? { columnDefinition: this.columnDefinition } : {}
|
|
3028
3456
|
},
|
|
3029
3457
|
on: {
|
|
3030
|
-
click: (event) =>
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3458
|
+
click: (event) => {
|
|
3459
|
+
this.$emit("click", event);
|
|
3460
|
+
},
|
|
3461
|
+
focus: (event) => {
|
|
3462
|
+
this.$emit("focus", event);
|
|
3463
|
+
},
|
|
3464
|
+
blur: (event) => {
|
|
3465
|
+
this.$emit("blur", event);
|
|
3466
|
+
},
|
|
3467
|
+
keydown: (event) => {
|
|
3468
|
+
this.$emit("keydown", event);
|
|
3469
|
+
},
|
|
3470
|
+
keyup: (event) => {
|
|
3471
|
+
this.$emit("keyup", event);
|
|
3472
|
+
},
|
|
3473
|
+
input: (event) => {
|
|
3474
|
+
this.$emit("input", event);
|
|
3475
|
+
},
|
|
3476
|
+
sort: (event) => {
|
|
3477
|
+
this.$emit("sort", event);
|
|
3478
|
+
},
|
|
3479
|
+
"cell-click": (event) => {
|
|
3480
|
+
this.$emit("cell-click", event);
|
|
3481
|
+
},
|
|
3482
|
+
"cell-focused": (event) => {
|
|
3483
|
+
this.$emit("cell-focused", event);
|
|
3484
|
+
}
|
|
3039
3485
|
}
|
|
3040
3486
|
},
|
|
3041
3487
|
[this.$slots.default]
|
|
@@ -3052,15 +3498,33 @@ const VDataGridCell = vue.defineComponent({
|
|
|
3052
3498
|
...this.gridColumn !== void 0 ? { "^grid-column": this.gridColumn } : {},
|
|
3053
3499
|
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
3054
3500
|
...this.ariaSort !== void 0 ? { "^aria-sort": this.ariaSort } : {},
|
|
3055
|
-
onClick: (event) =>
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3501
|
+
onClick: (event) => {
|
|
3502
|
+
this.$emit("click", event);
|
|
3503
|
+
},
|
|
3504
|
+
onFocus: (event) => {
|
|
3505
|
+
this.$emit("focus", event);
|
|
3506
|
+
},
|
|
3507
|
+
onBlur: (event) => {
|
|
3508
|
+
this.$emit("blur", event);
|
|
3509
|
+
},
|
|
3510
|
+
onKeydown: (event) => {
|
|
3511
|
+
this.$emit("keydown", event);
|
|
3512
|
+
},
|
|
3513
|
+
onKeyup: (event) => {
|
|
3514
|
+
this.$emit("keyup", event);
|
|
3515
|
+
},
|
|
3516
|
+
onInput: (event) => {
|
|
3517
|
+
this.$emit("input", event);
|
|
3518
|
+
},
|
|
3519
|
+
onSort: (event) => {
|
|
3520
|
+
this.$emit("sort", event);
|
|
3521
|
+
},
|
|
3522
|
+
onCellClick: (event) => {
|
|
3523
|
+
this.$emit("cell-click", event);
|
|
3524
|
+
},
|
|
3525
|
+
onCellFocused: (event) => {
|
|
3526
|
+
this.$emit("cell-focused", event);
|
|
3527
|
+
}
|
|
3064
3528
|
},
|
|
3065
3529
|
[
|
|
3066
3530
|
// @ts-ignore
|
|
@@ -3171,14 +3635,30 @@ const VDataGridRow = vue.defineComponent({
|
|
|
3171
3635
|
},
|
|
3172
3636
|
class: "vvd-component",
|
|
3173
3637
|
on: {
|
|
3174
|
-
click: (event) =>
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3638
|
+
click: (event) => {
|
|
3639
|
+
this.$emit("click", event);
|
|
3640
|
+
},
|
|
3641
|
+
focus: (event) => {
|
|
3642
|
+
this.$emit("focus", event);
|
|
3643
|
+
},
|
|
3644
|
+
blur: (event) => {
|
|
3645
|
+
this.$emit("blur", event);
|
|
3646
|
+
},
|
|
3647
|
+
keydown: (event) => {
|
|
3648
|
+
this.$emit("keydown", event);
|
|
3649
|
+
},
|
|
3650
|
+
keyup: (event) => {
|
|
3651
|
+
this.$emit("keyup", event);
|
|
3652
|
+
},
|
|
3653
|
+
input: (event) => {
|
|
3654
|
+
this.$emit("input", event);
|
|
3655
|
+
},
|
|
3656
|
+
"cell-click": (event) => {
|
|
3657
|
+
this.$emit("cell-click", event);
|
|
3658
|
+
},
|
|
3659
|
+
"row-focused": (event) => {
|
|
3660
|
+
this.$emit("row-focused", event);
|
|
3661
|
+
}
|
|
3182
3662
|
}
|
|
3183
3663
|
},
|
|
3184
3664
|
[this.$slots.default]
|
|
@@ -3193,14 +3673,30 @@ const VDataGridRow = vue.defineComponent({
|
|
|
3193
3673
|
...this.gridTemplateColumns !== void 0 ? { "^grid-template-columns": this.gridTemplateColumns } : {},
|
|
3194
3674
|
...this.rowType !== void 0 ? { "^row-type": this.rowType } : {},
|
|
3195
3675
|
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
3196
|
-
onClick: (event) =>
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3676
|
+
onClick: (event) => {
|
|
3677
|
+
this.$emit("click", event);
|
|
3678
|
+
},
|
|
3679
|
+
onFocus: (event) => {
|
|
3680
|
+
this.$emit("focus", event);
|
|
3681
|
+
},
|
|
3682
|
+
onBlur: (event) => {
|
|
3683
|
+
this.$emit("blur", event);
|
|
3684
|
+
},
|
|
3685
|
+
onKeydown: (event) => {
|
|
3686
|
+
this.$emit("keydown", event);
|
|
3687
|
+
},
|
|
3688
|
+
onKeyup: (event) => {
|
|
3689
|
+
this.$emit("keyup", event);
|
|
3690
|
+
},
|
|
3691
|
+
onInput: (event) => {
|
|
3692
|
+
this.$emit("input", event);
|
|
3693
|
+
},
|
|
3694
|
+
onCellClick: (event) => {
|
|
3695
|
+
this.$emit("cell-click", event);
|
|
3696
|
+
},
|
|
3697
|
+
onRowFocused: (event) => {
|
|
3698
|
+
this.$emit("row-focused", event);
|
|
3699
|
+
}
|
|
3204
3700
|
},
|
|
3205
3701
|
[
|
|
3206
3702
|
// @ts-ignore
|
|
@@ -3343,11 +3839,21 @@ const VDatePicker = vue.defineComponent({
|
|
|
3343
3839
|
},
|
|
3344
3840
|
class: "vvd-component",
|
|
3345
3841
|
on: {
|
|
3346
|
-
click: (event) =>
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3842
|
+
click: (event) => {
|
|
3843
|
+
this.$emit("click", event);
|
|
3844
|
+
},
|
|
3845
|
+
focus: (event) => {
|
|
3846
|
+
this.$emit("focus", event);
|
|
3847
|
+
},
|
|
3848
|
+
blur: (event) => {
|
|
3849
|
+
this.$emit("blur", event);
|
|
3850
|
+
},
|
|
3851
|
+
keydown: (event) => {
|
|
3852
|
+
this.$emit("keydown", event);
|
|
3853
|
+
},
|
|
3854
|
+
keyup: (event) => {
|
|
3855
|
+
this.$emit("keyup", event);
|
|
3856
|
+
},
|
|
3351
3857
|
input: (event) => {
|
|
3352
3858
|
this.$emit(
|
|
3353
3859
|
"update:modelValue",
|
|
@@ -3355,8 +3861,12 @@ const VDatePicker = vue.defineComponent({
|
|
|
3355
3861
|
);
|
|
3356
3862
|
this.$emit("input", event);
|
|
3357
3863
|
},
|
|
3358
|
-
change: (event) =>
|
|
3359
|
-
|
|
3864
|
+
change: (event) => {
|
|
3865
|
+
this.$emit("change", event);
|
|
3866
|
+
},
|
|
3867
|
+
"clear-click": (event) => {
|
|
3868
|
+
this.$emit("clear-click", event);
|
|
3869
|
+
}
|
|
3360
3870
|
}
|
|
3361
3871
|
},
|
|
3362
3872
|
[
|
|
@@ -3382,11 +3892,21 @@ const VDatePicker = vue.defineComponent({
|
|
|
3382
3892
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
3383
3893
|
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
3384
3894
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
3385
|
-
onClick: (event) =>
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3895
|
+
onClick: (event) => {
|
|
3896
|
+
this.$emit("click", event);
|
|
3897
|
+
},
|
|
3898
|
+
onFocus: (event) => {
|
|
3899
|
+
this.$emit("focus", event);
|
|
3900
|
+
},
|
|
3901
|
+
onBlur: (event) => {
|
|
3902
|
+
this.$emit("blur", event);
|
|
3903
|
+
},
|
|
3904
|
+
onKeydown: (event) => {
|
|
3905
|
+
this.$emit("keydown", event);
|
|
3906
|
+
},
|
|
3907
|
+
onKeyup: (event) => {
|
|
3908
|
+
this.$emit("keyup", event);
|
|
3909
|
+
},
|
|
3390
3910
|
onInput: (event) => {
|
|
3391
3911
|
this.$emit(
|
|
3392
3912
|
"update:modelValue",
|
|
@@ -3394,8 +3914,12 @@ const VDatePicker = vue.defineComponent({
|
|
|
3394
3914
|
);
|
|
3395
3915
|
this.$emit("input", event);
|
|
3396
3916
|
},
|
|
3397
|
-
onChange: (event) =>
|
|
3398
|
-
|
|
3917
|
+
onChange: (event) => {
|
|
3918
|
+
this.$emit("change", event);
|
|
3919
|
+
},
|
|
3920
|
+
onClearClick: (event) => {
|
|
3921
|
+
this.$emit("clear-click", event);
|
|
3922
|
+
}
|
|
3399
3923
|
},
|
|
3400
3924
|
[
|
|
3401
3925
|
// @ts-ignore
|
|
@@ -3580,11 +4104,21 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3580
4104
|
},
|
|
3581
4105
|
class: "vvd-component",
|
|
3582
4106
|
on: {
|
|
3583
|
-
click: (event) =>
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
4107
|
+
click: (event) => {
|
|
4108
|
+
this.$emit("click", event);
|
|
4109
|
+
},
|
|
4110
|
+
focus: (event) => {
|
|
4111
|
+
this.$emit("focus", event);
|
|
4112
|
+
},
|
|
4113
|
+
blur: (event) => {
|
|
4114
|
+
this.$emit("blur", event);
|
|
4115
|
+
},
|
|
4116
|
+
keydown: (event) => {
|
|
4117
|
+
this.$emit("keydown", event);
|
|
4118
|
+
},
|
|
4119
|
+
keyup: (event) => {
|
|
4120
|
+
this.$emit("keyup", event);
|
|
4121
|
+
},
|
|
3588
4122
|
"input:start": (event) => {
|
|
3589
4123
|
this.$emit("update:start", event.target.start);
|
|
3590
4124
|
this.$emit("input:start", event);
|
|
@@ -3593,9 +4127,15 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3593
4127
|
this.$emit("update:end", event.target.end);
|
|
3594
4128
|
this.$emit("input:end", event);
|
|
3595
4129
|
},
|
|
3596
|
-
input: (event) =>
|
|
3597
|
-
|
|
3598
|
-
|
|
4130
|
+
input: (event) => {
|
|
4131
|
+
this.$emit("input", event);
|
|
4132
|
+
},
|
|
4133
|
+
change: (event) => {
|
|
4134
|
+
this.$emit("change", event);
|
|
4135
|
+
},
|
|
4136
|
+
"clear-click": (event) => {
|
|
4137
|
+
this.$emit("clear-click", event);
|
|
4138
|
+
}
|
|
3599
4139
|
}
|
|
3600
4140
|
},
|
|
3601
4141
|
[
|
|
@@ -3625,11 +4165,21 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3625
4165
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
3626
4166
|
...this.value !== void 0 ? { "^current-value": this.value } : {},
|
|
3627
4167
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
3628
|
-
onClick: (event) =>
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
4168
|
+
onClick: (event) => {
|
|
4169
|
+
this.$emit("click", event);
|
|
4170
|
+
},
|
|
4171
|
+
onFocus: (event) => {
|
|
4172
|
+
this.$emit("focus", event);
|
|
4173
|
+
},
|
|
4174
|
+
onBlur: (event) => {
|
|
4175
|
+
this.$emit("blur", event);
|
|
4176
|
+
},
|
|
4177
|
+
onKeydown: (event) => {
|
|
4178
|
+
this.$emit("keydown", event);
|
|
4179
|
+
},
|
|
4180
|
+
onKeyup: (event) => {
|
|
4181
|
+
this.$emit("keyup", event);
|
|
4182
|
+
},
|
|
3633
4183
|
"onInput:start": (event) => {
|
|
3634
4184
|
this.$emit("update:start", event.target.start);
|
|
3635
4185
|
this.$emit("input:start", event);
|
|
@@ -3638,9 +4188,15 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3638
4188
|
this.$emit("update:end", event.target.end);
|
|
3639
4189
|
this.$emit("input:end", event);
|
|
3640
4190
|
},
|
|
3641
|
-
onInput: (event) =>
|
|
3642
|
-
|
|
3643
|
-
|
|
4191
|
+
onInput: (event) => {
|
|
4192
|
+
this.$emit("input", event);
|
|
4193
|
+
},
|
|
4194
|
+
onChange: (event) => {
|
|
4195
|
+
this.$emit("change", event);
|
|
4196
|
+
},
|
|
4197
|
+
onClearClick: (event) => {
|
|
4198
|
+
this.$emit("clear-click", event);
|
|
4199
|
+
}
|
|
3644
4200
|
},
|
|
3645
4201
|
[
|
|
3646
4202
|
// @ts-ignore
|
|
@@ -3801,19 +4357,37 @@ const VDialPad = vue.defineComponent({
|
|
|
3801
4357
|
},
|
|
3802
4358
|
class: "vvd-component",
|
|
3803
4359
|
on: {
|
|
3804
|
-
click: (event) =>
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
4360
|
+
click: (event) => {
|
|
4361
|
+
this.$emit("click", event);
|
|
4362
|
+
},
|
|
4363
|
+
keydown: (event) => {
|
|
4364
|
+
this.$emit("keydown", event);
|
|
4365
|
+
},
|
|
4366
|
+
keyup: (event) => {
|
|
4367
|
+
this.$emit("keyup", event);
|
|
4368
|
+
},
|
|
4369
|
+
change: (event) => {
|
|
4370
|
+
this.$emit("change", event);
|
|
4371
|
+
},
|
|
3808
4372
|
input: (event) => {
|
|
3809
4373
|
this.$emit("update:modelValue", event.target.value);
|
|
3810
4374
|
this.$emit("input", event);
|
|
3811
4375
|
},
|
|
3812
|
-
blur: (event) =>
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
4376
|
+
blur: (event) => {
|
|
4377
|
+
this.$emit("blur", event);
|
|
4378
|
+
},
|
|
4379
|
+
focus: (event) => {
|
|
4380
|
+
this.$emit("focus", event);
|
|
4381
|
+
},
|
|
4382
|
+
"keypad-click": (event) => {
|
|
4383
|
+
this.$emit("keypad-click", event);
|
|
4384
|
+
},
|
|
4385
|
+
dial: (event) => {
|
|
4386
|
+
this.$emit("dial", event);
|
|
4387
|
+
},
|
|
4388
|
+
"end-call": (event) => {
|
|
4389
|
+
this.$emit("end-call", event);
|
|
4390
|
+
}
|
|
3817
4391
|
}
|
|
3818
4392
|
},
|
|
3819
4393
|
[this.$slots.default]
|
|
@@ -3836,19 +4410,37 @@ const VDialPad = vue.defineComponent({
|
|
|
3836
4410
|
...this.noInput !== void 0 && this.noInput !== false ? { "^no-input": this.noInput } : {},
|
|
3837
4411
|
...this.endCallButtonLabel !== void 0 ? { "^end-call-button-label": this.endCallButtonLabel } : {},
|
|
3838
4412
|
...this.callButtonLabel !== void 0 ? { "^call-button-label": this.callButtonLabel } : {},
|
|
3839
|
-
onClick: (event) =>
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
4413
|
+
onClick: (event) => {
|
|
4414
|
+
this.$emit("click", event);
|
|
4415
|
+
},
|
|
4416
|
+
onKeydown: (event) => {
|
|
4417
|
+
this.$emit("keydown", event);
|
|
4418
|
+
},
|
|
4419
|
+
onKeyup: (event) => {
|
|
4420
|
+
this.$emit("keyup", event);
|
|
4421
|
+
},
|
|
4422
|
+
onChange: (event) => {
|
|
4423
|
+
this.$emit("change", event);
|
|
4424
|
+
},
|
|
3843
4425
|
onInput: (event) => {
|
|
3844
4426
|
this.$emit("update:modelValue", event.target.value);
|
|
3845
4427
|
this.$emit("input", event);
|
|
3846
4428
|
},
|
|
3847
|
-
onBlur: (event) =>
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
4429
|
+
onBlur: (event) => {
|
|
4430
|
+
this.$emit("blur", event);
|
|
4431
|
+
},
|
|
4432
|
+
onFocus: (event) => {
|
|
4433
|
+
this.$emit("focus", event);
|
|
4434
|
+
},
|
|
4435
|
+
onKeypadClick: (event) => {
|
|
4436
|
+
this.$emit("keypad-click", event);
|
|
4437
|
+
},
|
|
4438
|
+
onDial: (event) => {
|
|
4439
|
+
this.$emit("dial", event);
|
|
4440
|
+
},
|
|
4441
|
+
onEndCall: (event) => {
|
|
4442
|
+
this.$emit("end-call", event);
|
|
4443
|
+
}
|
|
3852
4444
|
},
|
|
3853
4445
|
[
|
|
3854
4446
|
// @ts-ignore
|
|
@@ -3979,12 +4571,24 @@ const VDialog = vue.defineComponent({
|
|
|
3979
4571
|
},
|
|
3980
4572
|
class: "vvd-component",
|
|
3981
4573
|
on: {
|
|
3982
|
-
click: (event) =>
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
4574
|
+
click: (event) => {
|
|
4575
|
+
this.$emit("click", event);
|
|
4576
|
+
},
|
|
4577
|
+
focus: (event) => {
|
|
4578
|
+
this.$emit("focus", event);
|
|
4579
|
+
},
|
|
4580
|
+
blur: (event) => {
|
|
4581
|
+
this.$emit("blur", event);
|
|
4582
|
+
},
|
|
4583
|
+
keydown: (event) => {
|
|
4584
|
+
this.$emit("keydown", event);
|
|
4585
|
+
},
|
|
4586
|
+
keyup: (event) => {
|
|
4587
|
+
this.$emit("keyup", event);
|
|
4588
|
+
},
|
|
4589
|
+
input: (event) => {
|
|
4590
|
+
this.$emit("input", event);
|
|
4591
|
+
},
|
|
3988
4592
|
open: (event) => {
|
|
3989
4593
|
this.$emit("update:open", event.target.open);
|
|
3990
4594
|
this.$emit("open", event);
|
|
@@ -4026,12 +4630,24 @@ const VDialog = vue.defineComponent({
|
|
|
4026
4630
|
...this.dismissButtonAriaLabel !== void 0 ? { "^dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
4027
4631
|
...this.noLightDismiss !== void 0 && this.noLightDismiss !== false ? { "^no-light-dismiss": this.noLightDismiss } : {},
|
|
4028
4632
|
...this.modal !== void 0 && this.modal !== false ? { "^modal": this.modal } : {},
|
|
4029
|
-
onClick: (event) =>
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4633
|
+
onClick: (event) => {
|
|
4634
|
+
this.$emit("click", event);
|
|
4635
|
+
},
|
|
4636
|
+
onFocus: (event) => {
|
|
4637
|
+
this.$emit("focus", event);
|
|
4638
|
+
},
|
|
4639
|
+
onBlur: (event) => {
|
|
4640
|
+
this.$emit("blur", event);
|
|
4641
|
+
},
|
|
4642
|
+
onKeydown: (event) => {
|
|
4643
|
+
this.$emit("keydown", event);
|
|
4644
|
+
},
|
|
4645
|
+
onKeyup: (event) => {
|
|
4646
|
+
this.$emit("keyup", event);
|
|
4647
|
+
},
|
|
4648
|
+
onInput: (event) => {
|
|
4649
|
+
this.$emit("input", event);
|
|
4650
|
+
},
|
|
4035
4651
|
onOpen: (event) => {
|
|
4036
4652
|
this.$emit("update:open", event.target.open);
|
|
4037
4653
|
this.$emit("open", event);
|
|
@@ -4135,12 +4751,24 @@ const VDivider = vue.defineComponent({
|
|
|
4135
4751
|
},
|
|
4136
4752
|
class: "vvd-component",
|
|
4137
4753
|
on: {
|
|
4138
|
-
click: (event) =>
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4754
|
+
click: (event) => {
|
|
4755
|
+
this.$emit("click", event);
|
|
4756
|
+
},
|
|
4757
|
+
focus: (event) => {
|
|
4758
|
+
this.$emit("focus", event);
|
|
4759
|
+
},
|
|
4760
|
+
blur: (event) => {
|
|
4761
|
+
this.$emit("blur", event);
|
|
4762
|
+
},
|
|
4763
|
+
keydown: (event) => {
|
|
4764
|
+
this.$emit("keydown", event);
|
|
4765
|
+
},
|
|
4766
|
+
keyup: (event) => {
|
|
4767
|
+
this.$emit("keyup", event);
|
|
4768
|
+
},
|
|
4769
|
+
input: (event) => {
|
|
4770
|
+
this.$emit("input", event);
|
|
4771
|
+
}
|
|
4144
4772
|
}
|
|
4145
4773
|
},
|
|
4146
4774
|
[this.$slots.default]
|
|
@@ -4154,12 +4782,24 @@ const VDivider = vue.defineComponent({
|
|
|
4154
4782
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4155
4783
|
...this.role !== void 0 ? { "^role": this.role } : {},
|
|
4156
4784
|
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
4157
|
-
onClick: (event) =>
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4785
|
+
onClick: (event) => {
|
|
4786
|
+
this.$emit("click", event);
|
|
4787
|
+
},
|
|
4788
|
+
onFocus: (event) => {
|
|
4789
|
+
this.$emit("focus", event);
|
|
4790
|
+
},
|
|
4791
|
+
onBlur: (event) => {
|
|
4792
|
+
this.$emit("blur", event);
|
|
4793
|
+
},
|
|
4794
|
+
onKeydown: (event) => {
|
|
4795
|
+
this.$emit("keydown", event);
|
|
4796
|
+
},
|
|
4797
|
+
onKeyup: (event) => {
|
|
4798
|
+
this.$emit("keyup", event);
|
|
4799
|
+
},
|
|
4800
|
+
onInput: (event) => {
|
|
4801
|
+
this.$emit("input", event);
|
|
4802
|
+
}
|
|
4163
4803
|
},
|
|
4164
4804
|
[
|
|
4165
4805
|
// @ts-ignore
|
|
@@ -4256,12 +4896,24 @@ const VEmptyState = vue.defineComponent({
|
|
|
4256
4896
|
},
|
|
4257
4897
|
class: "vvd-component",
|
|
4258
4898
|
on: {
|
|
4259
|
-
click: (event) =>
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4899
|
+
click: (event) => {
|
|
4900
|
+
this.$emit("click", event);
|
|
4901
|
+
},
|
|
4902
|
+
focus: (event) => {
|
|
4903
|
+
this.$emit("focus", event);
|
|
4904
|
+
},
|
|
4905
|
+
blur: (event) => {
|
|
4906
|
+
this.$emit("blur", event);
|
|
4907
|
+
},
|
|
4908
|
+
keydown: (event) => {
|
|
4909
|
+
this.$emit("keydown", event);
|
|
4910
|
+
},
|
|
4911
|
+
keyup: (event) => {
|
|
4912
|
+
this.$emit("keyup", event);
|
|
4913
|
+
},
|
|
4914
|
+
input: (event) => {
|
|
4915
|
+
this.$emit("input", event);
|
|
4916
|
+
}
|
|
4265
4917
|
}
|
|
4266
4918
|
},
|
|
4267
4919
|
[
|
|
@@ -4283,12 +4935,24 @@ const VEmptyState = vue.defineComponent({
|
|
|
4283
4935
|
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
4284
4936
|
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
4285
4937
|
...this.iconDecoration !== void 0 ? { "^icon-decoration": this.iconDecoration } : {},
|
|
4286
|
-
onClick: (event) =>
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
|
|
4938
|
+
onClick: (event) => {
|
|
4939
|
+
this.$emit("click", event);
|
|
4940
|
+
},
|
|
4941
|
+
onFocus: (event) => {
|
|
4942
|
+
this.$emit("focus", event);
|
|
4943
|
+
},
|
|
4944
|
+
onBlur: (event) => {
|
|
4945
|
+
this.$emit("blur", event);
|
|
4946
|
+
},
|
|
4947
|
+
onKeydown: (event) => {
|
|
4948
|
+
this.$emit("keydown", event);
|
|
4949
|
+
},
|
|
4950
|
+
onKeyup: (event) => {
|
|
4951
|
+
this.$emit("keyup", event);
|
|
4952
|
+
},
|
|
4953
|
+
onInput: (event) => {
|
|
4954
|
+
this.$emit("input", event);
|
|
4955
|
+
}
|
|
4292
4956
|
},
|
|
4293
4957
|
[
|
|
4294
4958
|
// @ts-ignore
|
|
@@ -4477,12 +5141,24 @@ const VFab = vue.defineComponent({
|
|
|
4477
5141
|
},
|
|
4478
5142
|
class: "vvd-component",
|
|
4479
5143
|
on: {
|
|
4480
|
-
click: (event) =>
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
5144
|
+
click: (event) => {
|
|
5145
|
+
this.$emit("click", event);
|
|
5146
|
+
},
|
|
5147
|
+
focus: (event) => {
|
|
5148
|
+
this.$emit("focus", event);
|
|
5149
|
+
},
|
|
5150
|
+
blur: (event) => {
|
|
5151
|
+
this.$emit("blur", event);
|
|
5152
|
+
},
|
|
5153
|
+
keydown: (event) => {
|
|
5154
|
+
this.$emit("keydown", event);
|
|
5155
|
+
},
|
|
5156
|
+
keyup: (event) => {
|
|
5157
|
+
this.$emit("keyup", event);
|
|
5158
|
+
},
|
|
5159
|
+
input: (event) => {
|
|
5160
|
+
this.$emit("input", event);
|
|
5161
|
+
}
|
|
4486
5162
|
}
|
|
4487
5163
|
},
|
|
4488
5164
|
[
|
|
@@ -4516,12 +5192,24 @@ const VFab = vue.defineComponent({
|
|
|
4516
5192
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
4517
5193
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4518
5194
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
4519
|
-
onClick: (event) =>
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
5195
|
+
onClick: (event) => {
|
|
5196
|
+
this.$emit("click", event);
|
|
5197
|
+
},
|
|
5198
|
+
onFocus: (event) => {
|
|
5199
|
+
this.$emit("focus", event);
|
|
5200
|
+
},
|
|
5201
|
+
onBlur: (event) => {
|
|
5202
|
+
this.$emit("blur", event);
|
|
5203
|
+
},
|
|
5204
|
+
onKeydown: (event) => {
|
|
5205
|
+
this.$emit("keydown", event);
|
|
5206
|
+
},
|
|
5207
|
+
onKeyup: (event) => {
|
|
5208
|
+
this.$emit("keyup", event);
|
|
5209
|
+
},
|
|
5210
|
+
onInput: (event) => {
|
|
5211
|
+
this.$emit("input", event);
|
|
5212
|
+
}
|
|
4525
5213
|
},
|
|
4526
5214
|
[
|
|
4527
5215
|
// @ts-ignore
|
|
@@ -4685,13 +5373,27 @@ const VFilePicker = vue.defineComponent({
|
|
|
4685
5373
|
},
|
|
4686
5374
|
class: "vvd-component",
|
|
4687
5375
|
on: {
|
|
4688
|
-
click: (event) =>
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
5376
|
+
click: (event) => {
|
|
5377
|
+
this.$emit("click", event);
|
|
5378
|
+
},
|
|
5379
|
+
focus: (event) => {
|
|
5380
|
+
this.$emit("focus", event);
|
|
5381
|
+
},
|
|
5382
|
+
blur: (event) => {
|
|
5383
|
+
this.$emit("blur", event);
|
|
5384
|
+
},
|
|
5385
|
+
keydown: (event) => {
|
|
5386
|
+
this.$emit("keydown", event);
|
|
5387
|
+
},
|
|
5388
|
+
keyup: (event) => {
|
|
5389
|
+
this.$emit("keyup", event);
|
|
5390
|
+
},
|
|
5391
|
+
input: (event) => {
|
|
5392
|
+
this.$emit("input", event);
|
|
5393
|
+
},
|
|
5394
|
+
change: (event) => {
|
|
5395
|
+
this.$emit("change", event);
|
|
5396
|
+
}
|
|
4695
5397
|
}
|
|
4696
5398
|
},
|
|
4697
5399
|
[
|
|
@@ -4719,13 +5421,27 @@ const VFilePicker = vue.defineComponent({
|
|
|
4719
5421
|
...this.maxFileSize !== void 0 ? { "^max-file-size": this.maxFileSize } : {},
|
|
4720
5422
|
...this.accept !== void 0 ? { "^accept": this.accept } : {},
|
|
4721
5423
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4722
|
-
onClick: (event) =>
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
5424
|
+
onClick: (event) => {
|
|
5425
|
+
this.$emit("click", event);
|
|
5426
|
+
},
|
|
5427
|
+
onFocus: (event) => {
|
|
5428
|
+
this.$emit("focus", event);
|
|
5429
|
+
},
|
|
5430
|
+
onBlur: (event) => {
|
|
5431
|
+
this.$emit("blur", event);
|
|
5432
|
+
},
|
|
5433
|
+
onKeydown: (event) => {
|
|
5434
|
+
this.$emit("keydown", event);
|
|
5435
|
+
},
|
|
5436
|
+
onKeyup: (event) => {
|
|
5437
|
+
this.$emit("keyup", event);
|
|
5438
|
+
},
|
|
5439
|
+
onInput: (event) => {
|
|
5440
|
+
this.$emit("input", event);
|
|
5441
|
+
},
|
|
5442
|
+
onChange: (event) => {
|
|
5443
|
+
this.$emit("change", event);
|
|
5444
|
+
}
|
|
4729
5445
|
},
|
|
4730
5446
|
[
|
|
4731
5447
|
// @ts-ignore
|
|
@@ -4807,12 +5523,24 @@ const VHeader = vue.defineComponent({
|
|
|
4807
5523
|
},
|
|
4808
5524
|
class: "vvd-component",
|
|
4809
5525
|
on: {
|
|
4810
|
-
click: (event) =>
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
5526
|
+
click: (event) => {
|
|
5527
|
+
this.$emit("click", event);
|
|
5528
|
+
},
|
|
5529
|
+
focus: (event) => {
|
|
5530
|
+
this.$emit("focus", event);
|
|
5531
|
+
},
|
|
5532
|
+
blur: (event) => {
|
|
5533
|
+
this.$emit("blur", event);
|
|
5534
|
+
},
|
|
5535
|
+
keydown: (event) => {
|
|
5536
|
+
this.$emit("keydown", event);
|
|
5537
|
+
},
|
|
5538
|
+
keyup: (event) => {
|
|
5539
|
+
this.$emit("keyup", event);
|
|
5540
|
+
},
|
|
5541
|
+
input: (event) => {
|
|
5542
|
+
this.$emit("input", event);
|
|
5543
|
+
}
|
|
4816
5544
|
}
|
|
4817
5545
|
},
|
|
4818
5546
|
[
|
|
@@ -4832,12 +5560,24 @@ const VHeader = vue.defineComponent({
|
|
|
4832
5560
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4833
5561
|
...this.elevationShadow !== void 0 && this.elevationShadow !== false ? { "^elevation-shadow": this.elevationShadow } : {},
|
|
4834
5562
|
...this.alternate !== void 0 && this.alternate !== false ? { "^alternate": this.alternate } : {},
|
|
4835
|
-
onClick: (event) =>
|
|
4836
|
-
|
|
4837
|
-
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
5563
|
+
onClick: (event) => {
|
|
5564
|
+
this.$emit("click", event);
|
|
5565
|
+
},
|
|
5566
|
+
onFocus: (event) => {
|
|
5567
|
+
this.$emit("focus", event);
|
|
5568
|
+
},
|
|
5569
|
+
onBlur: (event) => {
|
|
5570
|
+
this.$emit("blur", event);
|
|
5571
|
+
},
|
|
5572
|
+
onKeydown: (event) => {
|
|
5573
|
+
this.$emit("keydown", event);
|
|
5574
|
+
},
|
|
5575
|
+
onKeyup: (event) => {
|
|
5576
|
+
this.$emit("keyup", event);
|
|
5577
|
+
},
|
|
5578
|
+
onInput: (event) => {
|
|
5579
|
+
this.$emit("input", event);
|
|
5580
|
+
}
|
|
4841
5581
|
},
|
|
4842
5582
|
[
|
|
4843
5583
|
// @ts-ignore
|
|
@@ -4934,18 +5674,30 @@ const VIcon = vue.defineComponent({
|
|
|
4934
5674
|
},
|
|
4935
5675
|
class: "vvd-component",
|
|
4936
5676
|
on: {
|
|
4937
|
-
click: (event) =>
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
|
|
5677
|
+
click: (event) => {
|
|
5678
|
+
this.$emit("click", event);
|
|
5679
|
+
},
|
|
5680
|
+
focus: (event) => {
|
|
5681
|
+
this.$emit("focus", event);
|
|
5682
|
+
},
|
|
5683
|
+
blur: (event) => {
|
|
5684
|
+
this.$emit("blur", event);
|
|
5685
|
+
},
|
|
5686
|
+
keydown: (event) => {
|
|
5687
|
+
this.$emit("keydown", event);
|
|
5688
|
+
},
|
|
5689
|
+
keyup: (event) => {
|
|
5690
|
+
this.$emit("keyup", event);
|
|
5691
|
+
},
|
|
5692
|
+
input: (event) => {
|
|
5693
|
+
this.$emit("input", event);
|
|
5694
|
+
}
|
|
5695
|
+
}
|
|
5696
|
+
},
|
|
5697
|
+
[this.$slots.default]
|
|
5698
|
+
);
|
|
5699
|
+
}
|
|
5700
|
+
return vue.h(
|
|
4949
5701
|
this.componentName,
|
|
4950
5702
|
{
|
|
4951
5703
|
ref: "element",
|
|
@@ -4954,12 +5706,24 @@ const VIcon = vue.defineComponent({
|
|
|
4954
5706
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
4955
5707
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
4956
5708
|
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
4957
|
-
onClick: (event) =>
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
|
|
5709
|
+
onClick: (event) => {
|
|
5710
|
+
this.$emit("click", event);
|
|
5711
|
+
},
|
|
5712
|
+
onFocus: (event) => {
|
|
5713
|
+
this.$emit("focus", event);
|
|
5714
|
+
},
|
|
5715
|
+
onBlur: (event) => {
|
|
5716
|
+
this.$emit("blur", event);
|
|
5717
|
+
},
|
|
5718
|
+
onKeydown: (event) => {
|
|
5719
|
+
this.$emit("keydown", event);
|
|
5720
|
+
},
|
|
5721
|
+
onKeyup: (event) => {
|
|
5722
|
+
this.$emit("keyup", event);
|
|
5723
|
+
},
|
|
5724
|
+
onInput: (event) => {
|
|
5725
|
+
this.$emit("input", event);
|
|
5726
|
+
}
|
|
4963
5727
|
},
|
|
4964
5728
|
[
|
|
4965
5729
|
// @ts-ignore
|
|
@@ -5069,12 +5833,24 @@ const VLayout = vue.defineComponent({
|
|
|
5069
5833
|
},
|
|
5070
5834
|
class: "vvd-component",
|
|
5071
5835
|
on: {
|
|
5072
|
-
click: (event) =>
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
5836
|
+
click: (event) => {
|
|
5837
|
+
this.$emit("click", event);
|
|
5838
|
+
},
|
|
5839
|
+
focus: (event) => {
|
|
5840
|
+
this.$emit("focus", event);
|
|
5841
|
+
},
|
|
5842
|
+
blur: (event) => {
|
|
5843
|
+
this.$emit("blur", event);
|
|
5844
|
+
},
|
|
5845
|
+
keydown: (event) => {
|
|
5846
|
+
this.$emit("keydown", event);
|
|
5847
|
+
},
|
|
5848
|
+
keyup: (event) => {
|
|
5849
|
+
this.$emit("keyup", event);
|
|
5850
|
+
},
|
|
5851
|
+
input: (event) => {
|
|
5852
|
+
this.$emit("input", event);
|
|
5853
|
+
}
|
|
5078
5854
|
}
|
|
5079
5855
|
},
|
|
5080
5856
|
[this.$slots.default]
|
|
@@ -5091,12 +5867,24 @@ const VLayout = vue.defineComponent({
|
|
|
5091
5867
|
...this.columnSpacing !== void 0 ? { "^column-spacing": this.columnSpacing } : {},
|
|
5092
5868
|
...this.rowSpacing !== void 0 ? { "^row-spacing": this.rowSpacing } : {},
|
|
5093
5869
|
...this.autoSizing !== void 0 ? { "^auto-sizing": this.autoSizing } : {},
|
|
5094
|
-
onClick: (event) =>
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5099
|
-
|
|
5870
|
+
onClick: (event) => {
|
|
5871
|
+
this.$emit("click", event);
|
|
5872
|
+
},
|
|
5873
|
+
onFocus: (event) => {
|
|
5874
|
+
this.$emit("focus", event);
|
|
5875
|
+
},
|
|
5876
|
+
onBlur: (event) => {
|
|
5877
|
+
this.$emit("blur", event);
|
|
5878
|
+
},
|
|
5879
|
+
onKeydown: (event) => {
|
|
5880
|
+
this.$emit("keydown", event);
|
|
5881
|
+
},
|
|
5882
|
+
onKeyup: (event) => {
|
|
5883
|
+
this.$emit("keyup", event);
|
|
5884
|
+
},
|
|
5885
|
+
onInput: (event) => {
|
|
5886
|
+
this.$emit("input", event);
|
|
5887
|
+
}
|
|
5100
5888
|
},
|
|
5101
5889
|
[
|
|
5102
5890
|
// @ts-ignore
|
|
@@ -5142,6 +5930,13 @@ const VMenu = vue.defineComponent({
|
|
|
5142
5930
|
* indicates whether the menu will automatically close when focus moves away from it.
|
|
5143
5931
|
*/
|
|
5144
5932
|
autoDismiss: { type: Boolean, default: void 0 },
|
|
5933
|
+
/**
|
|
5934
|
+
* The strategy-absolute attribute.
|
|
5935
|
+
*/
|
|
5936
|
+
positionStrategy: {
|
|
5937
|
+
type: String,
|
|
5938
|
+
default: void 0
|
|
5939
|
+
},
|
|
5145
5940
|
/**
|
|
5146
5941
|
* indicates whether the menu is open
|
|
5147
5942
|
*/
|
|
@@ -5223,6 +6018,7 @@ const VMenu = vue.defineComponent({
|
|
|
5223
6018
|
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
5224
6019
|
...this.trigger !== void 0 ? { trigger: this.trigger } : {},
|
|
5225
6020
|
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
6021
|
+
...this.positionStrategy !== void 0 ? { "position-strategy": this.positionStrategy } : {},
|
|
5226
6022
|
...this.open !== void 0 ? { open: this.open } : {}
|
|
5227
6023
|
},
|
|
5228
6024
|
class: "vvd-component",
|
|
@@ -5230,14 +6026,30 @@ const VMenu = vue.defineComponent({
|
|
|
5230
6026
|
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
5231
6027
|
},
|
|
5232
6028
|
on: {
|
|
5233
|
-
click: (event) =>
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
6029
|
+
click: (event) => {
|
|
6030
|
+
this.$emit("click", event);
|
|
6031
|
+
},
|
|
6032
|
+
focus: (event) => {
|
|
6033
|
+
this.$emit("focus", event);
|
|
6034
|
+
},
|
|
6035
|
+
blur: (event) => {
|
|
6036
|
+
this.$emit("blur", event);
|
|
6037
|
+
},
|
|
6038
|
+
keydown: (event) => {
|
|
6039
|
+
this.$emit("keydown", event);
|
|
6040
|
+
},
|
|
6041
|
+
keyup: (event) => {
|
|
6042
|
+
this.$emit("keyup", event);
|
|
6043
|
+
},
|
|
6044
|
+
input: (event) => {
|
|
6045
|
+
this.$emit("input", event);
|
|
6046
|
+
},
|
|
6047
|
+
open: (event) => {
|
|
6048
|
+
this.$emit("open", event);
|
|
6049
|
+
},
|
|
6050
|
+
close: (event) => {
|
|
6051
|
+
this.$emit("close", event);
|
|
6052
|
+
}
|
|
5241
6053
|
}
|
|
5242
6054
|
},
|
|
5243
6055
|
[
|
|
@@ -5262,15 +6074,32 @@ const VMenu = vue.defineComponent({
|
|
|
5262
6074
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
5263
6075
|
...this.trigger !== void 0 ? { "^trigger": this.trigger } : {},
|
|
5264
6076
|
...this.autoDismiss !== void 0 && this.autoDismiss !== false ? { "^auto-dismiss": this.autoDismiss } : {},
|
|
6077
|
+
...this.positionStrategy !== void 0 ? { "^position-strategy": this.positionStrategy } : {},
|
|
5265
6078
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
5266
|
-
onClick: (event) =>
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5273
|
-
|
|
6079
|
+
onClick: (event) => {
|
|
6080
|
+
this.$emit("click", event);
|
|
6081
|
+
},
|
|
6082
|
+
onFocus: (event) => {
|
|
6083
|
+
this.$emit("focus", event);
|
|
6084
|
+
},
|
|
6085
|
+
onBlur: (event) => {
|
|
6086
|
+
this.$emit("blur", event);
|
|
6087
|
+
},
|
|
6088
|
+
onKeydown: (event) => {
|
|
6089
|
+
this.$emit("keydown", event);
|
|
6090
|
+
},
|
|
6091
|
+
onKeyup: (event) => {
|
|
6092
|
+
this.$emit("keyup", event);
|
|
6093
|
+
},
|
|
6094
|
+
onInput: (event) => {
|
|
6095
|
+
this.$emit("input", event);
|
|
6096
|
+
},
|
|
6097
|
+
onOpen: (event) => {
|
|
6098
|
+
this.$emit("open", event);
|
|
6099
|
+
},
|
|
6100
|
+
onClose: (event) => {
|
|
6101
|
+
this.$emit("close", event);
|
|
6102
|
+
}
|
|
5274
6103
|
},
|
|
5275
6104
|
[
|
|
5276
6105
|
// @ts-ignore
|
|
@@ -5429,13 +6258,27 @@ const VMenuItem = vue.defineComponent({
|
|
|
5429
6258
|
},
|
|
5430
6259
|
class: "vvd-component",
|
|
5431
6260
|
on: {
|
|
5432
|
-
click: (event) =>
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
6261
|
+
click: (event) => {
|
|
6262
|
+
this.$emit("click", event);
|
|
6263
|
+
},
|
|
6264
|
+
focus: (event) => {
|
|
6265
|
+
this.$emit("focus", event);
|
|
6266
|
+
},
|
|
6267
|
+
blur: (event) => {
|
|
6268
|
+
this.$emit("blur", event);
|
|
6269
|
+
},
|
|
6270
|
+
keydown: (event) => {
|
|
6271
|
+
this.$emit("keydown", event);
|
|
6272
|
+
},
|
|
6273
|
+
keyup: (event) => {
|
|
6274
|
+
this.$emit("keyup", event);
|
|
6275
|
+
},
|
|
6276
|
+
input: (event) => {
|
|
6277
|
+
this.$emit("input", event);
|
|
6278
|
+
},
|
|
6279
|
+
"expanded-change": (event) => {
|
|
6280
|
+
this.$emit("expanded-change", event);
|
|
6281
|
+
},
|
|
5439
6282
|
change: (event) => {
|
|
5440
6283
|
this.$emit(
|
|
5441
6284
|
"update:modelValue",
|
|
@@ -5472,13 +6315,27 @@ const VMenuItem = vue.defineComponent({
|
|
|
5472
6315
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5473
6316
|
...this.checkTrailing !== void 0 && this.checkTrailing !== false ? { "^check-trailing": this.checkTrailing } : {},
|
|
5474
6317
|
...this.checkAppearance !== void 0 ? { "^check-appearance": this.checkAppearance } : {},
|
|
5475
|
-
onClick: (event) =>
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
6318
|
+
onClick: (event) => {
|
|
6319
|
+
this.$emit("click", event);
|
|
6320
|
+
},
|
|
6321
|
+
onFocus: (event) => {
|
|
6322
|
+
this.$emit("focus", event);
|
|
6323
|
+
},
|
|
6324
|
+
onBlur: (event) => {
|
|
6325
|
+
this.$emit("blur", event);
|
|
6326
|
+
},
|
|
6327
|
+
onKeydown: (event) => {
|
|
6328
|
+
this.$emit("keydown", event);
|
|
6329
|
+
},
|
|
6330
|
+
onKeyup: (event) => {
|
|
6331
|
+
this.$emit("keyup", event);
|
|
6332
|
+
},
|
|
6333
|
+
onInput: (event) => {
|
|
6334
|
+
this.$emit("input", event);
|
|
6335
|
+
},
|
|
6336
|
+
onExpandedChange: (event) => {
|
|
6337
|
+
this.$emit("expanded-change", event);
|
|
6338
|
+
},
|
|
5482
6339
|
onChange: (event) => {
|
|
5483
6340
|
this.$emit(
|
|
5484
6341
|
"update:modelValue",
|
|
@@ -5561,12 +6418,24 @@ const VNav = vue.defineComponent({
|
|
|
5561
6418
|
},
|
|
5562
6419
|
class: "vvd-component",
|
|
5563
6420
|
on: {
|
|
5564
|
-
click: (event) =>
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
6421
|
+
click: (event) => {
|
|
6422
|
+
this.$emit("click", event);
|
|
6423
|
+
},
|
|
6424
|
+
focus: (event) => {
|
|
6425
|
+
this.$emit("focus", event);
|
|
6426
|
+
},
|
|
6427
|
+
blur: (event) => {
|
|
6428
|
+
this.$emit("blur", event);
|
|
6429
|
+
},
|
|
6430
|
+
keydown: (event) => {
|
|
6431
|
+
this.$emit("keydown", event);
|
|
6432
|
+
},
|
|
6433
|
+
keyup: (event) => {
|
|
6434
|
+
this.$emit("keyup", event);
|
|
6435
|
+
},
|
|
6436
|
+
input: (event) => {
|
|
6437
|
+
this.$emit("input", event);
|
|
6438
|
+
}
|
|
5570
6439
|
}
|
|
5571
6440
|
},
|
|
5572
6441
|
[this.$slots.default]
|
|
@@ -5578,12 +6447,24 @@ const VNav = vue.defineComponent({
|
|
|
5578
6447
|
ref: "element",
|
|
5579
6448
|
class: "vvd-component",
|
|
5580
6449
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5581
|
-
onClick: (event) =>
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
6450
|
+
onClick: (event) => {
|
|
6451
|
+
this.$emit("click", event);
|
|
6452
|
+
},
|
|
6453
|
+
onFocus: (event) => {
|
|
6454
|
+
this.$emit("focus", event);
|
|
6455
|
+
},
|
|
6456
|
+
onBlur: (event) => {
|
|
6457
|
+
this.$emit("blur", event);
|
|
6458
|
+
},
|
|
6459
|
+
onKeydown: (event) => {
|
|
6460
|
+
this.$emit("keydown", event);
|
|
6461
|
+
},
|
|
6462
|
+
onKeyup: (event) => {
|
|
6463
|
+
this.$emit("keyup", event);
|
|
6464
|
+
},
|
|
6465
|
+
onInput: (event) => {
|
|
6466
|
+
this.$emit("input", event);
|
|
6467
|
+
}
|
|
5587
6468
|
},
|
|
5588
6469
|
[
|
|
5589
6470
|
// @ts-ignore
|
|
@@ -5684,13 +6565,27 @@ const VNavDisclosure = vue.defineComponent({
|
|
|
5684
6565
|
},
|
|
5685
6566
|
class: "vvd-component",
|
|
5686
6567
|
on: {
|
|
5687
|
-
click: (event) =>
|
|
5688
|
-
|
|
5689
|
-
|
|
5690
|
-
|
|
5691
|
-
|
|
5692
|
-
|
|
5693
|
-
|
|
6568
|
+
click: (event) => {
|
|
6569
|
+
this.$emit("click", event);
|
|
6570
|
+
},
|
|
6571
|
+
focus: (event) => {
|
|
6572
|
+
this.$emit("focus", event);
|
|
6573
|
+
},
|
|
6574
|
+
blur: (event) => {
|
|
6575
|
+
this.$emit("blur", event);
|
|
6576
|
+
},
|
|
6577
|
+
keydown: (event) => {
|
|
6578
|
+
this.$emit("keydown", event);
|
|
6579
|
+
},
|
|
6580
|
+
keyup: (event) => {
|
|
6581
|
+
this.$emit("keyup", event);
|
|
6582
|
+
},
|
|
6583
|
+
input: (event) => {
|
|
6584
|
+
this.$emit("input", event);
|
|
6585
|
+
},
|
|
6586
|
+
toggle: (event) => {
|
|
6587
|
+
this.$emit("toggle", event);
|
|
6588
|
+
}
|
|
5694
6589
|
}
|
|
5695
6590
|
},
|
|
5696
6591
|
[
|
|
@@ -5713,13 +6608,27 @@ const VNavDisclosure = vue.defineComponent({
|
|
|
5713
6608
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5714
6609
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
5715
6610
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
5716
|
-
onClick: (event) =>
|
|
5717
|
-
|
|
5718
|
-
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
6611
|
+
onClick: (event) => {
|
|
6612
|
+
this.$emit("click", event);
|
|
6613
|
+
},
|
|
6614
|
+
onFocus: (event) => {
|
|
6615
|
+
this.$emit("focus", event);
|
|
6616
|
+
},
|
|
6617
|
+
onBlur: (event) => {
|
|
6618
|
+
this.$emit("blur", event);
|
|
6619
|
+
},
|
|
6620
|
+
onKeydown: (event) => {
|
|
6621
|
+
this.$emit("keydown", event);
|
|
6622
|
+
},
|
|
6623
|
+
onKeyup: (event) => {
|
|
6624
|
+
this.$emit("keyup", event);
|
|
6625
|
+
},
|
|
6626
|
+
onInput: (event) => {
|
|
6627
|
+
this.$emit("input", event);
|
|
6628
|
+
},
|
|
6629
|
+
onToggle: (event) => {
|
|
6630
|
+
this.$emit("toggle", event);
|
|
6631
|
+
}
|
|
5723
6632
|
},
|
|
5724
6633
|
[
|
|
5725
6634
|
// @ts-ignore
|
|
@@ -5867,12 +6776,24 @@ const VNavItem = vue.defineComponent({
|
|
|
5867
6776
|
},
|
|
5868
6777
|
class: "vvd-component",
|
|
5869
6778
|
on: {
|
|
5870
|
-
click: (event) =>
|
|
5871
|
-
|
|
5872
|
-
|
|
5873
|
-
|
|
5874
|
-
|
|
5875
|
-
|
|
6779
|
+
click: (event) => {
|
|
6780
|
+
this.$emit("click", event);
|
|
6781
|
+
},
|
|
6782
|
+
focus: (event) => {
|
|
6783
|
+
this.$emit("focus", event);
|
|
6784
|
+
},
|
|
6785
|
+
blur: (event) => {
|
|
6786
|
+
this.$emit("blur", event);
|
|
6787
|
+
},
|
|
6788
|
+
keydown: (event) => {
|
|
6789
|
+
this.$emit("keydown", event);
|
|
6790
|
+
},
|
|
6791
|
+
keyup: (event) => {
|
|
6792
|
+
this.$emit("keyup", event);
|
|
6793
|
+
},
|
|
6794
|
+
input: (event) => {
|
|
6795
|
+
this.$emit("input", event);
|
|
6796
|
+
}
|
|
5876
6797
|
}
|
|
5877
6798
|
},
|
|
5878
6799
|
[
|
|
@@ -5902,12 +6823,24 @@ const VNavItem = vue.defineComponent({
|
|
|
5902
6823
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
5903
6824
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
5904
6825
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
5905
|
-
onClick: (event) =>
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
6826
|
+
onClick: (event) => {
|
|
6827
|
+
this.$emit("click", event);
|
|
6828
|
+
},
|
|
6829
|
+
onFocus: (event) => {
|
|
6830
|
+
this.$emit("focus", event);
|
|
6831
|
+
},
|
|
6832
|
+
onBlur: (event) => {
|
|
6833
|
+
this.$emit("blur", event);
|
|
6834
|
+
},
|
|
6835
|
+
onKeydown: (event) => {
|
|
6836
|
+
this.$emit("keydown", event);
|
|
6837
|
+
},
|
|
6838
|
+
onKeyup: (event) => {
|
|
6839
|
+
this.$emit("keyup", event);
|
|
6840
|
+
},
|
|
6841
|
+
onInput: (event) => {
|
|
6842
|
+
this.$emit("input", event);
|
|
6843
|
+
}
|
|
5911
6844
|
},
|
|
5912
6845
|
[
|
|
5913
6846
|
// @ts-ignore
|
|
@@ -5997,12 +6930,24 @@ const VNote = vue.defineComponent({
|
|
|
5997
6930
|
},
|
|
5998
6931
|
class: "vvd-component",
|
|
5999
6932
|
on: {
|
|
6000
|
-
click: (event) =>
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
|
|
6933
|
+
click: (event) => {
|
|
6934
|
+
this.$emit("click", event);
|
|
6935
|
+
},
|
|
6936
|
+
focus: (event) => {
|
|
6937
|
+
this.$emit("focus", event);
|
|
6938
|
+
},
|
|
6939
|
+
blur: (event) => {
|
|
6940
|
+
this.$emit("blur", event);
|
|
6941
|
+
},
|
|
6942
|
+
keydown: (event) => {
|
|
6943
|
+
this.$emit("keydown", event);
|
|
6944
|
+
},
|
|
6945
|
+
keyup: (event) => {
|
|
6946
|
+
this.$emit("keyup", event);
|
|
6947
|
+
},
|
|
6948
|
+
input: (event) => {
|
|
6949
|
+
this.$emit("input", event);
|
|
6950
|
+
}
|
|
6006
6951
|
}
|
|
6007
6952
|
},
|
|
6008
6953
|
[
|
|
@@ -6021,12 +6966,24 @@ const VNote = vue.defineComponent({
|
|
|
6021
6966
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
6022
6967
|
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
6023
6968
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6024
|
-
onClick: (event) =>
|
|
6025
|
-
|
|
6026
|
-
|
|
6027
|
-
|
|
6028
|
-
|
|
6029
|
-
|
|
6969
|
+
onClick: (event) => {
|
|
6970
|
+
this.$emit("click", event);
|
|
6971
|
+
},
|
|
6972
|
+
onFocus: (event) => {
|
|
6973
|
+
this.$emit("focus", event);
|
|
6974
|
+
},
|
|
6975
|
+
onBlur: (event) => {
|
|
6976
|
+
this.$emit("blur", event);
|
|
6977
|
+
},
|
|
6978
|
+
onKeydown: (event) => {
|
|
6979
|
+
this.$emit("keydown", event);
|
|
6980
|
+
},
|
|
6981
|
+
onKeyup: (event) => {
|
|
6982
|
+
this.$emit("keyup", event);
|
|
6983
|
+
},
|
|
6984
|
+
onInput: (event) => {
|
|
6985
|
+
this.$emit("input", event);
|
|
6986
|
+
}
|
|
6030
6987
|
},
|
|
6031
6988
|
[
|
|
6032
6989
|
// @ts-ignore
|
|
@@ -6138,6 +7095,13 @@ const VNumberField = vue.defineComponent({
|
|
|
6138
7095
|
* Sets the width of the element to a specified number of characters.
|
|
6139
7096
|
*/
|
|
6140
7097
|
size: { type: Number, default: void 0 },
|
|
7098
|
+
/**
|
|
7099
|
+
* The size the number-field should have.
|
|
7100
|
+
*/
|
|
7101
|
+
scale: {
|
|
7102
|
+
type: String,
|
|
7103
|
+
default: void 0
|
|
7104
|
+
},
|
|
6141
7105
|
/**
|
|
6142
7106
|
* Amount to increment or decrement the value by
|
|
6143
7107
|
*/
|
|
@@ -6270,6 +7234,7 @@ const VNumberField = vue.defineComponent({
|
|
|
6270
7234
|
...this.maxlength !== void 0 ? { maxlength: this.maxlength } : {},
|
|
6271
7235
|
...this.minlength !== void 0 ? { minlength: this.minlength } : {},
|
|
6272
7236
|
...this.size !== void 0 ? { size: this.size } : {},
|
|
7237
|
+
...this.scale !== void 0 ? { scale: this.scale } : {},
|
|
6273
7238
|
...this.step !== void 0 ? { step: this.step } : {},
|
|
6274
7239
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
6275
7240
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
@@ -6281,11 +7246,21 @@ const VNumberField = vue.defineComponent({
|
|
|
6281
7246
|
},
|
|
6282
7247
|
class: "vvd-component",
|
|
6283
7248
|
on: {
|
|
6284
|
-
click: (event) =>
|
|
6285
|
-
|
|
6286
|
-
|
|
6287
|
-
|
|
6288
|
-
|
|
7249
|
+
click: (event) => {
|
|
7250
|
+
this.$emit("click", event);
|
|
7251
|
+
},
|
|
7252
|
+
focus: (event) => {
|
|
7253
|
+
this.$emit("focus", event);
|
|
7254
|
+
},
|
|
7255
|
+
blur: (event) => {
|
|
7256
|
+
this.$emit("blur", event);
|
|
7257
|
+
},
|
|
7258
|
+
keydown: (event) => {
|
|
7259
|
+
this.$emit("keydown", event);
|
|
7260
|
+
},
|
|
7261
|
+
keyup: (event) => {
|
|
7262
|
+
this.$emit("keyup", event);
|
|
7263
|
+
},
|
|
6289
7264
|
input: (event) => {
|
|
6290
7265
|
this.$emit(
|
|
6291
7266
|
"update:modelValue",
|
|
@@ -6293,7 +7268,9 @@ const VNumberField = vue.defineComponent({
|
|
|
6293
7268
|
);
|
|
6294
7269
|
this.$emit("input", event);
|
|
6295
7270
|
},
|
|
6296
|
-
change: (event) =>
|
|
7271
|
+
change: (event) => {
|
|
7272
|
+
this.$emit("change", event);
|
|
7273
|
+
}
|
|
6297
7274
|
}
|
|
6298
7275
|
},
|
|
6299
7276
|
[
|
|
@@ -6327,6 +7304,7 @@ const VNumberField = vue.defineComponent({
|
|
|
6327
7304
|
...this.maxlength !== void 0 ? { "^maxlength": this.maxlength } : {},
|
|
6328
7305
|
...this.minlength !== void 0 ? { "^minlength": this.minlength } : {},
|
|
6329
7306
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
7307
|
+
...this.scale !== void 0 ? { "^scale": this.scale } : {},
|
|
6330
7308
|
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
6331
7309
|
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
6332
7310
|
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
@@ -6335,11 +7313,21 @@ const VNumberField = vue.defineComponent({
|
|
|
6335
7313
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
6336
7314
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
6337
7315
|
...this.autoComplete !== void 0 ? { "^autoComplete": this.autoComplete } : {},
|
|
6338
|
-
onClick: (event) =>
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6342
|
-
|
|
7316
|
+
onClick: (event) => {
|
|
7317
|
+
this.$emit("click", event);
|
|
7318
|
+
},
|
|
7319
|
+
onFocus: (event) => {
|
|
7320
|
+
this.$emit("focus", event);
|
|
7321
|
+
},
|
|
7322
|
+
onBlur: (event) => {
|
|
7323
|
+
this.$emit("blur", event);
|
|
7324
|
+
},
|
|
7325
|
+
onKeydown: (event) => {
|
|
7326
|
+
this.$emit("keydown", event);
|
|
7327
|
+
},
|
|
7328
|
+
onKeyup: (event) => {
|
|
7329
|
+
this.$emit("keyup", event);
|
|
7330
|
+
},
|
|
6343
7331
|
onInput: (event) => {
|
|
6344
7332
|
this.$emit(
|
|
6345
7333
|
"update:modelValue",
|
|
@@ -6347,7 +7335,9 @@ const VNumberField = vue.defineComponent({
|
|
|
6347
7335
|
);
|
|
6348
7336
|
this.$emit("input", event);
|
|
6349
7337
|
},
|
|
6350
|
-
onChange: (event) =>
|
|
7338
|
+
onChange: (event) => {
|
|
7339
|
+
this.$emit("change", event);
|
|
7340
|
+
}
|
|
6351
7341
|
},
|
|
6352
7342
|
[
|
|
6353
7343
|
// @ts-ignore
|
|
@@ -6460,12 +7450,24 @@ const VOption = vue.defineComponent({
|
|
|
6460
7450
|
},
|
|
6461
7451
|
class: "vvd-component",
|
|
6462
7452
|
on: {
|
|
6463
|
-
click: (event) =>
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
|
|
7453
|
+
click: (event) => {
|
|
7454
|
+
this.$emit("click", event);
|
|
7455
|
+
},
|
|
7456
|
+
focus: (event) => {
|
|
7457
|
+
this.$emit("focus", event);
|
|
7458
|
+
},
|
|
7459
|
+
blur: (event) => {
|
|
7460
|
+
this.$emit("blur", event);
|
|
7461
|
+
},
|
|
7462
|
+
keydown: (event) => {
|
|
7463
|
+
this.$emit("keydown", event);
|
|
7464
|
+
},
|
|
7465
|
+
keyup: (event) => {
|
|
7466
|
+
this.$emit("keyup", event);
|
|
7467
|
+
},
|
|
7468
|
+
input: (event) => {
|
|
7469
|
+
this.$emit("input", event);
|
|
7470
|
+
}
|
|
6469
7471
|
}
|
|
6470
7472
|
},
|
|
6471
7473
|
[
|
|
@@ -6488,12 +7490,24 @@ const VOption = vue.defineComponent({
|
|
|
6488
7490
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
6489
7491
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
6490
7492
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
6491
|
-
onClick: (event) =>
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
7493
|
+
onClick: (event) => {
|
|
7494
|
+
this.$emit("click", event);
|
|
7495
|
+
},
|
|
7496
|
+
onFocus: (event) => {
|
|
7497
|
+
this.$emit("focus", event);
|
|
7498
|
+
},
|
|
7499
|
+
onBlur: (event) => {
|
|
7500
|
+
this.$emit("blur", event);
|
|
7501
|
+
},
|
|
7502
|
+
onKeydown: (event) => {
|
|
7503
|
+
this.$emit("keydown", event);
|
|
7504
|
+
},
|
|
7505
|
+
onKeyup: (event) => {
|
|
7506
|
+
this.$emit("keyup", event);
|
|
7507
|
+
},
|
|
7508
|
+
onInput: (event) => {
|
|
7509
|
+
this.$emit("input", event);
|
|
7510
|
+
}
|
|
6497
7511
|
},
|
|
6498
7512
|
[
|
|
6499
7513
|
// @ts-ignore
|
|
@@ -6599,13 +7613,27 @@ const VPagination = vue.defineComponent({
|
|
|
6599
7613
|
},
|
|
6600
7614
|
class: "vvd-component",
|
|
6601
7615
|
on: {
|
|
6602
|
-
click: (event) =>
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
7616
|
+
click: (event) => {
|
|
7617
|
+
this.$emit("click", event);
|
|
7618
|
+
},
|
|
7619
|
+
focus: (event) => {
|
|
7620
|
+
this.$emit("focus", event);
|
|
7621
|
+
},
|
|
7622
|
+
blur: (event) => {
|
|
7623
|
+
this.$emit("blur", event);
|
|
7624
|
+
},
|
|
7625
|
+
keydown: (event) => {
|
|
7626
|
+
this.$emit("keydown", event);
|
|
7627
|
+
},
|
|
7628
|
+
keyup: (event) => {
|
|
7629
|
+
this.$emit("keyup", event);
|
|
7630
|
+
},
|
|
7631
|
+
input: (event) => {
|
|
7632
|
+
this.$emit("input", event);
|
|
7633
|
+
},
|
|
7634
|
+
"pagination-change": (event) => {
|
|
7635
|
+
this.$emit("pagination-change", event);
|
|
7636
|
+
}
|
|
6609
7637
|
}
|
|
6610
7638
|
},
|
|
6611
7639
|
[this.$slots.default]
|
|
@@ -6622,13 +7650,27 @@ const VPagination = vue.defineComponent({
|
|
|
6622
7650
|
...this.navIcons !== void 0 && this.navIcons !== false ? { "^nav-icons": this.navIcons } : {},
|
|
6623
7651
|
...this.total !== void 0 ? { "^total": this.total } : {},
|
|
6624
7652
|
...this.selectedIndex !== void 0 ? { "^selected-index": this.selectedIndex } : {},
|
|
6625
|
-
onClick: (event) =>
|
|
6626
|
-
|
|
6627
|
-
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
|
|
6631
|
-
|
|
7653
|
+
onClick: (event) => {
|
|
7654
|
+
this.$emit("click", event);
|
|
7655
|
+
},
|
|
7656
|
+
onFocus: (event) => {
|
|
7657
|
+
this.$emit("focus", event);
|
|
7658
|
+
},
|
|
7659
|
+
onBlur: (event) => {
|
|
7660
|
+
this.$emit("blur", event);
|
|
7661
|
+
},
|
|
7662
|
+
onKeydown: (event) => {
|
|
7663
|
+
this.$emit("keydown", event);
|
|
7664
|
+
},
|
|
7665
|
+
onKeyup: (event) => {
|
|
7666
|
+
this.$emit("keyup", event);
|
|
7667
|
+
},
|
|
7668
|
+
onInput: (event) => {
|
|
7669
|
+
this.$emit("input", event);
|
|
7670
|
+
},
|
|
7671
|
+
onPaginationChange: (event) => {
|
|
7672
|
+
this.$emit("pagination-change", event);
|
|
7673
|
+
}
|
|
6632
7674
|
},
|
|
6633
7675
|
[
|
|
6634
7676
|
// @ts-ignore
|
|
@@ -6741,12 +7783,24 @@ const VProgress = vue.defineComponent({
|
|
|
6741
7783
|
},
|
|
6742
7784
|
class: "vvd-component",
|
|
6743
7785
|
on: {
|
|
6744
|
-
click: (event) =>
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
7786
|
+
click: (event) => {
|
|
7787
|
+
this.$emit("click", event);
|
|
7788
|
+
},
|
|
7789
|
+
focus: (event) => {
|
|
7790
|
+
this.$emit("focus", event);
|
|
7791
|
+
},
|
|
7792
|
+
blur: (event) => {
|
|
7793
|
+
this.$emit("blur", event);
|
|
7794
|
+
},
|
|
7795
|
+
keydown: (event) => {
|
|
7796
|
+
this.$emit("keydown", event);
|
|
7797
|
+
},
|
|
7798
|
+
keyup: (event) => {
|
|
7799
|
+
this.$emit("keyup", event);
|
|
7800
|
+
},
|
|
7801
|
+
input: (event) => {
|
|
7802
|
+
this.$emit("input", event);
|
|
7803
|
+
}
|
|
6750
7804
|
}
|
|
6751
7805
|
},
|
|
6752
7806
|
[this.$slots.default]
|
|
@@ -6766,12 +7820,24 @@ const VProgress = vue.defineComponent({
|
|
|
6766
7820
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
6767
7821
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6768
7822
|
...this.reverse !== void 0 && this.reverse !== false ? { "^reverse": this.reverse } : {},
|
|
6769
|
-
onClick: (event) =>
|
|
6770
|
-
|
|
6771
|
-
|
|
6772
|
-
|
|
6773
|
-
|
|
6774
|
-
|
|
7823
|
+
onClick: (event) => {
|
|
7824
|
+
this.$emit("click", event);
|
|
7825
|
+
},
|
|
7826
|
+
onFocus: (event) => {
|
|
7827
|
+
this.$emit("focus", event);
|
|
7828
|
+
},
|
|
7829
|
+
onBlur: (event) => {
|
|
7830
|
+
this.$emit("blur", event);
|
|
7831
|
+
},
|
|
7832
|
+
onKeydown: (event) => {
|
|
7833
|
+
this.$emit("keydown", event);
|
|
7834
|
+
},
|
|
7835
|
+
onKeyup: (event) => {
|
|
7836
|
+
this.$emit("keyup", event);
|
|
7837
|
+
},
|
|
7838
|
+
onInput: (event) => {
|
|
7839
|
+
this.$emit("input", event);
|
|
7840
|
+
}
|
|
6775
7841
|
},
|
|
6776
7842
|
[
|
|
6777
7843
|
// @ts-ignore
|
|
@@ -6876,12 +7942,24 @@ const VProgressRing = vue.defineComponent({
|
|
|
6876
7942
|
},
|
|
6877
7943
|
class: "vvd-component",
|
|
6878
7944
|
on: {
|
|
6879
|
-
click: (event) =>
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
|
|
7945
|
+
click: (event) => {
|
|
7946
|
+
this.$emit("click", event);
|
|
7947
|
+
},
|
|
7948
|
+
focus: (event) => {
|
|
7949
|
+
this.$emit("focus", event);
|
|
7950
|
+
},
|
|
7951
|
+
blur: (event) => {
|
|
7952
|
+
this.$emit("blur", event);
|
|
7953
|
+
},
|
|
7954
|
+
keydown: (event) => {
|
|
7955
|
+
this.$emit("keydown", event);
|
|
7956
|
+
},
|
|
7957
|
+
keyup: (event) => {
|
|
7958
|
+
this.$emit("keyup", event);
|
|
7959
|
+
},
|
|
7960
|
+
input: (event) => {
|
|
7961
|
+
this.$emit("input", event);
|
|
7962
|
+
}
|
|
6885
7963
|
}
|
|
6886
7964
|
},
|
|
6887
7965
|
[this.$slots.default]
|
|
@@ -6900,12 +7978,24 @@ const VProgressRing = vue.defineComponent({
|
|
|
6900
7978
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
6901
7979
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
6902
7980
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
6903
|
-
onClick: (event) =>
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
7981
|
+
onClick: (event) => {
|
|
7982
|
+
this.$emit("click", event);
|
|
7983
|
+
},
|
|
7984
|
+
onFocus: (event) => {
|
|
7985
|
+
this.$emit("focus", event);
|
|
7986
|
+
},
|
|
7987
|
+
onBlur: (event) => {
|
|
7988
|
+
this.$emit("blur", event);
|
|
7989
|
+
},
|
|
7990
|
+
onKeydown: (event) => {
|
|
7991
|
+
this.$emit("keydown", event);
|
|
7992
|
+
},
|
|
7993
|
+
onKeyup: (event) => {
|
|
7994
|
+
this.$emit("keyup", event);
|
|
7995
|
+
},
|
|
7996
|
+
onInput: (event) => {
|
|
7997
|
+
this.$emit("input", event);
|
|
7998
|
+
}
|
|
6909
7999
|
},
|
|
6910
8000
|
[
|
|
6911
8001
|
// @ts-ignore
|
|
@@ -7044,13 +8134,27 @@ const VRadio = vue.defineComponent({
|
|
|
7044
8134
|
},
|
|
7045
8135
|
class: "vvd-component",
|
|
7046
8136
|
on: {
|
|
7047
|
-
click: (event) =>
|
|
7048
|
-
|
|
7049
|
-
|
|
7050
|
-
|
|
7051
|
-
|
|
7052
|
-
|
|
7053
|
-
|
|
8137
|
+
click: (event) => {
|
|
8138
|
+
this.$emit("click", event);
|
|
8139
|
+
},
|
|
8140
|
+
focus: (event) => {
|
|
8141
|
+
this.$emit("focus", event);
|
|
8142
|
+
},
|
|
8143
|
+
blur: (event) => {
|
|
8144
|
+
this.$emit("blur", event);
|
|
8145
|
+
},
|
|
8146
|
+
keydown: (event) => {
|
|
8147
|
+
this.$emit("keydown", event);
|
|
8148
|
+
},
|
|
8149
|
+
keyup: (event) => {
|
|
8150
|
+
this.$emit("keyup", event);
|
|
8151
|
+
},
|
|
8152
|
+
input: (event) => {
|
|
8153
|
+
this.$emit("input", event);
|
|
8154
|
+
},
|
|
8155
|
+
change: (event) => {
|
|
8156
|
+
this.$emit("change", event);
|
|
8157
|
+
}
|
|
7054
8158
|
}
|
|
7055
8159
|
},
|
|
7056
8160
|
[this.$slots.default]
|
|
@@ -7073,16 +8177,30 @@ const VRadio = vue.defineComponent({
|
|
|
7073
8177
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
7074
8178
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7075
8179
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7076
|
-
onClick: (event) =>
|
|
7077
|
-
|
|
7078
|
-
|
|
7079
|
-
|
|
7080
|
-
|
|
7081
|
-
|
|
7082
|
-
|
|
7083
|
-
|
|
7084
|
-
|
|
7085
|
-
|
|
8180
|
+
onClick: (event) => {
|
|
8181
|
+
this.$emit("click", event);
|
|
8182
|
+
},
|
|
8183
|
+
onFocus: (event) => {
|
|
8184
|
+
this.$emit("focus", event);
|
|
8185
|
+
},
|
|
8186
|
+
onBlur: (event) => {
|
|
8187
|
+
this.$emit("blur", event);
|
|
8188
|
+
},
|
|
8189
|
+
onKeydown: (event) => {
|
|
8190
|
+
this.$emit("keydown", event);
|
|
8191
|
+
},
|
|
8192
|
+
onKeyup: (event) => {
|
|
8193
|
+
this.$emit("keyup", event);
|
|
8194
|
+
},
|
|
8195
|
+
onInput: (event) => {
|
|
8196
|
+
this.$emit("input", event);
|
|
8197
|
+
},
|
|
8198
|
+
onChange: (event) => {
|
|
8199
|
+
this.$emit("change", event);
|
|
8200
|
+
}
|
|
8201
|
+
},
|
|
8202
|
+
[
|
|
8203
|
+
// @ts-ignore
|
|
7086
8204
|
this.$slots.default && this.$slots.default()
|
|
7087
8205
|
]
|
|
7088
8206
|
);
|
|
@@ -7201,12 +8319,24 @@ const VRadioGroup = vue.defineComponent({
|
|
|
7201
8319
|
},
|
|
7202
8320
|
class: "vvd-component",
|
|
7203
8321
|
on: {
|
|
7204
|
-
click: (event) =>
|
|
7205
|
-
|
|
7206
|
-
|
|
7207
|
-
|
|
7208
|
-
|
|
7209
|
-
|
|
8322
|
+
click: (event) => {
|
|
8323
|
+
this.$emit("click", event);
|
|
8324
|
+
},
|
|
8325
|
+
focus: (event) => {
|
|
8326
|
+
this.$emit("focus", event);
|
|
8327
|
+
},
|
|
8328
|
+
blur: (event) => {
|
|
8329
|
+
this.$emit("blur", event);
|
|
8330
|
+
},
|
|
8331
|
+
keydown: (event) => {
|
|
8332
|
+
this.$emit("keydown", event);
|
|
8333
|
+
},
|
|
8334
|
+
keyup: (event) => {
|
|
8335
|
+
this.$emit("keyup", event);
|
|
8336
|
+
},
|
|
8337
|
+
input: (event) => {
|
|
8338
|
+
this.$emit("input", event);
|
|
8339
|
+
},
|
|
7210
8340
|
change: (event) => {
|
|
7211
8341
|
this.$emit(
|
|
7212
8342
|
"update:modelValue",
|
|
@@ -7231,12 +8361,24 @@ const VRadioGroup = vue.defineComponent({
|
|
|
7231
8361
|
...(this.modelValue ?? this.value) !== void 0 ? { "^value": this.modelValue ?? this.value } : {},
|
|
7232
8362
|
...this.orientation !== void 0 ? { "^orientation": this.orientation } : {},
|
|
7233
8363
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
7234
|
-
onClick: (event) =>
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
|
|
7239
|
-
|
|
8364
|
+
onClick: (event) => {
|
|
8365
|
+
this.$emit("click", event);
|
|
8366
|
+
},
|
|
8367
|
+
onFocus: (event) => {
|
|
8368
|
+
this.$emit("focus", event);
|
|
8369
|
+
},
|
|
8370
|
+
onBlur: (event) => {
|
|
8371
|
+
this.$emit("blur", event);
|
|
8372
|
+
},
|
|
8373
|
+
onKeydown: (event) => {
|
|
8374
|
+
this.$emit("keydown", event);
|
|
8375
|
+
},
|
|
8376
|
+
onKeyup: (event) => {
|
|
8377
|
+
this.$emit("keyup", event);
|
|
8378
|
+
},
|
|
8379
|
+
onInput: (event) => {
|
|
8380
|
+
this.$emit("input", event);
|
|
8381
|
+
},
|
|
7240
8382
|
onChange: (event) => {
|
|
7241
8383
|
this.$emit(
|
|
7242
8384
|
"update:modelValue",
|
|
@@ -7461,11 +8603,21 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7461
8603
|
},
|
|
7462
8604
|
class: "vvd-component",
|
|
7463
8605
|
on: {
|
|
7464
|
-
click: (event) =>
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7468
|
-
|
|
8606
|
+
click: (event) => {
|
|
8607
|
+
this.$emit("click", event);
|
|
8608
|
+
},
|
|
8609
|
+
focus: (event) => {
|
|
8610
|
+
this.$emit("focus", event);
|
|
8611
|
+
},
|
|
8612
|
+
blur: (event) => {
|
|
8613
|
+
this.$emit("blur", event);
|
|
8614
|
+
},
|
|
8615
|
+
keydown: (event) => {
|
|
8616
|
+
this.$emit("keydown", event);
|
|
8617
|
+
},
|
|
8618
|
+
keyup: (event) => {
|
|
8619
|
+
this.$emit("keyup", event);
|
|
8620
|
+
},
|
|
7469
8621
|
"input:start": (event) => {
|
|
7470
8622
|
this.$emit("update:start", event.target.start);
|
|
7471
8623
|
this.$emit("input:start", event);
|
|
@@ -7474,8 +8626,12 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7474
8626
|
this.$emit("update:end", event.target.end);
|
|
7475
8627
|
this.$emit("input:end", event);
|
|
7476
8628
|
},
|
|
7477
|
-
input: (event) =>
|
|
7478
|
-
|
|
8629
|
+
input: (event) => {
|
|
8630
|
+
this.$emit("input", event);
|
|
8631
|
+
},
|
|
8632
|
+
change: (event) => {
|
|
8633
|
+
this.$emit("change", event);
|
|
8634
|
+
}
|
|
7479
8635
|
}
|
|
7480
8636
|
},
|
|
7481
8637
|
[this.$slots.default]
|
|
@@ -7506,11 +8662,21 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7506
8662
|
...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
|
|
7507
8663
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7508
8664
|
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
7509
|
-
onClick: (event) =>
|
|
7510
|
-
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
8665
|
+
onClick: (event) => {
|
|
8666
|
+
this.$emit("click", event);
|
|
8667
|
+
},
|
|
8668
|
+
onFocus: (event) => {
|
|
8669
|
+
this.$emit("focus", event);
|
|
8670
|
+
},
|
|
8671
|
+
onBlur: (event) => {
|
|
8672
|
+
this.$emit("blur", event);
|
|
8673
|
+
},
|
|
8674
|
+
onKeydown: (event) => {
|
|
8675
|
+
this.$emit("keydown", event);
|
|
8676
|
+
},
|
|
8677
|
+
onKeyup: (event) => {
|
|
8678
|
+
this.$emit("keyup", event);
|
|
8679
|
+
},
|
|
7514
8680
|
"onInput:start": (event) => {
|
|
7515
8681
|
this.$emit("update:start", event.target.start);
|
|
7516
8682
|
this.$emit("input:start", event);
|
|
@@ -7519,8 +8685,12 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7519
8685
|
this.$emit("update:end", event.target.end);
|
|
7520
8686
|
this.$emit("input:end", event);
|
|
7521
8687
|
},
|
|
7522
|
-
onInput: (event) =>
|
|
7523
|
-
|
|
8688
|
+
onInput: (event) => {
|
|
8689
|
+
this.$emit("input", event);
|
|
8690
|
+
},
|
|
8691
|
+
onChange: (event) => {
|
|
8692
|
+
this.$emit("change", event);
|
|
8693
|
+
}
|
|
7524
8694
|
},
|
|
7525
8695
|
[
|
|
7526
8696
|
// @ts-ignore
|
|
@@ -7530,6 +8700,303 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7530
8700
|
}
|
|
7531
8701
|
});
|
|
7532
8702
|
|
|
8703
|
+
const VSearchableSelect = vue.defineComponent({
|
|
8704
|
+
name: "VSearchableSelect",
|
|
8705
|
+
model: isVue2 ? {
|
|
8706
|
+
prop: "modelValue",
|
|
8707
|
+
event: "update:modelValue"
|
|
8708
|
+
} : void 0,
|
|
8709
|
+
props: {
|
|
8710
|
+
/**
|
|
8711
|
+
* The success text for the form element.
|
|
8712
|
+
*/
|
|
8713
|
+
successText: { type: String, default: void 0 },
|
|
8714
|
+
/**
|
|
8715
|
+
* The error text for the form element.
|
|
8716
|
+
*/
|
|
8717
|
+
errorText: { type: String, default: void 0 },
|
|
8718
|
+
/**
|
|
8719
|
+
* The helper text for the form element.
|
|
8720
|
+
*/
|
|
8721
|
+
helperText: { type: String, default: void 0 },
|
|
8722
|
+
/**
|
|
8723
|
+
* The label for the form element.
|
|
8724
|
+
*/
|
|
8725
|
+
label: { type: String, default: void 0 },
|
|
8726
|
+
/**
|
|
8727
|
+
* A decorative icon the custom element should have.
|
|
8728
|
+
* See the Vivid Icon Gallery for available icons: https://icons.vivid.vonage.com/
|
|
8729
|
+
*/
|
|
8730
|
+
icon: { type: String, default: void 0 },
|
|
8731
|
+
/**
|
|
8732
|
+
* Indicates the icon affix alignment.
|
|
8733
|
+
*/
|
|
8734
|
+
iconTrailing: { type: Boolean, default: void 0 },
|
|
8735
|
+
/**
|
|
8736
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
8737
|
+
*/
|
|
8738
|
+
ariaCurrent: {
|
|
8739
|
+
type: String,
|
|
8740
|
+
default: void 0
|
|
8741
|
+
},
|
|
8742
|
+
/**
|
|
8743
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
8744
|
+
*/
|
|
8745
|
+
disabled: { type: Boolean, default: void 0 },
|
|
8746
|
+
/**
|
|
8747
|
+
* The initial value of the form. This value sets the `value` property
|
|
8748
|
+
* only when the `value` property has not been explicitly set.
|
|
8749
|
+
*/
|
|
8750
|
+
initialValue: { type: String, default: void 0 },
|
|
8751
|
+
/**
|
|
8752
|
+
* The current value of the element. This property serves as a mechanism
|
|
8753
|
+
* to set the `value` property through both property assignment and the
|
|
8754
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
8755
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
8756
|
+
* and don't support IDL attribute binding.
|
|
8757
|
+
*/
|
|
8758
|
+
value: { type: String, default: void 0 },
|
|
8759
|
+
/**
|
|
8760
|
+
* The current value of the element. This property serves as a mechanism
|
|
8761
|
+
* to set the `value` property through both property assignment and the
|
|
8762
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
8763
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
8764
|
+
* and don't support IDL attribute binding.
|
|
8765
|
+
*/
|
|
8766
|
+
modelValue: { type: String, default: void 0 },
|
|
8767
|
+
/**
|
|
8768
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
8769
|
+
*/
|
|
8770
|
+
name: { type: String, default: void 0 },
|
|
8771
|
+
/**
|
|
8772
|
+
* Require the field to be completed prior to form submission.
|
|
8773
|
+
*/
|
|
8774
|
+
required: { type: Boolean, default: void 0 },
|
|
8775
|
+
appearance: {
|
|
8776
|
+
type: String,
|
|
8777
|
+
default: void 0
|
|
8778
|
+
},
|
|
8779
|
+
shape: { type: String, default: void 0 },
|
|
8780
|
+
fixedDropdown: { type: Boolean, default: void 0 },
|
|
8781
|
+
placeholder: { type: String, default: void 0 },
|
|
8782
|
+
open: { type: Boolean, default: void 0 },
|
|
8783
|
+
multiple: { type: Boolean, default: void 0 },
|
|
8784
|
+
externalTags: { type: Boolean, default: void 0 },
|
|
8785
|
+
maxLines: { type: Number, default: void 0 },
|
|
8786
|
+
/**
|
|
8787
|
+
* Adds a clear button to the input field that clears the selected values.
|
|
8788
|
+
*/
|
|
8789
|
+
clearable: { type: Boolean, default: void 0 },
|
|
8790
|
+
/**
|
|
8791
|
+
* List of selected option values.
|
|
8792
|
+
*/
|
|
8793
|
+
values: { type: Array, default: void 0 }
|
|
8794
|
+
},
|
|
8795
|
+
emits: [
|
|
8796
|
+
/**
|
|
8797
|
+
* 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.
|
|
8798
|
+
* @type {MouseEvent}
|
|
8799
|
+
*/
|
|
8800
|
+
"click",
|
|
8801
|
+
/**
|
|
8802
|
+
* Fires when the element receives focus.
|
|
8803
|
+
* @type {FocusEvent}
|
|
8804
|
+
*/
|
|
8805
|
+
"focus",
|
|
8806
|
+
/**
|
|
8807
|
+
* Fires when the element loses focus.
|
|
8808
|
+
* @type {FocusEvent}
|
|
8809
|
+
*/
|
|
8810
|
+
"blur",
|
|
8811
|
+
/**
|
|
8812
|
+
* Fires when a key is pressed.
|
|
8813
|
+
* @type {KeyboardEvent}
|
|
8814
|
+
*/
|
|
8815
|
+
"keydown",
|
|
8816
|
+
/**
|
|
8817
|
+
* Fires when a key is released.
|
|
8818
|
+
* @type {KeyboardEvent}
|
|
8819
|
+
*/
|
|
8820
|
+
"keyup",
|
|
8821
|
+
/**
|
|
8822
|
+
* Fired when the selected options change
|
|
8823
|
+
* @type {CustomEvent<undefined>}
|
|
8824
|
+
*/
|
|
8825
|
+
"input",
|
|
8826
|
+
/**
|
|
8827
|
+
* Fired when the selected options change
|
|
8828
|
+
* @type {CustomEvent<undefined>}
|
|
8829
|
+
*/
|
|
8830
|
+
"change",
|
|
8831
|
+
/**
|
|
8832
|
+
* Fires when the modelValue value changes
|
|
8833
|
+
* @type {string}
|
|
8834
|
+
*/
|
|
8835
|
+
"update:modelValue",
|
|
8836
|
+
/**
|
|
8837
|
+
* Fires when the values value changes
|
|
8838
|
+
* @type {string[]}
|
|
8839
|
+
*/
|
|
8840
|
+
"update:values"
|
|
8841
|
+
],
|
|
8842
|
+
methods: {},
|
|
8843
|
+
setup(props, ctx) {
|
|
8844
|
+
const componentName = registerComponent(
|
|
8845
|
+
"searchable-select",
|
|
8846
|
+
vivid.registerSearchableSelect
|
|
8847
|
+
);
|
|
8848
|
+
const element = vue.ref(null);
|
|
8849
|
+
return { componentName, element };
|
|
8850
|
+
},
|
|
8851
|
+
render() {
|
|
8852
|
+
if (isVue2) {
|
|
8853
|
+
return vue.h(
|
|
8854
|
+
this.componentName,
|
|
8855
|
+
{
|
|
8856
|
+
ref: "element",
|
|
8857
|
+
attrs: {
|
|
8858
|
+
...this.successText !== void 0 ? { "success-text": this.successText } : {},
|
|
8859
|
+
...this.errorText !== void 0 ? { "error-text": this.errorText } : {},
|
|
8860
|
+
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
8861
|
+
...this.label !== void 0 ? { label: this.label } : {},
|
|
8862
|
+
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
8863
|
+
...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
|
|
8864
|
+
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8865
|
+
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8866
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
8867
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {},
|
|
8868
|
+
...this.name !== void 0 ? { name: this.name } : {},
|
|
8869
|
+
...this.required !== void 0 ? { required: this.required } : {},
|
|
8870
|
+
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
8871
|
+
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8872
|
+
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
|
|
8873
|
+
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
8874
|
+
...this.open !== void 0 ? { open: this.open } : {},
|
|
8875
|
+
...this.multiple !== void 0 ? { multiple: this.multiple } : {},
|
|
8876
|
+
...this.externalTags !== void 0 ? { "external-tags": this.externalTags } : {},
|
|
8877
|
+
...this.maxLines !== void 0 ? { "max-lines": this.maxLines } : {},
|
|
8878
|
+
...this.clearable !== void 0 ? { clearable: this.clearable } : {}
|
|
8879
|
+
},
|
|
8880
|
+
class: "vvd-component",
|
|
8881
|
+
domProps: {
|
|
8882
|
+
...this.values !== void 0 ? { values: this.values } : {}
|
|
8883
|
+
},
|
|
8884
|
+
on: {
|
|
8885
|
+
click: (event) => {
|
|
8886
|
+
this.$emit("click", event);
|
|
8887
|
+
},
|
|
8888
|
+
focus: (event) => {
|
|
8889
|
+
this.$emit("focus", event);
|
|
8890
|
+
},
|
|
8891
|
+
blur: (event) => {
|
|
8892
|
+
this.$emit("blur", event);
|
|
8893
|
+
},
|
|
8894
|
+
keydown: (event) => {
|
|
8895
|
+
this.$emit("keydown", event);
|
|
8896
|
+
},
|
|
8897
|
+
keyup: (event) => {
|
|
8898
|
+
this.$emit("keyup", event);
|
|
8899
|
+
},
|
|
8900
|
+
input: (event) => {
|
|
8901
|
+
this.$emit(
|
|
8902
|
+
"update:modelValue",
|
|
8903
|
+
event.target.value
|
|
8904
|
+
);
|
|
8905
|
+
this.$emit("update:values", event.target.values);
|
|
8906
|
+
this.$emit("input", event);
|
|
8907
|
+
},
|
|
8908
|
+
change: (event) => {
|
|
8909
|
+
this.$emit("change", event);
|
|
8910
|
+
}
|
|
8911
|
+
}
|
|
8912
|
+
},
|
|
8913
|
+
[
|
|
8914
|
+
this.$slots.default,
|
|
8915
|
+
// @slot icon Slot to add an icon to the control.
|
|
8916
|
+
handleNamedSlot("icon", this.$slots["icon"]),
|
|
8917
|
+
// @slot meta Slot to add meta content to the control.
|
|
8918
|
+
handleNamedSlot("meta", this.$slots["meta"]),
|
|
8919
|
+
// @slot helper-text Describes how to use the component. Alternative to the `helper-text` attribute.
|
|
8920
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"]),
|
|
8921
|
+
// @slot no-options Message that appears when no options are available.
|
|
8922
|
+
handleNamedSlot("no-options", this.$slots["no-options"]),
|
|
8923
|
+
// @slot no-matches Message that appears when no options match the search query.
|
|
8924
|
+
handleNamedSlot("no-matches", this.$slots["no-matches"])
|
|
8925
|
+
]
|
|
8926
|
+
);
|
|
8927
|
+
}
|
|
8928
|
+
return vue.h(
|
|
8929
|
+
this.componentName,
|
|
8930
|
+
{
|
|
8931
|
+
ref: "element",
|
|
8932
|
+
class: "vvd-component",
|
|
8933
|
+
...this.successText !== void 0 ? { "^success-text": this.successText } : {},
|
|
8934
|
+
...this.errorText !== void 0 ? { "^error-text": this.errorText } : {},
|
|
8935
|
+
...this.helperText !== void 0 ? { "^helper-text": this.helperText } : {},
|
|
8936
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
8937
|
+
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
8938
|
+
...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
|
|
8939
|
+
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8940
|
+
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
8941
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
8942
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
8943
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
8944
|
+
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
8945
|
+
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
8946
|
+
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8947
|
+
...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
8948
|
+
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
8949
|
+
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
8950
|
+
...this.multiple !== void 0 && this.multiple !== false ? { "^multiple": this.multiple } : {},
|
|
8951
|
+
...this.externalTags !== void 0 && this.externalTags !== false ? { "^external-tags": this.externalTags } : {},
|
|
8952
|
+
...this.maxLines !== void 0 ? { "^max-lines": this.maxLines } : {},
|
|
8953
|
+
...this.clearable !== void 0 && this.clearable !== false ? { "^clearable": this.clearable } : {},
|
|
8954
|
+
...this.values !== void 0 ? { ".values": this.values } : {},
|
|
8955
|
+
onClick: (event) => {
|
|
8956
|
+
this.$emit("click", event);
|
|
8957
|
+
},
|
|
8958
|
+
onFocus: (event) => {
|
|
8959
|
+
this.$emit("focus", event);
|
|
8960
|
+
},
|
|
8961
|
+
onBlur: (event) => {
|
|
8962
|
+
this.$emit("blur", event);
|
|
8963
|
+
},
|
|
8964
|
+
onKeydown: (event) => {
|
|
8965
|
+
this.$emit("keydown", event);
|
|
8966
|
+
},
|
|
8967
|
+
onKeyup: (event) => {
|
|
8968
|
+
this.$emit("keyup", event);
|
|
8969
|
+
},
|
|
8970
|
+
onInput: (event) => {
|
|
8971
|
+
this.$emit(
|
|
8972
|
+
"update:modelValue",
|
|
8973
|
+
event.target.value
|
|
8974
|
+
);
|
|
8975
|
+
this.$emit("update:values", event.target.values);
|
|
8976
|
+
this.$emit("input", event);
|
|
8977
|
+
},
|
|
8978
|
+
onChange: (event) => {
|
|
8979
|
+
this.$emit("change", event);
|
|
8980
|
+
}
|
|
8981
|
+
},
|
|
8982
|
+
[
|
|
8983
|
+
// @ts-ignore
|
|
8984
|
+
this.$slots.default && this.$slots.default(),
|
|
8985
|
+
// @slot icon Slot to add an icon to the control.
|
|
8986
|
+
handleNamedSlot("icon", this.$slots["icon"]),
|
|
8987
|
+
// @slot meta Slot to add meta content to the control.
|
|
8988
|
+
handleNamedSlot("meta", this.$slots["meta"]),
|
|
8989
|
+
// @slot helper-text Describes how to use the component. Alternative to the `helper-text` attribute.
|
|
8990
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"]),
|
|
8991
|
+
// @slot no-options Message that appears when no options are available.
|
|
8992
|
+
handleNamedSlot("no-options", this.$slots["no-options"]),
|
|
8993
|
+
// @slot no-matches Message that appears when no options match the search query.
|
|
8994
|
+
handleNamedSlot("no-matches", this.$slots["no-matches"])
|
|
8995
|
+
]
|
|
8996
|
+
);
|
|
8997
|
+
}
|
|
8998
|
+
});
|
|
8999
|
+
|
|
7533
9000
|
const VSelect = vue.defineComponent({
|
|
7534
9001
|
name: "VSelect",
|
|
7535
9002
|
model: isVue2 ? {
|
|
@@ -7617,6 +9084,13 @@ const VSelect = vue.defineComponent({
|
|
|
7617
9084
|
* Indicates if the listbox is in multi-selection mode.
|
|
7618
9085
|
*/
|
|
7619
9086
|
multiple: { type: Boolean, default: void 0 },
|
|
9087
|
+
/**
|
|
9088
|
+
* The size the select should have.
|
|
9089
|
+
*/
|
|
9090
|
+
scale: {
|
|
9091
|
+
type: String,
|
|
9092
|
+
default: void 0
|
|
9093
|
+
},
|
|
7620
9094
|
/**
|
|
7621
9095
|
* The appearance attribute.
|
|
7622
9096
|
*/
|
|
@@ -7744,6 +9218,7 @@ const VSelect = vue.defineComponent({
|
|
|
7744
9218
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
7745
9219
|
...this.position !== void 0 ? { position: this.position } : {},
|
|
7746
9220
|
...this.multiple !== void 0 ? { multiple: this.multiple } : {},
|
|
9221
|
+
...this.scale !== void 0 ? { scale: this.scale } : {},
|
|
7747
9222
|
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
7748
9223
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
7749
9224
|
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
|
|
@@ -7751,11 +9226,21 @@ const VSelect = vue.defineComponent({
|
|
|
7751
9226
|
},
|
|
7752
9227
|
class: "vvd-component",
|
|
7753
9228
|
on: {
|
|
7754
|
-
click: (event) =>
|
|
7755
|
-
|
|
7756
|
-
|
|
7757
|
-
|
|
7758
|
-
|
|
9229
|
+
click: (event) => {
|
|
9230
|
+
this.$emit("click", event);
|
|
9231
|
+
},
|
|
9232
|
+
focus: (event) => {
|
|
9233
|
+
this.$emit("focus", event);
|
|
9234
|
+
},
|
|
9235
|
+
blur: (event) => {
|
|
9236
|
+
this.$emit("blur", event);
|
|
9237
|
+
},
|
|
9238
|
+
keydown: (event) => {
|
|
9239
|
+
this.$emit("keydown", event);
|
|
9240
|
+
},
|
|
9241
|
+
keyup: (event) => {
|
|
9242
|
+
this.$emit("keyup", event);
|
|
9243
|
+
},
|
|
7759
9244
|
input: (event) => {
|
|
7760
9245
|
this.$emit(
|
|
7761
9246
|
"update:modelValue",
|
|
@@ -7763,7 +9248,9 @@ const VSelect = vue.defineComponent({
|
|
|
7763
9248
|
);
|
|
7764
9249
|
this.$emit("input", event);
|
|
7765
9250
|
},
|
|
7766
|
-
change: (event) =>
|
|
9251
|
+
change: (event) => {
|
|
9252
|
+
this.$emit("change", event);
|
|
9253
|
+
}
|
|
7767
9254
|
}
|
|
7768
9255
|
},
|
|
7769
9256
|
[
|
|
@@ -7797,15 +9284,26 @@ const VSelect = vue.defineComponent({
|
|
|
7797
9284
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
7798
9285
|
...this.position !== void 0 ? { "^position": this.position } : {},
|
|
7799
9286
|
...this.multiple !== void 0 && this.multiple !== false ? { "^multiple": this.multiple } : {},
|
|
9287
|
+
...this.scale !== void 0 ? { "^scale": this.scale } : {},
|
|
7800
9288
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
7801
9289
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
7802
9290
|
...this.fixedDropdown !== void 0 && this.fixedDropdown !== false ? { "^fixed-dropdown": this.fixedDropdown } : {},
|
|
7803
9291
|
...this.placeholder !== void 0 ? { "^placeholder": this.placeholder } : {},
|
|
7804
|
-
onClick: (event) =>
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
|
|
7808
|
-
|
|
9292
|
+
onClick: (event) => {
|
|
9293
|
+
this.$emit("click", event);
|
|
9294
|
+
},
|
|
9295
|
+
onFocus: (event) => {
|
|
9296
|
+
this.$emit("focus", event);
|
|
9297
|
+
},
|
|
9298
|
+
onBlur: (event) => {
|
|
9299
|
+
this.$emit("blur", event);
|
|
9300
|
+
},
|
|
9301
|
+
onKeydown: (event) => {
|
|
9302
|
+
this.$emit("keydown", event);
|
|
9303
|
+
},
|
|
9304
|
+
onKeyup: (event) => {
|
|
9305
|
+
this.$emit("keyup", event);
|
|
9306
|
+
},
|
|
7809
9307
|
onInput: (event) => {
|
|
7810
9308
|
this.$emit(
|
|
7811
9309
|
"update:modelValue",
|
|
@@ -7813,7 +9311,9 @@ const VSelect = vue.defineComponent({
|
|
|
7813
9311
|
);
|
|
7814
9312
|
this.$emit("input", event);
|
|
7815
9313
|
},
|
|
7816
|
-
onChange: (event) =>
|
|
9314
|
+
onChange: (event) => {
|
|
9315
|
+
this.$emit("change", event);
|
|
9316
|
+
}
|
|
7817
9317
|
},
|
|
7818
9318
|
[
|
|
7819
9319
|
// @ts-ignore
|
|
@@ -7935,13 +9435,27 @@ const VSelectableBox = vue.defineComponent({
|
|
|
7935
9435
|
},
|
|
7936
9436
|
class: "vvd-component",
|
|
7937
9437
|
on: {
|
|
7938
|
-
click: (event) =>
|
|
7939
|
-
|
|
7940
|
-
|
|
7941
|
-
|
|
7942
|
-
|
|
7943
|
-
|
|
7944
|
-
|
|
9438
|
+
click: (event) => {
|
|
9439
|
+
this.$emit("click", event);
|
|
9440
|
+
},
|
|
9441
|
+
focus: (event) => {
|
|
9442
|
+
this.$emit("focus", event);
|
|
9443
|
+
},
|
|
9444
|
+
blur: (event) => {
|
|
9445
|
+
this.$emit("blur", event);
|
|
9446
|
+
},
|
|
9447
|
+
keydown: (event) => {
|
|
9448
|
+
this.$emit("keydown", event);
|
|
9449
|
+
},
|
|
9450
|
+
keyup: (event) => {
|
|
9451
|
+
this.$emit("keyup", event);
|
|
9452
|
+
},
|
|
9453
|
+
input: (event) => {
|
|
9454
|
+
this.$emit("input", event);
|
|
9455
|
+
},
|
|
9456
|
+
change: (event) => {
|
|
9457
|
+
this.$emit("change", event);
|
|
9458
|
+
}
|
|
7945
9459
|
}
|
|
7946
9460
|
},
|
|
7947
9461
|
[this.$slots.default]
|
|
@@ -7960,13 +9474,27 @@ const VSelectableBox = vue.defineComponent({
|
|
|
7960
9474
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7961
9475
|
...this.controlType !== void 0 ? { "^control-type": this.controlType } : {},
|
|
7962
9476
|
...this.tight !== void 0 && this.tight !== false ? { "^tight": this.tight } : {},
|
|
7963
|
-
onClick: (event) =>
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
9477
|
+
onClick: (event) => {
|
|
9478
|
+
this.$emit("click", event);
|
|
9479
|
+
},
|
|
9480
|
+
onFocus: (event) => {
|
|
9481
|
+
this.$emit("focus", event);
|
|
9482
|
+
},
|
|
9483
|
+
onBlur: (event) => {
|
|
9484
|
+
this.$emit("blur", event);
|
|
9485
|
+
},
|
|
9486
|
+
onKeydown: (event) => {
|
|
9487
|
+
this.$emit("keydown", event);
|
|
9488
|
+
},
|
|
9489
|
+
onKeyup: (event) => {
|
|
9490
|
+
this.$emit("keyup", event);
|
|
9491
|
+
},
|
|
9492
|
+
onInput: (event) => {
|
|
9493
|
+
this.$emit("input", event);
|
|
9494
|
+
},
|
|
9495
|
+
onChange: (event) => {
|
|
9496
|
+
this.$emit("change", event);
|
|
9497
|
+
}
|
|
7970
9498
|
},
|
|
7971
9499
|
[
|
|
7972
9500
|
// @ts-ignore
|
|
@@ -8066,14 +9594,30 @@ const VSideDrawer = vue.defineComponent({
|
|
|
8066
9594
|
},
|
|
8067
9595
|
class: "vvd-component",
|
|
8068
9596
|
on: {
|
|
8069
|
-
click: (event) =>
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
9597
|
+
click: (event) => {
|
|
9598
|
+
this.$emit("click", event);
|
|
9599
|
+
},
|
|
9600
|
+
focus: (event) => {
|
|
9601
|
+
this.$emit("focus", event);
|
|
9602
|
+
},
|
|
9603
|
+
blur: (event) => {
|
|
9604
|
+
this.$emit("blur", event);
|
|
9605
|
+
},
|
|
9606
|
+
keydown: (event) => {
|
|
9607
|
+
this.$emit("keydown", event);
|
|
9608
|
+
},
|
|
9609
|
+
keyup: (event) => {
|
|
9610
|
+
this.$emit("keyup", event);
|
|
9611
|
+
},
|
|
9612
|
+
input: (event) => {
|
|
9613
|
+
this.$emit("input", event);
|
|
9614
|
+
},
|
|
9615
|
+
close: (event) => {
|
|
9616
|
+
this.$emit("close", event);
|
|
9617
|
+
},
|
|
9618
|
+
open: (event) => {
|
|
9619
|
+
this.$emit("open", event);
|
|
9620
|
+
}
|
|
8077
9621
|
}
|
|
8078
9622
|
},
|
|
8079
9623
|
[
|
|
@@ -8093,14 +9637,30 @@ const VSideDrawer = vue.defineComponent({
|
|
|
8093
9637
|
...this.modal !== void 0 && this.modal !== false ? { "^modal": this.modal } : {},
|
|
8094
9638
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
8095
9639
|
...this.trailing !== void 0 && this.trailing !== false ? { "^trailing": this.trailing } : {},
|
|
8096
|
-
onClick: (event) =>
|
|
8097
|
-
|
|
8098
|
-
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
|
|
9640
|
+
onClick: (event) => {
|
|
9641
|
+
this.$emit("click", event);
|
|
9642
|
+
},
|
|
9643
|
+
onFocus: (event) => {
|
|
9644
|
+
this.$emit("focus", event);
|
|
9645
|
+
},
|
|
9646
|
+
onBlur: (event) => {
|
|
9647
|
+
this.$emit("blur", event);
|
|
9648
|
+
},
|
|
9649
|
+
onKeydown: (event) => {
|
|
9650
|
+
this.$emit("keydown", event);
|
|
9651
|
+
},
|
|
9652
|
+
onKeyup: (event) => {
|
|
9653
|
+
this.$emit("keyup", event);
|
|
9654
|
+
},
|
|
9655
|
+
onInput: (event) => {
|
|
9656
|
+
this.$emit("input", event);
|
|
9657
|
+
},
|
|
9658
|
+
onClose: (event) => {
|
|
9659
|
+
this.$emit("close", event);
|
|
9660
|
+
},
|
|
9661
|
+
onOpen: (event) => {
|
|
9662
|
+
this.$emit("open", event);
|
|
9663
|
+
}
|
|
8104
9664
|
},
|
|
8105
9665
|
[
|
|
8106
9666
|
// @ts-ignore
|
|
@@ -8298,12 +9858,24 @@ const VSlider = vue.defineComponent({
|
|
|
8298
9858
|
},
|
|
8299
9859
|
class: "vvd-component",
|
|
8300
9860
|
on: {
|
|
8301
|
-
click: (event) =>
|
|
8302
|
-
|
|
8303
|
-
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
9861
|
+
click: (event) => {
|
|
9862
|
+
this.$emit("click", event);
|
|
9863
|
+
},
|
|
9864
|
+
focus: (event) => {
|
|
9865
|
+
this.$emit("focus", event);
|
|
9866
|
+
},
|
|
9867
|
+
blur: (event) => {
|
|
9868
|
+
this.$emit("blur", event);
|
|
9869
|
+
},
|
|
9870
|
+
keydown: (event) => {
|
|
9871
|
+
this.$emit("keydown", event);
|
|
9872
|
+
},
|
|
9873
|
+
keyup: (event) => {
|
|
9874
|
+
this.$emit("keyup", event);
|
|
9875
|
+
},
|
|
9876
|
+
input: (event) => {
|
|
9877
|
+
this.$emit("input", event);
|
|
9878
|
+
},
|
|
8307
9879
|
change: (event) => {
|
|
8308
9880
|
this.$emit(
|
|
8309
9881
|
"update:modelValue",
|
|
@@ -8338,12 +9910,24 @@ const VSlider = vue.defineComponent({
|
|
|
8338
9910
|
...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
|
|
8339
9911
|
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
8340
9912
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8341
|
-
onClick: (event) =>
|
|
8342
|
-
|
|
8343
|
-
|
|
8344
|
-
|
|
8345
|
-
|
|
8346
|
-
|
|
9913
|
+
onClick: (event) => {
|
|
9914
|
+
this.$emit("click", event);
|
|
9915
|
+
},
|
|
9916
|
+
onFocus: (event) => {
|
|
9917
|
+
this.$emit("focus", event);
|
|
9918
|
+
},
|
|
9919
|
+
onBlur: (event) => {
|
|
9920
|
+
this.$emit("blur", event);
|
|
9921
|
+
},
|
|
9922
|
+
onKeydown: (event) => {
|
|
9923
|
+
this.$emit("keydown", event);
|
|
9924
|
+
},
|
|
9925
|
+
onKeyup: (event) => {
|
|
9926
|
+
this.$emit("keyup", event);
|
|
9927
|
+
},
|
|
9928
|
+
onInput: (event) => {
|
|
9929
|
+
this.$emit("input", event);
|
|
9930
|
+
},
|
|
8347
9931
|
onChange: (event) => {
|
|
8348
9932
|
this.$emit(
|
|
8349
9933
|
"update:modelValue",
|
|
@@ -8497,14 +10081,30 @@ const VSplitButton = vue.defineComponent({
|
|
|
8497
10081
|
},
|
|
8498
10082
|
class: "vvd-component",
|
|
8499
10083
|
on: {
|
|
8500
|
-
click: (event) =>
|
|
8501
|
-
|
|
8502
|
-
|
|
8503
|
-
|
|
8504
|
-
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
10084
|
+
click: (event) => {
|
|
10085
|
+
this.$emit("click", event);
|
|
10086
|
+
},
|
|
10087
|
+
focus: (event) => {
|
|
10088
|
+
this.$emit("focus", event);
|
|
10089
|
+
},
|
|
10090
|
+
blur: (event) => {
|
|
10091
|
+
this.$emit("blur", event);
|
|
10092
|
+
},
|
|
10093
|
+
keydown: (event) => {
|
|
10094
|
+
this.$emit("keydown", event);
|
|
10095
|
+
},
|
|
10096
|
+
keyup: (event) => {
|
|
10097
|
+
this.$emit("keyup", event);
|
|
10098
|
+
},
|
|
10099
|
+
input: (event) => {
|
|
10100
|
+
this.$emit("input", event);
|
|
10101
|
+
},
|
|
10102
|
+
"action-click": (event) => {
|
|
10103
|
+
this.$emit("action-click", event);
|
|
10104
|
+
},
|
|
10105
|
+
"indicator-click": (event) => {
|
|
10106
|
+
this.$emit("indicator-click", event);
|
|
10107
|
+
}
|
|
8508
10108
|
}
|
|
8509
10109
|
},
|
|
8510
10110
|
[
|
|
@@ -8531,14 +10131,30 @@ const VSplitButton = vue.defineComponent({
|
|
|
8531
10131
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
8532
10132
|
...this.ariaExpanded !== void 0 ? { "^aria-expanded": this.ariaExpanded } : {},
|
|
8533
10133
|
...this.indicatorAriaLabel !== void 0 ? { "^indicator-aria-label": this.indicatorAriaLabel } : {},
|
|
8534
|
-
onClick: (event) =>
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
10134
|
+
onClick: (event) => {
|
|
10135
|
+
this.$emit("click", event);
|
|
10136
|
+
},
|
|
10137
|
+
onFocus: (event) => {
|
|
10138
|
+
this.$emit("focus", event);
|
|
10139
|
+
},
|
|
10140
|
+
onBlur: (event) => {
|
|
10141
|
+
this.$emit("blur", event);
|
|
10142
|
+
},
|
|
10143
|
+
onKeydown: (event) => {
|
|
10144
|
+
this.$emit("keydown", event);
|
|
10145
|
+
},
|
|
10146
|
+
onKeyup: (event) => {
|
|
10147
|
+
this.$emit("keyup", event);
|
|
10148
|
+
},
|
|
10149
|
+
onInput: (event) => {
|
|
10150
|
+
this.$emit("input", event);
|
|
10151
|
+
},
|
|
10152
|
+
onActionClick: (event) => {
|
|
10153
|
+
this.$emit("action-click", event);
|
|
10154
|
+
},
|
|
10155
|
+
onIndicatorClick: (event) => {
|
|
10156
|
+
this.$emit("indicator-click", event);
|
|
10157
|
+
}
|
|
8542
10158
|
},
|
|
8543
10159
|
[
|
|
8544
10160
|
// @ts-ignore
|
|
@@ -8694,12 +10310,24 @@ const VSwitch = vue.defineComponent({
|
|
|
8694
10310
|
},
|
|
8695
10311
|
class: "vvd-component",
|
|
8696
10312
|
on: {
|
|
8697
|
-
click: (event) =>
|
|
8698
|
-
|
|
8699
|
-
|
|
8700
|
-
|
|
8701
|
-
|
|
8702
|
-
|
|
10313
|
+
click: (event) => {
|
|
10314
|
+
this.$emit("click", event);
|
|
10315
|
+
},
|
|
10316
|
+
focus: (event) => {
|
|
10317
|
+
this.$emit("focus", event);
|
|
10318
|
+
},
|
|
10319
|
+
blur: (event) => {
|
|
10320
|
+
this.$emit("blur", event);
|
|
10321
|
+
},
|
|
10322
|
+
keydown: (event) => {
|
|
10323
|
+
this.$emit("keydown", event);
|
|
10324
|
+
},
|
|
10325
|
+
keyup: (event) => {
|
|
10326
|
+
this.$emit("keyup", event);
|
|
10327
|
+
},
|
|
10328
|
+
input: (event) => {
|
|
10329
|
+
this.$emit("input", event);
|
|
10330
|
+
},
|
|
8703
10331
|
change: (event) => {
|
|
8704
10332
|
this.$emit(
|
|
8705
10333
|
"update:modelValue",
|
|
@@ -8728,12 +10356,24 @@ const VSwitch = vue.defineComponent({
|
|
|
8728
10356
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
8729
10357
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
8730
10358
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8731
|
-
onClick: (event) =>
|
|
8732
|
-
|
|
8733
|
-
|
|
8734
|
-
|
|
8735
|
-
|
|
8736
|
-
|
|
10359
|
+
onClick: (event) => {
|
|
10360
|
+
this.$emit("click", event);
|
|
10361
|
+
},
|
|
10362
|
+
onFocus: (event) => {
|
|
10363
|
+
this.$emit("focus", event);
|
|
10364
|
+
},
|
|
10365
|
+
onBlur: (event) => {
|
|
10366
|
+
this.$emit("blur", event);
|
|
10367
|
+
},
|
|
10368
|
+
onKeydown: (event) => {
|
|
10369
|
+
this.$emit("keydown", event);
|
|
10370
|
+
},
|
|
10371
|
+
onKeyup: (event) => {
|
|
10372
|
+
this.$emit("keyup", event);
|
|
10373
|
+
},
|
|
10374
|
+
onInput: (event) => {
|
|
10375
|
+
this.$emit("input", event);
|
|
10376
|
+
},
|
|
8737
10377
|
onChange: (event) => {
|
|
8738
10378
|
this.$emit(
|
|
8739
10379
|
"update:modelValue",
|
|
@@ -8791,6 +10431,10 @@ const VTab = vue.defineComponent({
|
|
|
8791
10431
|
* Indicates the tab's label.
|
|
8792
10432
|
*/
|
|
8793
10433
|
label: { type: String, default: void 0 },
|
|
10434
|
+
/**
|
|
10435
|
+
* Indicates the tab's label.
|
|
10436
|
+
*/
|
|
10437
|
+
removable: { type: Boolean, default: void 0 },
|
|
8794
10438
|
tabIndex: { type: Number, default: void 0 },
|
|
8795
10439
|
ariaSelected: { type: String, default: void 0 }
|
|
8796
10440
|
},
|
|
@@ -8826,7 +10470,14 @@ const VTab = vue.defineComponent({
|
|
|
8826
10470
|
*/
|
|
8827
10471
|
"input"
|
|
8828
10472
|
],
|
|
8829
|
-
methods: {
|
|
10473
|
+
methods: {
|
|
10474
|
+
_handleCloseClick(e) {
|
|
10475
|
+
return this.element?._handleCloseClick(e);
|
|
10476
|
+
},
|
|
10477
|
+
_onKeyDown(e) {
|
|
10478
|
+
return this.element?._onKeyDown(e);
|
|
10479
|
+
}
|
|
10480
|
+
},
|
|
8830
10481
|
setup(props, ctx) {
|
|
8831
10482
|
const componentName = registerComponent("tab", vivid.registerTab);
|
|
8832
10483
|
const element = vue.ref(null);
|
|
@@ -8846,17 +10497,30 @@ const VTab = vue.defineComponent({
|
|
|
8846
10497
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
8847
10498
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8848
10499
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
10500
|
+
...this.removable !== void 0 ? { removable: this.removable } : {},
|
|
8849
10501
|
...this.tabIndex !== void 0 ? { tabIndex: this.tabIndex } : {},
|
|
8850
10502
|
...this.ariaSelected !== void 0 ? { "aria-selected": this.ariaSelected } : {}
|
|
8851
10503
|
},
|
|
8852
10504
|
class: "vvd-component",
|
|
8853
10505
|
on: {
|
|
8854
|
-
click: (event) =>
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
|
|
8859
|
-
|
|
10506
|
+
click: (event) => {
|
|
10507
|
+
this.$emit("click", event);
|
|
10508
|
+
},
|
|
10509
|
+
focus: (event) => {
|
|
10510
|
+
this.$emit("focus", event);
|
|
10511
|
+
},
|
|
10512
|
+
blur: (event) => {
|
|
10513
|
+
this.$emit("blur", event);
|
|
10514
|
+
},
|
|
10515
|
+
keydown: (event) => {
|
|
10516
|
+
this.$emit("keydown", event);
|
|
10517
|
+
},
|
|
10518
|
+
keyup: (event) => {
|
|
10519
|
+
this.$emit("keyup", event);
|
|
10520
|
+
},
|
|
10521
|
+
input: (event) => {
|
|
10522
|
+
this.$emit("input", event);
|
|
10523
|
+
}
|
|
8860
10524
|
}
|
|
8861
10525
|
},
|
|
8862
10526
|
[
|
|
@@ -8878,14 +10542,27 @@ const VTab = vue.defineComponent({
|
|
|
8878
10542
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8879
10543
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8880
10544
|
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
10545
|
+
...this.removable !== void 0 && this.removable !== false ? { "^removable": this.removable } : {},
|
|
8881
10546
|
...this.tabIndex !== void 0 ? { "^tabIndex": this.tabIndex } : {},
|
|
8882
10547
|
...this.ariaSelected !== void 0 ? { "^aria-selected": this.ariaSelected } : {},
|
|
8883
|
-
onClick: (event) =>
|
|
8884
|
-
|
|
8885
|
-
|
|
8886
|
-
|
|
8887
|
-
|
|
8888
|
-
|
|
10548
|
+
onClick: (event) => {
|
|
10549
|
+
this.$emit("click", event);
|
|
10550
|
+
},
|
|
10551
|
+
onFocus: (event) => {
|
|
10552
|
+
this.$emit("focus", event);
|
|
10553
|
+
},
|
|
10554
|
+
onBlur: (event) => {
|
|
10555
|
+
this.$emit("blur", event);
|
|
10556
|
+
},
|
|
10557
|
+
onKeydown: (event) => {
|
|
10558
|
+
this.$emit("keydown", event);
|
|
10559
|
+
},
|
|
10560
|
+
onKeyup: (event) => {
|
|
10561
|
+
this.$emit("keyup", event);
|
|
10562
|
+
},
|
|
10563
|
+
onInput: (event) => {
|
|
10564
|
+
this.$emit("input", event);
|
|
10565
|
+
}
|
|
8889
10566
|
},
|
|
8890
10567
|
[
|
|
8891
10568
|
// @ts-ignore
|
|
@@ -8957,12 +10634,24 @@ const VTabPanel = vue.defineComponent({
|
|
|
8957
10634
|
},
|
|
8958
10635
|
class: "vvd-component",
|
|
8959
10636
|
on: {
|
|
8960
|
-
click: (event) =>
|
|
8961
|
-
|
|
8962
|
-
|
|
8963
|
-
|
|
8964
|
-
|
|
8965
|
-
|
|
10637
|
+
click: (event) => {
|
|
10638
|
+
this.$emit("click", event);
|
|
10639
|
+
},
|
|
10640
|
+
focus: (event) => {
|
|
10641
|
+
this.$emit("focus", event);
|
|
10642
|
+
},
|
|
10643
|
+
blur: (event) => {
|
|
10644
|
+
this.$emit("blur", event);
|
|
10645
|
+
},
|
|
10646
|
+
keydown: (event) => {
|
|
10647
|
+
this.$emit("keydown", event);
|
|
10648
|
+
},
|
|
10649
|
+
keyup: (event) => {
|
|
10650
|
+
this.$emit("keyup", event);
|
|
10651
|
+
},
|
|
10652
|
+
input: (event) => {
|
|
10653
|
+
this.$emit("input", event);
|
|
10654
|
+
}
|
|
8966
10655
|
}
|
|
8967
10656
|
},
|
|
8968
10657
|
[this.$slots.default]
|
|
@@ -8974,12 +10663,24 @@ const VTabPanel = vue.defineComponent({
|
|
|
8974
10663
|
ref: "element",
|
|
8975
10664
|
class: "vvd-component",
|
|
8976
10665
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
8977
|
-
onClick: (event) =>
|
|
8978
|
-
|
|
8979
|
-
|
|
8980
|
-
|
|
8981
|
-
|
|
8982
|
-
|
|
10666
|
+
onClick: (event) => {
|
|
10667
|
+
this.$emit("click", event);
|
|
10668
|
+
},
|
|
10669
|
+
onFocus: (event) => {
|
|
10670
|
+
this.$emit("focus", event);
|
|
10671
|
+
},
|
|
10672
|
+
onBlur: (event) => {
|
|
10673
|
+
this.$emit("blur", event);
|
|
10674
|
+
},
|
|
10675
|
+
onKeydown: (event) => {
|
|
10676
|
+
this.$emit("keydown", event);
|
|
10677
|
+
},
|
|
10678
|
+
onKeyup: (event) => {
|
|
10679
|
+
this.$emit("keyup", event);
|
|
10680
|
+
},
|
|
10681
|
+
onInput: (event) => {
|
|
10682
|
+
this.$emit("input", event);
|
|
10683
|
+
}
|
|
8983
10684
|
},
|
|
8984
10685
|
[
|
|
8985
10686
|
// @ts-ignore
|
|
@@ -9118,13 +10819,27 @@ const VTabs = vue.defineComponent({
|
|
|
9118
10819
|
},
|
|
9119
10820
|
class: "vvd-component",
|
|
9120
10821
|
on: {
|
|
9121
|
-
click: (event) =>
|
|
9122
|
-
|
|
9123
|
-
|
|
9124
|
-
|
|
9125
|
-
|
|
9126
|
-
|
|
9127
|
-
|
|
10822
|
+
click: (event) => {
|
|
10823
|
+
this.$emit("click", event);
|
|
10824
|
+
},
|
|
10825
|
+
focus: (event) => {
|
|
10826
|
+
this.$emit("focus", event);
|
|
10827
|
+
},
|
|
10828
|
+
blur: (event) => {
|
|
10829
|
+
this.$emit("blur", event);
|
|
10830
|
+
},
|
|
10831
|
+
keydown: (event) => {
|
|
10832
|
+
this.$emit("keydown", event);
|
|
10833
|
+
},
|
|
10834
|
+
keyup: (event) => {
|
|
10835
|
+
this.$emit("keyup", event);
|
|
10836
|
+
},
|
|
10837
|
+
input: (event) => {
|
|
10838
|
+
this.$emit("input", event);
|
|
10839
|
+
},
|
|
10840
|
+
change: (event) => {
|
|
10841
|
+
this.$emit("change", event);
|
|
10842
|
+
}
|
|
9128
10843
|
}
|
|
9129
10844
|
},
|
|
9130
10845
|
[this.$slots.default]
|
|
@@ -9142,13 +10857,27 @@ const VTabs = vue.defineComponent({
|
|
|
9142
10857
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
9143
10858
|
...this.gutters !== void 0 ? { "^gutters": this.gutters } : {},
|
|
9144
10859
|
...this.scrollablePanel !== void 0 && this.scrollablePanel !== false ? { "^scrollable-panel": this.scrollablePanel } : {},
|
|
9145
|
-
onClick: (event) =>
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
9149
|
-
|
|
9150
|
-
|
|
9151
|
-
|
|
10860
|
+
onClick: (event) => {
|
|
10861
|
+
this.$emit("click", event);
|
|
10862
|
+
},
|
|
10863
|
+
onFocus: (event) => {
|
|
10864
|
+
this.$emit("focus", event);
|
|
10865
|
+
},
|
|
10866
|
+
onBlur: (event) => {
|
|
10867
|
+
this.$emit("blur", event);
|
|
10868
|
+
},
|
|
10869
|
+
onKeydown: (event) => {
|
|
10870
|
+
this.$emit("keydown", event);
|
|
10871
|
+
},
|
|
10872
|
+
onKeyup: (event) => {
|
|
10873
|
+
this.$emit("keyup", event);
|
|
10874
|
+
},
|
|
10875
|
+
onInput: (event) => {
|
|
10876
|
+
this.$emit("input", event);
|
|
10877
|
+
},
|
|
10878
|
+
onChange: (event) => {
|
|
10879
|
+
this.$emit("change", event);
|
|
10880
|
+
}
|
|
9152
10881
|
},
|
|
9153
10882
|
[
|
|
9154
10883
|
// @ts-ignore
|
|
@@ -9290,14 +11019,30 @@ const VTag = vue.defineComponent({
|
|
|
9290
11019
|
},
|
|
9291
11020
|
class: "vvd-component",
|
|
9292
11021
|
on: {
|
|
9293
|
-
click: (event) =>
|
|
9294
|
-
|
|
9295
|
-
|
|
9296
|
-
|
|
9297
|
-
|
|
9298
|
-
|
|
9299
|
-
|
|
9300
|
-
|
|
11022
|
+
click: (event) => {
|
|
11023
|
+
this.$emit("click", event);
|
|
11024
|
+
},
|
|
11025
|
+
focus: (event) => {
|
|
11026
|
+
this.$emit("focus", event);
|
|
11027
|
+
},
|
|
11028
|
+
blur: (event) => {
|
|
11029
|
+
this.$emit("blur", event);
|
|
11030
|
+
},
|
|
11031
|
+
keydown: (event) => {
|
|
11032
|
+
this.$emit("keydown", event);
|
|
11033
|
+
},
|
|
11034
|
+
keyup: (event) => {
|
|
11035
|
+
this.$emit("keyup", event);
|
|
11036
|
+
},
|
|
11037
|
+
input: (event) => {
|
|
11038
|
+
this.$emit("input", event);
|
|
11039
|
+
},
|
|
11040
|
+
"selected-change": (event) => {
|
|
11041
|
+
this.$emit("selected-change", event);
|
|
11042
|
+
},
|
|
11043
|
+
removed: (event) => {
|
|
11044
|
+
this.$emit("removed", event);
|
|
11045
|
+
}
|
|
9301
11046
|
}
|
|
9302
11047
|
},
|
|
9303
11048
|
[
|
|
@@ -9322,14 +11067,30 @@ const VTag = vue.defineComponent({
|
|
|
9322
11067
|
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
9323
11068
|
...this.selectable !== void 0 && this.selectable !== false ? { "^selectable": this.selectable } : {},
|
|
9324
11069
|
...this.selected !== void 0 && this.selected !== false ? { "^selected": this.selected } : {},
|
|
9325
|
-
onClick: (event) =>
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
11070
|
+
onClick: (event) => {
|
|
11071
|
+
this.$emit("click", event);
|
|
11072
|
+
},
|
|
11073
|
+
onFocus: (event) => {
|
|
11074
|
+
this.$emit("focus", event);
|
|
11075
|
+
},
|
|
11076
|
+
onBlur: (event) => {
|
|
11077
|
+
this.$emit("blur", event);
|
|
11078
|
+
},
|
|
11079
|
+
onKeydown: (event) => {
|
|
11080
|
+
this.$emit("keydown", event);
|
|
11081
|
+
},
|
|
11082
|
+
onKeyup: (event) => {
|
|
11083
|
+
this.$emit("keyup", event);
|
|
11084
|
+
},
|
|
11085
|
+
onInput: (event) => {
|
|
11086
|
+
this.$emit("input", event);
|
|
11087
|
+
},
|
|
11088
|
+
onSelectedChange: (event) => {
|
|
11089
|
+
this.$emit("selected-change", event);
|
|
11090
|
+
},
|
|
11091
|
+
onRemoved: (event) => {
|
|
11092
|
+
this.$emit("removed", event);
|
|
11093
|
+
}
|
|
9333
11094
|
},
|
|
9334
11095
|
[
|
|
9335
11096
|
// @ts-ignore
|
|
@@ -9403,12 +11164,24 @@ const VTagGroup = vue.defineComponent({
|
|
|
9403
11164
|
},
|
|
9404
11165
|
class: "vvd-component",
|
|
9405
11166
|
on: {
|
|
9406
|
-
click: (event) =>
|
|
9407
|
-
|
|
9408
|
-
|
|
9409
|
-
|
|
9410
|
-
|
|
9411
|
-
|
|
11167
|
+
click: (event) => {
|
|
11168
|
+
this.$emit("click", event);
|
|
11169
|
+
},
|
|
11170
|
+
focus: (event) => {
|
|
11171
|
+
this.$emit("focus", event);
|
|
11172
|
+
},
|
|
11173
|
+
blur: (event) => {
|
|
11174
|
+
this.$emit("blur", event);
|
|
11175
|
+
},
|
|
11176
|
+
keydown: (event) => {
|
|
11177
|
+
this.$emit("keydown", event);
|
|
11178
|
+
},
|
|
11179
|
+
keyup: (event) => {
|
|
11180
|
+
this.$emit("keyup", event);
|
|
11181
|
+
},
|
|
11182
|
+
input: (event) => {
|
|
11183
|
+
this.$emit("input", event);
|
|
11184
|
+
}
|
|
9412
11185
|
}
|
|
9413
11186
|
},
|
|
9414
11187
|
[this.$slots.default]
|
|
@@ -9421,12 +11194,24 @@ const VTagGroup = vue.defineComponent({
|
|
|
9421
11194
|
class: "vvd-component",
|
|
9422
11195
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
9423
11196
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
9424
|
-
onClick: (event) =>
|
|
9425
|
-
|
|
9426
|
-
|
|
9427
|
-
|
|
9428
|
-
|
|
9429
|
-
|
|
11197
|
+
onClick: (event) => {
|
|
11198
|
+
this.$emit("click", event);
|
|
11199
|
+
},
|
|
11200
|
+
onFocus: (event) => {
|
|
11201
|
+
this.$emit("focus", event);
|
|
11202
|
+
},
|
|
11203
|
+
onBlur: (event) => {
|
|
11204
|
+
this.$emit("blur", event);
|
|
11205
|
+
},
|
|
11206
|
+
onKeydown: (event) => {
|
|
11207
|
+
this.$emit("keydown", event);
|
|
11208
|
+
},
|
|
11209
|
+
onKeyup: (event) => {
|
|
11210
|
+
this.$emit("keyup", event);
|
|
11211
|
+
},
|
|
11212
|
+
onInput: (event) => {
|
|
11213
|
+
this.$emit("input", event);
|
|
11214
|
+
}
|
|
9430
11215
|
},
|
|
9431
11216
|
[
|
|
9432
11217
|
// @ts-ignore
|
|
@@ -9653,11 +11438,21 @@ const VTextArea = vue.defineComponent({
|
|
|
9653
11438
|
},
|
|
9654
11439
|
class: "vvd-component",
|
|
9655
11440
|
on: {
|
|
9656
|
-
click: (event) =>
|
|
9657
|
-
|
|
9658
|
-
|
|
9659
|
-
|
|
9660
|
-
|
|
11441
|
+
click: (event) => {
|
|
11442
|
+
this.$emit("click", event);
|
|
11443
|
+
},
|
|
11444
|
+
focus: (event) => {
|
|
11445
|
+
this.$emit("focus", event);
|
|
11446
|
+
},
|
|
11447
|
+
blur: (event) => {
|
|
11448
|
+
this.$emit("blur", event);
|
|
11449
|
+
},
|
|
11450
|
+
keydown: (event) => {
|
|
11451
|
+
this.$emit("keydown", event);
|
|
11452
|
+
},
|
|
11453
|
+
keyup: (event) => {
|
|
11454
|
+
this.$emit("keyup", event);
|
|
11455
|
+
},
|
|
9661
11456
|
input: (event) => {
|
|
9662
11457
|
this.$emit(
|
|
9663
11458
|
"update:modelValue",
|
|
@@ -9665,7 +11460,9 @@ const VTextArea = vue.defineComponent({
|
|
|
9665
11460
|
);
|
|
9666
11461
|
this.$emit("input", event);
|
|
9667
11462
|
},
|
|
9668
|
-
change: (event) =>
|
|
11463
|
+
change: (event) => {
|
|
11464
|
+
this.$emit("change", event);
|
|
11465
|
+
}
|
|
9669
11466
|
}
|
|
9670
11467
|
},
|
|
9671
11468
|
[
|
|
@@ -9703,11 +11500,21 @@ const VTextArea = vue.defineComponent({
|
|
|
9703
11500
|
...this.rows !== void 0 ? { "^rows": this.rows } : {},
|
|
9704
11501
|
...this.spellcheck !== void 0 && this.spellcheck !== false ? { "^spellcheck": this.spellcheck } : {},
|
|
9705
11502
|
...this.wrap !== void 0 ? { "^wrap": this.wrap } : {},
|
|
9706
|
-
onClick: (event) =>
|
|
9707
|
-
|
|
9708
|
-
|
|
9709
|
-
|
|
9710
|
-
|
|
11503
|
+
onClick: (event) => {
|
|
11504
|
+
this.$emit("click", event);
|
|
11505
|
+
},
|
|
11506
|
+
onFocus: (event) => {
|
|
11507
|
+
this.$emit("focus", event);
|
|
11508
|
+
},
|
|
11509
|
+
onBlur: (event) => {
|
|
11510
|
+
this.$emit("blur", event);
|
|
11511
|
+
},
|
|
11512
|
+
onKeydown: (event) => {
|
|
11513
|
+
this.$emit("keydown", event);
|
|
11514
|
+
},
|
|
11515
|
+
onKeyup: (event) => {
|
|
11516
|
+
this.$emit("keyup", event);
|
|
11517
|
+
},
|
|
9711
11518
|
onInput: (event) => {
|
|
9712
11519
|
this.$emit(
|
|
9713
11520
|
"update:modelValue",
|
|
@@ -9715,7 +11522,9 @@ const VTextArea = vue.defineComponent({
|
|
|
9715
11522
|
);
|
|
9716
11523
|
this.$emit("input", event);
|
|
9717
11524
|
},
|
|
9718
|
-
onChange: (event) =>
|
|
11525
|
+
onChange: (event) => {
|
|
11526
|
+
this.$emit("change", event);
|
|
11527
|
+
}
|
|
9719
11528
|
},
|
|
9720
11529
|
[
|
|
9721
11530
|
// @ts-ignore
|
|
@@ -9847,7 +11656,14 @@ const VTextField = vue.defineComponent({
|
|
|
9847
11656
|
default: void 0
|
|
9848
11657
|
},
|
|
9849
11658
|
shape: { type: String, default: void 0 },
|
|
9850
|
-
autoComplete: { type: String, default: void 0 }
|
|
11659
|
+
autoComplete: { type: String, default: void 0 },
|
|
11660
|
+
/**
|
|
11661
|
+
* The size the text-field should have.
|
|
11662
|
+
*/
|
|
11663
|
+
scale: {
|
|
11664
|
+
type: String,
|
|
11665
|
+
default: void 0
|
|
11666
|
+
}
|
|
9851
11667
|
},
|
|
9852
11668
|
emits: [
|
|
9853
11669
|
/**
|
|
@@ -9944,15 +11760,26 @@ const VTextField = vue.defineComponent({
|
|
|
9944
11760
|
...this.spellcheck !== void 0 ? { spellcheck: this.spellcheck } : {},
|
|
9945
11761
|
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
9946
11762
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
9947
|
-
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {}
|
|
11763
|
+
...this.autoComplete !== void 0 ? { autoComplete: this.autoComplete } : {},
|
|
11764
|
+
...this.scale !== void 0 ? { scale: this.scale } : {}
|
|
9948
11765
|
},
|
|
9949
11766
|
class: "vvd-component",
|
|
9950
11767
|
on: {
|
|
9951
|
-
click: (event) =>
|
|
9952
|
-
|
|
9953
|
-
|
|
9954
|
-
|
|
9955
|
-
|
|
11768
|
+
click: (event) => {
|
|
11769
|
+
this.$emit("click", event);
|
|
11770
|
+
},
|
|
11771
|
+
focus: (event) => {
|
|
11772
|
+
this.$emit("focus", event);
|
|
11773
|
+
},
|
|
11774
|
+
blur: (event) => {
|
|
11775
|
+
this.$emit("blur", event);
|
|
11776
|
+
},
|
|
11777
|
+
keydown: (event) => {
|
|
11778
|
+
this.$emit("keydown", event);
|
|
11779
|
+
},
|
|
11780
|
+
keyup: (event) => {
|
|
11781
|
+
this.$emit("keyup", event);
|
|
11782
|
+
},
|
|
9956
11783
|
input: (event) => {
|
|
9957
11784
|
this.$emit(
|
|
9958
11785
|
"update:modelValue",
|
|
@@ -9960,7 +11787,9 @@ const VTextField = vue.defineComponent({
|
|
|
9960
11787
|
);
|
|
9961
11788
|
this.$emit("input", event);
|
|
9962
11789
|
},
|
|
9963
|
-
change: (event) =>
|
|
11790
|
+
change: (event) => {
|
|
11791
|
+
this.$emit("change", event);
|
|
11792
|
+
}
|
|
9964
11793
|
}
|
|
9965
11794
|
},
|
|
9966
11795
|
[
|
|
@@ -10007,11 +11836,22 @@ const VTextField = vue.defineComponent({
|
|
|
10007
11836
|
...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
|
|
10008
11837
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
10009
11838
|
...this.autoComplete !== void 0 ? { "^autoComplete": this.autoComplete } : {},
|
|
10010
|
-
|
|
10011
|
-
|
|
10012
|
-
|
|
10013
|
-
|
|
10014
|
-
|
|
11839
|
+
...this.scale !== void 0 ? { "^scale": this.scale } : {},
|
|
11840
|
+
onClick: (event) => {
|
|
11841
|
+
this.$emit("click", event);
|
|
11842
|
+
},
|
|
11843
|
+
onFocus: (event) => {
|
|
11844
|
+
this.$emit("focus", event);
|
|
11845
|
+
},
|
|
11846
|
+
onBlur: (event) => {
|
|
11847
|
+
this.$emit("blur", event);
|
|
11848
|
+
},
|
|
11849
|
+
onKeydown: (event) => {
|
|
11850
|
+
this.$emit("keydown", event);
|
|
11851
|
+
},
|
|
11852
|
+
onKeyup: (event) => {
|
|
11853
|
+
this.$emit("keyup", event);
|
|
11854
|
+
},
|
|
10015
11855
|
onInput: (event) => {
|
|
10016
11856
|
this.$emit(
|
|
10017
11857
|
"update:modelValue",
|
|
@@ -10019,7 +11859,9 @@ const VTextField = vue.defineComponent({
|
|
|
10019
11859
|
);
|
|
10020
11860
|
this.$emit("input", event);
|
|
10021
11861
|
},
|
|
10022
|
-
onChange: (event) =>
|
|
11862
|
+
onChange: (event) => {
|
|
11863
|
+
this.$emit("change", event);
|
|
11864
|
+
}
|
|
10023
11865
|
},
|
|
10024
11866
|
[
|
|
10025
11867
|
// @ts-ignore
|
|
@@ -10195,11 +12037,21 @@ const VTimePicker = vue.defineComponent({
|
|
|
10195
12037
|
},
|
|
10196
12038
|
class: "vvd-component",
|
|
10197
12039
|
on: {
|
|
10198
|
-
click: (event) =>
|
|
10199
|
-
|
|
10200
|
-
|
|
10201
|
-
|
|
10202
|
-
|
|
12040
|
+
click: (event) => {
|
|
12041
|
+
this.$emit("click", event);
|
|
12042
|
+
},
|
|
12043
|
+
focus: (event) => {
|
|
12044
|
+
this.$emit("focus", event);
|
|
12045
|
+
},
|
|
12046
|
+
blur: (event) => {
|
|
12047
|
+
this.$emit("blur", event);
|
|
12048
|
+
},
|
|
12049
|
+
keydown: (event) => {
|
|
12050
|
+
this.$emit("keydown", event);
|
|
12051
|
+
},
|
|
12052
|
+
keyup: (event) => {
|
|
12053
|
+
this.$emit("keyup", event);
|
|
12054
|
+
},
|
|
10203
12055
|
input: (event) => {
|
|
10204
12056
|
this.$emit(
|
|
10205
12057
|
"update:modelValue",
|
|
@@ -10207,7 +12059,9 @@ const VTimePicker = vue.defineComponent({
|
|
|
10207
12059
|
);
|
|
10208
12060
|
this.$emit("input", event);
|
|
10209
12061
|
},
|
|
10210
|
-
change: (event) =>
|
|
12062
|
+
change: (event) => {
|
|
12063
|
+
this.$emit("change", event);
|
|
12064
|
+
}
|
|
10211
12065
|
}
|
|
10212
12066
|
},
|
|
10213
12067
|
[
|
|
@@ -10237,11 +12091,21 @@ const VTimePicker = vue.defineComponent({
|
|
|
10237
12091
|
...this.clock !== void 0 ? { "^clock": this.clock } : {},
|
|
10238
12092
|
...this.min !== void 0 ? { "^min": this.min } : {},
|
|
10239
12093
|
...this.max !== void 0 ? { "^max": this.max } : {},
|
|
10240
|
-
onClick: (event) =>
|
|
10241
|
-
|
|
10242
|
-
|
|
10243
|
-
|
|
10244
|
-
|
|
12094
|
+
onClick: (event) => {
|
|
12095
|
+
this.$emit("click", event);
|
|
12096
|
+
},
|
|
12097
|
+
onFocus: (event) => {
|
|
12098
|
+
this.$emit("focus", event);
|
|
12099
|
+
},
|
|
12100
|
+
onBlur: (event) => {
|
|
12101
|
+
this.$emit("blur", event);
|
|
12102
|
+
},
|
|
12103
|
+
onKeydown: (event) => {
|
|
12104
|
+
this.$emit("keydown", event);
|
|
12105
|
+
},
|
|
12106
|
+
onKeyup: (event) => {
|
|
12107
|
+
this.$emit("keyup", event);
|
|
12108
|
+
},
|
|
10245
12109
|
onInput: (event) => {
|
|
10246
12110
|
this.$emit(
|
|
10247
12111
|
"update:modelValue",
|
|
@@ -10249,7 +12113,9 @@ const VTimePicker = vue.defineComponent({
|
|
|
10249
12113
|
);
|
|
10250
12114
|
this.$emit("input", event);
|
|
10251
12115
|
},
|
|
10252
|
-
onChange: (event) =>
|
|
12116
|
+
onChange: (event) => {
|
|
12117
|
+
this.$emit("change", event);
|
|
12118
|
+
}
|
|
10253
12119
|
},
|
|
10254
12120
|
[
|
|
10255
12121
|
// @ts-ignore
|
|
@@ -10358,12 +12224,24 @@ const VToggletip = vue.defineComponent({
|
|
|
10358
12224
|
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
10359
12225
|
},
|
|
10360
12226
|
on: {
|
|
10361
|
-
click: (event) =>
|
|
10362
|
-
|
|
10363
|
-
|
|
10364
|
-
|
|
10365
|
-
|
|
10366
|
-
|
|
12227
|
+
click: (event) => {
|
|
12228
|
+
this.$emit("click", event);
|
|
12229
|
+
},
|
|
12230
|
+
focus: (event) => {
|
|
12231
|
+
this.$emit("focus", event);
|
|
12232
|
+
},
|
|
12233
|
+
blur: (event) => {
|
|
12234
|
+
this.$emit("blur", event);
|
|
12235
|
+
},
|
|
12236
|
+
keydown: (event) => {
|
|
12237
|
+
this.$emit("keydown", event);
|
|
12238
|
+
},
|
|
12239
|
+
keyup: (event) => {
|
|
12240
|
+
this.$emit("keyup", event);
|
|
12241
|
+
},
|
|
12242
|
+
input: (event) => {
|
|
12243
|
+
this.$emit("input", event);
|
|
12244
|
+
}
|
|
10367
12245
|
}
|
|
10368
12246
|
},
|
|
10369
12247
|
[
|
|
@@ -10386,12 +12264,24 @@ const VToggletip = vue.defineComponent({
|
|
|
10386
12264
|
...this.alternate !== void 0 && this.alternate !== false ? { "^alternate": this.alternate } : {},
|
|
10387
12265
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10388
12266
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
10389
|
-
onClick: (event) =>
|
|
10390
|
-
|
|
10391
|
-
|
|
10392
|
-
|
|
10393
|
-
|
|
10394
|
-
|
|
12267
|
+
onClick: (event) => {
|
|
12268
|
+
this.$emit("click", event);
|
|
12269
|
+
},
|
|
12270
|
+
onFocus: (event) => {
|
|
12271
|
+
this.$emit("focus", event);
|
|
12272
|
+
},
|
|
12273
|
+
onBlur: (event) => {
|
|
12274
|
+
this.$emit("blur", event);
|
|
12275
|
+
},
|
|
12276
|
+
onKeydown: (event) => {
|
|
12277
|
+
this.$emit("keydown", event);
|
|
12278
|
+
},
|
|
12279
|
+
onKeyup: (event) => {
|
|
12280
|
+
this.$emit("keyup", event);
|
|
12281
|
+
},
|
|
12282
|
+
onInput: (event) => {
|
|
12283
|
+
this.$emit("input", event);
|
|
12284
|
+
}
|
|
10395
12285
|
},
|
|
10396
12286
|
[
|
|
10397
12287
|
// @ts-ignore
|
|
@@ -10488,12 +12378,24 @@ const VTooltip = vue.defineComponent({
|
|
|
10488
12378
|
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
10489
12379
|
},
|
|
10490
12380
|
on: {
|
|
10491
|
-
click: (event) =>
|
|
10492
|
-
|
|
10493
|
-
|
|
10494
|
-
|
|
10495
|
-
|
|
10496
|
-
|
|
12381
|
+
click: (event) => {
|
|
12382
|
+
this.$emit("click", event);
|
|
12383
|
+
},
|
|
12384
|
+
focus: (event) => {
|
|
12385
|
+
this.$emit("focus", event);
|
|
12386
|
+
},
|
|
12387
|
+
blur: (event) => {
|
|
12388
|
+
this.$emit("blur", event);
|
|
12389
|
+
},
|
|
12390
|
+
keydown: (event) => {
|
|
12391
|
+
this.$emit("keydown", event);
|
|
12392
|
+
},
|
|
12393
|
+
keyup: (event) => {
|
|
12394
|
+
this.$emit("keyup", event);
|
|
12395
|
+
},
|
|
12396
|
+
input: (event) => {
|
|
12397
|
+
this.$emit("input", event);
|
|
12398
|
+
}
|
|
10497
12399
|
}
|
|
10498
12400
|
},
|
|
10499
12401
|
[
|
|
@@ -10513,12 +12415,24 @@ const VTooltip = vue.defineComponent({
|
|
|
10513
12415
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
10514
12416
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10515
12417
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
10516
|
-
onClick: (event) =>
|
|
10517
|
-
|
|
10518
|
-
|
|
10519
|
-
|
|
10520
|
-
|
|
10521
|
-
|
|
12418
|
+
onClick: (event) => {
|
|
12419
|
+
this.$emit("click", event);
|
|
12420
|
+
},
|
|
12421
|
+
onFocus: (event) => {
|
|
12422
|
+
this.$emit("focus", event);
|
|
12423
|
+
},
|
|
12424
|
+
onBlur: (event) => {
|
|
12425
|
+
this.$emit("blur", event);
|
|
12426
|
+
},
|
|
12427
|
+
onKeydown: (event) => {
|
|
12428
|
+
this.$emit("keydown", event);
|
|
12429
|
+
},
|
|
12430
|
+
onKeyup: (event) => {
|
|
12431
|
+
this.$emit("keyup", event);
|
|
12432
|
+
},
|
|
12433
|
+
onInput: (event) => {
|
|
12434
|
+
this.$emit("input", event);
|
|
12435
|
+
}
|
|
10522
12436
|
},
|
|
10523
12437
|
[
|
|
10524
12438
|
// @ts-ignore
|
|
@@ -10626,14 +12540,30 @@ const VTreeItem = vue.defineComponent({
|
|
|
10626
12540
|
},
|
|
10627
12541
|
class: "vvd-component",
|
|
10628
12542
|
on: {
|
|
10629
|
-
click: (event) =>
|
|
10630
|
-
|
|
10631
|
-
|
|
10632
|
-
|
|
10633
|
-
|
|
10634
|
-
|
|
10635
|
-
|
|
10636
|
-
|
|
12543
|
+
click: (event) => {
|
|
12544
|
+
this.$emit("click", event);
|
|
12545
|
+
},
|
|
12546
|
+
focus: (event) => {
|
|
12547
|
+
this.$emit("focus", event);
|
|
12548
|
+
},
|
|
12549
|
+
blur: (event) => {
|
|
12550
|
+
this.$emit("blur", event);
|
|
12551
|
+
},
|
|
12552
|
+
keydown: (event) => {
|
|
12553
|
+
this.$emit("keydown", event);
|
|
12554
|
+
},
|
|
12555
|
+
keyup: (event) => {
|
|
12556
|
+
this.$emit("keyup", event);
|
|
12557
|
+
},
|
|
12558
|
+
input: (event) => {
|
|
12559
|
+
this.$emit("input", event);
|
|
12560
|
+
},
|
|
12561
|
+
"expanded-change": (event) => {
|
|
12562
|
+
this.$emit("expanded-change", event);
|
|
12563
|
+
},
|
|
12564
|
+
"selected-change": (event) => {
|
|
12565
|
+
this.$emit("selected-change", event);
|
|
12566
|
+
}
|
|
10637
12567
|
}
|
|
10638
12568
|
},
|
|
10639
12569
|
[
|
|
@@ -10656,14 +12586,30 @@ const VTreeItem = vue.defineComponent({
|
|
|
10656
12586
|
...this.selected !== void 0 && this.selected !== false ? { "^selected": this.selected } : {},
|
|
10657
12587
|
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
10658
12588
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
10659
|
-
onClick: (event) =>
|
|
10660
|
-
|
|
10661
|
-
|
|
10662
|
-
|
|
10663
|
-
|
|
10664
|
-
|
|
10665
|
-
|
|
10666
|
-
|
|
12589
|
+
onClick: (event) => {
|
|
12590
|
+
this.$emit("click", event);
|
|
12591
|
+
},
|
|
12592
|
+
onFocus: (event) => {
|
|
12593
|
+
this.$emit("focus", event);
|
|
12594
|
+
},
|
|
12595
|
+
onBlur: (event) => {
|
|
12596
|
+
this.$emit("blur", event);
|
|
12597
|
+
},
|
|
12598
|
+
onKeydown: (event) => {
|
|
12599
|
+
this.$emit("keydown", event);
|
|
12600
|
+
},
|
|
12601
|
+
onKeyup: (event) => {
|
|
12602
|
+
this.$emit("keyup", event);
|
|
12603
|
+
},
|
|
12604
|
+
onInput: (event) => {
|
|
12605
|
+
this.$emit("input", event);
|
|
12606
|
+
},
|
|
12607
|
+
onExpandedChange: (event) => {
|
|
12608
|
+
this.$emit("expanded-change", event);
|
|
12609
|
+
},
|
|
12610
|
+
onSelectedChange: (event) => {
|
|
12611
|
+
this.$emit("selected-change", event);
|
|
12612
|
+
}
|
|
10667
12613
|
},
|
|
10668
12614
|
[
|
|
10669
12615
|
// @ts-ignore
|
|
@@ -10746,12 +12692,24 @@ const VTreeView = vue.defineComponent({
|
|
|
10746
12692
|
},
|
|
10747
12693
|
class: "vvd-component",
|
|
10748
12694
|
on: {
|
|
10749
|
-
click: (event) =>
|
|
10750
|
-
|
|
10751
|
-
|
|
10752
|
-
|
|
10753
|
-
|
|
10754
|
-
|
|
12695
|
+
click: (event) => {
|
|
12696
|
+
this.$emit("click", event);
|
|
12697
|
+
},
|
|
12698
|
+
focus: (event) => {
|
|
12699
|
+
this.$emit("focus", event);
|
|
12700
|
+
},
|
|
12701
|
+
blur: (event) => {
|
|
12702
|
+
this.$emit("blur", event);
|
|
12703
|
+
},
|
|
12704
|
+
keydown: (event) => {
|
|
12705
|
+
this.$emit("keydown", event);
|
|
12706
|
+
},
|
|
12707
|
+
keyup: (event) => {
|
|
12708
|
+
this.$emit("keyup", event);
|
|
12709
|
+
},
|
|
12710
|
+
input: (event) => {
|
|
12711
|
+
this.$emit("input", event);
|
|
12712
|
+
}
|
|
10755
12713
|
}
|
|
10756
12714
|
},
|
|
10757
12715
|
[this.$slots.default]
|
|
@@ -10764,12 +12722,24 @@ const VTreeView = vue.defineComponent({
|
|
|
10764
12722
|
class: "vvd-component",
|
|
10765
12723
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
10766
12724
|
...this.renderCollapsedNodes !== void 0 && this.renderCollapsedNodes !== false ? { "^render-collapsed-nodes": this.renderCollapsedNodes } : {},
|
|
10767
|
-
onClick: (event) =>
|
|
10768
|
-
|
|
10769
|
-
|
|
10770
|
-
|
|
10771
|
-
|
|
10772
|
-
|
|
12725
|
+
onClick: (event) => {
|
|
12726
|
+
this.$emit("click", event);
|
|
12727
|
+
},
|
|
12728
|
+
onFocus: (event) => {
|
|
12729
|
+
this.$emit("focus", event);
|
|
12730
|
+
},
|
|
12731
|
+
onBlur: (event) => {
|
|
12732
|
+
this.$emit("blur", event);
|
|
12733
|
+
},
|
|
12734
|
+
onKeydown: (event) => {
|
|
12735
|
+
this.$emit("keydown", event);
|
|
12736
|
+
},
|
|
12737
|
+
onKeyup: (event) => {
|
|
12738
|
+
this.$emit("keyup", event);
|
|
12739
|
+
},
|
|
12740
|
+
onInput: (event) => {
|
|
12741
|
+
this.$emit("input", event);
|
|
12742
|
+
}
|
|
10773
12743
|
},
|
|
10774
12744
|
[
|
|
10775
12745
|
// @ts-ignore
|
|
@@ -10890,15 +12860,33 @@ const VVideoPlayer = vue.defineComponent({
|
|
|
10890
12860
|
},
|
|
10891
12861
|
class: "vvd-component",
|
|
10892
12862
|
on: {
|
|
10893
|
-
click: (event) =>
|
|
10894
|
-
|
|
10895
|
-
|
|
10896
|
-
|
|
10897
|
-
|
|
10898
|
-
|
|
10899
|
-
|
|
10900
|
-
|
|
10901
|
-
|
|
12863
|
+
click: (event) => {
|
|
12864
|
+
this.$emit("click", event);
|
|
12865
|
+
},
|
|
12866
|
+
focus: (event) => {
|
|
12867
|
+
this.$emit("focus", event);
|
|
12868
|
+
},
|
|
12869
|
+
blur: (event) => {
|
|
12870
|
+
this.$emit("blur", event);
|
|
12871
|
+
},
|
|
12872
|
+
keydown: (event) => {
|
|
12873
|
+
this.$emit("keydown", event);
|
|
12874
|
+
},
|
|
12875
|
+
keyup: (event) => {
|
|
12876
|
+
this.$emit("keyup", event);
|
|
12877
|
+
},
|
|
12878
|
+
input: (event) => {
|
|
12879
|
+
this.$emit("input", event);
|
|
12880
|
+
},
|
|
12881
|
+
play: (event) => {
|
|
12882
|
+
this.$emit("play", event);
|
|
12883
|
+
},
|
|
12884
|
+
pause: (event) => {
|
|
12885
|
+
this.$emit("pause", event);
|
|
12886
|
+
},
|
|
12887
|
+
ended: (event) => {
|
|
12888
|
+
this.$emit("ended", event);
|
|
12889
|
+
}
|
|
10902
12890
|
}
|
|
10903
12891
|
},
|
|
10904
12892
|
[this.$slots.default]
|
|
@@ -10916,15 +12904,33 @@ const VVideoPlayer = vue.defineComponent({
|
|
|
10916
12904
|
...this.loop !== void 0 && this.loop !== false ? { "^loop": this.loop } : {},
|
|
10917
12905
|
...this.playbackRates !== void 0 ? { "^playback-rates": this.playbackRates } : {},
|
|
10918
12906
|
...this.skipBy !== void 0 ? { "^skip-by": this.skipBy } : {},
|
|
10919
|
-
onClick: (event) =>
|
|
10920
|
-
|
|
10921
|
-
|
|
10922
|
-
|
|
10923
|
-
|
|
10924
|
-
|
|
10925
|
-
|
|
10926
|
-
|
|
10927
|
-
|
|
12907
|
+
onClick: (event) => {
|
|
12908
|
+
this.$emit("click", event);
|
|
12909
|
+
},
|
|
12910
|
+
onFocus: (event) => {
|
|
12911
|
+
this.$emit("focus", event);
|
|
12912
|
+
},
|
|
12913
|
+
onBlur: (event) => {
|
|
12914
|
+
this.$emit("blur", event);
|
|
12915
|
+
},
|
|
12916
|
+
onKeydown: (event) => {
|
|
12917
|
+
this.$emit("keydown", event);
|
|
12918
|
+
},
|
|
12919
|
+
onKeyup: (event) => {
|
|
12920
|
+
this.$emit("keyup", event);
|
|
12921
|
+
},
|
|
12922
|
+
onInput: (event) => {
|
|
12923
|
+
this.$emit("input", event);
|
|
12924
|
+
},
|
|
12925
|
+
onPlay: (event) => {
|
|
12926
|
+
this.$emit("play", event);
|
|
12927
|
+
},
|
|
12928
|
+
onPause: (event) => {
|
|
12929
|
+
this.$emit("pause", event);
|
|
12930
|
+
},
|
|
12931
|
+
onEnded: (event) => {
|
|
12932
|
+
this.$emit("ended", event);
|
|
12933
|
+
}
|
|
10928
12934
|
},
|
|
10929
12935
|
[
|
|
10930
12936
|
// @ts-ignore
|
|
@@ -12158,17 +14164,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
12158
14164
|
return Icon2;
|
|
12159
14165
|
})(Icon || {});
|
|
12160
14166
|
|
|
12161
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 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";
|
|
14167
|
+
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 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";
|
|
12162
14168
|
|
|
12163
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 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";
|
|
14169
|
+
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 GMT\n */\n/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 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";
|
|
12164
14170
|
|
|
12165
14171
|
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";
|
|
12166
14172
|
|
|
12167
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on
|
|
14173
|
+
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 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";
|
|
12168
14174
|
|
|
12169
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on
|
|
14175
|
+
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 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";
|
|
12170
14176
|
|
|
12171
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on
|
|
14177
|
+
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Mon, 07 Oct 2024 13:48:37 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";
|
|
12172
14178
|
|
|
12173
14179
|
const theme = {
|
|
12174
14180
|
name: "core/theme",
|
|
@@ -12311,6 +14317,7 @@ exports.VProgressRing = VProgressRing;
|
|
|
12311
14317
|
exports.VRadio = VRadio;
|
|
12312
14318
|
exports.VRadioGroup = VRadioGroup;
|
|
12313
14319
|
exports.VRangeSlider = VRangeSlider;
|
|
14320
|
+
exports.VSearchableSelect = VSearchableSelect;
|
|
12314
14321
|
exports.VSelect = VSelect;
|
|
12315
14322
|
exports.VSelectableBox = VSelectableBox;
|
|
12316
14323
|
exports.VSideDrawer = VSideDrawer;
|