@vonage/vivid-vue 3.53.0 → 3.55.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/VAccordionItem.vue2.d.ts +3 -3
- package/generated/components/VAccordionItem.vue3.d.ts +3 -3
- package/generated/components/VAlert.vue2.d.ts +3 -3
- package/generated/components/VAlert.vue3.d.ts +3 -3
- package/generated/components/VAudioPlayer.vue2.d.ts +33 -0
- package/generated/components/VAudioPlayer.vue3.d.ts +33 -0
- package/generated/components/VAvatar.vue2.d.ts +3 -3
- package/generated/components/VAvatar.vue3.d.ts +3 -3
- package/generated/components/VBadge.vue2.d.ts +3 -3
- package/generated/components/VBadge.vue3.d.ts +3 -3
- package/generated/components/VBanner.vue2.d.ts +3 -3
- package/generated/components/VBanner.vue3.d.ts +3 -3
- package/generated/components/VButton.vue2.d.ts +3 -3
- package/generated/components/VButton.vue3.d.ts +3 -3
- package/generated/components/VCard.vue2.d.ts +3 -3
- package/generated/components/VCard.vue3.d.ts +3 -3
- package/generated/components/VCheckbox.vue2.d.ts +23 -0
- package/generated/components/VCheckbox.vue3.d.ts +23 -0
- package/generated/components/VCombobox.vue2.d.ts +41 -3
- package/generated/components/VCombobox.vue3.d.ts +41 -3
- package/generated/components/VDatePicker.vue2.d.ts +15 -0
- package/generated/components/VDatePicker.vue3.d.ts +15 -0
- package/generated/components/VDateRangePicker.vue2.d.ts +46 -0
- package/generated/components/VDateRangePicker.vue3.d.ts +46 -0
- package/generated/components/VDialPad.vue2.d.ts +63 -0
- package/generated/components/VDialPad.vue3.d.ts +63 -0
- package/generated/components/VDialog.vue2.d.ts +3 -3
- package/generated/components/VDialog.vue3.d.ts +3 -3
- package/generated/components/VEmptyState.vue2.d.ts +3 -3
- package/generated/components/VEmptyState.vue3.d.ts +3 -3
- package/generated/components/VFab.vue2.d.ts +3 -3
- package/generated/components/VFab.vue3.d.ts +3 -3
- package/generated/components/VIcon.vue2.d.ts +3 -3
- package/generated/components/VIcon.vue3.d.ts +3 -3
- package/generated/components/VMenu.vue2.d.ts +17 -5
- package/generated/components/VMenu.vue3.d.ts +17 -5
- package/generated/components/VMenuItem.vue2.d.ts +18 -3
- package/generated/components/VMenuItem.vue3.d.ts +18 -3
- package/generated/components/VNavDisclosure.vue2.d.ts +33 -3
- package/generated/components/VNavDisclosure.vue3.d.ts +33 -3
- package/generated/components/VNavItem.vue2.d.ts +6 -6
- package/generated/components/VNavItem.vue3.d.ts +6 -6
- package/generated/components/VNote.vue2.d.ts +3 -3
- package/generated/components/VNote.vue3.d.ts +3 -3
- package/generated/components/VNumberField.vue2.d.ts +26 -3
- package/generated/components/VNumberField.vue3.d.ts +26 -3
- package/generated/components/VOption.vue2.d.ts +3 -3
- package/generated/components/VOption.vue3.d.ts +3 -3
- package/generated/components/VRadio.vue2.d.ts +1 -1
- package/generated/components/VRadio.vue3.d.ts +1 -1
- package/generated/components/VRadioGroup.vue2.d.ts +15 -0
- package/generated/components/VRadioGroup.vue3.d.ts +15 -0
- package/generated/components/VRangeSlider.vue2.d.ts +46 -0
- package/generated/components/VRangeSlider.vue3.d.ts +46 -0
- package/generated/components/VSelect.vue2.d.ts +27 -4
- package/generated/components/VSelect.vue3.d.ts +27 -4
- package/generated/components/VSlider.vue2.d.ts +23 -0
- package/generated/components/VSlider.vue3.d.ts +23 -0
- package/generated/components/VSplitButton.vue2.d.ts +3 -3
- package/generated/components/VSplitButton.vue3.d.ts +3 -3
- package/generated/components/VSwitch.vue2.d.ts +23 -0
- package/generated/components/VSwitch.vue3.d.ts +23 -0
- package/generated/components/VTab.vue2.d.ts +3 -3
- package/generated/components/VTab.vue3.d.ts +3 -3
- package/generated/components/VTag.vue2.d.ts +3 -3
- package/generated/components/VTag.vue3.d.ts +3 -3
- package/generated/components/VTextArea.vue2.d.ts +26 -3
- package/generated/components/VTextArea.vue3.d.ts +26 -3
- package/generated/components/VTextField.vue2.d.ts +26 -3
- package/generated/components/VTextField.vue3.d.ts +26 -3
- package/generated/components/VTimePicker.vue2.d.ts +23 -0
- package/generated/components/VTimePicker.vue3.d.ts +23 -0
- package/generated/components/VTreeItem.vue2.d.ts +3 -3
- package/generated/components/VTreeItem.vue3.d.ts +3 -3
- package/generated/components/VVideoPlayer.vue2.d.ts +1 -1
- package/generated/components/VVideoPlayer.vue3.d.ts +1 -1
- package/generated/icons.d.ts +13 -0
- package/index.cjs +258 -51
- package/index.js +258 -51
- package/package.json +2 -2
- package/web-types.json +111 -27
package/index.js
CHANGED
|
@@ -654,6 +654,14 @@ const VAudioPlayer = defineComponent({
|
|
|
654
654
|
default: void 0
|
|
655
655
|
},
|
|
656
656
|
sliderAriaLabel: { type: String, default: void 0 },
|
|
657
|
+
skipForwardAriaLabel: {
|
|
658
|
+
type: String,
|
|
659
|
+
default: void 0
|
|
660
|
+
},
|
|
661
|
+
skipBackwardAriaLabel: {
|
|
662
|
+
type: String,
|
|
663
|
+
default: void 0
|
|
664
|
+
},
|
|
657
665
|
/**
|
|
658
666
|
* The connotation the audio-player should have.
|
|
659
667
|
*/
|
|
@@ -669,7 +677,14 @@ const VAudioPlayer = defineComponent({
|
|
|
669
677
|
* Indicates whether audio player is disabled.
|
|
670
678
|
*/
|
|
671
679
|
disabled: { type: Boolean, default: void 0 },
|
|
672
|
-
notime: { type: Boolean, default: void 0 }
|
|
680
|
+
notime: { type: Boolean, default: void 0 },
|
|
681
|
+
/**
|
|
682
|
+
* Allows the audio to skip back or forward
|
|
683
|
+
*/
|
|
684
|
+
skipBy: {
|
|
685
|
+
type: String,
|
|
686
|
+
default: void 0
|
|
687
|
+
}
|
|
673
688
|
},
|
|
674
689
|
emits: [
|
|
675
690
|
/**
|
|
@@ -723,10 +738,13 @@ const VAudioPlayer = defineComponent({
|
|
|
723
738
|
...this.playButtonAriaLabel !== void 0 ? { "play-button-aria-label": this.playButtonAriaLabel } : {},
|
|
724
739
|
...this.pauseButtonAriaLabel !== void 0 ? { "pause-button-aria-label": this.pauseButtonAriaLabel } : {},
|
|
725
740
|
...this.sliderAriaLabel !== void 0 ? { "slider-aria-label": this.sliderAriaLabel } : {},
|
|
741
|
+
...this.skipForwardAriaLabel !== void 0 ? { "skip-forward-aria-label": this.skipForwardAriaLabel } : {},
|
|
742
|
+
...this.skipBackwardAriaLabel !== void 0 ? { "skip-backward-aria-label": this.skipBackwardAriaLabel } : {},
|
|
726
743
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
727
744
|
...this.src !== void 0 ? { src: this.src } : {},
|
|
728
745
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
729
|
-
...this.notime !== void 0 ? { notime: this.notime } : {}
|
|
746
|
+
...this.notime !== void 0 ? { notime: this.notime } : {},
|
|
747
|
+
...this.skipBy !== void 0 ? { "skip-by": this.skipBy } : {}
|
|
730
748
|
},
|
|
731
749
|
class: "vvd-component",
|
|
732
750
|
on: {
|
|
@@ -750,10 +768,13 @@ const VAudioPlayer = defineComponent({
|
|
|
750
768
|
...this.playButtonAriaLabel !== void 0 ? { "play-button-aria-label": this.playButtonAriaLabel } : {},
|
|
751
769
|
...this.pauseButtonAriaLabel !== void 0 ? { "pause-button-aria-label": this.pauseButtonAriaLabel } : {},
|
|
752
770
|
...this.sliderAriaLabel !== void 0 ? { "slider-aria-label": this.sliderAriaLabel } : {},
|
|
771
|
+
...this.skipForwardAriaLabel !== void 0 ? { "skip-forward-aria-label": this.skipForwardAriaLabel } : {},
|
|
772
|
+
...this.skipBackwardAriaLabel !== void 0 ? { "skip-backward-aria-label": this.skipBackwardAriaLabel } : {},
|
|
753
773
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
754
774
|
...this.src !== void 0 ? { src: this.src } : {},
|
|
755
775
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
756
776
|
...this.notime !== void 0 ? { notime: this.notime } : {},
|
|
777
|
+
...this.skipBy !== void 0 ? { "skip-by": this.skipBy } : {},
|
|
757
778
|
onClick: (event) => this.$emit("click", event),
|
|
758
779
|
onFocus: (event) => this.$emit("focus", event),
|
|
759
780
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -2281,6 +2302,14 @@ const VCheckbox = defineComponent({
|
|
|
2281
2302
|
* Provides the default checkedness of the input element
|
|
2282
2303
|
*/
|
|
2283
2304
|
checked: { type: Boolean, default: void 0 },
|
|
2305
|
+
/**
|
|
2306
|
+
* The current checkedness of the element. This property serves as a mechanism
|
|
2307
|
+
* to set the `checked` property through both property assignment and the
|
|
2308
|
+
* .setAttribute() method. This is useful for setting the field's checkedness
|
|
2309
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
2310
|
+
* and don't support IDL attribute binding.
|
|
2311
|
+
*/
|
|
2312
|
+
currentChecked: { type: Boolean, default: void 0 },
|
|
2284
2313
|
/**
|
|
2285
2314
|
* The current checkedness of the element. This property serves as a mechanism
|
|
2286
2315
|
* to set the `checked` property through both property assignment and the
|
|
@@ -2369,7 +2398,7 @@ const VCheckbox = defineComponent({
|
|
|
2369
2398
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2370
2399
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2371
2400
|
...this.checked !== void 0 ? { checked: this.checked } : {},
|
|
2372
|
-
...this.modelValue !== void 0 ? { "current-checked": this.modelValue } : {},
|
|
2401
|
+
...this.modelValue ?? this.currentChecked !== void 0 ? { "current-checked": this.modelValue ?? this.currentChecked } : {},
|
|
2373
2402
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
2374
2403
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
2375
2404
|
...this.tabindex !== void 0 ? { tabindex: this.tabindex } : {},
|
|
@@ -2415,7 +2444,7 @@ const VCheckbox = defineComponent({
|
|
|
2415
2444
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2416
2445
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2417
2446
|
...this.checked !== void 0 ? { checked: this.checked } : {},
|
|
2418
|
-
...this.modelValue !== void 0 ? { "current-checked": this.modelValue } : {},
|
|
2447
|
+
...this.modelValue ?? this.currentChecked !== void 0 ? { "current-checked": this.modelValue ?? this.currentChecked } : {},
|
|
2419
2448
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
2420
2449
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
2421
2450
|
...this.tabindex !== void 0 ? { tabindex: this.tabindex } : {},
|
|
@@ -2472,6 +2501,14 @@ const VCombobox = defineComponent({
|
|
|
2472
2501
|
* only when the `value` property has not been explicitly set.
|
|
2473
2502
|
*/
|
|
2474
2503
|
value: { type: String, default: void 0 },
|
|
2504
|
+
/**
|
|
2505
|
+
* The current value of the element. This property serves as a mechanism
|
|
2506
|
+
* to set the `value` property through both property assignment and the
|
|
2507
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
2508
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
2509
|
+
* and don't support IDL attribute binding.
|
|
2510
|
+
*/
|
|
2511
|
+
currentValue: { type: String, default: void 0 },
|
|
2475
2512
|
/**
|
|
2476
2513
|
* The current value of the element. This property serves as a mechanism
|
|
2477
2514
|
* to set the `value` property through both property assignment and the
|
|
@@ -2522,7 +2559,11 @@ const VCombobox = defineComponent({
|
|
|
2522
2559
|
placement: {
|
|
2523
2560
|
type: String,
|
|
2524
2561
|
default: void 0
|
|
2525
|
-
}
|
|
2562
|
+
},
|
|
2563
|
+
/**
|
|
2564
|
+
* Whether the dropdown is using a fixed positioning strategy.
|
|
2565
|
+
*/
|
|
2566
|
+
fixedDropdown: { type: Boolean, default: void 0 }
|
|
2526
2567
|
},
|
|
2527
2568
|
emits: [
|
|
2528
2569
|
/**
|
|
@@ -2614,7 +2655,7 @@ const VCombobox = defineComponent({
|
|
|
2614
2655
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
2615
2656
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2616
2657
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
2617
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
2658
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
2618
2659
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2619
2660
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2620
2661
|
...this.autocomplete !== void 0 ? { autocomplete: this.autocomplete } : {},
|
|
@@ -2622,7 +2663,8 @@ const VCombobox = defineComponent({
|
|
|
2622
2663
|
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
2623
2664
|
...this.position !== void 0 ? { position: this.position } : {},
|
|
2624
2665
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
2625
|
-
...this.placement !== void 0 ? { placement: this.placement } : {}
|
|
2666
|
+
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
2667
|
+
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {}
|
|
2626
2668
|
},
|
|
2627
2669
|
class: "vvd-component",
|
|
2628
2670
|
on: {
|
|
@@ -2653,7 +2695,7 @@ const VCombobox = defineComponent({
|
|
|
2653
2695
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
2654
2696
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
2655
2697
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
2656
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
2698
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
2657
2699
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
2658
2700
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
2659
2701
|
...this.autocomplete !== void 0 ? { autocomplete: this.autocomplete } : {},
|
|
@@ -2662,6 +2704,7 @@ const VCombobox = defineComponent({
|
|
|
2662
2704
|
...this.position !== void 0 ? { position: this.position } : {},
|
|
2663
2705
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
2664
2706
|
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
2707
|
+
...this.fixedDropdown !== void 0 ? { "fixed-dropdown": this.fixedDropdown } : {},
|
|
2665
2708
|
onClick: (event) => this.$emit("click", event),
|
|
2666
2709
|
onFocus: (event) => this.$emit("focus", event),
|
|
2667
2710
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -3175,6 +3218,10 @@ const VDatePicker = defineComponent({
|
|
|
3175
3218
|
* The earliest accepted date of the date-picker.
|
|
3176
3219
|
*/
|
|
3177
3220
|
min: { type: String, default: void 0 },
|
|
3221
|
+
/**
|
|
3222
|
+
* The initial value of the date-picker.
|
|
3223
|
+
*/
|
|
3224
|
+
value: { type: String, default: void 0 },
|
|
3178
3225
|
/**
|
|
3179
3226
|
* The initial value of the date-picker.
|
|
3180
3227
|
*/
|
|
@@ -3251,7 +3298,7 @@ const VDatePicker = defineComponent({
|
|
|
3251
3298
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3252
3299
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3253
3300
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3254
|
-
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
3301
|
+
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
3255
3302
|
...this.currentValue !== void 0 ? { "current-value": this.currentValue } : {},
|
|
3256
3303
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {}
|
|
3257
3304
|
},
|
|
@@ -3292,7 +3339,7 @@ const VDatePicker = defineComponent({
|
|
|
3292
3339
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3293
3340
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3294
3341
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3295
|
-
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
3342
|
+
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
3296
3343
|
...this.currentValue !== void 0 ? { "current-value": this.currentValue } : {},
|
|
3297
3344
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
3298
3345
|
onClick: (event) => this.$emit("click", event),
|
|
@@ -3353,6 +3400,14 @@ const VDateRangePicker = defineComponent({
|
|
|
3353
3400
|
* The latest accepted date of the date-picker.
|
|
3354
3401
|
*/
|
|
3355
3402
|
max: { type: String, default: void 0 },
|
|
3403
|
+
/**
|
|
3404
|
+
* The current start value of the element. This property serves as a mechanism
|
|
3405
|
+
* to set the `start` property through both property assignment and the
|
|
3406
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
3407
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
3408
|
+
* and don't support IDL attribute binding.
|
|
3409
|
+
*/
|
|
3410
|
+
currentStart: { type: String, default: void 0 },
|
|
3356
3411
|
/**
|
|
3357
3412
|
* The current start value of the element. This property serves as a mechanism
|
|
3358
3413
|
* to set the `start` property through both property assignment and the
|
|
@@ -3361,6 +3416,14 @@ const VDateRangePicker = defineComponent({
|
|
|
3361
3416
|
* and don't support IDL attribute binding.
|
|
3362
3417
|
*/
|
|
3363
3418
|
start: { type: String, default: void 0 },
|
|
3419
|
+
/**
|
|
3420
|
+
* The current end value of the element. This property serves as a mechanism
|
|
3421
|
+
* to set the `end` property through both property assignment and the
|
|
3422
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
3423
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
3424
|
+
* and don't support IDL attribute binding.
|
|
3425
|
+
*/
|
|
3426
|
+
currentEnd: { type: String, default: void 0 },
|
|
3364
3427
|
/**
|
|
3365
3428
|
* The current end value of the element. This property serves as a mechanism
|
|
3366
3429
|
* to set the `end` property through both property assignment and the
|
|
@@ -3466,8 +3529,8 @@ const VDateRangePicker = defineComponent({
|
|
|
3466
3529
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
3467
3530
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3468
3531
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3469
|
-
...this.start !== void 0 ? { "current-start": this.start } : {},
|
|
3470
|
-
...this.end !== void 0 ? { "current-end": this.end } : {},
|
|
3532
|
+
...this.start ?? this.currentStart !== void 0 ? { "current-start": this.start ?? this.currentStart } : {},
|
|
3533
|
+
...this.end ?? this.currentEnd !== void 0 ? { "current-end": this.end ?? this.currentEnd } : {},
|
|
3471
3534
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3472
3535
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
3473
3536
|
...this.currentValue !== void 0 ? { "current-value": this.currentValue } : {},
|
|
@@ -3511,8 +3574,8 @@ const VDateRangePicker = defineComponent({
|
|
|
3511
3574
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
3512
3575
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
3513
3576
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
3514
|
-
...this.start !== void 0 ? { "current-start": this.start } : {},
|
|
3515
|
-
...this.end !== void 0 ? { "current-end": this.end } : {},
|
|
3577
|
+
...this.start ?? this.currentStart !== void 0 ? { "current-start": this.start ?? this.currentStart } : {},
|
|
3578
|
+
...this.end ?? this.currentEnd !== void 0 ? { "current-end": this.end ?? this.currentEnd } : {},
|
|
3516
3579
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
3517
3580
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
3518
3581
|
...this.currentValue !== void 0 ? { "current-value": this.currentValue } : {},
|
|
@@ -3565,6 +3628,10 @@ const VDialPad = defineComponent({
|
|
|
3565
3628
|
* Indicates the placeholder's text.
|
|
3566
3629
|
*/
|
|
3567
3630
|
placeholder: { type: String, default: void 0 },
|
|
3631
|
+
/**
|
|
3632
|
+
* Indicates the value's text.
|
|
3633
|
+
*/
|
|
3634
|
+
value: { type: String, default: void 0 },
|
|
3568
3635
|
/**
|
|
3569
3636
|
* Indicates the value's text.
|
|
3570
3637
|
*/
|
|
@@ -3577,6 +3644,10 @@ const VDialPad = defineComponent({
|
|
|
3577
3644
|
* Indicates the disabled state of the dial-pad.
|
|
3578
3645
|
*/
|
|
3579
3646
|
disabled: { type: Boolean, default: void 0 },
|
|
3647
|
+
/**
|
|
3648
|
+
* Indicates the pending state of the dial-pad.
|
|
3649
|
+
*/
|
|
3650
|
+
pending: { type: Boolean, default: void 0 },
|
|
3580
3651
|
/**
|
|
3581
3652
|
* Indicates the active state of the dial-pad.
|
|
3582
3653
|
*/
|
|
@@ -3584,7 +3655,16 @@ const VDialPad = defineComponent({
|
|
|
3584
3655
|
/**
|
|
3585
3656
|
* Indicates the no-call state of the dial-pad.
|
|
3586
3657
|
*/
|
|
3587
|
-
noCall: { type: Boolean, default: void 0 }
|
|
3658
|
+
noCall: { type: Boolean, default: void 0 },
|
|
3659
|
+
/**
|
|
3660
|
+
* Indicates the no-input state of the dial-pad.
|
|
3661
|
+
*/
|
|
3662
|
+
noInput: { type: Boolean, default: void 0 },
|
|
3663
|
+
endCallButtonLabel: {
|
|
3664
|
+
type: String,
|
|
3665
|
+
default: void 0
|
|
3666
|
+
},
|
|
3667
|
+
callButtonLabel: { type: String, default: void 0 }
|
|
3588
3668
|
},
|
|
3589
3669
|
emits: [
|
|
3590
3670
|
/**
|
|
@@ -3663,11 +3743,15 @@ const VDialPad = defineComponent({
|
|
|
3663
3743
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3664
3744
|
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
3665
3745
|
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
3666
|
-
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
3746
|
+
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
3667
3747
|
...this.pattern !== void 0 ? { pattern: this.pattern } : {},
|
|
3668
3748
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3749
|
+
...this.pending !== void 0 ? { pending: this.pending } : {},
|
|
3669
3750
|
...this.callActive !== void 0 ? { "call-active": this.callActive } : {},
|
|
3670
|
-
...this.noCall !== void 0 ? { "no-call": this.noCall } : {}
|
|
3751
|
+
...this.noCall !== void 0 ? { "no-call": this.noCall } : {},
|
|
3752
|
+
...this.noInput !== void 0 ? { "no-input": this.noInput } : {},
|
|
3753
|
+
...this.endCallButtonLabel !== void 0 ? { "end-call-button-label": this.endCallButtonLabel } : {},
|
|
3754
|
+
...this.callButtonLabel !== void 0 ? { "call-button-label": this.callButtonLabel } : {}
|
|
3671
3755
|
},
|
|
3672
3756
|
class: "vvd-component",
|
|
3673
3757
|
on: {
|
|
@@ -3697,11 +3781,15 @@ const VDialPad = defineComponent({
|
|
|
3697
3781
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3698
3782
|
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
3699
3783
|
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
3700
|
-
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
3784
|
+
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
3701
3785
|
...this.pattern !== void 0 ? { pattern: this.pattern } : {},
|
|
3702
3786
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3787
|
+
...this.pending !== void 0 ? { pending: this.pending } : {},
|
|
3703
3788
|
...this.callActive !== void 0 ? { "call-active": this.callActive } : {},
|
|
3704
3789
|
...this.noCall !== void 0 ? { "no-call": this.noCall } : {},
|
|
3790
|
+
...this.noInput !== void 0 ? { "no-input": this.noInput } : {},
|
|
3791
|
+
...this.endCallButtonLabel !== void 0 ? { "end-call-button-label": this.endCallButtonLabel } : {},
|
|
3792
|
+
...this.callButtonLabel !== void 0 ? { "call-button-label": this.callButtonLabel } : {},
|
|
3705
3793
|
onClick: (event) => this.$emit("click", event),
|
|
3706
3794
|
onKeydown: (event) => this.$emit("keydown", event),
|
|
3707
3795
|
onKeyup: (event) => this.$emit("keyup", event),
|
|
@@ -4950,8 +5038,14 @@ const VMenu = defineComponent({
|
|
|
4950
5038
|
default: void 0
|
|
4951
5039
|
},
|
|
4952
5040
|
/**
|
|
4953
|
-
*
|
|
4954
|
-
|
|
5041
|
+
* Controls how the menu opens and closes itself.
|
|
5042
|
+
*/
|
|
5043
|
+
trigger: {
|
|
5044
|
+
type: String,
|
|
5045
|
+
default: void 0
|
|
5046
|
+
},
|
|
5047
|
+
/**
|
|
5048
|
+
* indicates whether the menu will automatically close when focus moves away from it.
|
|
4955
5049
|
*/
|
|
4956
5050
|
autoDismiss: { type: Boolean, default: void 0 },
|
|
4957
5051
|
/**
|
|
@@ -5014,9 +5108,6 @@ const VMenu = defineComponent({
|
|
|
5014
5108
|
collapseExpandedItem() {
|
|
5015
5109
|
return this.element?.collapseExpandedItem();
|
|
5016
5110
|
},
|
|
5017
|
-
autoDismissChanged(oldValue) {
|
|
5018
|
-
return this.element?.autoDismissChanged(oldValue);
|
|
5019
|
-
},
|
|
5020
5111
|
openChanged(_, newValue) {
|
|
5021
5112
|
return this.element?.openChanged(_, newValue);
|
|
5022
5113
|
}
|
|
@@ -5036,6 +5127,7 @@ const VMenu = defineComponent({
|
|
|
5036
5127
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5037
5128
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
5038
5129
|
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
5130
|
+
...this.trigger !== void 0 ? { trigger: this.trigger } : {},
|
|
5039
5131
|
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
5040
5132
|
...this.open !== void 0 ? { open: this.open } : {}
|
|
5041
5133
|
},
|
|
@@ -5074,6 +5166,7 @@ const VMenu = defineComponent({
|
|
|
5074
5166
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5075
5167
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
5076
5168
|
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
5169
|
+
...this.trigger !== void 0 ? { trigger: this.trigger } : {},
|
|
5077
5170
|
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
5078
5171
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
5079
5172
|
onClick: (event) => this.$emit("click", event),
|
|
@@ -5133,6 +5226,10 @@ const VMenuItem = defineComponent({
|
|
|
5133
5226
|
type: String,
|
|
5134
5227
|
default: void 0
|
|
5135
5228
|
},
|
|
5229
|
+
/**
|
|
5230
|
+
* The checked value of the element.
|
|
5231
|
+
*/
|
|
5232
|
+
checked: { type: Boolean, default: void 0 },
|
|
5136
5233
|
/**
|
|
5137
5234
|
* The checked value of the element.
|
|
5138
5235
|
*/
|
|
@@ -5229,7 +5326,7 @@ const VMenuItem = defineComponent({
|
|
|
5229
5326
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
5230
5327
|
...this.expanded !== void 0 ? { expanded: this.expanded } : {},
|
|
5231
5328
|
...this.role !== void 0 ? { role: this.role } : {},
|
|
5232
|
-
...this.modelValue !== void 0 ? { checked: this.modelValue } : {},
|
|
5329
|
+
...this.modelValue ?? this.checked !== void 0 ? { checked: this.modelValue ?? this.checked } : {},
|
|
5233
5330
|
...this.text !== void 0 ? { text: this.text } : {},
|
|
5234
5331
|
...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {},
|
|
5235
5332
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
@@ -5275,7 +5372,7 @@ const VMenuItem = defineComponent({
|
|
|
5275
5372
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
5276
5373
|
...this.expanded !== void 0 ? { expanded: this.expanded } : {},
|
|
5277
5374
|
...this.role !== void 0 ? { role: this.role } : {},
|
|
5278
|
-
...this.modelValue !== void 0 ? { checked: this.modelValue } : {},
|
|
5375
|
+
...this.modelValue ?? this.checked !== void 0 ? { checked: this.modelValue ?? this.checked } : {},
|
|
5279
5376
|
...this.text !== void 0 ? { text: this.text } : {},
|
|
5280
5377
|
...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {},
|
|
5281
5378
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
@@ -5411,6 +5508,20 @@ const VNavDisclosure = defineComponent({
|
|
|
5411
5508
|
*/
|
|
5412
5509
|
icon: { type: String, default: void 0 },
|
|
5413
5510
|
label: { type: String, default: void 0 },
|
|
5511
|
+
/**
|
|
5512
|
+
* The appearance nav-disclosure should have.
|
|
5513
|
+
*/
|
|
5514
|
+
appearance: {
|
|
5515
|
+
type: String,
|
|
5516
|
+
default: void 0
|
|
5517
|
+
},
|
|
5518
|
+
/**
|
|
5519
|
+
* The connotation nav-disclosure should have.
|
|
5520
|
+
*/
|
|
5521
|
+
connotation: {
|
|
5522
|
+
type: String,
|
|
5523
|
+
default: void 0
|
|
5524
|
+
},
|
|
5414
5525
|
/**
|
|
5415
5526
|
* Indicates whether the nav-disclosure is open
|
|
5416
5527
|
*/
|
|
@@ -5472,6 +5583,8 @@ const VNavDisclosure = defineComponent({
|
|
|
5472
5583
|
attrs: {
|
|
5473
5584
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5474
5585
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
5586
|
+
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
5587
|
+
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5475
5588
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
5476
5589
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {}
|
|
5477
5590
|
},
|
|
@@ -5502,6 +5615,8 @@ const VNavDisclosure = defineComponent({
|
|
|
5502
5615
|
class: "vvd-component",
|
|
5503
5616
|
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
5504
5617
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
5618
|
+
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
5619
|
+
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5505
5620
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
5506
5621
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
5507
5622
|
onClick: (event) => this.$emit("click", event),
|
|
@@ -5588,7 +5703,10 @@ const VNavItem = defineComponent({
|
|
|
5588
5703
|
/**
|
|
5589
5704
|
* The appearance Text-Anchor should have.
|
|
5590
5705
|
*/
|
|
5591
|
-
appearance: {
|
|
5706
|
+
appearance: {
|
|
5707
|
+
type: String,
|
|
5708
|
+
default: void 0
|
|
5709
|
+
}
|
|
5592
5710
|
},
|
|
5593
5711
|
emits: [
|
|
5594
5712
|
/**
|
|
@@ -5874,6 +5992,14 @@ const VNumberField = defineComponent({
|
|
|
5874
5992
|
* only when the `value` property has not been explicitly set.
|
|
5875
5993
|
*/
|
|
5876
5994
|
value: { type: String, default: void 0 },
|
|
5995
|
+
/**
|
|
5996
|
+
* The current value of the element. This property serves as a mechanism
|
|
5997
|
+
* to set the `value` property through both property assignment and the
|
|
5998
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
5999
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
6000
|
+
* and don't support IDL attribute binding.
|
|
6001
|
+
*/
|
|
6002
|
+
currentValue: { type: String, default: void 0 },
|
|
5877
6003
|
/**
|
|
5878
6004
|
* The current value of the element. This property serves as a mechanism
|
|
5879
6005
|
* to set the `value` property through both property assignment and the
|
|
@@ -6038,7 +6164,7 @@ const VNumberField = defineComponent({
|
|
|
6038
6164
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6039
6165
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6040
6166
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
6041
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
6167
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
6042
6168
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
6043
6169
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
6044
6170
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -6096,7 +6222,7 @@ const VNumberField = defineComponent({
|
|
|
6096
6222
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
6097
6223
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6098
6224
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
6099
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
6225
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
6100
6226
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
6101
6227
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
6102
6228
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -6896,6 +7022,10 @@ const VRadioGroup = defineComponent({
|
|
|
6896
7022
|
* for all child radio elements.
|
|
6897
7023
|
*/
|
|
6898
7024
|
name: { type: String, default: void 0 },
|
|
7025
|
+
/**
|
|
7026
|
+
* The value of the checked radio
|
|
7027
|
+
*/
|
|
7028
|
+
value: { type: String, default: void 0 },
|
|
6899
7029
|
/**
|
|
6900
7030
|
* The value of the checked radio
|
|
6901
7031
|
*/
|
|
@@ -6971,7 +7101,7 @@ const VRadioGroup = defineComponent({
|
|
|
6971
7101
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
6972
7102
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
6973
7103
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
6974
|
-
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
7104
|
+
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
6975
7105
|
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
6976
7106
|
...this.label !== void 0 ? { label: this.label } : {}
|
|
6977
7107
|
},
|
|
@@ -7004,7 +7134,7 @@ const VRadioGroup = defineComponent({
|
|
|
7004
7134
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
7005
7135
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7006
7136
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7007
|
-
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
7137
|
+
...this.modelValue ?? this.value !== void 0 ? { value: this.modelValue ?? this.value } : {},
|
|
7008
7138
|
...this.orientation !== void 0 ? { orientation: this.orientation } : {},
|
|
7009
7139
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
7010
7140
|
onClick: (event) => this.$emit("click", event),
|
|
@@ -7068,6 +7198,14 @@ const VRangeSlider = defineComponent({
|
|
|
7068
7198
|
* Require the field to be completed prior to form submission.
|
|
7069
7199
|
*/
|
|
7070
7200
|
required: { type: Boolean, default: void 0 },
|
|
7201
|
+
/**
|
|
7202
|
+
* The current start value of the element. This property serves as a mechanism
|
|
7203
|
+
* to set the `start` property through both property assignment and the
|
|
7204
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
7205
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
7206
|
+
* and don't support IDL attribute binding.
|
|
7207
|
+
*/
|
|
7208
|
+
currentStart: { type: String, default: void 0 },
|
|
7071
7209
|
/**
|
|
7072
7210
|
* The current start value of the element. This property serves as a mechanism
|
|
7073
7211
|
* to set the `start` property through both property assignment and the
|
|
@@ -7076,6 +7214,14 @@ const VRangeSlider = defineComponent({
|
|
|
7076
7214
|
* and don't support IDL attribute binding.
|
|
7077
7215
|
*/
|
|
7078
7216
|
start: { type: String, default: void 0 },
|
|
7217
|
+
/**
|
|
7218
|
+
* The current end value of the element. This property serves as a mechanism
|
|
7219
|
+
* to set the `end` property through both property assignment and the
|
|
7220
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
7221
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
7222
|
+
* and don't support IDL attribute binding.
|
|
7223
|
+
*/
|
|
7224
|
+
currentEnd: { type: String, default: void 0 },
|
|
7079
7225
|
/**
|
|
7080
7226
|
* The current end value of the element. This property serves as a mechanism
|
|
7081
7227
|
* to set the `end` property through both property assignment and the
|
|
@@ -7202,8 +7348,8 @@ const VRangeSlider = defineComponent({
|
|
|
7202
7348
|
...this.currentValue !== void 0 ? { "current-value": this.currentValue } : {},
|
|
7203
7349
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7204
7350
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7205
|
-
...this.start !== void 0 ? { "current-start": this.start } : {},
|
|
7206
|
-
...this.end !== void 0 ? { "current-end": this.end } : {},
|
|
7351
|
+
...this.start ?? this.currentStart !== void 0 ? { "current-start": this.start ?? this.currentStart } : {},
|
|
7352
|
+
...this.end ?? this.currentEnd !== void 0 ? { "current-end": this.end ?? this.currentEnd } : {},
|
|
7207
7353
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
7208
7354
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
7209
7355
|
...this.step !== void 0 ? { step: this.step } : {},
|
|
@@ -7246,8 +7392,8 @@ const VRangeSlider = defineComponent({
|
|
|
7246
7392
|
...this.currentValue !== void 0 ? { "current-value": this.currentValue } : {},
|
|
7247
7393
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7248
7394
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7249
|
-
...this.start !== void 0 ? { "current-start": this.start } : {},
|
|
7250
|
-
...this.end !== void 0 ? { "current-end": this.end } : {},
|
|
7395
|
+
...this.start ?? this.currentStart !== void 0 ? { "current-start": this.start ?? this.currentStart } : {},
|
|
7396
|
+
...this.end ?? this.currentEnd !== void 0 ? { "current-end": this.end ?? this.currentEnd } : {},
|
|
7251
7397
|
...this.min !== void 0 ? { min: this.min } : {},
|
|
7252
7398
|
...this.max !== void 0 ? { max: this.max } : {},
|
|
7253
7399
|
...this.step !== void 0 ? { step: this.step } : {},
|
|
@@ -7327,6 +7473,14 @@ const VSelect = defineComponent({
|
|
|
7327
7473
|
* only when the `value` property has not been explicitly set.
|
|
7328
7474
|
*/
|
|
7329
7475
|
value: { type: String, default: void 0 },
|
|
7476
|
+
/**
|
|
7477
|
+
* The current value of the element. This property serves as a mechanism
|
|
7478
|
+
* to set the `value` property through both property assignment and the
|
|
7479
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
7480
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
7481
|
+
* and don't support IDL attribute binding.
|
|
7482
|
+
*/
|
|
7483
|
+
currentValue: { type: String, default: void 0 },
|
|
7330
7484
|
/**
|
|
7331
7485
|
* The current value of the element. This property serves as a mechanism
|
|
7332
7486
|
* to set the `value` property through both property assignment and the
|
|
@@ -7470,7 +7624,7 @@ const VSelect = defineComponent({
|
|
|
7470
7624
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7471
7625
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7472
7626
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
7473
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
7627
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
7474
7628
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7475
7629
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7476
7630
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
@@ -7523,7 +7677,7 @@ const VSelect = defineComponent({
|
|
|
7523
7677
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
7524
7678
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
7525
7679
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
7526
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
7680
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
7527
7681
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
7528
7682
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
7529
7683
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
@@ -7867,6 +8021,14 @@ const VSlider = defineComponent({
|
|
|
7867
8021
|
* only when the `value` property has not been explicitly set.
|
|
7868
8022
|
*/
|
|
7869
8023
|
value: { type: String, default: void 0 },
|
|
8024
|
+
/**
|
|
8025
|
+
* The current value of the element. This property serves as a mechanism
|
|
8026
|
+
* to set the `value` property through both property assignment and the
|
|
8027
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
8028
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
8029
|
+
* and don't support IDL attribute binding.
|
|
8030
|
+
*/
|
|
8031
|
+
currentValue: { type: String, default: void 0 },
|
|
7870
8032
|
/**
|
|
7871
8033
|
* The current value of the element. This property serves as a mechanism
|
|
7872
8034
|
* to set the `value` property through both property assignment and the
|
|
@@ -8001,7 +8163,7 @@ const VSlider = defineComponent({
|
|
|
8001
8163
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8002
8164
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8003
8165
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
8004
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
8166
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
8005
8167
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8006
8168
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8007
8169
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -8043,7 +8205,7 @@ const VSlider = defineComponent({
|
|
|
8043
8205
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
8044
8206
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
8045
8207
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
8046
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
8208
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
8047
8209
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8048
8210
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8049
8211
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -8311,6 +8473,14 @@ const VSwitch = defineComponent({
|
|
|
8311
8473
|
* Provides the default checkedness of the input element
|
|
8312
8474
|
*/
|
|
8313
8475
|
checked: { type: Boolean, default: void 0 },
|
|
8476
|
+
/**
|
|
8477
|
+
* The current checkedness of the element. This property serves as a mechanism
|
|
8478
|
+
* to set the `checked` property through both property assignment and the
|
|
8479
|
+
* .setAttribute() method. This is useful for setting the field's checkedness
|
|
8480
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
8481
|
+
* and don't support IDL attribute binding.
|
|
8482
|
+
*/
|
|
8483
|
+
currentChecked: { type: Boolean, default: void 0 },
|
|
8314
8484
|
/**
|
|
8315
8485
|
* The current checkedness of the element. This property serves as a mechanism
|
|
8316
8486
|
* to set the `checked` property through both property assignment and the
|
|
@@ -8397,7 +8567,7 @@ const VSwitch = defineComponent({
|
|
|
8397
8567
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8398
8568
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8399
8569
|
...this.checked !== void 0 ? { checked: this.checked } : {},
|
|
8400
|
-
...this.modelValue !== void 0 ? { "current-checked": this.modelValue } : {},
|
|
8570
|
+
...this.modelValue ?? this.currentChecked !== void 0 ? { "current-checked": this.modelValue ?? this.currentChecked } : {},
|
|
8401
8571
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
8402
8572
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
8403
8573
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
@@ -8434,7 +8604,7 @@ const VSwitch = defineComponent({
|
|
|
8434
8604
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
8435
8605
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
8436
8606
|
...this.checked !== void 0 ? { checked: this.checked } : {},
|
|
8437
|
-
...this.modelValue !== void 0 ? { "current-checked": this.modelValue } : {},
|
|
8607
|
+
...this.modelValue ?? this.currentChecked !== void 0 ? { "current-checked": this.modelValue ?? this.currentChecked } : {},
|
|
8438
8608
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
8439
8609
|
...this.label !== void 0 ? { label: this.label } : {},
|
|
8440
8610
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
@@ -9175,6 +9345,14 @@ const VTextArea = defineComponent({
|
|
|
9175
9345
|
* only when the `value` property has not been explicitly set.
|
|
9176
9346
|
*/
|
|
9177
9347
|
value: { type: String, default: void 0 },
|
|
9348
|
+
/**
|
|
9349
|
+
* The current value of the element. This property serves as a mechanism
|
|
9350
|
+
* to set the `value` property through both property assignment and the
|
|
9351
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
9352
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
9353
|
+
* and don't support IDL attribute binding.
|
|
9354
|
+
*/
|
|
9355
|
+
currentValue: { type: String, default: void 0 },
|
|
9178
9356
|
/**
|
|
9179
9357
|
* The current value of the element. This property serves as a mechanism
|
|
9180
9358
|
* to set the `value` property through both property assignment and the
|
|
@@ -9323,7 +9501,7 @@ const VTextArea = defineComponent({
|
|
|
9323
9501
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9324
9502
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9325
9503
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
9326
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
9504
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
9327
9505
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9328
9506
|
...this.readOnly !== void 0 ? { readOnly: this.readOnly } : {},
|
|
9329
9507
|
...this.resize !== void 0 ? { resize: this.resize } : {},
|
|
@@ -9376,7 +9554,7 @@ const VTextArea = defineComponent({
|
|
|
9376
9554
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9377
9555
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9378
9556
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
9379
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
9557
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
9380
9558
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9381
9559
|
...this.readOnly !== void 0 ? { readOnly: this.readOnly } : {},
|
|
9382
9560
|
...this.resize !== void 0 ? { resize: this.resize } : {},
|
|
@@ -9463,6 +9641,14 @@ const VTextField = defineComponent({
|
|
|
9463
9641
|
* only when the `value` property has not been explicitly set.
|
|
9464
9642
|
*/
|
|
9465
9643
|
value: { type: String, default: void 0 },
|
|
9644
|
+
/**
|
|
9645
|
+
* The current value of the element. This property serves as a mechanism
|
|
9646
|
+
* to set the `value` property through both property assignment and the
|
|
9647
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
9648
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
9649
|
+
* and don't support IDL attribute binding.
|
|
9650
|
+
*/
|
|
9651
|
+
currentValue: { type: String, default: void 0 },
|
|
9466
9652
|
/**
|
|
9467
9653
|
* The current value of the element. This property serves as a mechanism
|
|
9468
9654
|
* to set the `value` property through both property assignment and the
|
|
@@ -9609,7 +9795,7 @@ const VTextField = defineComponent({
|
|
|
9609
9795
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9610
9796
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9611
9797
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
9612
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
9798
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
9613
9799
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
9614
9800
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9615
9801
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -9671,7 +9857,7 @@ const VTextField = defineComponent({
|
|
|
9671
9857
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9672
9858
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9673
9859
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
9674
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
9860
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
9675
9861
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
9676
9862
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9677
9863
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -9753,6 +9939,14 @@ const VTimePicker = defineComponent({
|
|
|
9753
9939
|
* only when the `value` property has not been explicitly set.
|
|
9754
9940
|
*/
|
|
9755
9941
|
value: { type: String, default: void 0 },
|
|
9942
|
+
/**
|
|
9943
|
+
* The current value of the element. This property serves as a mechanism
|
|
9944
|
+
* to set the `value` property through both property assignment and the
|
|
9945
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
9946
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
9947
|
+
* and don't support IDL attribute binding.
|
|
9948
|
+
*/
|
|
9949
|
+
currentValue: { type: String, default: void 0 },
|
|
9756
9950
|
/**
|
|
9757
9951
|
* The current value of the element. This property serves as a mechanism
|
|
9758
9952
|
* to set the `value` property through both property assignment and the
|
|
@@ -9855,7 +10049,7 @@ const VTimePicker = defineComponent({
|
|
|
9855
10049
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9856
10050
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9857
10051
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
9858
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
10052
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
9859
10053
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
9860
10054
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9861
10055
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -9900,7 +10094,7 @@ const VTimePicker = defineComponent({
|
|
|
9900
10094
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
9901
10095
|
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
9902
10096
|
...this.value !== void 0 ? { value: this.value } : {},
|
|
9903
|
-
...this.modelValue !== void 0 ? { "current-value": this.modelValue } : {},
|
|
10097
|
+
...this.modelValue ?? this.currentValue !== void 0 ? { "current-value": this.modelValue ?? this.currentValue } : {},
|
|
9904
10098
|
...this.name !== void 0 ? { name: this.name } : {},
|
|
9905
10099
|
...this.required !== void 0 ? { required: this.required } : {},
|
|
9906
10100
|
...this.readonly !== void 0 ? { readonly: this.readonly } : {},
|
|
@@ -10607,9 +10801,18 @@ const VVideoPlayer = defineComponent({
|
|
|
10607
10801
|
});
|
|
10608
10802
|
|
|
10609
10803
|
var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
10804
|
+
Icon2["10SecBackwardLine"] = "10-sec-backward-line";
|
|
10610
10805
|
Icon2["10SecBackwardSolid"] = "10-sec-backward-solid";
|
|
10611
10806
|
Icon2["10SecForwardLine"] = "10-sec-forward-line";
|
|
10612
10807
|
Icon2["10SecForwardSolid"] = "10-sec-forward-solid";
|
|
10808
|
+
Icon2["30SecBackwardLine"] = "30-sec-backward-line";
|
|
10809
|
+
Icon2["30SecBackwardSolid"] = "30-sec-backward-solid";
|
|
10810
|
+
Icon2["30SecForwardLine"] = "30-sec-forward-line";
|
|
10811
|
+
Icon2["30SecForwardSolid"] = "30-sec-forward-solid";
|
|
10812
|
+
Icon2["5SecBackwardLine"] = "5-sec-backward-line";
|
|
10813
|
+
Icon2["5SecBackwardSolid"] = "5-sec-backward-solid";
|
|
10814
|
+
Icon2["5SecForwardLine"] = "5-sec-forward-line";
|
|
10815
|
+
Icon2["5SecForwardSolid"] = "5-sec-forward-solid";
|
|
10613
10816
|
Icon2["accessibilityLine"] = "accessibility-line";
|
|
10614
10817
|
Icon2["accessibilitySolid"] = "accessibility-solid";
|
|
10615
10818
|
Icon2["activeCallLine"] = "active-call-line";
|
|
@@ -10620,6 +10823,8 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
10620
10823
|
Icon2["addGroupSolid"] = "add-group-solid";
|
|
10621
10824
|
Icon2["addLine"] = "add-line";
|
|
10622
10825
|
Icon2["addSolid"] = "add-solid";
|
|
10826
|
+
Icon2["addTimeLine"] = "add-time-line";
|
|
10827
|
+
Icon2["addTimeSolid"] = "add-time-solid";
|
|
10623
10828
|
Icon2["addUserLine"] = "add-user-line";
|
|
10624
10829
|
Icon2["addUserSolid"] = "add-user-solid";
|
|
10625
10830
|
Icon2["addressBookLine"] = "address-book-line";
|
|
@@ -10874,6 +11079,8 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
10874
11079
|
Icon2["conditionSolid"] = "condition-solid";
|
|
10875
11080
|
Icon2["connectLine"] = "connect-line";
|
|
10876
11081
|
Icon2["connectSolid"] = "connect-solid";
|
|
11082
|
+
Icon2["connectwiseColor"] = "connectwise-color";
|
|
11083
|
+
Icon2["connectwiseMono"] = "connectwise-mono";
|
|
10877
11084
|
Icon2["cooktailLine"] = "cooktail-line";
|
|
10878
11085
|
Icon2["cooktailSolid"] = "cooktail-solid";
|
|
10879
11086
|
Icon2["copy2Line"] = "copy-2-line";
|
|
@@ -11808,17 +12015,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
11808
12015
|
return Icon2;
|
|
11809
12016
|
})(Icon || {});
|
|
11810
12017
|
|
|
11811
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 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 #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 #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";
|
|
12018
|
+
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:12 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:13 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:13 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:13 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 #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 #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";
|
|
11812
12019
|
|
|
11813
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 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 #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 #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";
|
|
12020
|
+
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:13 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:12 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:13 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:13 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 #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 #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";
|
|
11814
12021
|
|
|
11815
12022
|
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";
|
|
11816
12023
|
|
|
11817
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on
|
|
12024
|
+
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:12 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";
|
|
11818
12025
|
|
|
11819
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on
|
|
12026
|
+
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:12 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";
|
|
11820
12027
|
|
|
11821
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on
|
|
12028
|
+
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Fri, 10 May 2024 13:06:12 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";
|
|
11822
12029
|
|
|
11823
12030
|
const theme = {
|
|
11824
12031
|
name: "core/theme",
|