@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.cjs
CHANGED
|
@@ -1977,6 +1977,13 @@ const VButton = vue.defineComponent({
|
|
|
1977
1977
|
checkValidity() {
|
|
1978
1978
|
return this.element?.checkValidity();
|
|
1979
1979
|
},
|
|
1980
|
+
/**
|
|
1981
|
+
* Handles click events.
|
|
1982
|
+
* Prevents interaction when disabled or pending.
|
|
1983
|
+
*/
|
|
1984
|
+
clickHandler(event) {
|
|
1985
|
+
return this.element?.clickHandler(event);
|
|
1986
|
+
},
|
|
1980
1987
|
/**
|
|
1981
1988
|
* Return the current validity of the element.
|
|
1982
1989
|
* If false, fires an invalid event at the element.
|
|
@@ -5490,6 +5497,13 @@ const VFab = vue.defineComponent({
|
|
|
5490
5497
|
checkValidity() {
|
|
5491
5498
|
return this.element?.checkValidity();
|
|
5492
5499
|
},
|
|
5500
|
+
/**
|
|
5501
|
+
* Handles click events.
|
|
5502
|
+
* Prevents interaction when disabled.
|
|
5503
|
+
*/
|
|
5504
|
+
clickHandler(event) {
|
|
5505
|
+
return this.element?.clickHandler(event);
|
|
5506
|
+
},
|
|
5493
5507
|
/**
|
|
5494
5508
|
* Return the current validity of the element.
|
|
5495
5509
|
* If false, fires an invalid event at the element.
|
|
@@ -5659,11 +5673,11 @@ const VFilePicker = vue.defineComponent({
|
|
|
5659
5673
|
*/
|
|
5660
5674
|
label: { type: String, default: void 0 },
|
|
5661
5675
|
/**
|
|
5662
|
-
* The
|
|
5676
|
+
* The maximum file size (in megabytes) for each file.
|
|
5663
5677
|
*/
|
|
5664
5678
|
maxFileSize: { type: Number, default: void 0 },
|
|
5665
5679
|
/**
|
|
5666
|
-
* The max files that can be selected.
|
|
5680
|
+
* The max number of files that can be selected. Additional files will be rejected.
|
|
5667
5681
|
*/
|
|
5668
5682
|
maxFiles: { type: Number, default: void 0 },
|
|
5669
5683
|
/**
|
|
@@ -5682,7 +5696,7 @@ const VFilePicker = vue.defineComponent({
|
|
|
5682
5696
|
*/
|
|
5683
5697
|
required: { type: Boolean, default: void 0 },
|
|
5684
5698
|
/**
|
|
5685
|
-
*
|
|
5699
|
+
* Whether to allow only a single file. Subsequent added file will replace the current file.
|
|
5686
5700
|
*/
|
|
5687
5701
|
singleFile: { type: Boolean, default: void 0 },
|
|
5688
5702
|
/**
|
|
@@ -5704,7 +5718,7 @@ const VFilePicker = vue.defineComponent({
|
|
|
5704
5718
|
*/
|
|
5705
5719
|
"blur",
|
|
5706
5720
|
/**
|
|
5707
|
-
* Emitted when
|
|
5721
|
+
* Emitted when files are added or removed.
|
|
5708
5722
|
* @type {CustomEvent<undefined>}
|
|
5709
5723
|
*/
|
|
5710
5724
|
"change",
|
|
@@ -5735,42 +5749,12 @@ const VFilePicker = vue.defineComponent({
|
|
|
5735
5749
|
"keyup"
|
|
5736
5750
|
],
|
|
5737
5751
|
methods: {
|
|
5738
|
-
acceptChanged(_oldValue, newValue) {
|
|
5739
|
-
return this.element?.acceptChanged(_oldValue, newValue);
|
|
5740
|
-
},
|
|
5741
5752
|
/**
|
|
5742
5753
|
* Return the current validity of the element.
|
|
5743
5754
|
*/
|
|
5744
5755
|
checkValidity() {
|
|
5745
5756
|
return this.element?.checkValidity();
|
|
5746
5757
|
},
|
|
5747
|
-
fileTooBigErrorChanged(_oldValue, newValue) {
|
|
5748
|
-
return this.element?.fileTooBigErrorChanged(_oldValue, newValue);
|
|
5749
|
-
},
|
|
5750
|
-
formResetCallback() {
|
|
5751
|
-
return this.element?.formResetCallback();
|
|
5752
|
-
},
|
|
5753
|
-
invalidFileTypeErrorChanged(_oldValue, newValue) {
|
|
5754
|
-
return this.element?.invalidFileTypeErrorChanged(
|
|
5755
|
-
_oldValue,
|
|
5756
|
-
newValue
|
|
5757
|
-
);
|
|
5758
|
-
},
|
|
5759
|
-
maxFileSizeChanged(_oldValue, newValue) {
|
|
5760
|
-
return this.element?.maxFileSizeChanged(_oldValue, newValue);
|
|
5761
|
-
},
|
|
5762
|
-
maxFilesChanged(_oldValue, newValue) {
|
|
5763
|
-
return this.element?.maxFilesChanged(_oldValue, newValue);
|
|
5764
|
-
},
|
|
5765
|
-
maxFilesExceededErrorChanged(_oldValue, newValue) {
|
|
5766
|
-
return this.element?.maxFilesExceededErrorChanged(
|
|
5767
|
-
_oldValue,
|
|
5768
|
-
newValue
|
|
5769
|
-
);
|
|
5770
|
-
},
|
|
5771
|
-
nameChanged(previous, next) {
|
|
5772
|
-
return this.element?.nameChanged(previous, next);
|
|
5773
|
-
},
|
|
5774
5758
|
/**
|
|
5775
5759
|
* Removes all files from the File Picker.
|
|
5776
5760
|
*/
|
|
@@ -5783,15 +5767,6 @@ const VFilePicker = vue.defineComponent({
|
|
|
5783
5767
|
*/
|
|
5784
5768
|
reportValidity() {
|
|
5785
5769
|
return this.element?.reportValidity();
|
|
5786
|
-
},
|
|
5787
|
-
singleFileChanged() {
|
|
5788
|
-
return this.element?.singleFileChanged();
|
|
5789
|
-
},
|
|
5790
|
-
/**
|
|
5791
|
-
* {@inheritDoc (FormAssociated:interface).validate}
|
|
5792
|
-
*/
|
|
5793
|
-
validate() {
|
|
5794
|
-
return this.element?.validate();
|
|
5795
5770
|
}
|
|
5796
5771
|
},
|
|
5797
5772
|
setup(props, ctx) {
|
|
@@ -6350,6 +6325,10 @@ const VMenu = vue.defineComponent({
|
|
|
6350
6325
|
* indicates whether the menu will automatically close when focus moves away from it.
|
|
6351
6326
|
*/
|
|
6352
6327
|
autoDismiss: { type: Boolean, default: void 0 },
|
|
6328
|
+
/**
|
|
6329
|
+
* Adds offset to the popup
|
|
6330
|
+
*/
|
|
6331
|
+
offset: { type: Number, default: void 0 },
|
|
6353
6332
|
/**
|
|
6354
6333
|
* indicates whether the menu is open
|
|
6355
6334
|
*/
|
|
@@ -6449,6 +6428,7 @@ const VMenu = vue.defineComponent({
|
|
|
6449
6428
|
ref: "element",
|
|
6450
6429
|
attrs: {
|
|
6451
6430
|
...this.autoDismiss !== void 0 ? { "auto-dismiss": this.autoDismiss } : {},
|
|
6431
|
+
...this.offset !== void 0 ? { offset: this.offset } : {},
|
|
6452
6432
|
...this.open !== void 0 ? { open: this.open } : {},
|
|
6453
6433
|
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
6454
6434
|
...this.positionStrategy !== void 0 ? { "position-strategy": this.positionStrategy } : {},
|
|
@@ -6504,6 +6484,7 @@ const VMenu = vue.defineComponent({
|
|
|
6504
6484
|
...handleVue3Props({
|
|
6505
6485
|
...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
|
|
6506
6486
|
...this.autoDismiss !== void 0 && this.autoDismiss !== false ? { "^auto-dismiss": this.autoDismiss } : {},
|
|
6487
|
+
...this.offset !== void 0 ? { "^offset": this.offset } : {},
|
|
6507
6488
|
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
6508
6489
|
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
6509
6490
|
...this.positionStrategy !== void 0 ? { "^position-strategy": this.positionStrategy } : {},
|
|
@@ -7799,6 +7780,7 @@ const VOption = vue.defineComponent({
|
|
|
7799
7780
|
default: void 0
|
|
7800
7781
|
},
|
|
7801
7782
|
text: { type: String, default: void 0 },
|
|
7783
|
+
textSecondary: { type: String, default: void 0 },
|
|
7802
7784
|
/**
|
|
7803
7785
|
* The value of the option.
|
|
7804
7786
|
*/
|
|
@@ -7859,6 +7841,7 @@ const VOption = vue.defineComponent({
|
|
|
7859
7841
|
...this.selected !== void 0 ? { "current-selected": this.selected } : {},
|
|
7860
7842
|
...this.tagConnotation !== void 0 ? { "tag-connotation": this.tagConnotation } : {},
|
|
7861
7843
|
...this.text !== void 0 ? { text: this.text } : {},
|
|
7844
|
+
...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {},
|
|
7862
7845
|
...this.value !== void 0 ? { value: this.value } : {}
|
|
7863
7846
|
},
|
|
7864
7847
|
class: "vvd-component",
|
|
@@ -7886,7 +7869,9 @@ const VOption = vue.defineComponent({
|
|
|
7886
7869
|
[
|
|
7887
7870
|
this.$slots.default,
|
|
7888
7871
|
// @slot icon The preferred way to add an icon to the component.
|
|
7889
|
-
handleNamedSlotV2("icon", this.$slots["icon"])
|
|
7872
|
+
handleNamedSlotV2("icon", this.$slots["icon"]),
|
|
7873
|
+
// @slot trailing-meta For additional elements at the end of the Option.
|
|
7874
|
+
handleNamedSlotV2("trailing-meta", this.$slots["trailing-meta"])
|
|
7890
7875
|
]
|
|
7891
7876
|
);
|
|
7892
7877
|
}
|
|
@@ -7906,6 +7891,7 @@ const VOption = vue.defineComponent({
|
|
|
7906
7891
|
...this.selected !== void 0 && this.selected !== false ? { "^current-selected": this.selected } : {},
|
|
7907
7892
|
...this.tagConnotation !== void 0 ? { "^tag-connotation": this.tagConnotation } : {},
|
|
7908
7893
|
...this.text !== void 0 ? { "^text": this.text } : {},
|
|
7894
|
+
...this.textSecondary !== void 0 ? { "^text-secondary": this.textSecondary } : {},
|
|
7909
7895
|
...this.value !== void 0 ? { "^value": this.value } : {}
|
|
7910
7896
|
}),
|
|
7911
7897
|
onBlur: (event) => {
|
|
@@ -7931,7 +7917,9 @@ const VOption = vue.defineComponent({
|
|
|
7931
7917
|
// @ts-ignore
|
|
7932
7918
|
this.$slots.default && this.$slots.default(),
|
|
7933
7919
|
// @slot icon The preferred way to add an icon to the component.
|
|
7934
|
-
handleNamedSlotV3("icon", this.$slots["icon"])
|
|
7920
|
+
handleNamedSlotV3("icon", this.$slots["icon"]),
|
|
7921
|
+
// @slot trailing-meta For additional elements at the end of the Option.
|
|
7922
|
+
handleNamedSlotV3("trailing-meta", this.$slots["trailing-meta"])
|
|
7935
7923
|
]
|
|
7936
7924
|
);
|
|
7937
7925
|
}
|
|
@@ -7939,9 +7927,14 @@ const VOption = vue.defineComponent({
|
|
|
7939
7927
|
|
|
7940
7928
|
const VPagination = vue.defineComponent({
|
|
7941
7929
|
name: "VPagination",
|
|
7930
|
+
model: isVue2 ? {
|
|
7931
|
+
prop: "modelValue",
|
|
7932
|
+
event: "update:modelValue"
|
|
7933
|
+
} : void 0,
|
|
7942
7934
|
props: {
|
|
7943
7935
|
navIcons: { type: Boolean, default: void 0 },
|
|
7944
7936
|
selectedIndex: { type: Number, default: void 0 },
|
|
7937
|
+
modelValue: { type: Number, default: void 0 },
|
|
7945
7938
|
/**
|
|
7946
7939
|
* The shape the pagination should have.
|
|
7947
7940
|
*/
|
|
@@ -7990,7 +7983,12 @@ const VPagination = vue.defineComponent({
|
|
|
7990
7983
|
* Fires when the page changes.
|
|
7991
7984
|
* @type {CustomEvent<{selectedIndex: number, total: number, oldIndex: number}>}
|
|
7992
7985
|
*/
|
|
7993
|
-
"pagination-change"
|
|
7986
|
+
"pagination-change",
|
|
7987
|
+
/**
|
|
7988
|
+
* Fires when the modelValue value changes
|
|
7989
|
+
* @type {number}
|
|
7990
|
+
*/
|
|
7991
|
+
"update:modelValue"
|
|
7994
7992
|
],
|
|
7995
7993
|
methods: {
|
|
7996
7994
|
paginationButtonsChanged(_, newValue) {
|
|
@@ -8016,7 +8014,7 @@ const VPagination = vue.defineComponent({
|
|
|
8016
8014
|
ref: "element",
|
|
8017
8015
|
attrs: {
|
|
8018
8016
|
...this.navIcons !== void 0 ? { "nav-icons": this.navIcons } : {},
|
|
8019
|
-
...this.selectedIndex !== void 0 ? { "selected-index": this.selectedIndex } : {},
|
|
8017
|
+
...(this.modelValue ?? this.selectedIndex) !== void 0 ? { "selected-index": this.modelValue ?? this.selectedIndex } : {},
|
|
8020
8018
|
...this.shape !== void 0 ? { shape: this.shape } : {},
|
|
8021
8019
|
...this.size !== void 0 ? { size: this.size } : {},
|
|
8022
8020
|
...this.total !== void 0 ? { total: this.total } : {}
|
|
@@ -8042,6 +8040,10 @@ const VPagination = vue.defineComponent({
|
|
|
8042
8040
|
this.$emit("keyup", event);
|
|
8043
8041
|
},
|
|
8044
8042
|
"pagination-change": (event) => {
|
|
8043
|
+
this.$emit(
|
|
8044
|
+
"update:modelValue",
|
|
8045
|
+
event.currentTarget.selectedIndex
|
|
8046
|
+
);
|
|
8045
8047
|
this.$emit("pagination-change", event);
|
|
8046
8048
|
}
|
|
8047
8049
|
}
|
|
@@ -8056,7 +8058,7 @@ const VPagination = vue.defineComponent({
|
|
|
8056
8058
|
class: "vvd-component",
|
|
8057
8059
|
...handleVue3Props({
|
|
8058
8060
|
...this.navIcons !== void 0 && this.navIcons !== false ? { "^nav-icons": this.navIcons } : {},
|
|
8059
|
-
...this.selectedIndex !== void 0 ? { "^selected-index": this.selectedIndex } : {},
|
|
8061
|
+
...(this.modelValue ?? this.selectedIndex) !== void 0 ? { "^selected-index": this.modelValue ?? this.selectedIndex } : {},
|
|
8060
8062
|
...this.shape !== void 0 ? { "^shape": this.shape } : {},
|
|
8061
8063
|
...this.size !== void 0 ? { "^size": this.size } : {},
|
|
8062
8064
|
...this.total !== void 0 ? { "^total": this.total } : {}
|
|
@@ -8080,6 +8082,7 @@ const VPagination = vue.defineComponent({
|
|
|
8080
8082
|
this.$emit("keyup", event);
|
|
8081
8083
|
},
|
|
8082
8084
|
onPaginationChange: (event) => {
|
|
8085
|
+
this.$emit("update:modelValue", event.currentTarget.selectedIndex);
|
|
8083
8086
|
this.$emit("pagination-change", event);
|
|
8084
8087
|
}
|
|
8085
8088
|
},
|
|
@@ -8832,6 +8835,10 @@ const VRangeSlider = vue.defineComponent({
|
|
|
8832
8835
|
* and don't support IDL attribute binding.
|
|
8833
8836
|
*/
|
|
8834
8837
|
end: { type: String, default: void 0 },
|
|
8838
|
+
/**
|
|
8839
|
+
* The end property, typed as a number.
|
|
8840
|
+
*/
|
|
8841
|
+
endAsNumber: { type: Number, default: void 0 },
|
|
8835
8842
|
/**
|
|
8836
8843
|
* The initial end value. This value sets the `end` property
|
|
8837
8844
|
* only when the `end` property has not been explicitly set.
|
|
@@ -8890,6 +8897,10 @@ const VRangeSlider = vue.defineComponent({
|
|
|
8890
8897
|
* and don't support IDL attribute binding.
|
|
8891
8898
|
*/
|
|
8892
8899
|
start: { type: String, default: void 0 },
|
|
8900
|
+
/**
|
|
8901
|
+
* The start property, typed as a number.
|
|
8902
|
+
*/
|
|
8903
|
+
startAsNumber: { type: Number, default: void 0 },
|
|
8893
8904
|
/**
|
|
8894
8905
|
* Value to increment or decrement via arrow keys, mouse click or drag.
|
|
8895
8906
|
*/
|
|
@@ -8950,11 +8961,21 @@ const VRangeSlider = vue.defineComponent({
|
|
|
8950
8961
|
* @type {string}
|
|
8951
8962
|
*/
|
|
8952
8963
|
"update:end",
|
|
8964
|
+
/**
|
|
8965
|
+
* Fires when the endAsNumber value changes
|
|
8966
|
+
* @type {number}
|
|
8967
|
+
*/
|
|
8968
|
+
"update:endAsNumber",
|
|
8953
8969
|
/**
|
|
8954
8970
|
* Fires when the start value changes
|
|
8955
8971
|
* @type {string}
|
|
8956
8972
|
*/
|
|
8957
|
-
"update:start"
|
|
8973
|
+
"update:start",
|
|
8974
|
+
/**
|
|
8975
|
+
* Fires when the startAsNumber value changes
|
|
8976
|
+
* @type {number}
|
|
8977
|
+
*/
|
|
8978
|
+
"update:startAsNumber"
|
|
8958
8979
|
],
|
|
8959
8980
|
methods: {
|
|
8960
8981
|
/**
|
|
@@ -9010,6 +9031,10 @@ const VRangeSlider = vue.defineComponent({
|
|
|
9010
9031
|
...this.value !== void 0 ? { "current-value": this.value } : {}
|
|
9011
9032
|
},
|
|
9012
9033
|
class: "vvd-component",
|
|
9034
|
+
domProps: {
|
|
9035
|
+
...this.endAsNumber !== void 0 ? { endAsNumber: this.endAsNumber } : {},
|
|
9036
|
+
...this.startAsNumber !== void 0 ? { startAsNumber: this.startAsNumber } : {}
|
|
9037
|
+
},
|
|
9013
9038
|
on: {
|
|
9014
9039
|
blur: (event) => {
|
|
9015
9040
|
this.$emit("blur", event);
|
|
@@ -9028,10 +9053,15 @@ const VRangeSlider = vue.defineComponent({
|
|
|
9028
9053
|
},
|
|
9029
9054
|
"input:end": (event) => {
|
|
9030
9055
|
this.$emit("update:end", event.currentTarget.end);
|
|
9056
|
+
this.$emit("update:endAsNumber", event.currentTarget.endAsNumber);
|
|
9031
9057
|
this.$emit("input:end", event);
|
|
9032
9058
|
},
|
|
9033
9059
|
"input:start": (event) => {
|
|
9034
9060
|
this.$emit("update:start", event.currentTarget.start);
|
|
9061
|
+
this.$emit(
|
|
9062
|
+
"update:startAsNumber",
|
|
9063
|
+
event.currentTarget.startAsNumber
|
|
9064
|
+
);
|
|
9035
9065
|
this.$emit("input:start", event);
|
|
9036
9066
|
},
|
|
9037
9067
|
keydown: (event) => {
|
|
@@ -9056,6 +9086,7 @@ const VRangeSlider = vue.defineComponent({
|
|
|
9056
9086
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
9057
9087
|
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
9058
9088
|
...this.end !== void 0 ? { "^current-end": this.end } : {},
|
|
9089
|
+
...this.endAsNumber !== void 0 ? { ".endAsNumber": this.endAsNumber } : {},
|
|
9059
9090
|
...this.initialEnd !== void 0 ? { "^end": this.initialEnd } : {},
|
|
9060
9091
|
...this.initialStart !== void 0 ? { "^start": this.initialStart } : {},
|
|
9061
9092
|
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
@@ -9068,6 +9099,7 @@ const VRangeSlider = vue.defineComponent({
|
|
|
9068
9099
|
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
9069
9100
|
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
9070
9101
|
...this.start !== void 0 ? { "^current-start": this.start } : {},
|
|
9102
|
+
...this.startAsNumber !== void 0 ? { ".startAsNumber": this.startAsNumber } : {},
|
|
9071
9103
|
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
9072
9104
|
...this.value !== void 0 ? { "^current-value": this.value } : {}
|
|
9073
9105
|
}),
|
|
@@ -9088,10 +9120,12 @@ const VRangeSlider = vue.defineComponent({
|
|
|
9088
9120
|
},
|
|
9089
9121
|
"onInput:end": (event) => {
|
|
9090
9122
|
this.$emit("update:end", event.currentTarget.end);
|
|
9123
|
+
this.$emit("update:endAsNumber", event.currentTarget.endAsNumber);
|
|
9091
9124
|
this.$emit("input:end", event);
|
|
9092
9125
|
},
|
|
9093
9126
|
"onInput:start": (event) => {
|
|
9094
9127
|
this.$emit("update:start", event.currentTarget.start);
|
|
9128
|
+
this.$emit("update:startAsNumber", event.currentTarget.startAsNumber);
|
|
9095
9129
|
this.$emit("input:start", event);
|
|
9096
9130
|
},
|
|
9097
9131
|
onKeydown: (event) => {
|
|
@@ -10226,6 +10260,233 @@ const VSideDrawer = vue.defineComponent({
|
|
|
10226
10260
|
}
|
|
10227
10261
|
});
|
|
10228
10262
|
|
|
10263
|
+
const VSimpleColorPicker = vue.defineComponent({
|
|
10264
|
+
name: "VSimpleColorPicker",
|
|
10265
|
+
model: isVue2 ? {
|
|
10266
|
+
prop: "modelValue",
|
|
10267
|
+
event: "update:modelValue"
|
|
10268
|
+
} : void 0,
|
|
10269
|
+
props: {
|
|
10270
|
+
/**
|
|
10271
|
+
* ID or direct reference to the component's anchor element.
|
|
10272
|
+
*/
|
|
10273
|
+
anchor: {
|
|
10274
|
+
type: [String, HTMLElement],
|
|
10275
|
+
default: void 0
|
|
10276
|
+
},
|
|
10277
|
+
/**
|
|
10278
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
10279
|
+
*/
|
|
10280
|
+
disabled: { type: Boolean, default: void 0 },
|
|
10281
|
+
/**
|
|
10282
|
+
* The default value of the element. This value sets the `value` property
|
|
10283
|
+
* only when the `value` property has not been explicitly set.
|
|
10284
|
+
*/
|
|
10285
|
+
initialValue: { type: String, default: void 0 },
|
|
10286
|
+
/**
|
|
10287
|
+
* The label for the form element.
|
|
10288
|
+
*/
|
|
10289
|
+
label: { type: String, default: void 0 },
|
|
10290
|
+
/**
|
|
10291
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
10292
|
+
*/
|
|
10293
|
+
name: { type: String, default: void 0 },
|
|
10294
|
+
/**
|
|
10295
|
+
* Indicates whether the popup is open
|
|
10296
|
+
*/
|
|
10297
|
+
open: { type: Boolean, default: void 0 },
|
|
10298
|
+
/**
|
|
10299
|
+
* Placement of the popup with color swatches
|
|
10300
|
+
*/
|
|
10301
|
+
placement: {
|
|
10302
|
+
type: String,
|
|
10303
|
+
default: void 0
|
|
10304
|
+
},
|
|
10305
|
+
/**
|
|
10306
|
+
* Require the field to be completed prior to form submission.
|
|
10307
|
+
*/
|
|
10308
|
+
required: { type: Boolean, default: void 0 },
|
|
10309
|
+
/**
|
|
10310
|
+
* Number of swatches per row for grid layout
|
|
10311
|
+
*/
|
|
10312
|
+
swatchesPerRow: { type: Number, default: void 0 },
|
|
10313
|
+
/**
|
|
10314
|
+
* The current value of the element.
|
|
10315
|
+
*/
|
|
10316
|
+
value: { type: String, default: void 0 },
|
|
10317
|
+
/**
|
|
10318
|
+
* The current value of the element.
|
|
10319
|
+
*/
|
|
10320
|
+
modelValue: { type: String, default: void 0 }
|
|
10321
|
+
},
|
|
10322
|
+
emits: [
|
|
10323
|
+
/**
|
|
10324
|
+
* Fires when the element loses focus.
|
|
10325
|
+
* @type {FocusEvent}
|
|
10326
|
+
*/
|
|
10327
|
+
"blur",
|
|
10328
|
+
/**
|
|
10329
|
+
* Fires when the value changes
|
|
10330
|
+
* @type {CustomEvent<undefined>}
|
|
10331
|
+
*/
|
|
10332
|
+
"change",
|
|
10333
|
+
/**
|
|
10334
|
+
* 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.
|
|
10335
|
+
* @type {MouseEvent}
|
|
10336
|
+
*/
|
|
10337
|
+
"click",
|
|
10338
|
+
/**
|
|
10339
|
+
* Fires when the element receives focus.
|
|
10340
|
+
* @type {FocusEvent}
|
|
10341
|
+
*/
|
|
10342
|
+
"focus",
|
|
10343
|
+
/**
|
|
10344
|
+
* Fires when the value of an element has been changed.
|
|
10345
|
+
* @type {Event}
|
|
10346
|
+
*/
|
|
10347
|
+
"input",
|
|
10348
|
+
/**
|
|
10349
|
+
* Fires when a key is pressed.
|
|
10350
|
+
* @type {KeyboardEvent}
|
|
10351
|
+
*/
|
|
10352
|
+
"keydown",
|
|
10353
|
+
/**
|
|
10354
|
+
* Fires when a key is released.
|
|
10355
|
+
* @type {KeyboardEvent}
|
|
10356
|
+
*/
|
|
10357
|
+
"keyup",
|
|
10358
|
+
/**
|
|
10359
|
+
* Fires when the modelValue value changes
|
|
10360
|
+
* @type {string}
|
|
10361
|
+
*/
|
|
10362
|
+
"update:modelValue"
|
|
10363
|
+
],
|
|
10364
|
+
methods: {
|
|
10365
|
+
/**
|
|
10366
|
+
* Return the current validity of the element.
|
|
10367
|
+
*/
|
|
10368
|
+
checkValidity() {
|
|
10369
|
+
return this.element?.checkValidity();
|
|
10370
|
+
},
|
|
10371
|
+
/**
|
|
10372
|
+
* Return the current validity of the element.
|
|
10373
|
+
* If false, fires an invalid event at the element.
|
|
10374
|
+
*/
|
|
10375
|
+
reportValidity() {
|
|
10376
|
+
return this.element?.reportValidity();
|
|
10377
|
+
}
|
|
10378
|
+
},
|
|
10379
|
+
setup(props, ctx) {
|
|
10380
|
+
const componentName = registerComponent(
|
|
10381
|
+
"simple-color-picker",
|
|
10382
|
+
vivid.registerSimpleColorPicker
|
|
10383
|
+
);
|
|
10384
|
+
const element = vue.ref(null);
|
|
10385
|
+
return { componentName, element };
|
|
10386
|
+
},
|
|
10387
|
+
render() {
|
|
10388
|
+
if (isVue2) {
|
|
10389
|
+
return vue.h(
|
|
10390
|
+
this.componentName,
|
|
10391
|
+
{
|
|
10392
|
+
ref: "element",
|
|
10393
|
+
attrs: {
|
|
10394
|
+
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
10395
|
+
...this.initialValue !== void 0 ? { value: this.initialValue } : {},
|
|
10396
|
+
...this.label !== void 0 ? { label: this.label } : {},
|
|
10397
|
+
...this.name !== void 0 ? { name: this.name } : {},
|
|
10398
|
+
...this.open !== void 0 ? { open: this.open } : {},
|
|
10399
|
+
...this.placement !== void 0 ? { placement: this.placement } : {},
|
|
10400
|
+
...this.required !== void 0 ? { required: this.required } : {},
|
|
10401
|
+
...this.swatchesPerRow !== void 0 ? { "swatches-per-row": this.swatchesPerRow } : {},
|
|
10402
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {}
|
|
10403
|
+
},
|
|
10404
|
+
class: "vvd-component",
|
|
10405
|
+
domProps: {
|
|
10406
|
+
...this.anchor !== void 0 ? { anchor: this.anchor } : {}
|
|
10407
|
+
},
|
|
10408
|
+
on: {
|
|
10409
|
+
blur: (event) => {
|
|
10410
|
+
this.$emit("blur", event);
|
|
10411
|
+
},
|
|
10412
|
+
change: (event) => {
|
|
10413
|
+
this.$emit("change", event);
|
|
10414
|
+
},
|
|
10415
|
+
click: (event) => {
|
|
10416
|
+
this.$emit("click", event);
|
|
10417
|
+
},
|
|
10418
|
+
focus: (event) => {
|
|
10419
|
+
this.$emit("focus", event);
|
|
10420
|
+
},
|
|
10421
|
+
input: (event) => {
|
|
10422
|
+
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10423
|
+
this.$emit("input", event);
|
|
10424
|
+
},
|
|
10425
|
+
keydown: (event) => {
|
|
10426
|
+
this.$emit("keydown", event);
|
|
10427
|
+
},
|
|
10428
|
+
keyup: (event) => {
|
|
10429
|
+
this.$emit("keyup", event);
|
|
10430
|
+
}
|
|
10431
|
+
}
|
|
10432
|
+
},
|
|
10433
|
+
[
|
|
10434
|
+
this.$slots.default,
|
|
10435
|
+
// @slot anchor Slot for attaching the toggle button
|
|
10436
|
+
handleNamedSlotV2("anchor", this.$slots["anchor"])
|
|
10437
|
+
]
|
|
10438
|
+
);
|
|
10439
|
+
}
|
|
10440
|
+
return vue.h(
|
|
10441
|
+
this.componentName,
|
|
10442
|
+
{
|
|
10443
|
+
ref: "element",
|
|
10444
|
+
class: "vvd-component",
|
|
10445
|
+
...handleVue3Props({
|
|
10446
|
+
...this.anchor !== void 0 ? { ".anchor": this.anchor } : {},
|
|
10447
|
+
...this.disabled !== void 0 && this.disabled !== false ? { "^disabled": this.disabled } : {},
|
|
10448
|
+
...this.initialValue !== void 0 ? { "^value": this.initialValue } : {},
|
|
10449
|
+
...this.label !== void 0 ? { "^label": this.label } : {},
|
|
10450
|
+
...this.name !== void 0 ? { "^name": this.name } : {},
|
|
10451
|
+
...this.open !== void 0 && this.open !== false ? { "^open": this.open } : {},
|
|
10452
|
+
...this.placement !== void 0 ? { "^placement": this.placement } : {},
|
|
10453
|
+
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
10454
|
+
...this.swatchesPerRow !== void 0 ? { "^swatches-per-row": this.swatchesPerRow } : {},
|
|
10455
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {}
|
|
10456
|
+
}),
|
|
10457
|
+
onBlur: (event) => {
|
|
10458
|
+
this.$emit("blur", event);
|
|
10459
|
+
},
|
|
10460
|
+
onChange: (event) => {
|
|
10461
|
+
this.$emit("change", event);
|
|
10462
|
+
},
|
|
10463
|
+
onClick: (event) => {
|
|
10464
|
+
this.$emit("click", event);
|
|
10465
|
+
},
|
|
10466
|
+
onFocus: (event) => {
|
|
10467
|
+
this.$emit("focus", event);
|
|
10468
|
+
},
|
|
10469
|
+
onInput: (event) => {
|
|
10470
|
+
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10471
|
+
this.$emit("input", event);
|
|
10472
|
+
},
|
|
10473
|
+
onKeydown: (event) => {
|
|
10474
|
+
this.$emit("keydown", event);
|
|
10475
|
+
},
|
|
10476
|
+
onKeyup: (event) => {
|
|
10477
|
+
this.$emit("keyup", event);
|
|
10478
|
+
}
|
|
10479
|
+
},
|
|
10480
|
+
[
|
|
10481
|
+
// @ts-ignore
|
|
10482
|
+
this.$slots.default && this.$slots.default(),
|
|
10483
|
+
// @slot anchor Slot for attaching the toggle button
|
|
10484
|
+
handleNamedSlotV3("anchor", this.$slots["anchor"])
|
|
10485
|
+
]
|
|
10486
|
+
);
|
|
10487
|
+
}
|
|
10488
|
+
});
|
|
10489
|
+
|
|
10229
10490
|
const VSlider = vue.defineComponent({
|
|
10230
10491
|
name: "VSlider",
|
|
10231
10492
|
model: isVue2 ? {
|
|
@@ -10299,7 +10560,11 @@ const VSlider = vue.defineComponent({
|
|
|
10299
10560
|
/**
|
|
10300
10561
|
* The current value of the element.
|
|
10301
10562
|
*/
|
|
10302
|
-
modelValue: { type: String, default: void 0 }
|
|
10563
|
+
modelValue: { type: String, default: void 0 },
|
|
10564
|
+
/**
|
|
10565
|
+
* The value property, typed as a number.
|
|
10566
|
+
*/
|
|
10567
|
+
valueAsNumber: { type: Number, default: void 0 }
|
|
10303
10568
|
},
|
|
10304
10569
|
emits: [
|
|
10305
10570
|
/**
|
|
@@ -10341,7 +10606,12 @@ const VSlider = vue.defineComponent({
|
|
|
10341
10606
|
* Fires when the modelValue value changes
|
|
10342
10607
|
* @type {string}
|
|
10343
10608
|
*/
|
|
10344
|
-
"update:modelValue"
|
|
10609
|
+
"update:modelValue",
|
|
10610
|
+
/**
|
|
10611
|
+
* Fires when the valueAsNumber value changes
|
|
10612
|
+
* @type {number}
|
|
10613
|
+
*/
|
|
10614
|
+
"update:valueAsNumber"
|
|
10345
10615
|
],
|
|
10346
10616
|
methods: {
|
|
10347
10617
|
/**
|
|
@@ -10407,12 +10677,19 @@ const VSlider = vue.defineComponent({
|
|
|
10407
10677
|
...(this.modelValue ?? this.value) !== void 0 ? { "current-value": this.modelValue ?? this.value } : {}
|
|
10408
10678
|
},
|
|
10409
10679
|
class: "vvd-component",
|
|
10680
|
+
domProps: {
|
|
10681
|
+
...this.valueAsNumber !== void 0 ? { valueAsNumber: this.valueAsNumber } : {}
|
|
10682
|
+
},
|
|
10410
10683
|
on: {
|
|
10411
10684
|
blur: (event) => {
|
|
10412
10685
|
this.$emit("blur", event);
|
|
10413
10686
|
},
|
|
10414
10687
|
change: (event) => {
|
|
10415
10688
|
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10689
|
+
this.$emit(
|
|
10690
|
+
"update:valueAsNumber",
|
|
10691
|
+
event.currentTarget.valueAsNumber
|
|
10692
|
+
);
|
|
10416
10693
|
this.$emit("change", event);
|
|
10417
10694
|
},
|
|
10418
10695
|
click: (event) => {
|
|
@@ -10454,13 +10731,15 @@ const VSlider = vue.defineComponent({
|
|
|
10454
10731
|
...this.readonly !== void 0 && this.readonly !== false ? { "^readonly": this.readonly } : {},
|
|
10455
10732
|
...this.required !== void 0 && this.required !== false ? { "^required": this.required } : {},
|
|
10456
10733
|
...this.step !== void 0 ? { "^step": this.step } : {},
|
|
10457
|
-
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {}
|
|
10734
|
+
...(this.modelValue ?? this.value) !== void 0 ? { "^current-value": this.modelValue ?? this.value } : {},
|
|
10735
|
+
...this.valueAsNumber !== void 0 ? { ".valueAsNumber": this.valueAsNumber } : {}
|
|
10458
10736
|
}),
|
|
10459
10737
|
onBlur: (event) => {
|
|
10460
10738
|
this.$emit("blur", event);
|
|
10461
10739
|
},
|
|
10462
10740
|
onChange: (event) => {
|
|
10463
10741
|
this.$emit("update:modelValue", event.currentTarget.value);
|
|
10742
|
+
this.$emit("update:valueAsNumber", event.currentTarget.valueAsNumber);
|
|
10464
10743
|
this.$emit("change", event);
|
|
10465
10744
|
},
|
|
10466
10745
|
onClick: (event) => {
|
|
@@ -10584,7 +10863,22 @@ const VSplitButton = vue.defineComponent({
|
|
|
10584
10863
|
*/
|
|
10585
10864
|
"keyup"
|
|
10586
10865
|
],
|
|
10587
|
-
methods: {
|
|
10866
|
+
methods: {
|
|
10867
|
+
/**
|
|
10868
|
+
* Handles action click events.
|
|
10869
|
+
* Prevents interaction when disabled or pending.
|
|
10870
|
+
*/
|
|
10871
|
+
handleActionClick(event) {
|
|
10872
|
+
return this.element?.handleActionClick(event);
|
|
10873
|
+
},
|
|
10874
|
+
/**
|
|
10875
|
+
* Handles indicator click events.
|
|
10876
|
+
* Prevents interaction when disabled or pending.
|
|
10877
|
+
*/
|
|
10878
|
+
handleIndicatorClick(event) {
|
|
10879
|
+
return this.element?.handleIndicatorClick(event);
|
|
10880
|
+
}
|
|
10881
|
+
},
|
|
10588
10882
|
setup(props, ctx) {
|
|
10589
10883
|
const componentName = registerComponent(
|
|
10590
10884
|
"split-button",
|
|
@@ -14613,17 +14907,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
14613
14907
|
return Icon2;
|
|
14614
14908
|
})(Icon || {});
|
|
14615
14909
|
|
|
14616
|
-
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";
|
|
14910
|
+
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";
|
|
14617
14911
|
|
|
14618
|
-
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";
|
|
14912
|
+
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";
|
|
14619
14913
|
|
|
14620
14914
|
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";
|
|
14621
14915
|
|
|
14622
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on
|
|
14916
|
+
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";
|
|
14623
14917
|
|
|
14624
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on
|
|
14918
|
+
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";
|
|
14625
14919
|
|
|
14626
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on
|
|
14920
|
+
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";
|
|
14627
14921
|
|
|
14628
14922
|
const theme = {
|
|
14629
14923
|
name: "core/theme",
|
|
@@ -14773,6 +15067,7 @@ exports.VSearchableSelect = VSearchableSelect;
|
|
|
14773
15067
|
exports.VSelect = VSelect;
|
|
14774
15068
|
exports.VSelectableBox = VSelectableBox;
|
|
14775
15069
|
exports.VSideDrawer = VSideDrawer;
|
|
15070
|
+
exports.VSimpleColorPicker = VSimpleColorPicker;
|
|
14776
15071
|
exports.VSlider = VSlider;
|
|
14777
15072
|
exports.VSplitButton = VSplitButton;
|
|
14778
15073
|
exports.VSwitch = VSwitch;
|