@vonage/vivid-vue 4.3.0 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/components/VCheckbox.vue3.d.ts +1 -1
- package/generated/components/VCombobox.vue3.d.ts +1 -1
- package/generated/components/VDatePicker.vue3.d.ts +1 -1
- package/generated/components/VDateRangePicker.vue3.d.ts +2 -2
- package/generated/components/VDialPad.vue3.d.ts +1 -1
- package/generated/components/VDialog.vue2.d.ts +16 -1
- package/generated/components/VDialog.vue3.d.ts +27 -0
- package/generated/components/VEmptyState.vue2.d.ts +30 -0
- package/generated/components/VEmptyState.vue3.d.ts +30 -0
- package/generated/components/VFab.vue2.d.ts +3 -3
- package/generated/components/VFab.vue3.d.ts +3 -3
- package/generated/components/VIcon.vue2.d.ts +3 -3
- package/generated/components/VIcon.vue3.d.ts +3 -3
- package/generated/components/VMenuItem.vue3.d.ts +1 -1
- package/generated/components/VNumberField.vue3.d.ts +1 -1
- package/generated/components/VRadioGroup.vue3.d.ts +1 -1
- package/generated/components/VRangeSlider.vue2.d.ts +15 -0
- package/generated/components/VRangeSlider.vue3.d.ts +17 -2
- package/generated/components/VSelect.vue2.d.ts +1 -0
- package/generated/components/VSelect.vue3.d.ts +2 -1
- package/generated/components/VSideDrawer.vue2.d.ts +1 -1
- package/generated/components/VSideDrawer.vue3.d.ts +1 -1
- package/generated/components/VSlider.vue2.d.ts +15 -0
- package/generated/components/VSlider.vue3.d.ts +16 -1
- package/generated/components/VSwitch.vue3.d.ts +1 -1
- package/generated/components/VTextArea.vue3.d.ts +1 -1
- package/generated/components/VTextField.vue3.d.ts +1 -1
- package/generated/components/VTimePicker.vue3.d.ts +1 -1
- package/index.cjs +94 -31
- package/index.js +94 -31
- package/package.json +2 -2
- package/web-types.json +112 -1867
|
@@ -116,6 +116,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
116
116
|
type: PropType<boolean>;
|
|
117
117
|
default: undefined;
|
|
118
118
|
};
|
|
119
|
+
/**
|
|
120
|
+
* Show current value on the thumb.
|
|
121
|
+
*/
|
|
122
|
+
pin: {
|
|
123
|
+
type: PropType<boolean>;
|
|
124
|
+
default: undefined;
|
|
125
|
+
};
|
|
119
126
|
/**
|
|
120
127
|
* slider connotation
|
|
121
128
|
*/
|
|
@@ -255,6 +262,13 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
255
262
|
type: PropType<boolean>;
|
|
256
263
|
default: undefined;
|
|
257
264
|
};
|
|
265
|
+
/**
|
|
266
|
+
* Show current value on the thumb.
|
|
267
|
+
*/
|
|
268
|
+
pin: {
|
|
269
|
+
type: PropType<boolean>;
|
|
270
|
+
default: undefined;
|
|
271
|
+
};
|
|
258
272
|
/**
|
|
259
273
|
* slider connotation
|
|
260
274
|
*/
|
|
@@ -278,6 +292,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
278
292
|
min: number;
|
|
279
293
|
orientation: "horizontal" | "vertical";
|
|
280
294
|
markers: boolean;
|
|
295
|
+
pin: boolean;
|
|
281
296
|
mode: "single-value";
|
|
282
297
|
ariaValuetext: string;
|
|
283
298
|
}>;
|
|
@@ -117,6 +117,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
117
117
|
type: PropType<boolean>;
|
|
118
118
|
default: undefined;
|
|
119
119
|
};
|
|
120
|
+
/**
|
|
121
|
+
* Show current value on the thumb.
|
|
122
|
+
*/
|
|
123
|
+
pin: {
|
|
124
|
+
type: PropType<boolean>;
|
|
125
|
+
default: undefined;
|
|
126
|
+
};
|
|
120
127
|
/**
|
|
121
128
|
* slider connotation
|
|
122
129
|
*/
|
|
@@ -177,7 +184,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
177
184
|
*/
|
|
178
185
|
change(event: CustomEvent<undefined>): true;
|
|
179
186
|
/**
|
|
180
|
-
* Fires
|
|
187
|
+
* Fires when the modelValue value changes
|
|
181
188
|
* @type {string}
|
|
182
189
|
*/
|
|
183
190
|
"update:modelValue"(event: string): true;
|
|
@@ -297,6 +304,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
297
304
|
type: PropType<boolean>;
|
|
298
305
|
default: undefined;
|
|
299
306
|
};
|
|
307
|
+
/**
|
|
308
|
+
* Show current value on the thumb.
|
|
309
|
+
*/
|
|
310
|
+
pin: {
|
|
311
|
+
type: PropType<boolean>;
|
|
312
|
+
default: undefined;
|
|
313
|
+
};
|
|
300
314
|
/**
|
|
301
315
|
* slider connotation
|
|
302
316
|
*/
|
|
@@ -329,6 +343,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
329
343
|
min: number;
|
|
330
344
|
orientation: "horizontal" | "vertical";
|
|
331
345
|
markers: boolean;
|
|
346
|
+
pin: boolean;
|
|
332
347
|
mode: "single-value";
|
|
333
348
|
ariaValuetext: string;
|
|
334
349
|
}, SlotsType<Record<string, never>>>;
|
|
@@ -139,7 +139,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
139
139
|
*/
|
|
140
140
|
change(event: CustomEvent<undefined>): true;
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
142
|
+
* Fires when the modelValue value changes
|
|
143
143
|
* @type {boolean}
|
|
144
144
|
*/
|
|
145
145
|
"update:modelValue"(event: boolean): true;
|
|
@@ -229,7 +229,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
229
229
|
*/
|
|
230
230
|
change(event: CustomEvent<undefined>): true;
|
|
231
231
|
/**
|
|
232
|
-
* Fires when the value
|
|
232
|
+
* Fires when the modelValue value changes
|
|
233
233
|
* @type {string}
|
|
234
234
|
*/
|
|
235
235
|
"update:modelValue"(event: string): true;
|
|
@@ -239,7 +239,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
239
239
|
*/
|
|
240
240
|
change(event: CustomEvent<undefined>): true;
|
|
241
241
|
/**
|
|
242
|
-
* Fires when the value
|
|
242
|
+
* Fires when the modelValue value changes
|
|
243
243
|
* @type {string}
|
|
244
244
|
*/
|
|
245
245
|
"update:modelValue"(event: string): true;
|
|
@@ -163,7 +163,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
163
163
|
*/
|
|
164
164
|
change(event: CustomEvent<undefined>): true;
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
166
|
+
* Fires when the modelValue value changes
|
|
167
167
|
* @type {string}
|
|
168
168
|
*/
|
|
169
169
|
"update:modelValue"(event: string): true;
|
package/index.cjs
CHANGED
|
@@ -2395,7 +2395,7 @@ const VCheckbox = vue.defineComponent({
|
|
|
2395
2395
|
*/
|
|
2396
2396
|
"input",
|
|
2397
2397
|
/**
|
|
2398
|
-
*
|
|
2398
|
+
* Fires when the modelValue value changes
|
|
2399
2399
|
* @type {boolean}
|
|
2400
2400
|
*/
|
|
2401
2401
|
"update:modelValue"
|
|
@@ -2635,7 +2635,7 @@ const VCombobox = vue.defineComponent({
|
|
|
2635
2635
|
*/
|
|
2636
2636
|
"change",
|
|
2637
2637
|
/**
|
|
2638
|
-
* Fires
|
|
2638
|
+
* Fires when the modelValue value changes
|
|
2639
2639
|
* @type {string}
|
|
2640
2640
|
*/
|
|
2641
2641
|
"update:modelValue"
|
|
@@ -3311,7 +3311,7 @@ const VDatePicker = vue.defineComponent({
|
|
|
3311
3311
|
*/
|
|
3312
3312
|
"clear-click",
|
|
3313
3313
|
/**
|
|
3314
|
-
*
|
|
3314
|
+
* Fires when the modelValue value changes
|
|
3315
3315
|
* @type {string}
|
|
3316
3316
|
*/
|
|
3317
3317
|
"update:modelValue"
|
|
@@ -3536,12 +3536,12 @@ const VDateRangePicker = vue.defineComponent({
|
|
|
3536
3536
|
*/
|
|
3537
3537
|
"clear-click",
|
|
3538
3538
|
/**
|
|
3539
|
-
*
|
|
3539
|
+
* Fires when the start value changes
|
|
3540
3540
|
* @type {string}
|
|
3541
3541
|
*/
|
|
3542
3542
|
"update:start",
|
|
3543
3543
|
/**
|
|
3544
|
-
*
|
|
3544
|
+
* Fires when the end value changes
|
|
3545
3545
|
* @type {string}
|
|
3546
3546
|
*/
|
|
3547
3547
|
"update:end"
|
|
@@ -3764,7 +3764,7 @@ const VDialPad = vue.defineComponent({
|
|
|
3764
3764
|
*/
|
|
3765
3765
|
"end-call",
|
|
3766
3766
|
/**
|
|
3767
|
-
*
|
|
3767
|
+
* Fires when the modelValue value changes
|
|
3768
3768
|
* @type {string}
|
|
3769
3769
|
*/
|
|
3770
3770
|
"update:modelValue"
|
|
@@ -3889,7 +3889,11 @@ const VDialog = vue.defineComponent({
|
|
|
3889
3889
|
type: String,
|
|
3890
3890
|
default: void 0
|
|
3891
3891
|
},
|
|
3892
|
-
noLightDismiss: { type: Boolean, default: void 0 }
|
|
3892
|
+
noLightDismiss: { type: Boolean, default: void 0 },
|
|
3893
|
+
/**
|
|
3894
|
+
* Controls whether the dialog is modal.
|
|
3895
|
+
*/
|
|
3896
|
+
modal: { type: Boolean, default: void 0 }
|
|
3893
3897
|
},
|
|
3894
3898
|
emits: [
|
|
3895
3899
|
/**
|
|
@@ -3922,11 +3926,21 @@ const VDialog = vue.defineComponent({
|
|
|
3922
3926
|
* @type {Event}
|
|
3923
3927
|
*/
|
|
3924
3928
|
"input",
|
|
3929
|
+
/**
|
|
3930
|
+
* The `open` event fires when the dialog opens.
|
|
3931
|
+
* @type {CustomEvent<undefined>}
|
|
3932
|
+
*/
|
|
3933
|
+
"open",
|
|
3925
3934
|
/**
|
|
3926
3935
|
* The `close` event fires when the dialog closes (either via user interaction or via the API). It returns the return value inside the event's details property.
|
|
3927
3936
|
* @type {CustomEvent<string>}
|
|
3928
3937
|
*/
|
|
3929
|
-
"close"
|
|
3938
|
+
"close",
|
|
3939
|
+
/**
|
|
3940
|
+
* Fires when the open value changes
|
|
3941
|
+
* @type {boolean}
|
|
3942
|
+
*/
|
|
3943
|
+
"update:open"
|
|
3930
3944
|
],
|
|
3931
3945
|
methods: {
|
|
3932
3946
|
close() {
|
|
@@ -3960,7 +3974,8 @@ const VDialog = vue.defineComponent({
|
|
|
3960
3974
|
...this.fullWidthBody !== void 0 ? { "full-width-body": this.fullWidthBody } : {},
|
|
3961
3975
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
3962
3976
|
...this.dismissButtonAriaLabel !== void 0 ? { "dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
3963
|
-
...this.noLightDismiss !== void 0 ? { "no-light-dismiss": this.noLightDismiss } : {}
|
|
3977
|
+
...this.noLightDismiss !== void 0 ? { "no-light-dismiss": this.noLightDismiss } : {},
|
|
3978
|
+
...this.modal !== void 0 ? { modal: this.modal } : {}
|
|
3964
3979
|
},
|
|
3965
3980
|
class: "vvd-component",
|
|
3966
3981
|
on: {
|
|
@@ -3970,7 +3985,14 @@ const VDialog = vue.defineComponent({
|
|
|
3970
3985
|
keydown: (event) => this.$emit("keydown", event),
|
|
3971
3986
|
keyup: (event) => this.$emit("keyup", event),
|
|
3972
3987
|
input: (event) => this.$emit("input", event),
|
|
3973
|
-
|
|
3988
|
+
open: (event) => {
|
|
3989
|
+
this.$emit("update:open", event.target.open);
|
|
3990
|
+
this.$emit("open", event);
|
|
3991
|
+
},
|
|
3992
|
+
close: (event) => {
|
|
3993
|
+
this.$emit("update:open", event.target.open);
|
|
3994
|
+
this.$emit("close", event);
|
|
3995
|
+
}
|
|
3974
3996
|
}
|
|
3975
3997
|
},
|
|
3976
3998
|
[
|
|
@@ -4003,13 +4025,21 @@ const VDialog = vue.defineComponent({
|
|
|
4003
4025
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
4004
4026
|
...this.dismissButtonAriaLabel !== void 0 ? { "^dismiss-button-aria-label": this.dismissButtonAriaLabel } : {},
|
|
4005
4027
|
...this.noLightDismiss !== void 0 && this.noLightDismiss !== false ? { "^no-light-dismiss": this.noLightDismiss } : {},
|
|
4028
|
+
...this.modal !== void 0 && this.modal !== false ? { "^modal": this.modal } : {},
|
|
4006
4029
|
onClick: (event) => this.$emit("click", event),
|
|
4007
4030
|
onFocus: (event) => this.$emit("focus", event),
|
|
4008
4031
|
onBlur: (event) => this.$emit("blur", event),
|
|
4009
4032
|
onKeydown: (event) => this.$emit("keydown", event),
|
|
4010
4033
|
onKeyup: (event) => this.$emit("keyup", event),
|
|
4011
4034
|
onInput: (event) => this.$emit("input", event),
|
|
4012
|
-
|
|
4035
|
+
onOpen: (event) => {
|
|
4036
|
+
this.$emit("update:open", event.target.open);
|
|
4037
|
+
this.$emit("open", event);
|
|
4038
|
+
},
|
|
4039
|
+
onClose: (event) => {
|
|
4040
|
+
this.$emit("update:open", event.target.open);
|
|
4041
|
+
this.$emit("close", event);
|
|
4042
|
+
}
|
|
4013
4043
|
},
|
|
4014
4044
|
[
|
|
4015
4045
|
// @ts-ignore
|
|
@@ -4149,6 +4179,13 @@ const VEmptyState = vue.defineComponent({
|
|
|
4149
4179
|
type: String,
|
|
4150
4180
|
default: void 0
|
|
4151
4181
|
},
|
|
4182
|
+
/**
|
|
4183
|
+
* The connotation the empty state should have.
|
|
4184
|
+
*/
|
|
4185
|
+
connotation: {
|
|
4186
|
+
type: String,
|
|
4187
|
+
default: void 0
|
|
4188
|
+
},
|
|
4152
4189
|
/**
|
|
4153
4190
|
* An optional headline for the empty state.
|
|
4154
4191
|
*/
|
|
@@ -4157,7 +4194,14 @@ const VEmptyState = vue.defineComponent({
|
|
|
4157
4194
|
* Icon for the empty state.
|
|
4158
4195
|
* See the Vivid Icon Gallery for available icons: https://icons.vivid.vonage.com/
|
|
4159
4196
|
*/
|
|
4160
|
-
icon: { type: String, default: void 0 }
|
|
4197
|
+
icon: { type: String, default: void 0 },
|
|
4198
|
+
/**
|
|
4199
|
+
* option to a new design for the icon circle
|
|
4200
|
+
*/
|
|
4201
|
+
iconDecoration: {
|
|
4202
|
+
type: String,
|
|
4203
|
+
default: void 0
|
|
4204
|
+
}
|
|
4161
4205
|
},
|
|
4162
4206
|
emits: [
|
|
4163
4207
|
/**
|
|
@@ -4205,8 +4249,10 @@ const VEmptyState = vue.defineComponent({
|
|
|
4205
4249
|
ref: "element",
|
|
4206
4250
|
attrs: {
|
|
4207
4251
|
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
4252
|
+
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
4208
4253
|
...this.headline !== void 0 ? { headline: this.headline } : {},
|
|
4209
|
-
...this.icon !== void 0 ? { icon: this.icon } : {}
|
|
4254
|
+
...this.icon !== void 0 ? { icon: this.icon } : {},
|
|
4255
|
+
...this.iconDecoration !== void 0 ? { "icon-decoration": this.iconDecoration } : {}
|
|
4210
4256
|
},
|
|
4211
4257
|
class: "vvd-component",
|
|
4212
4258
|
on: {
|
|
@@ -4233,8 +4279,10 @@ const VEmptyState = vue.defineComponent({
|
|
|
4233
4279
|
ref: "element",
|
|
4234
4280
|
class: "vvd-component",
|
|
4235
4281
|
...this.ariaCurrent !== void 0 ? { "^aria-current": this.ariaCurrent } : {},
|
|
4282
|
+
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
4236
4283
|
...this.headline !== void 0 ? { "^headline": this.headline } : {},
|
|
4237
4284
|
...this.icon !== void 0 ? { "^icon": this.icon } : {},
|
|
4285
|
+
...this.iconDecoration !== void 0 ? { "^icon-decoration": this.iconDecoration } : {},
|
|
4238
4286
|
onClick: (event) => this.$emit("click", event),
|
|
4239
4287
|
onFocus: (event) => this.$emit("focus", event),
|
|
4240
4288
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5349,7 +5397,7 @@ const VMenuItem = vue.defineComponent({
|
|
|
5349
5397
|
*/
|
|
5350
5398
|
"change",
|
|
5351
5399
|
/**
|
|
5352
|
-
* Fires
|
|
5400
|
+
* Fires when the modelValue value changes
|
|
5353
5401
|
* @type {boolean}
|
|
5354
5402
|
*/
|
|
5355
5403
|
"update:modelValue"
|
|
@@ -6154,7 +6202,7 @@ const VNumberField = vue.defineComponent({
|
|
|
6154
6202
|
*/
|
|
6155
6203
|
"change",
|
|
6156
6204
|
/**
|
|
6157
|
-
* Fires
|
|
6205
|
+
* Fires when the modelValue value changes
|
|
6158
6206
|
* @type {string}
|
|
6159
6207
|
*/
|
|
6160
6208
|
"update:modelValue"
|
|
@@ -7125,7 +7173,7 @@ const VRadioGroup = vue.defineComponent({
|
|
|
7125
7173
|
*/
|
|
7126
7174
|
"change",
|
|
7127
7175
|
/**
|
|
7128
|
-
* Fires
|
|
7176
|
+
* Fires when the modelValue value changes
|
|
7129
7177
|
* @type {string}
|
|
7130
7178
|
*/
|
|
7131
7179
|
"update:modelValue"
|
|
@@ -7307,7 +7355,11 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7307
7355
|
connotation: {
|
|
7308
7356
|
type: String,
|
|
7309
7357
|
default: void 0
|
|
7310
|
-
}
|
|
7358
|
+
},
|
|
7359
|
+
/**
|
|
7360
|
+
* Show current values on the thumbs.
|
|
7361
|
+
*/
|
|
7362
|
+
pin: { type: Boolean, default: void 0 }
|
|
7311
7363
|
},
|
|
7312
7364
|
emits: [
|
|
7313
7365
|
/**
|
|
@@ -7356,12 +7408,12 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7356
7408
|
*/
|
|
7357
7409
|
"change",
|
|
7358
7410
|
/**
|
|
7359
|
-
*
|
|
7411
|
+
* Fires when the start value changes
|
|
7360
7412
|
* @type {string}
|
|
7361
7413
|
*/
|
|
7362
7414
|
"update:start",
|
|
7363
7415
|
/**
|
|
7364
|
-
*
|
|
7416
|
+
* Fires when the end value changes
|
|
7365
7417
|
* @type {string}
|
|
7366
7418
|
*/
|
|
7367
7419
|
"update:end"
|
|
@@ -7404,7 +7456,8 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7404
7456
|
...this.ariaStartLabel !== void 0 ? { "aria-start-label": this.ariaStartLabel } : {},
|
|
7405
7457
|
...this.ariaEndLabel !== void 0 ? { "aria-end-label": this.ariaEndLabel } : {},
|
|
7406
7458
|
...this.markers !== void 0 ? { markers: this.markers } : {},
|
|
7407
|
-
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
7459
|
+
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
7460
|
+
...this.pin !== void 0 ? { pin: this.pin } : {}
|
|
7408
7461
|
},
|
|
7409
7462
|
class: "vvd-component",
|
|
7410
7463
|
on: {
|
|
@@ -7452,6 +7505,7 @@ const VRangeSlider = vue.defineComponent({
|
|
|
7452
7505
|
...this.ariaEndLabel !== void 0 ? { "^aria-end-label": this.ariaEndLabel } : {},
|
|
7453
7506
|
...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
|
|
7454
7507
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
7508
|
+
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
7455
7509
|
onClick: (event) => this.$emit("click", event),
|
|
7456
7510
|
onFocus: (event) => this.$emit("focus", event),
|
|
7457
7511
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -7620,7 +7674,7 @@ const VSelect = vue.defineComponent({
|
|
|
7620
7674
|
*/
|
|
7621
7675
|
"change",
|
|
7622
7676
|
/**
|
|
7623
|
-
* Fires
|
|
7677
|
+
* Fires when the modelValue value changes
|
|
7624
7678
|
* @type {string}
|
|
7625
7679
|
*/
|
|
7626
7680
|
"update:modelValue"
|
|
@@ -7650,6 +7704,9 @@ const VSelect = vue.defineComponent({
|
|
|
7650
7704
|
selectFirstOption() {
|
|
7651
7705
|
return this.element?.selectFirstOption();
|
|
7652
7706
|
},
|
|
7707
|
+
labelChanged() {
|
|
7708
|
+
return this.element?.labelChanged();
|
|
7709
|
+
},
|
|
7653
7710
|
setDefaultSelectedOption() {
|
|
7654
7711
|
return this.element?.setDefaultSelectedOption();
|
|
7655
7712
|
},
|
|
@@ -8135,6 +8192,10 @@ const VSlider = vue.defineComponent({
|
|
|
8135
8192
|
* Display markers on/off
|
|
8136
8193
|
*/
|
|
8137
8194
|
markers: { type: Boolean, default: void 0 },
|
|
8195
|
+
/**
|
|
8196
|
+
* Show current value on the thumb.
|
|
8197
|
+
*/
|
|
8198
|
+
pin: { type: Boolean, default: void 0 },
|
|
8138
8199
|
/**
|
|
8139
8200
|
* slider connotation
|
|
8140
8201
|
*/
|
|
@@ -8180,7 +8241,7 @@ const VSlider = vue.defineComponent({
|
|
|
8180
8241
|
*/
|
|
8181
8242
|
"change",
|
|
8182
8243
|
/**
|
|
8183
|
-
* Fires
|
|
8244
|
+
* Fires when the modelValue value changes
|
|
8184
8245
|
* @type {string}
|
|
8185
8246
|
*/
|
|
8186
8247
|
"update:modelValue"
|
|
@@ -8232,6 +8293,7 @@ const VSlider = vue.defineComponent({
|
|
|
8232
8293
|
...this.ariaLabel !== void 0 ? { "aria-label": this.ariaLabel } : {},
|
|
8233
8294
|
...this.ariaValuetext !== void 0 ? { "aria-valuetext": this.ariaValuetext } : {},
|
|
8234
8295
|
...this.markers !== void 0 ? { markers: this.markers } : {},
|
|
8296
|
+
...this.pin !== void 0 ? { pin: this.pin } : {},
|
|
8235
8297
|
...this.connotation !== void 0 ? { connotation: this.connotation } : {}
|
|
8236
8298
|
},
|
|
8237
8299
|
class: "vvd-component",
|
|
@@ -8274,6 +8336,7 @@ const VSlider = vue.defineComponent({
|
|
|
8274
8336
|
...this.ariaLabel !== void 0 ? { "^aria-label": this.ariaLabel } : {},
|
|
8275
8337
|
...this.ariaValuetext !== void 0 ? { "^aria-valuetext": this.ariaValuetext } : {},
|
|
8276
8338
|
...this.markers !== void 0 && this.markers !== false ? { "^markers": this.markers } : {},
|
|
8339
|
+
...this.pin !== void 0 && this.pin !== false ? { "^pin": this.pin } : {},
|
|
8277
8340
|
...this.connotation !== void 0 ? { "^connotation": this.connotation } : {},
|
|
8278
8341
|
onClick: (event) => this.$emit("click", event),
|
|
8279
8342
|
onFocus: (event) => this.$emit("focus", event),
|
|
@@ -8599,7 +8662,7 @@ const VSwitch = vue.defineComponent({
|
|
|
8599
8662
|
*/
|
|
8600
8663
|
"change",
|
|
8601
8664
|
/**
|
|
8602
|
-
*
|
|
8665
|
+
* Fires when the modelValue value changes
|
|
8603
8666
|
* @type {boolean}
|
|
8604
8667
|
*/
|
|
8605
8668
|
"update:modelValue"
|
|
@@ -9533,7 +9596,7 @@ const VTextArea = vue.defineComponent({
|
|
|
9533
9596
|
*/
|
|
9534
9597
|
"change",
|
|
9535
9598
|
/**
|
|
9536
|
-
* Fires when the value
|
|
9599
|
+
* Fires when the modelValue value changes
|
|
9537
9600
|
* @type {string}
|
|
9538
9601
|
*/
|
|
9539
9602
|
"update:modelValue"
|
|
@@ -9823,7 +9886,7 @@ const VTextField = vue.defineComponent({
|
|
|
9823
9886
|
*/
|
|
9824
9887
|
"change",
|
|
9825
9888
|
/**
|
|
9826
|
-
* Fires when the value
|
|
9889
|
+
* Fires when the modelValue value changes
|
|
9827
9890
|
* @type {string}
|
|
9828
9891
|
*/
|
|
9829
9892
|
"update:modelValue"
|
|
@@ -10096,7 +10159,7 @@ const VTimePicker = vue.defineComponent({
|
|
|
10096
10159
|
*/
|
|
10097
10160
|
"change",
|
|
10098
10161
|
/**
|
|
10099
|
-
*
|
|
10162
|
+
* Fires when the modelValue value changes
|
|
10100
10163
|
* @type {string}
|
|
10101
10164
|
*/
|
|
10102
10165
|
"update:modelValue"
|
|
@@ -12095,17 +12158,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
12095
12158
|
return Icon2;
|
|
12096
12159
|
})(Icon || {});
|
|
12097
12160
|
|
|
12098
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n}\n";
|
|
12161
|
+
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n}\n";
|
|
12099
12162
|
|
|
12100
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 18 Jul 2024 13:50:42 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n}\n";
|
|
12163
|
+
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #4d4d4d) drop-shadow(0px 1px 0px #4d4d4d) drop-shadow(0px -1px 0px #4d4d4d) drop-shadow(-1px 0px 0px #4d4d4d);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n}\n";
|
|
12101
12164
|
|
|
12102
12165
|
const fontsSpeziaVariableCss = "@font-face {\n font-family: SpeziaCompleteVariableUpright;\n font-stretch: 50% 200%;\n font-weight: 1 1000;\n font-display: block;\n src: url(\"https://fonts.resources.vonage.com/fonts/v2/SpeziaCompleteVariableUprightWeb.woff2\") format(\"woff2\");\n}\n@font-face {\n font-family: SpeziaMonoCompleteVariable;\n font-stretch: 50% 200%;\n font-weight: 1 1000;\n font-display: block;\n src: url(\"https://fonts.resources.vonage.com/fonts/v2/SpeziaMonoCompleteVariableWeb.woff2\") format(\"woff2\");\n}\n.vvd-root {\n --vvd-typography-headline: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 4.125) / 1.3333333333333333\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-subtitle: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 3.25) / 1.3076923076923077\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-1: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 2.5) / 1.3\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-2: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 2) / 1.375\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-3: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 1.625) / 1.3846153846153846\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-heading-4: 500 condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 1.25) / 1.4\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.875) / 1.4285714285714286\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-bold: 600 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.875) / 1.4285714285714286\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-code: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.875) / 1.4285714285714286\n \tSpeziaMonoCompleteVariable;\n --vvd-typography-base-condensed: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.75) / 1.3333333333333333\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-condensed-bold: 600 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px) * 0.75) / 1.3333333333333333\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-extended: 400 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px)) / 1.5\n \tSpeziaCompleteVariableUpright;\n --vvd-typography-base-extended-bold: 600 ultra-condensed\n \tcalc(var(--vvd-size-font-scale-base, 16px)) / 1.5\n \tSpeziaCompleteVariableUpright;\n}\n";
|
|
12103
12166
|
|
|
12104
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on
|
|
12167
|
+
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 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";
|
|
12105
12168
|
|
|
12106
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on
|
|
12169
|
+
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n.vvd-root {\n color-scheme: var(--vvd-color-scheme);\n background-color: var(--vvd-color-canvas);\n color: var(--vvd-color-canvas-text);\n}\n";
|
|
12107
12170
|
|
|
12108
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on
|
|
12171
|
+
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Wed, 04 Sep 2024 12:17:48 GMT\n */\n.vvd-root:root {\n --vvd-size-font-scale-base: 1rem;\n font-size: unset;\n}\n.vvd-root:root > body {\n font: var(--vvd-typography-base);\n font-feature-settings: \"kern\"; /* turns on kerning */\n text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\n -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */\n -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */\n}\n.vvd-root:not(:root) {\n font: var(--vvd-typography-base);\n font-feature-settings: \"kern\"; /* turns on kerning */\n text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */\n -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */\n -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */\n}\n.vvd-root p,\n.vvd-root .font-base {\n font: var(--vvd-typography-base);\n margin-block: 16px;\n}\n.vvd-root p.tight,\n.vvd-root .font-base.tight {\n margin-block: 0;\n}\n.vvd-root .font-base-bold {\n font: var(--vvd-typography-base-bold);\n}\n.vvd-root .font-base-condensed {\n font: var(--vvd-typography-base-condensed);\n}\n.vvd-root .font-base-condensed-bold {\n font: var(--vvd-typography-base-condensed-bold);\n}\n.vvd-root .font-base-extended {\n font: var(--vvd-typography-base-extended);\n}\n.vvd-root .font-base-extended-bold {\n font: var(--vvd-typography-base-extended-bold);\n}\n.vvd-root .font-base-code {\n font: var(--vvd-typography-base-code);\n}\n.vvd-root b, .vvd-root strong {\n font-weight: 600;\n}\n.vvd-root pre, .vvd-root var, .vvd-root code, .vvd-root kbd, .vvd-root samp {\n font: var(--vvd-typography-base-code);\n}\n.vvd-root .headline {\n font: var(--vvd-typography-headline);\n margin-block: 40px;\n}\n.vvd-root .subtitle {\n font: var(--vvd-typography-subtitle);\n margin-block: 40px;\n}\n.vvd-root h1,\n.vvd-root .heading1 {\n font: var(--vvd-typography-heading-1);\n margin-block: 32px;\n}\n.vvd-root h2,\n.vvd-root .heading2 {\n font: var(--vvd-typography-heading-2);\n margin-block: 32px;\n}\n.vvd-root h3,\n.vvd-root .heading3 {\n font: var(--vvd-typography-heading-3);\n margin-block: 24px;\n}\n.vvd-root h4,\n.vvd-root .heading4 {\n font: var(--vvd-typography-heading-4);\n margin-block: 24px;\n}\n.vvd-root .headline b, .vvd-root .headline strong,\n.vvd-root .subtitle b,\n.vvd-root .subtitle strong,\n.vvd-root h1 b,\n.vvd-root h1 strong,\n.vvd-root .heading1 b,\n.vvd-root .heading1 strong,\n.vvd-root h2 b,\n.vvd-root h2 strong,\n.vvd-root .heading2 b,\n.vvd-root .heading2 strong,\n.vvd-root h3 b,\n.vvd-root h3 strong,\n.vvd-root .heading3 b,\n.vvd-root .heading3 strong,\n.vvd-root h4 b,\n.vvd-root h4 strong,\n.vvd-root .heading4 b,\n.vvd-root .heading4 strong {\n font-weight: 500;\n}\n.vvd-root .headline.tight,\n.vvd-root .subtitle.tight,\n.vvd-root h1.tight,\n.vvd-root .heading1.tight,\n.vvd-root h2.tight,\n.vvd-root .heading2.tight,\n.vvd-root h3.tight,\n.vvd-root .heading3.tight,\n.vvd-root h4.tight,\n.vvd-root .heading4.tight {\n margin-block: 0;\n}\n.vvd-root small,\n.vvd-root figcaption {\n font: var(--vvd-typography-base-condensed);\n}\n.vvd-root sub,\n.vvd-root sup {\n font: var(--vvd-typography-base-condensed);\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n.vvd-root sub {\n bottom: -0.25em;\n}\n.vvd-root sup {\n top: -0.5em;\n}\n";
|
|
12109
12172
|
|
|
12110
12173
|
const theme = {
|
|
12111
12174
|
name: "core/theme",
|