@vonage/vivid-vue 5.0.0 → 5.2.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/dist/generated/components/VButton.vue2.d.ts +1 -0
- package/dist/generated/components/VButton.vue3.d.ts +1 -0
- package/dist/generated/components/VFab.vue2.d.ts +1 -0
- package/dist/generated/components/VFab.vue3.d.ts +1 -0
- package/dist/generated/components/VFilePicker.vue2.d.ts +0 -10
- package/dist/generated/components/VFilePicker.vue3.d.ts +0 -10
- package/dist/generated/components/VMenu.types.d.ts +1 -0
- package/dist/generated/components/VMenu.vue2.d.ts +9 -0
- package/dist/generated/components/VMenu.vue3.d.ts +9 -0
- package/dist/generated/components/VOption.types.d.ts +1 -0
- package/dist/generated/components/VOption.vue2.d.ts +9 -0
- package/dist/generated/components/VOption.vue3.d.ts +10 -0
- package/dist/generated/components/VPagination.types.d.ts +3 -0
- package/dist/generated/components/VPagination.vue2.d.ts +10 -1
- package/dist/generated/components/VPagination.vue3.d.ts +11 -0
- package/dist/generated/components/VRangeSlider.types.d.ts +6 -0
- package/dist/generated/components/VRangeSlider.vue2.d.ts +19 -1
- package/dist/generated/components/VRangeSlider.vue3.d.ts +22 -0
- package/dist/generated/components/VSimpleColorPicker.d.ts +7 -0
- package/dist/generated/components/VSimpleColorPicker.types.d.ts +46 -0
- package/dist/generated/components/VSimpleColorPicker.vue2.d.ts +112 -0
- package/dist/generated/components/VSimpleColorPicker.vue3.d.ts +161 -0
- package/dist/generated/components/VSlider.types.d.ts +3 -0
- package/dist/generated/components/VSlider.vue2.d.ts +10 -1
- package/dist/generated/components/VSlider.vue3.d.ts +11 -0
- package/dist/generated/components/VSplitButton.vue2.d.ts +4 -1
- package/dist/generated/components/VSplitButton.vue3.d.ts +4 -1
- package/dist/generated/components/index.d.ts +1 -0
- package/dist/generated/types.d.ts +5 -0
- package/dist/index.cjs +353 -58
- package/dist/index.js +354 -60
- package/package.json +2 -2
- package/web-types.json +145 -4
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref, version, onBeforeMount, defineComponent, h } from 'vue';
|
|
2
|
-
import { registerAccordion, registerAccordionItem, registerActionGroup, registerAlert, registerAudioPlayer, registerAvatar, registerBadge, registerBanner, registerBreadcrumb, registerBreadcrumbItem, registerButton, registerCalendar, registerCalendarEvent, registerCard, registerCheckbox, registerCombobox, registerDataGrid, registerDatePicker, registerDateRangePicker, registerDateTimePicker, registerDialPad, registerDialog, registerDivider, registerEmptyState, registerFab, registerFilePicker, registerHeader, registerIcon, registerLayout, registerMenu, registerMenuItem, registerNav, registerNavDisclosure, registerNavItem, registerNote, registerNumberField, registerOption, registerPagination, registerProgress, registerProgressRing, registerRadio, registerRadioGroup, registerRangeSlider, registerRichTextEditor, registerSearchableSelect, registerSelect, registerSelectableBox, registerSideDrawer, registerSlider, registerSplitButton, registerSwitch, registerTab, registerTabPanel, registerTabs, registerTag, registerTagGroup, registerTextArea, registerTextField, registerTimePicker, registerToggletip, registerTooltip, registerTreeItem, registerTreeView, registerVideoPlayer } from '@vonage/vivid';
|
|
2
|
+
import { registerAccordion, registerAccordionItem, registerActionGroup, registerAlert, registerAudioPlayer, registerAvatar, registerBadge, registerBanner, registerBreadcrumb, registerBreadcrumbItem, registerButton, registerCalendar, registerCalendarEvent, registerCard, registerCheckbox, registerCombobox, registerDataGrid, registerDatePicker, registerDateRangePicker, registerDateTimePicker, registerDialPad, registerDialog, registerDivider, registerEmptyState, registerFab, registerFilePicker, registerHeader, registerIcon, registerLayout, registerMenu, registerMenuItem, registerNav, registerNavDisclosure, registerNavItem, registerNote, registerNumberField, registerOption, registerPagination, registerProgress, registerProgressRing, registerRadio, registerRadioGroup, registerRangeSlider, registerRichTextEditor, registerSearchableSelect, registerSelect, registerSelectableBox, registerSideDrawer, registerSimpleColorPicker, registerSlider, registerSplitButton, registerSwitch, registerTab, registerTabPanel, registerTabs, registerTag, registerTagGroup, registerTextArea, registerTextField, registerTimePicker, registerToggletip, registerTooltip, registerTreeItem, registerTreeView, registerVideoPlayer } from '@vonage/vivid';
|
|
3
3
|
|
|
4
4
|
const CustomComponentPrefix = ref("vvd3");
|
|
5
5
|
function setCustomComponentPrefix(prefix) {
|
|
@@ -1973,6 +1973,13 @@ const VButton = defineComponent({
|
|
|
1973
1973
|
checkValidity() {
|
|
1974
1974
|
return this.element?.checkValidity();
|
|
1975
1975
|
},
|
|
1976
|
+
/**
|
|
1977
|
+
* Handles click events.
|
|
1978
|
+
* Prevents interaction when disabled or pending.
|
|
1979
|
+
*/
|
|
1980
|
+
clickHandler(event) {
|
|
1981
|
+
return this.element?.clickHandler(event);
|
|
1982
|
+
},
|
|
1976
1983
|
/**
|
|
1977
1984
|
* Return the current validity of the element.
|
|
1978
1985
|
* If false, fires an invalid event at the element.
|
|
@@ -5486,6 +5493,13 @@ const VFab = defineComponent({
|
|
|
5486
5493
|
checkValidity() {
|
|
5487
5494
|
return this.element?.checkValidity();
|
|
5488
5495
|
},
|
|
5496
|
+
/**
|
|
5497
|
+
* Handles click events.
|
|
5498
|
+
* Prevents interaction when disabled.
|
|
5499
|
+
*/
|
|
5500
|
+
clickHandler(event) {
|
|
5501
|
+
return this.element?.clickHandler(event);
|
|
5502
|
+
},
|
|
5489
5503
|
/**
|
|
5490
5504
|
* Return the current validity of the element.
|
|
5491
5505
|
* If false, fires an invalid event at the element.
|
|
@@ -5655,11 +5669,11 @@ const VFilePicker = defineComponent({
|
|
|
5655
5669
|
*/
|
|
5656
5670
|
label: { type: String, default: void 0 },
|
|
5657
5671
|
/**
|
|
5658
|
-
* The
|
|
5672
|
+
* The maximum file size (in megabytes) for each file.
|
|
5659
5673
|
*/
|
|
5660
5674
|
maxFileSize: { type: Number, default: void 0 },
|
|
5661
5675
|
/**
|
|
5662
|
-
* The max files that can be selected.
|
|
5676
|
+
* The max number of files that can be selected. Additional files will be rejected.
|
|
5663
5677
|
*/
|
|
5664
5678
|
maxFiles: { type: Number, default: void 0 },
|
|
5665
5679
|
/**
|
|
@@ -5678,7 +5692,7 @@ const VFilePicker = defineComponent({
|
|
|
5678
5692
|
*/
|
|
5679
5693
|
required: { type: Boolean, default: void 0 },
|
|
5680
5694
|
/**
|
|
5681
|
-
*
|
|
5695
|
+
* Whether to allow only a single file. Subsequent added file will replace the current file.
|
|
5682
5696
|
*/
|
|
5683
5697
|
singleFile: { type: Boolean, default: void 0 },
|
|
5684
5698
|
/**
|
|
@@ -5700,7 +5714,7 @@ const VFilePicker = defineComponent({
|
|
|
5700
5714
|
*/
|
|
5701
5715
|
"blur",
|
|
5702
5716
|
/**
|
|
5703
|
-
* Emitted when
|
|
5717
|
+
* Emitted when files are added or removed.
|
|
5704
5718
|
* @type {CustomEvent<undefined>}
|
|
5705
5719
|
*/
|
|
5706
5720
|
"change",
|
|
@@ -5731,42 +5745,12 @@ const VFilePicker = defineComponent({
|
|
|
5731
5745
|
"keyup"
|
|
5732
5746
|
],
|
|
5733
5747
|
methods: {
|
|
5734
|
-
acceptChanged(_oldValue, newValue) {
|
|
5735
|
-
return this.element?.acceptChanged(_oldValue, newValue);
|
|
5736
|
-
},
|
|
5737
5748
|
/**
|
|
5738
5749
|
* Return the current validity of the element.
|
|
5739
5750
|
*/
|
|
5740
5751
|
checkValidity() {
|
|
5741
5752
|
return this.element?.checkValidity();
|
|
5742
5753
|
},
|
|
5743
|
-
fileTooBigErrorChanged(_oldValue, newValue) {
|
|
5744
|
-
return this.element?.fileTooBigErrorChanged(_oldValue, newValue);
|
|
5745
|
-
},
|
|
5746
|
-
formResetCallback() {
|
|
5747
|
-
return this.element?.formResetCallback();
|
|
5748
|
-
},
|
|
5749
|
-
invalidFileTypeErrorChanged(_oldValue, newValue) {
|
|
5750
|
-
return this.element?.invalidFileTypeErrorChanged(
|
|
5751
|
-
_oldValue,
|
|
5752
|
-
newValue
|
|
5753
|
-
);
|
|
5754
|
-
},
|
|
5755
|
-
maxFileSizeChanged(_oldValue, newValue) {
|
|
5756
|
-
return this.element?.maxFileSizeChanged(_oldValue, newValue);
|
|
5757
|
-
},
|
|
5758
|
-
maxFilesChanged(_oldValue, newValue) {
|
|
5759
|
-
return this.element?.maxFilesChanged(_oldValue, newValue);
|
|
5760
|
-
},
|
|
5761
|
-
maxFilesExceededErrorChanged(_oldValue, newValue) {
|
|
5762
|
-
return this.element?.maxFilesExceededErrorChanged(
|
|
5763
|
-
_oldValue,
|
|
5764
|
-
newValue
|
|
5765
|
-
);
|
|
5766
|
-
},
|
|
5767
|
-
nameChanged(previous, next) {
|
|
5768
|
-
return this.element?.nameChanged(previous, next);
|
|
5769
|
-
},
|
|
5770
5754
|
/**
|
|
5771
5755
|
* Removes all files from the File Picker.
|
|
5772
5756
|
*/
|
|
@@ -5779,15 +5763,6 @@ const VFilePicker = defineComponent({
|
|
|
5779
5763
|
*/
|
|
5780
5764
|
reportValidity() {
|
|
5781
5765
|
return this.element?.reportValidity();
|
|
5782
|
-
},
|
|
5783
|
-
singleFileChanged() {
|
|
5784
|
-
return this.element?.singleFileChanged();
|
|
5785
|
-
},
|
|
5786
|
-
/**
|
|
5787
|
-
* {@inheritDoc (FormAssociated:interface).validate}
|
|
5788
|
-
*/
|
|
5789
|
-
validate() {
|
|
5790
|
-
return this.element?.validate();
|
|
5791
5766
|
}
|
|
5792
5767
|
},
|
|
5793
5768
|
setup(props, ctx) {
|
|
@@ -6346,6 +6321,10 @@ const VMenu = defineComponent({
|
|
|
6346
6321
|
* indicates whether the menu will automatically close when focus moves away from it.
|
|
6347
6322
|
*/
|
|
6348
6323
|
autoDismiss: { type: Boolean, default: void 0 },
|
|
6324
|
+
/**
|
|
6325
|
+
* Adds offset to the popup
|
|
6326
|
+
*/
|
|
6327
|
+
offset: { type: Number, default: void 0 },
|
|
6349
6328
|
/**
|
|
6350
6329
|
* indicates whether the menu is open
|
|
6351
6330
|
*/
|
|
@@ -6445,6 +6424,7 @@ const VMenu = defineComponent({
|
|
|
6445
6424
|
ref: "element",
|
|
6446
6425
|
attrs: {
|
|
6447
6426
|
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
6427
|
+
...this.offset !== void 0 ? { offset: this.offset } : {},
|
|
6448
6428
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
6449
6429
|
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
6450
6430
|
...this.positionStrategy !== void 0 ? { "position-strategy": this.positionStrategy } : {},
|
|
@@ -6500,6 +6480,7 @@ const VMenu = defineComponent({
|
|
|
6500
6480
|
...handleVue3Props({
|
|
6501
6481
|
...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
|
|
6502
6482
|
...this.autoDismiss !== void 0 && this.autoDismiss !== false ? { "^auto-dismiss": this.autoDismiss } : {},
|
|
6483
|
+
...this.offset !== void 0 ? { "^offset": this.offset } : {},
|
|
6503
6484
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
6504
6485
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
6505
6486
|
...this.positionStrategy !== void 0 ? { "^position-strategy": this.positionStrategy } : {},
|
|
@@ -7795,6 +7776,7 @@ const VOption = defineComponent({
|
|
|
7795
7776
|
default: void 0
|
|
7796
7777
|
},
|
|
7797
7778
|
text: { type: String, default: void 0 },
|
|
7779
|
+
textSecondary: { type: String, default: void 0 },
|
|
7798
7780
|
/**
|
|
7799
7781
|
* The value of the option.
|
|
7800
7782
|
*/
|
|
@@ -7855,6 +7837,7 @@ const VOption = defineComponent({
|
|
|
7855
7837
|
...this.selected !== void 0 ? { "current-selected": this.selected } : {},
|
|
7856
7838
|
...this.tagConnotation !== void 0 ? { "tag-connotation": this.tagConnotation } : {},
|
|
7857
7839
|
...this.text !== void 0 ? { text: this.text } : {},
|
|
7840
|
+
...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {},
|
|
7858
7841
|
...this.value !== void 0 ? { value: this.value } : {}
|
|
7859
7842
|
},
|
|
7860
7843
|
class: "vvd-component",
|
|
@@ -7882,7 +7865,9 @@ const VOption = defineComponent({
|
|
|
7882
7865
|
[
|
|
7883
7866
|
this.$slots.default,
|
|
7884
7867
|
// @slot icon The preferred way to add an icon to the component.
|
|
7885
|
-
handleNamedSlotV2("icon", this.$slots["icon"])
|
|
7868
|
+
handleNamedSlotV2("icon", this.$slots["icon"]),
|
|
7869
|
+
// @slot trailing-meta For additional elements at the end of the Option.
|
|
7870
|
+
handleNamedSlotV2("trailing-meta", this.$slots["trailing-meta"])
|
|
7886
7871
|
]
|
|
7887
7872
|
);
|
|
7888
7873
|
}
|
|
@@ -7902,6 +7887,7 @@ const VOption = defineComponent({
|
|
|
7902
7887
|
...this.selected !== void 0 && this.selected !== false ? { "^current-selected": this.selected } : {},
|
|
7903
7888
|
...this.tagConnotation !== void 0 ? { "^tag-connotation": this.tagConnotation } : {},
|
|
7904
7889
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
7890
|
+
...this.textSecondary !== void 0 ? { "^text-secondary": this.textSecondary } : {},
|
|
7905
7891
|
...this.value !== void 0 ? { "^value": this.value } : {}
|
|
7906
7892
|
}),
|
|
7907
7893
|
onBlur: (event) => {
|
|
@@ -7927,7 +7913,9 @@ const VOption = defineComponent({
|
|
|
7927
7913
|
// @ts-ignore
|
|
7928
7914
|
this.$slots.default && this.$slots.default(),
|
|
7929
7915
|
// @slot icon The preferred way to add an icon to the component.
|
|
7930
|
-
handleNamedSlotV3("icon", this.$slots["icon"])
|
|
7916
|
+
handleNamedSlotV3("icon", this.$slots["icon"]),
|
|
7917
|
+
// @slot trailing-meta For additional elements at the end of the Option.
|
|
7918
|
+
handleNamedSlotV3("trailing-meta", this.$slots["trailing-meta"])
|
|
7931
7919
|
]
|
|
7932
7920
|
);
|
|
7933
7921
|
}
|
|
@@ -7935,9 +7923,14 @@ const VOption = defineComponent({
|
|
|
7935
7923
|
|
|
7936
7924
|
const VPagination = defineComponent({
|
|
7937
7925
|
name: "VPagination",
|
|
7926
|
+
model: isVue2 ? {
|
|
7927
|
+
prop: "modelValue",
|
|
7928
|
+
event: "update:modelValue"
|
|
7929
|
+
} : void 0,
|
|
7938
7930
|
props: {
|
|
7939
7931
|
navIcons: { type: Boolean, default: void 0 },
|
|
7940
7932
|
selectedIndex: { type: Number, default: void 0 },
|
|
7933
|
+
modelValue: { type: Number, default: void 0 },
|
|
7941
7934
|
/**
|
|
7942
7935
|
* The shape the pagination should have.
|
|
7943
7936
|
*/
|
|
@@ -7986,7 +7979,12 @@ const VPagination = defineComponent({
|
|
|
7986
7979
|
* Fires when the page changes.
|
|
7987
7980
|
* @type {CustomEvent<{selectedIndex: number, total: number, oldIndex: number}>}
|
|
7988
7981
|
*/
|
|
7989
|
-
"pagination-change"
|
|
7982
|
+
"pagination-change",
|
|
7983
|
+
/**
|
|
7984
|
+
* Fires when the modelValue value changes
|
|
7985
|
+
* @type {number}
|
|
7986
|
+
*/
|
|
7987
|
+
"update:modelValue"
|
|
7990
7988
|
],
|
|
7991
7989
|
methods: {
|
|
7992
7990
|
paginationButtonsChanged(_, newValue) {
|
|
@@ -8012,7 +8010,7 @@ const VPagination = defineComponent({
|
|
|
8012
8010
|
ref: "element",
|
|
8013
8011
|
attrs: {
|
|
8014
8012
|
...this.navIcons !== void 0 ? { "nav-icons": this.navIcons } : {},
|
|
8015
|
-
...this.selectedIndex !== void 0 ? { "selected-index": this.selectedIndex } : {},
|
|
8013
|
+
...(this.modelValue ?? this.selectedIndex) !== void 0 ? { "selected-index": this.modelValue ?? this.selectedIndex } : {},
|
|
8016
8014
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8017
8015
|
...this.size !== void 0 ? { size: this.size } : {},
|
|
8018
8016
|
...this.total !== void 0 ? { total: this.total } : {}
|
|
@@ -8038,6 +8036,10 @@ const VPagination = defineComponent({
|
|
|
8038
8036
|
this.$emit("keyup", event);
|
|
8039
8037
|
},
|
|
8040
8038
|
"pagination-change": (event) => {
|
|
8039
|
+
this.$emit(
|
|
8040
|
+
"update:modelValue",
|
|
8041
|
+
event.currentTarget.selectedIndex
|
|
8042
|
+
);
|
|
8041
8043
|
this.$emit("pagination-change", event);
|
|
8042
8044
|
}
|
|
8043
8045
|
}
|
|
@@ -8052,7 +8054,7 @@ const VPagination = defineComponent({
|
|
|
8052
8054
|
class: "vvd-component",
|
|
8053
8055
|
...handleVue3Props({
|
|
8054
8056
|
...this.navIcons !== void 0 && this.navIcons !== false ? { "^nav-icons": this.navIcons } : {},
|
|
8055
|
-
...this.selectedIndex !== void 0 ? { "^selected-index": this.selectedIndex } : {},
|
|
8057
|
+
...(this.modelValue ?? this.selectedIndex) !== void 0 ? { "^selected-index": this.modelValue ?? this.selectedIndex } : {},
|
|
8056
8058
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8057
8059
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
8058
8060
|
...this.total !== void 0 ? { "^total": this.total } : {}
|
|
@@ -8076,6 +8078,7 @@ const VPagination = defineComponent({
|
|
|
8076
8078
|
this.$emit("keyup", event);
|
|
8077
8079
|
},
|
|
8078
8080
|
onPaginationChange: (event) => {
|
|
8081
|
+
this.$emit("update:modelValue", event.currentTarget.selectedIndex);
|
|
8079
8082
|
this.$emit("pagination-change", event);
|
|
8080
8083
|
}
|
|
8081
8084
|
},
|
|
@@ -8828,6 +8831,10 @@ const VRangeSlider = defineComponent({
|
|
|
8828
8831
|
* and don't support IDL attribute binding.
|
|
8829
8832
|
*/
|
|
8830
8833
|
end: { type: String, default: void 0 },
|
|
8834
|
+
/**
|
|
8835
|
+
* The end property, typed as a number.
|
|
8836
|
+
*/
|
|
8837
|
+
endAsNumber: { type: Number, default: void 0 },
|
|
8831
8838
|
/**
|
|
8832
8839
|
* The initial end value. This value sets the `end` property
|
|
8833
8840
|
* only when the `end` property has not been explicitly set.
|
|
@@ -8886,6 +8893,10 @@ const VRangeSlider = defineComponent({
|
|
|
8886
8893
|
* and don't support IDL attribute binding.
|
|
8887
8894
|
*/
|
|
8888
8895
|
start: { type: String, default: void 0 },
|
|
8896
|
+
/**
|
|
8897
|
+
* The start property, typed as a number.
|
|
8898
|
+
*/
|
|
8899
|
+
startAsNumber: { type: Number, default: void 0 },
|
|
8889
8900
|
/**
|
|
8890
8901
|
* Value to increment or decrement via arrow keys, mouse click or drag.
|
|
8891
8902
|
*/
|
|
@@ -8946,11 +8957,21 @@ const VRangeSlider = defineComponent({
|
|
|
8946
8957
|
* @type {string}
|
|
8947
8958
|
*/
|
|
8948
8959
|
"update:end",
|
|
8960
|
+
/**
|
|
8961
|
+
* Fires when the endAsNumber value changes
|
|
8962
|
+
* @type {number}
|
|
8963
|
+
*/
|
|
8964
|
+
"update:endAsNumber",
|
|
8949
8965
|
/**
|
|
8950
8966
|
* Fires when the start value changes
|
|
8951
8967
|
* @type {string}
|
|
8952
8968
|
*/
|
|
8953
|
-
"update:start"
|
|
8969
|
+
"update:start",
|
|
8970
|
+
/**
|
|
8971
|
+
* Fires when the startAsNumber value changes
|
|
8972
|
+
* @type {number}
|
|
8973
|
+
*/
|
|
8974
|
+
"update:startAsNumber"
|
|
8954
8975
|
],
|
|
8955
8976
|
methods: {
|
|
8956
8977
|
/**
|
|
@@ -9006,6 +9027,10 @@ const VRangeSlider = defineComponent({
|
|
|
9006
9027
|
...this.value !== void 0 ? { "current-value": this.value } : {}
|
|
9007
9028
|
},
|
|
9008
9029
|
class: "vvd-component",
|
|
9030
|
+
domProps: {
|
|
9031
|
+
...this.endAsNumber !== void 0 ? { endAsNumber: this.endAsNumber } : {},
|
|
9032
|
+
...this.startAsNumber !== void 0 ? { startAsNumber: this.startAsNumber } : {}
|
|
9033
|
+
},
|
|
9009
9034
|
on: {
|
|
9010
9035
|
blur: (event) => {
|
|
9011
9036
|
this.$emit("blur", event);
|
|
@@ -9024,10 +9049,15 @@ const VRangeSlider = defineComponent({
|
|
|
9024
9049
|
},
|
|
9025
9050
|
"input:end": (event) => {
|
|
9026
9051
|
this.$emit("update:end", event.currentTarget.end);
|
|
9052
|
+
this.$emit("update:endAsNumber", event.currentTarget.endAsNumber);
|
|
9027
9053
|
this.$emit("input:end", event);
|
|
9028
9054
|
},
|
|
9029
9055
|
"input:start": (event) => {
|
|
9030
9056
|
this.$emit("update:start", event.currentTarget.start);
|
|
9057
|
+
this.$emit(
|
|
9058
|
+
"update:startAsNumber",
|
|
9059
|
+
event.currentTarget.startAsNumber
|
|
9060
|
+
);
|
|
9031
9061
|
this.$emit("input:start", event);
|
|
9032
9062
|
},
|
|
9033
9063
|
keydown: (event) => {
|
|
@@ -9052,6 +9082,7 @@ const VRangeSlider = defineComponent({
|
|
|
9052
9082
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
9053
9083
|
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
9054
9084
|
...this.end !== void 0 ? { "^current-end": this.end } : {},
|
|
9085
|
+
...this.endAsNumber !== void 0 ? { ".endAsNumber": this.endAsNumber } : {},
|
|
9055
9086
|
...this.initialEnd !== void 0 ? { "^end": this.initialEnd } : {},
|
|
9056
9087
|
...this.initialStart !== void 0 ? { "^start": this.initialStart } : {},
|
|
9057
9088
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
@@ -9064,6 +9095,7 @@ const VRangeSlider = defineComponent({
|
|
|
9064
9095
|
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
9065
9096
|
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
9066
9097
|
...this.start !== void 0 ? { "^current-start": this.start } : {},
|
|
9098
|
+
...this.startAsNumber !== void 0 ? { ".startAsNumber": this.startAsNumber } : {},
|
|
9067
9099
|
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
9068
9100
|
...this.value !== void 0 ? { "^current-value": this.value } : {}
|
|
9069
9101
|
}),
|
|
@@ -9084,10 +9116,12 @@ const VRangeSlider = defineComponent({
|
|
|
9084
9116
|
},
|
|
9085
9117
|
"onInput:end": (event) => {
|
|
9086
9118
|
this.$emit("update:end", event.currentTarget.end);
|
|
9119
|
+
this.$emit("update:endAsNumber", event.currentTarget.endAsNumber);
|
|
9087
9120
|
this.$emit("input:end", event);
|
|
9088
9121
|
},
|
|
9089
9122
|
"onInput:start": (event) => {
|
|
9090
9123
|
this.$emit("update:start", event.currentTarget.start);
|
|
9124
|
+
this.$emit("update:startAsNumber", event.currentTarget.startAsNumber);
|
|
9091
9125
|
this.$emit("input:start", event);
|
|
9092
9126
|
},
|
|
9093
9127
|
onKeydown: (event) => {
|
|
@@ -10222,6 +10256,233 @@ const VSideDrawer = defineComponent({
|
|
|
10222
10256
|
}
|
|
10223
10257
|
});
|
|
10224
10258
|
|
|
10259
|
+
const VSimpleColorPicker = defineComponent({
|
|
10260
|
+
name: "VSimpleColorPicker",
|
|
10261
|
+
model: isVue2 ? {
|
|
10262
|
+
prop: "modelValue",
|
|
10263
|
+
event: "update:modelValue"
|
|
10264
|
+
} : void 0,
|
|
10265
|
+
props: {
|
|
10266
|
+
/**
|
|
10267
|
+
* ID or direct reference to the component's anchor element.
|
|
10268
|
+
*/
|
|
10269
|
+
anchor: {
|
|
10270
|
+
type: [String, HTMLElement],
|
|
10271
|
+
default: void 0
|
|
10272
|
+
},
|
|
10273
|
+
/**
|
|
10274
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
10275
|
+
*/
|
|
10276
|
+
disabled: { type: Boolean, default: void 0 },
|
|
10277
|
+
/**
|
|
10278
|
+
* The default value of the element. This value sets the `value` property
|
|
10279
|
+
* only when the `value` property has not been explicitly set.
|
|
10280
|
+
*/
|
|
10281
|
+
initialValue: { type: String, default: void 0 },
|
|
10282
|
+
/**
|
|
10283
|
+
* The label for the form element.
|
|
10284
|
+
*/
|
|
10285
|
+
label: { type: String, default: void 0 },
|
|
10286
|
+
/**
|
|
10287
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
10288
|
+
*/
|
|
10289
|
+
name: { type: String, default: void 0 },
|
|
10290
|
+
/**
|
|
10291
|
+
* Indicates whether the popup is open
|
|
10292
|
+
*/
|
|
10293
|
+
open: { type: Boolean, default: void 0 },
|
|
10294
|
+
/**
|
|
10295
|
+
* Placement of the popup with color swatches
|
|
10296
|
+
*/
|
|
10297
|
+
placement: {
|
|
10298
|
+
type: String,
|
|
10299
|
+
default: void 0
|
|
10300
|
+
},
|
|
10301
|
+
/**
|
|
10302
|
+
* Require the field to be completed prior to form submission.
|
|
10303
|
+
*/
|
|
10304
|
+
required: { type: Boolean, default: void 0 },
|
|
10305
|
+
/**
|
|
10306
|
+
* Number of swatches per row for grid layout
|
|
10307
|
+
*/
|
|
10308
|
+
swatchesPerRow: { type: Number, default: void 0 },
|
|
10309
|
+
/**
|
|
10310
|
+
* The current value of the element.
|
|
10311
|
+
*/
|
|
10312
|
+
value: { type: String, default: void 0 },
|
|
10313
|
+
/**
|
|
10314
|
+
* The current value of the element.
|
|
10315
|
+
*/
|
|
10316
|
+
modelValue: { type: String, default: void 0 }
|
|
10317
|
+
},
|
|
10318
|
+
emits: [
|
|
10319
|
+
/**
|
|
10320
|
+
* Fires when the element loses focus.
|
|
10321
|
+
* @type {FocusEvent}
|
|
10322
|
+
*/
|
|
10323
|
+
"blur",
|
|
10324
|
+
/**
|
|
10325
|
+
* Fires when the value changes
|
|
10326
|
+
* @type {CustomEvent<undefined>}
|
|
10327
|
+
*/
|
|
10328
|
+
"change",
|
|
10329
|
+
/**
|
|
10330
|
+
* Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element.
|
|
10331
|
+
* @type {MouseEvent}
|
|
10332
|
+
*/
|
|
10333
|
+
"click",
|
|
10334
|
+
/**
|
|
10335
|
+
* Fires when the element receives focus.
|
|
10336
|
+
* @type {FocusEvent}
|
|
10337
|
+
*/
|
|
10338
|
+
"focus",
|
|
10339
|
+
/**
|
|
10340
|
+
* Fires when the value of an element has been changed.
|
|
10341
|
+
* @type {Event}
|
|
10342
|
+
*/
|
|
10343
|
+
"input",
|
|
10344
|
+
/**
|
|
10345
|
+
* Fires when a key is pressed.
|
|
10346
|
+
* @type {KeyboardEvent}
|
|
10347
|
+
*/
|
|
10348
|
+
"keydown",
|
|
10349
|
+
/**
|
|
10350
|
+
* Fires when a key is released.
|
|
10351
|
+
* @type {KeyboardEvent}
|
|
10352
|
+
*/
|
|
10353
|
+
"keyup",
|
|
10354
|
+
/**
|
|
10355
|
+
* Fires when the modelValue value changes
|
|
10356
|
+
* @type {string}
|
|
10357
|
+
*/
|
|
10358
|
+
"update:modelValue"
|
|
10359
|
+
],
|
|
10360
|
+
methods: {
|
|
10361
|
+
/**
|
|
10362
|
+
* Return the current validity of the element.
|
|
10363
|
+
*/
|
|
10364
|
+
checkValidity() {
|
|
10365
|
+
return this.element?.checkValidity();
|
|
10366
|
+
},
|
|
10367
|
+
/**
|
|
10368
|
+
* Return the current validity of the element.
|
|
10369
|
+
* If false, fires an invalid event at the element.
|
|
10370
|
+
*/
|
|
10371
|
+
reportValidity() {
|
|
10372
|
+
return this.element?.reportValidity();
|
|
10373
|
+
}
|
|
10374
|
+
},
|
|
10375
|
+
setup(props, ctx) {
|
|
10376
|
+
const componentName = registerComponent(
|
|
10377
|
+
"simple-color-picker",
|
|
10378
|
+
registerSimpleColorPicker
|
|
10379
|
+
);
|
|
10380
|
+
const element = ref(null);
|
|
10381
|
+
return { componentName, element };
|
|
10382
|
+
},
|
|
10383
|
+
render() {
|
|
10384
|
+
if (isVue2) {
|
|
10385
|
+
return h(
|
|
10386
|
+
this.componentName,
|
|
10387
|
+
{
|
|
10388
|
+
ref: "element",
|
|
10389
|
+
attrs: {
|
|
10390
|
+
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10391
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
10392
|
+
...this.label !== void 0 ? { label: this.label } : {},
|
|
10393
|
+
...this.name !== void 0 ? { name: this.name } : {},
|
|
10394
|
+
...this.open !== void 0 ? { open: this.open } : {},
|
|
10395
|
+
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
10396
|
+
...this.required !== void 0 ? { required: this.required } : {},
|
|
10397
|
+
...this.swatchesPerRow !== void 0 ? { "swatches-per-row": this.swatchesPerRow } : {},
|
|
10398
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {}
|
|
10399
|
+
},
|
|
10400
|
+
class: "vvd-component",
|
|
10401
|
+
domProps: {
|
|
10402
|
+
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
10403
|
+
},
|
|
10404
|
+
on: {
|
|
10405
|
+
blur: (event) => {
|
|
10406
|
+
this.$emit("blur", event);
|
|
10407
|
+
},
|
|
10408
|
+
change: (event) => {
|
|
10409
|
+
this.$emit("change", event);
|
|
10410
|
+
},
|
|
10411
|
+
click: (event) => {
|
|
10412
|
+
this.$emit("click", event);
|
|
10413
|
+
},
|
|
10414
|
+
focus: (event) => {
|
|
10415
|
+
this.$emit("focus", event);
|
|
10416
|
+
},
|
|
10417
|
+
input: (event) => {
|
|
10418
|
+
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10419
|
+
this.$emit("input", event);
|
|
10420
|
+
},
|
|
10421
|
+
keydown: (event) => {
|
|
10422
|
+
this.$emit("keydown", event);
|
|
10423
|
+
},
|
|
10424
|
+
keyup: (event) => {
|
|
10425
|
+
this.$emit("keyup", event);
|
|
10426
|
+
}
|
|
10427
|
+
}
|
|
10428
|
+
},
|
|
10429
|
+
[
|
|
10430
|
+
this.$slots.default,
|
|
10431
|
+
// @slot anchor Slot for attaching the toggle button
|
|
10432
|
+
handleNamedSlotV2("anchor", this.$slots["anchor"])
|
|
10433
|
+
]
|
|
10434
|
+
);
|
|
10435
|
+
}
|
|
10436
|
+
return h(
|
|
10437
|
+
this.componentName,
|
|
10438
|
+
{
|
|
10439
|
+
ref: "element",
|
|
10440
|
+
class: "vvd-component",
|
|
10441
|
+
...handleVue3Props({
|
|
10442
|
+
...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
|
|
10443
|
+
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
10444
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
10445
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
10446
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
10447
|
+
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
10448
|
+
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10449
|
+
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
10450
|
+
...this.swatchesPerRow !== void 0 ? { "^swatches-per-row": this.swatchesPerRow } : {},
|
|
10451
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {}
|
|
10452
|
+
}),
|
|
10453
|
+
onBlur: (event) => {
|
|
10454
|
+
this.$emit("blur", event);
|
|
10455
|
+
},
|
|
10456
|
+
onChange: (event) => {
|
|
10457
|
+
this.$emit("change", event);
|
|
10458
|
+
},
|
|
10459
|
+
onClick: (event) => {
|
|
10460
|
+
this.$emit("click", event);
|
|
10461
|
+
},
|
|
10462
|
+
onFocus: (event) => {
|
|
10463
|
+
this.$emit("focus", event);
|
|
10464
|
+
},
|
|
10465
|
+
onInput: (event) => {
|
|
10466
|
+
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10467
|
+
this.$emit("input", event);
|
|
10468
|
+
},
|
|
10469
|
+
onKeydown: (event) => {
|
|
10470
|
+
this.$emit("keydown", event);
|
|
10471
|
+
},
|
|
10472
|
+
onKeyup: (event) => {
|
|
10473
|
+
this.$emit("keyup", event);
|
|
10474
|
+
}
|
|
10475
|
+
},
|
|
10476
|
+
[
|
|
10477
|
+
// @ts-ignore
|
|
10478
|
+
this.$slots.default && this.$slots.default(),
|
|
10479
|
+
// @slot anchor Slot for attaching the toggle button
|
|
10480
|
+
handleNamedSlotV3("anchor", this.$slots["anchor"])
|
|
10481
|
+
]
|
|
10482
|
+
);
|
|
10483
|
+
}
|
|
10484
|
+
});
|
|
10485
|
+
|
|
10225
10486
|
const VSlider = defineComponent({
|
|
10226
10487
|
name: "VSlider",
|
|
10227
10488
|
model: isVue2 ? {
|
|
@@ -10295,7 +10556,11 @@ const VSlider = defineComponent({
|
|
|
10295
10556
|
/**
|
|
10296
10557
|
* The current value of the element.
|
|
10297
10558
|
*/
|
|
10298
|
-
modelValue: { type: String, default: void 0 }
|
|
10559
|
+
modelValue: { type: String, default: void 0 },
|
|
10560
|
+
/**
|
|
10561
|
+
* The value property, typed as a number.
|
|
10562
|
+
*/
|
|
10563
|
+
valueAsNumber: { type: Number, default: void 0 }
|
|
10299
10564
|
},
|
|
10300
10565
|
emits: [
|
|
10301
10566
|
/**
|
|
@@ -10337,7 +10602,12 @@ const VSlider = defineComponent({
|
|
|
10337
10602
|
* Fires when the modelValue value changes
|
|
10338
10603
|
* @type {string}
|
|
10339
10604
|
*/
|
|
10340
|
-
"update:modelValue"
|
|
10605
|
+
"update:modelValue",
|
|
10606
|
+
/**
|
|
10607
|
+
* Fires when the valueAsNumber value changes
|
|
10608
|
+
* @type {number}
|
|
10609
|
+
*/
|
|
10610
|
+
"update:valueAsNumber"
|
|
10341
10611
|
],
|
|
10342
10612
|
methods: {
|
|
10343
10613
|
/**
|
|
@@ -10403,12 +10673,19 @@ const VSlider = defineComponent({
|
|
|
10403
10673
|
...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {}
|
|
10404
10674
|
},
|
|
10405
10675
|
class: "vvd-component",
|
|
10676
|
+
domProps: {
|
|
10677
|
+
...this.valueAsNumber !== void 0 ? { valueAsNumber: this.valueAsNumber } : {}
|
|
10678
|
+
},
|
|
10406
10679
|
on: {
|
|
10407
10680
|
blur: (event) => {
|
|
10408
10681
|
this.$emit("blur", event);
|
|
10409
10682
|
},
|
|
10410
10683
|
change: (event) => {
|
|
10411
10684
|
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10685
|
+
this.$emit(
|
|
10686
|
+
"update:valueAsNumber",
|
|
10687
|
+
event.currentTarget.valueAsNumber
|
|
10688
|
+
);
|
|
10412
10689
|
this.$emit("change", event);
|
|
10413
10690
|
},
|
|
10414
10691
|
click: (event) => {
|
|
@@ -10450,13 +10727,15 @@ const VSlider = defineComponent({
|
|
|
10450
10727
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
10451
10728
|
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
10452
10729
|
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
10453
|
-
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {}
|
|
10730
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
10731
|
+
...this.valueAsNumber !== void 0 ? { ".valueAsNumber": this.valueAsNumber } : {}
|
|
10454
10732
|
}),
|
|
10455
10733
|
onBlur: (event) => {
|
|
10456
10734
|
this.$emit("blur", event);
|
|
10457
10735
|
},
|
|
10458
10736
|
onChange: (event) => {
|
|
10459
10737
|
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10738
|
+
this.$emit("update:valueAsNumber", event.currentTarget.valueAsNumber);
|
|
10460
10739
|
this.$emit("change", event);
|
|
10461
10740
|
},
|
|
10462
10741
|
onClick: (event) => {
|
|
@@ -10580,7 +10859,22 @@ const VSplitButton = defineComponent({
|
|
|
10580
10859
|
*/
|
|
10581
10860
|
"keyup"
|
|
10582
10861
|
],
|
|
10583
|
-
methods: {
|
|
10862
|
+
methods: {
|
|
10863
|
+
/**
|
|
10864
|
+
* Handles action click events.
|
|
10865
|
+
* Prevents interaction when disabled or pending.
|
|
10866
|
+
*/
|
|
10867
|
+
handleActionClick(event) {
|
|
10868
|
+
return this.element?.handleActionClick(event);
|
|
10869
|
+
},
|
|
10870
|
+
/**
|
|
10871
|
+
* Handles indicator click events.
|
|
10872
|
+
* Prevents interaction when disabled or pending.
|
|
10873
|
+
*/
|
|
10874
|
+
handleIndicatorClick(event) {
|
|
10875
|
+
return this.element?.handleIndicatorClick(event);
|
|
10876
|
+
}
|
|
10877
|
+
},
|
|
10584
10878
|
setup(props, ctx) {
|
|
10585
10879
|
const componentName = registerComponent(
|
|
10586
10880
|
"split-button",
|
|
@@ -14609,17 +14903,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
14609
14903
|
return Icon2;
|
|
14610
14904
|
})(Icon || {});
|
|
14611
14905
|
|
|
14612
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 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-neutral-tint-50: #f2f3f9;\n --vvd-color-neutral-tint-100: #e5e5ec;\n --vvd-color-neutral-tint-200: #cbcbd9;\n --vvd-color-neutral-tint-300: #b2b1c7;\n --vvd-color-neutral-tint-400: #908fae;\n --vvd-color-neutral-tint-500: #727198;\n --vvd-color-neutral-tint-600: #63628d;\n --vvd-color-neutral-tint-700: #494977;\n --vvd-color-neutral-tint-800: #31304f;\n --vvd-color-neutral-tint-900: #191828;\n --vvd-color-neutral-tint-950: #0d0c15;\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-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #31304f1a) drop-shadow(0px 1px 0px #31304f1a) drop-shadow(0px -1px 0px #31304f1a) drop-shadow(-1px 0px 0px #31304f1a);\n --vvd-neutral-tint-shadow-surface-2dp: drop-shadow(0px 1px 4px #26044d1a) drop-shadow(0px 1px 2px #26044d0d) drop-shadow(0px 2px 1px #26044d0d);\n --vvd-neutral-tint-shadow-surface-4dp: drop-shadow(0px 2px 8px #26044d1a) drop-shadow(0px 2px 4px #26044d0d) drop-shadow(0px 4px 2px #26044d0d);\n --vvd-neutral-tint-shadow-surface-8dp: drop-shadow(0px 2px 16px #26044d1a) drop-shadow(0px 8px 8px #26044d0d) drop-shadow(0px 4px 4px #26044d0d);\n --vvd-neutral-tint-shadow-surface-12dp: drop-shadow(0px 4px 24px #26044d1a) drop-shadow(0px 12px 16px #26044d0d) drop-shadow(0px 6px 8px #26044d0d);\n --vvd-neutral-tint-shadow-surface-16dp: drop-shadow(0px 6px 32px #26044d1a) drop-shadow(0px 16px 24px #26044d0d) drop-shadow(0px 8px 12px #26044d0d);\n --vvd-neutral-tint-shadow-surface-24dp: drop-shadow(0px 12px 48px #26044d33) drop-shadow(0px 24px 32px #26044d0d) drop-shadow(0px 12px 16px #26044d0d);\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-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-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-neutral-tint-50: #191828;\n --vvd-color-neutral-tint-100: #31304f;\n --vvd-color-neutral-tint-200: #494977;\n --vvd-color-neutral-tint-300: #63628d;\n --vvd-color-neutral-tint-400: #727198;\n --vvd-color-neutral-tint-500: #908fae;\n --vvd-color-neutral-tint-600: #b2b1c7;\n --vvd-color-neutral-tint-700: #cbcbd9;\n --vvd-color-neutral-tint-800: #e5e5ec;\n --vvd-color-neutral-tint-900: #f2f3f9;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-neutral-tint-color-surface-0dp: #191828;\n --vvd-neutral-tint-color-surface-2dp: linear-gradient(#ffffff08, #ffffff08), #191828;\n --vvd-neutral-tint-color-surface-4dp: linear-gradient(#ffffff0f, #ffffff0f), #191828;\n --vvd-neutral-tint-color-surface-8dp: linear-gradient(#ffffff14, #ffffff14), #191828;\n --vvd-neutral-tint-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #191828;\n --vvd-neutral-tint-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #191828;\n --vvd-neutral-tint-color-surface-24dp: linear-gradient(#ffffff33, #ffffff33), #191828;\n --vvd-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #f2f3f91a) drop-shadow(0px 1px 0px #f2f3f91a) drop-shadow(0px -1px 0px #f2f3f91a) drop-shadow(-1px 0px 0px #f2f3f91a);\n --vvd-neutral-tint-shadow-surface-2dp: none;\n --vvd-neutral-tint-shadow-surface-4dp: none;\n --vvd-neutral-tint-shadow-surface-8dp: none;\n --vvd-neutral-tint-shadow-surface-12dp: none;\n --vvd-neutral-tint-shadow-surface-16dp: none;\n --vvd-neutral-tint-shadow-surface-24dp: none;\n}\n";
|
|
14906
|
+
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 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-neutral-tint-50: #f2f3f9;\n --vvd-color-neutral-tint-100: #e5e5ec;\n --vvd-color-neutral-tint-200: #cbcbd9;\n --vvd-color-neutral-tint-300: #b2b1c7;\n --vvd-color-neutral-tint-400: #908fae;\n --vvd-color-neutral-tint-500: #727198;\n --vvd-color-neutral-tint-600: #63628d;\n --vvd-color-neutral-tint-700: #494977;\n --vvd-color-neutral-tint-800: #31304f;\n --vvd-color-neutral-tint-900: #191828;\n --vvd-color-neutral-tint-950: #0d0c15;\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-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #31304f1a) drop-shadow(0px 1px 0px #31304f1a) drop-shadow(0px -1px 0px #31304f1a) drop-shadow(-1px 0px 0px #31304f1a);\n --vvd-neutral-tint-shadow-surface-2dp: drop-shadow(0px 1px 4px #26044d1a) drop-shadow(0px 1px 2px #26044d0d) drop-shadow(0px 2px 1px #26044d0d);\n --vvd-neutral-tint-shadow-surface-4dp: drop-shadow(0px 2px 8px #26044d1a) drop-shadow(0px 2px 4px #26044d0d) drop-shadow(0px 4px 2px #26044d0d);\n --vvd-neutral-tint-shadow-surface-8dp: drop-shadow(0px 2px 16px #26044d1a) drop-shadow(0px 8px 8px #26044d0d) drop-shadow(0px 4px 4px #26044d0d);\n --vvd-neutral-tint-shadow-surface-12dp: drop-shadow(0px 4px 24px #26044d1a) drop-shadow(0px 12px 16px #26044d0d) drop-shadow(0px 6px 8px #26044d0d);\n --vvd-neutral-tint-shadow-surface-16dp: drop-shadow(0px 6px 32px #26044d1a) drop-shadow(0px 16px 24px #26044d0d) drop-shadow(0px 8px 12px #26044d0d);\n --vvd-neutral-tint-shadow-surface-24dp: drop-shadow(0px 12px 48px #26044d33) drop-shadow(0px 24px 32px #26044d0d) drop-shadow(0px 12px 16px #26044d0d);\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-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-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-neutral-tint-50: #191828;\n --vvd-color-neutral-tint-100: #31304f;\n --vvd-color-neutral-tint-200: #494977;\n --vvd-color-neutral-tint-300: #63628d;\n --vvd-color-neutral-tint-400: #727198;\n --vvd-color-neutral-tint-500: #908fae;\n --vvd-color-neutral-tint-600: #b2b1c7;\n --vvd-color-neutral-tint-700: #cbcbd9;\n --vvd-color-neutral-tint-800: #e5e5ec;\n --vvd-color-neutral-tint-900: #f2f3f9;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-neutral-tint-color-surface-0dp: #191828;\n --vvd-neutral-tint-color-surface-2dp: linear-gradient(#ffffff08, #ffffff08), #191828;\n --vvd-neutral-tint-color-surface-4dp: linear-gradient(#ffffff0f, #ffffff0f), #191828;\n --vvd-neutral-tint-color-surface-8dp: linear-gradient(#ffffff14, #ffffff14), #191828;\n --vvd-neutral-tint-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #191828;\n --vvd-neutral-tint-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #191828;\n --vvd-neutral-tint-color-surface-24dp: linear-gradient(#ffffff33, #ffffff33), #191828;\n --vvd-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #f2f3f91a) drop-shadow(0px 1px 0px #f2f3f91a) drop-shadow(0px -1px 0px #f2f3f91a) drop-shadow(-1px 0px 0px #f2f3f91a);\n --vvd-neutral-tint-shadow-surface-2dp: none;\n --vvd-neutral-tint-shadow-surface-4dp: none;\n --vvd-neutral-tint-shadow-surface-8dp: none;\n --vvd-neutral-tint-shadow-surface-12dp: none;\n --vvd-neutral-tint-shadow-surface-16dp: none;\n --vvd-neutral-tint-shadow-surface-24dp: none;\n}\n";
|
|
14613
14907
|
|
|
14614
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 14 Aug 2025 08:21:43 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-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-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-neutral-tint-50: #191828;\n --vvd-color-neutral-tint-100: #31304f;\n --vvd-color-neutral-tint-200: #494977;\n --vvd-color-neutral-tint-300: #63628d;\n --vvd-color-neutral-tint-400: #727198;\n --vvd-color-neutral-tint-500: #908fae;\n --vvd-color-neutral-tint-600: #b2b1c7;\n --vvd-color-neutral-tint-700: #cbcbd9;\n --vvd-color-neutral-tint-800: #e5e5ec;\n --vvd-color-neutral-tint-900: #f2f3f9;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-neutral-tint-color-surface-0dp: #191828;\n --vvd-neutral-tint-color-surface-2dp: linear-gradient(#ffffff08, #ffffff08), #191828;\n --vvd-neutral-tint-color-surface-4dp: linear-gradient(#ffffff0f, #ffffff0f), #191828;\n --vvd-neutral-tint-color-surface-8dp: linear-gradient(#ffffff14, #ffffff14), #191828;\n --vvd-neutral-tint-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #191828;\n --vvd-neutral-tint-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #191828;\n --vvd-neutral-tint-color-surface-24dp: linear-gradient(#ffffff33, #ffffff33), #191828;\n --vvd-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #f2f3f91a) drop-shadow(0px 1px 0px #f2f3f91a) drop-shadow(0px -1px 0px #f2f3f91a) drop-shadow(-1px 0px 0px #f2f3f91a);\n --vvd-neutral-tint-shadow-surface-2dp: none;\n --vvd-neutral-tint-shadow-surface-4dp: none;\n --vvd-neutral-tint-shadow-surface-8dp: none;\n --vvd-neutral-tint-shadow-surface-12dp: none;\n --vvd-neutral-tint-shadow-surface-16dp: none;\n --vvd-neutral-tint-shadow-surface-24dp: none;\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-neutral-tint-50: #f2f3f9;\n --vvd-color-neutral-tint-100: #e5e5ec;\n --vvd-color-neutral-tint-200: #cbcbd9;\n --vvd-color-neutral-tint-300: #b2b1c7;\n --vvd-color-neutral-tint-400: #908fae;\n --vvd-color-neutral-tint-500: #727198;\n --vvd-color-neutral-tint-600: #63628d;\n --vvd-color-neutral-tint-700: #494977;\n --vvd-color-neutral-tint-800: #31304f;\n --vvd-color-neutral-tint-900: #191828;\n --vvd-color-neutral-tint-950: #0d0c15;\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-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #31304f1a) drop-shadow(0px 1px 0px #31304f1a) drop-shadow(0px -1px 0px #31304f1a) drop-shadow(-1px 0px 0px #31304f1a);\n --vvd-neutral-tint-shadow-surface-2dp: drop-shadow(0px 1px 4px #26044d1a) drop-shadow(0px 1px 2px #26044d0d) drop-shadow(0px 2px 1px #26044d0d);\n --vvd-neutral-tint-shadow-surface-4dp: drop-shadow(0px 2px 8px #26044d1a) drop-shadow(0px 2px 4px #26044d0d) drop-shadow(0px 4px 2px #26044d0d);\n --vvd-neutral-tint-shadow-surface-8dp: drop-shadow(0px 2px 16px #26044d1a) drop-shadow(0px 8px 8px #26044d0d) drop-shadow(0px 4px 4px #26044d0d);\n --vvd-neutral-tint-shadow-surface-12dp: drop-shadow(0px 4px 24px #26044d1a) drop-shadow(0px 12px 16px #26044d0d) drop-shadow(0px 6px 8px #26044d0d);\n --vvd-neutral-tint-shadow-surface-16dp: drop-shadow(0px 6px 32px #26044d1a) drop-shadow(0px 16px 24px #26044d0d) drop-shadow(0px 8px 12px #26044d0d);\n --vvd-neutral-tint-shadow-surface-24dp: drop-shadow(0px 12px 48px #26044d33) drop-shadow(0px 24px 32px #26044d0d) drop-shadow(0px 12px 16px #26044d0d);\n}\n";
|
|
14908
|
+
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 GMT\n */\n/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 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-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-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-neutral-tint-50: #191828;\n --vvd-color-neutral-tint-100: #31304f;\n --vvd-color-neutral-tint-200: #494977;\n --vvd-color-neutral-tint-300: #63628d;\n --vvd-color-neutral-tint-400: #727198;\n --vvd-color-neutral-tint-500: #908fae;\n --vvd-color-neutral-tint-600: #b2b1c7;\n --vvd-color-neutral-tint-700: #cbcbd9;\n --vvd-color-neutral-tint-800: #e5e5ec;\n --vvd-color-neutral-tint-900: #f2f3f9;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-neutral-tint-color-surface-0dp: #191828;\n --vvd-neutral-tint-color-surface-2dp: linear-gradient(#ffffff08, #ffffff08), #191828;\n --vvd-neutral-tint-color-surface-4dp: linear-gradient(#ffffff0f, #ffffff0f), #191828;\n --vvd-neutral-tint-color-surface-8dp: linear-gradient(#ffffff14, #ffffff14), #191828;\n --vvd-neutral-tint-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #191828;\n --vvd-neutral-tint-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #191828;\n --vvd-neutral-tint-color-surface-24dp: linear-gradient(#ffffff33, #ffffff33), #191828;\n --vvd-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #f2f3f91a) drop-shadow(0px 1px 0px #f2f3f91a) drop-shadow(0px -1px 0px #f2f3f91a) drop-shadow(-1px 0px 0px #f2f3f91a);\n --vvd-neutral-tint-shadow-surface-2dp: none;\n --vvd-neutral-tint-shadow-surface-4dp: none;\n --vvd-neutral-tint-shadow-surface-8dp: none;\n --vvd-neutral-tint-shadow-surface-12dp: none;\n --vvd-neutral-tint-shadow-surface-16dp: none;\n --vvd-neutral-tint-shadow-surface-24dp: none;\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-neutral-tint-50: #f2f3f9;\n --vvd-color-neutral-tint-100: #e5e5ec;\n --vvd-color-neutral-tint-200: #cbcbd9;\n --vvd-color-neutral-tint-300: #b2b1c7;\n --vvd-color-neutral-tint-400: #908fae;\n --vvd-color-neutral-tint-500: #727198;\n --vvd-color-neutral-tint-600: #63628d;\n --vvd-color-neutral-tint-700: #494977;\n --vvd-color-neutral-tint-800: #31304f;\n --vvd-color-neutral-tint-900: #191828;\n --vvd-color-neutral-tint-950: #0d0c15;\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-neutral-tint-shadow-surface-0dp: drop-shadow(1px 0px 0px #31304f1a) drop-shadow(0px 1px 0px #31304f1a) drop-shadow(0px -1px 0px #31304f1a) drop-shadow(-1px 0px 0px #31304f1a);\n --vvd-neutral-tint-shadow-surface-2dp: drop-shadow(0px 1px 4px #26044d1a) drop-shadow(0px 1px 2px #26044d0d) drop-shadow(0px 2px 1px #26044d0d);\n --vvd-neutral-tint-shadow-surface-4dp: drop-shadow(0px 2px 8px #26044d1a) drop-shadow(0px 2px 4px #26044d0d) drop-shadow(0px 4px 2px #26044d0d);\n --vvd-neutral-tint-shadow-surface-8dp: drop-shadow(0px 2px 16px #26044d1a) drop-shadow(0px 8px 8px #26044d0d) drop-shadow(0px 4px 4px #26044d0d);\n --vvd-neutral-tint-shadow-surface-12dp: drop-shadow(0px 4px 24px #26044d1a) drop-shadow(0px 12px 16px #26044d0d) drop-shadow(0px 6px 8px #26044d0d);\n --vvd-neutral-tint-shadow-surface-16dp: drop-shadow(0px 6px 32px #26044d1a) drop-shadow(0px 16px 24px #26044d0d) drop-shadow(0px 8px 12px #26044d0d);\n --vvd-neutral-tint-shadow-surface-24dp: drop-shadow(0px 12px 48px #26044d33) drop-shadow(0px 24px 32px #26044d0d) drop-shadow(0px 12px 16px #26044d0d);\n}\n";
|
|
14615
14909
|
|
|
14616
14910
|
const fontsSpeziaVariableCss = "@font-face {\n font-display: block;\n font-family: SpeziaCompleteVariableUpright;\n font-stretch: 50% 200%;\n font-weight: 1 1000;\n src: url(\"https://fonts.resources.vonage.com/fonts/v2/SpeziaCompleteVariableUprightWeb.woff2\") format(\"woff2\");\n}\n@font-face {\n font-display: block;\n font-family: SpeziaMonoCompleteVariable;\n font-stretch: 50% 200%;\n font-weight: 1 1000;\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";
|
|
14617
14911
|
|
|
14618
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on
|
|
14912
|
+
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 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";
|
|
14619
14913
|
|
|
14620
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on
|
|
14914
|
+
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 GMT\n */\n.vvd-root {\n background-color: var(--vvd-color-canvas);\n color: var(--vvd-color-canvas-text);\n color-scheme: var(--vvd-color-scheme);\n}\n\n.vvd-scrollbar {\n --scrollbar-track-color: transparent;\n --scrollbar-thumb-color: color-mix(in srgb, var(--vvd-color-neutral-950), transparent 70%);\n}\n.vvd-scrollbar {\n scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);\n scrollbar-width: thin;\n}\n.vvd-scrollbar ::-webkit-scrollbar {\n width: 4px;\n}\n.vvd-scrollbar ::-webkit-scrollbar-track {\n background: var(--scrollbar-track-color);\n}\n.vvd-scrollbar ::-webkit-scrollbar-thumb {\n border: 0;\n border-radius: 4px;\n background-color: var(--scrollbar-fallback-track-color, var(--scrollbar-thumb-color));\n}\n\n.vvd-neutral-tint-elevation {\n --_vvd-tinted-color-surface-0dp: var(--vvd-neutral-tint-color-surface-0dp);\n --_vvd-tinted-color-surface-2dp: var(--vvd-neutral-tint-color-surface-2dp);\n --_vvd-tinted-color-surface-4dp: var(--vvd-neutral-tint-color-surface-4dp);\n --_vvd-tinted-color-surface-8dp: var(--vvd-neutral-tint-color-surface-8dp);\n --_vvd-tinted-color-surface-12dp: var(--vvd-neutral-tint-color-surface-12dp);\n --_vvd-tinted-color-surface-16dp: var(--vvd-neutral-tint-color-surface-16dp);\n --_vvd-tinted-color-surface-24dp: var(--vvd-neutral-tint-color-surface-24dp);\n --_vvd-tinted-shadow-surface-0dp: var(--vvd-neutral-tint-shadow-surface-0dp);\n --_vvd-tinted-shadow-surface-2dp: var(--vvd-neutral-tint-shadow-surface-2dp);\n --_vvd-tinted-shadow-surface-4dp: var(--vvd-neutral-tint-shadow-surface-4dp);\n --_vvd-tinted-shadow-surface-8dp: var(--vvd-neutral-tint-shadow-surface-8dp);\n --_vvd-tinted-shadow-surface-12dp: var(\n \t--vvd-neutral-tint-shadow-surface-12dp\n );\n --_vvd-tinted-shadow-surface-16dp: var(\n \t--vvd-neutral-tint-shadow-surface-16dp\n );\n --_vvd-tinted-shadow-surface-24dp: var(\n \t--vvd-neutral-tint-shadow-surface-24dp\n );\n}\n.vvd-neutral-tint-elevation > * {\n --_vvd-tinted-color-surface-0dp: var(--vvd-color-surface-0dp);\n --_vvd-tinted-color-surface-2dp: var(--vvd-color-surface-2dp);\n --_vvd-tinted-color-surface-4dp: var(--vvd-color-surface-4dp);\n --_vvd-tinted-color-surface-8dp: var(--vvd-color-surface-8dp);\n --_vvd-tinted-color-surface-12dp: var(--vvd-color-surface-12dp);\n --_vvd-tinted-color-surface-16dp: var(--vvd-color-surface-16dp);\n --_vvd-tinted-color-surface-24dp: var(--vvd-color-surface-24dp);\n --_vvd-tinted-shadow-surface-0dp: var(--vvd-shadow-surface-0dp);\n --_vvd-tinted-shadow-surface-2dp: var(--vvd-shadow-surface-2dp);\n --_vvd-tinted-shadow-surface-4dp: var(--vvd-shadow-surface-4dp);\n --_vvd-tinted-shadow-surface-8dp: var(--vvd-shadow-surface-8dp);\n --_vvd-tinted-shadow-surface-12dp: var(--vvd-shadow-surface-12dp);\n --_vvd-tinted-shadow-surface-16dp: var(--vvd-shadow-surface-16dp);\n --_vvd-tinted-shadow-surface-24dp: var(--vvd-shadow-surface-24dp);\n}\n";
|
|
14621
14915
|
|
|
14622
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on
|
|
14916
|
+
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Fri, 12 Sep 2025 16:11:38 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 -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 text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\n}\n.vvd-root:not(:root) {\n font: var(--vvd-typography-base);\n font-feature-settings: \"kern\"; /* turns on 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 text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\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 position: relative;\n font: var(--vvd-typography-base-condensed);\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n.vvd-root sub {\n bottom: -0.25em;\n}\n.vvd-root sup {\n top: -0.5em;\n}\n";
|
|
14623
14917
|
|
|
14624
14918
|
const theme = {
|
|
14625
14919
|
name: "core/theme",
|
|
@@ -14718,4 +15012,4 @@ const vividVue = {
|
|
|
14718
15012
|
};
|
|
14719
15013
|
const vivid3 = vividVue;
|
|
14720
15014
|
|
|
14721
|
-
export { Icon, VAccordion, VAccordionItem, VActionGroup, VAlert, VAudioPlayer, VAvatar, VBadge, VBanner, VBreadcrumb, VBreadcrumbItem, VButton, VCalendar, VCalendarEvent, VCard, VCheckbox, VCombobox, VDataGrid, VDataGridCell, VDataGridRow, VDatePicker, VDateRangePicker, VDateTimePicker, VDialPad, VDialog, VDivider, VEmptyState, VFab, VFilePicker, VHeader, VIcon, VLayout, VMenu, VMenuItem, VNav, VNavDisclosure, VNavItem, VNote, VNumberField, VOption, VPagination, VProgress, VProgressRing, VRadio, VRadioGroup, VRangeSlider, VRichTextEditor, VSearchableSelect, VSelect, VSelectableBox, VSideDrawer, VSlider, VSplitButton, VSwitch, VTab, VTabPanel, VTabs, VTag, VTagGroup, VTextArea, VTextField, VTimePicker, VToggletip, VTooltip, VTreeItem, VTreeView, VVideoPlayer, optionalStyles, setCustomComponentPrefix, vivid3, vividVue };
|
|
15015
|
+
export { Icon, VAccordion, VAccordionItem, VActionGroup, VAlert, VAudioPlayer, VAvatar, VBadge, VBanner, VBreadcrumb, VBreadcrumbItem, VButton, VCalendar, VCalendarEvent, VCard, VCheckbox, VCombobox, VDataGrid, VDataGridCell, VDataGridRow, VDatePicker, VDateRangePicker, VDateTimePicker, VDialPad, VDialog, VDivider, VEmptyState, VFab, VFilePicker, VHeader, VIcon, VLayout, VMenu, VMenuItem, VNav, VNavDisclosure, VNavItem, VNote, VNumberField, VOption, VPagination, VProgress, VProgressRing, VRadio, VRadioGroup, VRangeSlider, VRichTextEditor, VSearchableSelect, VSelect, VSelectableBox, VSideDrawer, VSimpleColorPicker, VSlider, VSplitButton, VSwitch, VTab, VTabPanel, VTabs, VTag, VTagGroup, VTextArea, VTextField, VTimePicker, VToggletip, VTooltip, VTreeItem, VTreeView, VVideoPlayer, optionalStyles, setCustomComponentPrefix, vivid3, vividVue };
|