@vonage/vivid-vue 3.52.0 → 3.53.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 +6 -1
- package/generated/components/VDatePicker.vue3.d.ts +6 -1
- package/generated/components/VDateRangePicker.vue3.d.ts +6 -1
- package/generated/components/VDialPad.d.ts +10 -0
- package/generated/components/VDialPad.vue2.d.ts +135 -0
- package/generated/components/VDialPad.vue3.d.ts +148 -0
- package/generated/components/VFilePicker.vue3.d.ts +6 -1
- package/generated/components/VNavItem.vue2.d.ts +30 -0
- package/generated/components/VNavItem.vue3.d.ts +30 -0
- package/generated/components/VNumberField.vue3.d.ts +6 -1
- package/generated/components/VSelect.vue3.d.ts +4 -0
- package/generated/components/VTextArea.vue3.d.ts +6 -1
- package/generated/components/VTextField.vue2.d.ts +1 -1
- package/generated/components/VTextField.vue3.d.ts +5 -1
- package/generated/components/VTimePicker.vue3.d.ts +6 -1
- package/generated/components/VVideoPlayer.d.ts +10 -0
- package/generated/components/VVideoPlayer.vue2.d.ts +118 -0
- package/generated/components/VVideoPlayer.vue3.d.ts +134 -0
- package/generated/components/index.d.ts +2 -0
- package/index.cjs +427 -24
- package/index.js +427 -26
- package/package.json +2 -2
- package/web-types.json +296 -8
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref, version, onBeforeMount, defineComponent, h } from 'vue';
|
|
2
|
-
import { registerAccordion, registerAccordionItem, registerActionGroup, registerAlert, registerAudioPlayer, registerAvatar, registerBadge, registerBanner, registerBreadcrumb, registerBreadcrumbItem, registerButton, registerCalendar, registerCalendarEvent, registerCard, registerCheckbox, registerCombobox, registerDataGrid, registerDatePicker, registerDateRangePicker, registerDialog, registerDivider, registerEmptyState, registerFab, registerFilePicker, registerHeader, registerIcon, registerLayout, registerMenu, registerMenuItem, registerNav, registerNavDisclosure, registerNavItem, registerNote, registerNumberField, registerOption, registerPagination, registerProgress, registerProgressRing, registerRadio, registerRadioGroup, registerRangeSlider, registerSelect, registerSelectableBox, registerSideDrawer, registerSlider, registerSplitButton, registerSwitch, registerTab, registerTabPanel, registerTabs, registerTag, registerTagGroup, registerTextArea, registerTextField, registerTimePicker, registerToggletip, registerTooltip, registerTreeItem, registerTreeView } from '@vonage/vivid';
|
|
2
|
+
import { registerAccordion, registerAccordionItem, registerActionGroup, registerAlert, registerAudioPlayer, registerAvatar, registerBadge, registerBanner, registerBreadcrumb, registerBreadcrumbItem, registerButton, registerCalendar, registerCalendarEvent, registerCard, registerCheckbox, registerCombobox, registerDataGrid, registerDatePicker, registerDateRangePicker, registerDialPad, registerDialog, registerDivider, registerEmptyState, registerFab, registerFilePicker, registerHeader, registerIcon, registerLayout, registerMenu, registerMenuItem, registerNav, registerNavDisclosure, registerNavItem, registerNote, registerNumberField, registerOption, registerPagination, registerProgress, registerProgressRing, registerRadio, registerRadioGroup, registerRangeSlider, registerSelect, registerSelectableBox, registerSideDrawer, registerSlider, registerSplitButton, registerSwitch, registerTab, registerTabPanel, registerTabs, registerTag, registerTagGroup, registerTextArea, registerTextField, registerTimePicker, registerToggletip, registerTooltip, registerTreeItem, registerTreeView, registerVideoPlayer } from '@vonage/vivid';
|
|
3
3
|
|
|
4
4
|
const CustomComponentPrefix = ref("vvd3");
|
|
5
5
|
function setCustomComponentPrefix(prefix) {
|
|
@@ -2392,7 +2392,11 @@ const VCheckbox = defineComponent({
|
|
|
2392
2392
|
input: (event) => this.$emit("input", event)
|
|
2393
2393
|
}
|
|
2394
2394
|
},
|
|
2395
|
-
[
|
|
2395
|
+
[
|
|
2396
|
+
this.$slots.default,
|
|
2397
|
+
// @slot helper-text Describes how to use the checkbox. Alternative to the `helper-text` attribute.
|
|
2398
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
2399
|
+
]
|
|
2396
2400
|
);
|
|
2397
2401
|
}
|
|
2398
2402
|
return h(
|
|
@@ -2432,7 +2436,9 @@ const VCheckbox = defineComponent({
|
|
|
2432
2436
|
},
|
|
2433
2437
|
[
|
|
2434
2438
|
// @ts-ignore
|
|
2435
|
-
this.$slots.default && this.$slots.default()
|
|
2439
|
+
this.$slots.default && this.$slots.default(),
|
|
2440
|
+
// @slot helper-text Describes how to use the checkbox. Alternative to the `helper-text` attribute.
|
|
2441
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
2436
2442
|
]
|
|
2437
2443
|
);
|
|
2438
2444
|
}
|
|
@@ -3266,7 +3272,11 @@ const VDatePicker = defineComponent({
|
|
|
3266
3272
|
"clear-click": (event) => this.$emit("clear-click", event)
|
|
3267
3273
|
}
|
|
3268
3274
|
},
|
|
3269
|
-
[
|
|
3275
|
+
[
|
|
3276
|
+
this.$slots.default,
|
|
3277
|
+
// @slot helper-text Describes how to use the date-picker. Alternative to the `helper-text` attribute.
|
|
3278
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
3279
|
+
]
|
|
3270
3280
|
);
|
|
3271
3281
|
}
|
|
3272
3282
|
return h(
|
|
@@ -3301,7 +3311,9 @@ const VDatePicker = defineComponent({
|
|
|
3301
3311
|
},
|
|
3302
3312
|
[
|
|
3303
3313
|
// @ts-ignore
|
|
3304
|
-
this.$slots.default && this.$slots.default()
|
|
3314
|
+
this.$slots.default && this.$slots.default(),
|
|
3315
|
+
// @slot helper-text Describes how to use the date-picker. Alternative to the `helper-text` attribute.
|
|
3316
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
3305
3317
|
]
|
|
3306
3318
|
);
|
|
3307
3319
|
}
|
|
@@ -3480,7 +3492,11 @@ const VDateRangePicker = defineComponent({
|
|
|
3480
3492
|
"clear-click": (event) => this.$emit("clear-click", event)
|
|
3481
3493
|
}
|
|
3482
3494
|
},
|
|
3483
|
-
[
|
|
3495
|
+
[
|
|
3496
|
+
this.$slots.default,
|
|
3497
|
+
// @slot helper-text Describes how to use the date-range-picker. Alternative to the `helper-text` attribute.
|
|
3498
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
3499
|
+
]
|
|
3484
3500
|
);
|
|
3485
3501
|
}
|
|
3486
3502
|
return h(
|
|
@@ -3517,6 +3533,189 @@ const VDateRangePicker = defineComponent({
|
|
|
3517
3533
|
},
|
|
3518
3534
|
onClearClick: (event) => this.$emit("clear-click", event)
|
|
3519
3535
|
},
|
|
3536
|
+
[
|
|
3537
|
+
// @ts-ignore
|
|
3538
|
+
this.$slots.default && this.$slots.default(),
|
|
3539
|
+
// @slot helper-text Describes how to use the date-range-picker. Alternative to the `helper-text` attribute.
|
|
3540
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
3541
|
+
]
|
|
3542
|
+
);
|
|
3543
|
+
}
|
|
3544
|
+
});
|
|
3545
|
+
|
|
3546
|
+
const VDialPad = defineComponent({
|
|
3547
|
+
name: "VDialPad",
|
|
3548
|
+
model: isVue2 ? {
|
|
3549
|
+
prop: "modelValue",
|
|
3550
|
+
event: "update:modelValue"
|
|
3551
|
+
} : void 0,
|
|
3552
|
+
props: {
|
|
3553
|
+
/**
|
|
3554
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
3555
|
+
*/
|
|
3556
|
+
ariaCurrent: {
|
|
3557
|
+
type: String,
|
|
3558
|
+
default: void 0
|
|
3559
|
+
},
|
|
3560
|
+
/**
|
|
3561
|
+
* Indicates the helper-text's text.
|
|
3562
|
+
*/
|
|
3563
|
+
helperText: { type: String, default: void 0 },
|
|
3564
|
+
/**
|
|
3565
|
+
* Indicates the placeholder's text.
|
|
3566
|
+
*/
|
|
3567
|
+
placeholder: { type: String, default: void 0 },
|
|
3568
|
+
/**
|
|
3569
|
+
* Indicates the value's text.
|
|
3570
|
+
*/
|
|
3571
|
+
modelValue: { type: String, default: void 0 },
|
|
3572
|
+
/**
|
|
3573
|
+
* Indicates the dial pad's pattern.
|
|
3574
|
+
*/
|
|
3575
|
+
pattern: { type: String, default: void 0 },
|
|
3576
|
+
/**
|
|
3577
|
+
* Indicates the disabled state of the dial-pad.
|
|
3578
|
+
*/
|
|
3579
|
+
disabled: { type: Boolean, default: void 0 },
|
|
3580
|
+
/**
|
|
3581
|
+
* Indicates the active state of the dial-pad.
|
|
3582
|
+
*/
|
|
3583
|
+
callActive: { type: Boolean, default: void 0 },
|
|
3584
|
+
/**
|
|
3585
|
+
* Indicates the no-call state of the dial-pad.
|
|
3586
|
+
*/
|
|
3587
|
+
noCall: { type: Boolean, default: void 0 }
|
|
3588
|
+
},
|
|
3589
|
+
emits: [
|
|
3590
|
+
/**
|
|
3591
|
+
* 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.
|
|
3592
|
+
* @type {MouseEvent}
|
|
3593
|
+
*/
|
|
3594
|
+
"click",
|
|
3595
|
+
/**
|
|
3596
|
+
* Fires when a key is pressed.
|
|
3597
|
+
* @type {KeyboardEvent}
|
|
3598
|
+
*/
|
|
3599
|
+
"keydown",
|
|
3600
|
+
/**
|
|
3601
|
+
* Fires when a key is released.
|
|
3602
|
+
* @type {KeyboardEvent}
|
|
3603
|
+
*/
|
|
3604
|
+
"keyup",
|
|
3605
|
+
/**
|
|
3606
|
+
* Emitted when the text field value changes
|
|
3607
|
+
* @type {unknown}
|
|
3608
|
+
*/
|
|
3609
|
+
"change",
|
|
3610
|
+
/**
|
|
3611
|
+
* Emitted when the text field value changes
|
|
3612
|
+
* @type {unknown}
|
|
3613
|
+
*/
|
|
3614
|
+
"input",
|
|
3615
|
+
/**
|
|
3616
|
+
* Emitted when the text field loses focus
|
|
3617
|
+
* @type {unknown}
|
|
3618
|
+
*/
|
|
3619
|
+
"blur",
|
|
3620
|
+
/**
|
|
3621
|
+
* Emitted when the text field receives focus
|
|
3622
|
+
* @type {unknown}
|
|
3623
|
+
*/
|
|
3624
|
+
"focus",
|
|
3625
|
+
/**
|
|
3626
|
+
* Emitted when a digit button is clicked
|
|
3627
|
+
* @type {unknown}
|
|
3628
|
+
*/
|
|
3629
|
+
"keypad-click",
|
|
3630
|
+
/**
|
|
3631
|
+
* Emitted when the call button is clicked
|
|
3632
|
+
* @type {unknown}
|
|
3633
|
+
*/
|
|
3634
|
+
"dial",
|
|
3635
|
+
/**
|
|
3636
|
+
* Emitted when the end call button is clicked
|
|
3637
|
+
* @type {unknown}
|
|
3638
|
+
*/
|
|
3639
|
+
"end-call",
|
|
3640
|
+
/**
|
|
3641
|
+
* Emitted when the text field value changes
|
|
3642
|
+
* @type {string}
|
|
3643
|
+
*/
|
|
3644
|
+
"update:modelValue"
|
|
3645
|
+
],
|
|
3646
|
+
methods: {
|
|
3647
|
+
valueChanged(_oldValue, newValue) {
|
|
3648
|
+
return this.element?.valueChanged(_oldValue, newValue);
|
|
3649
|
+
}
|
|
3650
|
+
},
|
|
3651
|
+
setup(props, ctx) {
|
|
3652
|
+
const componentName = registerComponent("dial-pad", registerDialPad);
|
|
3653
|
+
const element = ref(null);
|
|
3654
|
+
return { componentName, element };
|
|
3655
|
+
},
|
|
3656
|
+
render() {
|
|
3657
|
+
if (isVue2) {
|
|
3658
|
+
return h(
|
|
3659
|
+
this.componentName,
|
|
3660
|
+
{
|
|
3661
|
+
ref: "element",
|
|
3662
|
+
attrs: {
|
|
3663
|
+
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3664
|
+
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
3665
|
+
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
3666
|
+
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
3667
|
+
...this.pattern !== void 0 ? { pattern: this.pattern } : {},
|
|
3668
|
+
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3669
|
+
...this.callActive !== void 0 ? { "call-active": this.callActive } : {},
|
|
3670
|
+
...this.noCall !== void 0 ? { "no-call": this.noCall } : {}
|
|
3671
|
+
},
|
|
3672
|
+
class: "vvd-component",
|
|
3673
|
+
on: {
|
|
3674
|
+
click: (event) => this.$emit("click", event),
|
|
3675
|
+
keydown: (event) => this.$emit("keydown", event),
|
|
3676
|
+
keyup: (event) => this.$emit("keyup", event),
|
|
3677
|
+
change: (event) => this.$emit("change", event),
|
|
3678
|
+
input: (event) => {
|
|
3679
|
+
this.$emit("update:modelValue", event.target.value);
|
|
3680
|
+
this.$emit("input", event);
|
|
3681
|
+
},
|
|
3682
|
+
blur: (event) => this.$emit("blur", event),
|
|
3683
|
+
focus: (event) => this.$emit("focus", event),
|
|
3684
|
+
"keypad-click": (event) => this.$emit("keypad-click", event),
|
|
3685
|
+
dial: (event) => this.$emit("dial", event),
|
|
3686
|
+
"end-call": (event) => this.$emit("end-call", event)
|
|
3687
|
+
}
|
|
3688
|
+
},
|
|
3689
|
+
[this.$slots.default]
|
|
3690
|
+
);
|
|
3691
|
+
}
|
|
3692
|
+
return h(
|
|
3693
|
+
this.componentName,
|
|
3694
|
+
{
|
|
3695
|
+
ref: "element",
|
|
3696
|
+
class: "vvd-component",
|
|
3697
|
+
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
3698
|
+
...this.helperText !== void 0 ? { "helper-text": this.helperText } : {},
|
|
3699
|
+
...this.placeholder !== void 0 ? { placeholder: this.placeholder } : {},
|
|
3700
|
+
...this.modelValue !== void 0 ? { value: this.modelValue } : {},
|
|
3701
|
+
...this.pattern !== void 0 ? { pattern: this.pattern } : {},
|
|
3702
|
+
...this.disabled !== void 0 ? { disabled: this.disabled } : {},
|
|
3703
|
+
...this.callActive !== void 0 ? { "call-active": this.callActive } : {},
|
|
3704
|
+
...this.noCall !== void 0 ? { "no-call": this.noCall } : {},
|
|
3705
|
+
onClick: (event) => this.$emit("click", event),
|
|
3706
|
+
onKeydown: (event) => this.$emit("keydown", event),
|
|
3707
|
+
onKeyup: (event) => this.$emit("keyup", event),
|
|
3708
|
+
onChange: (event) => this.$emit("change", event),
|
|
3709
|
+
onInput: (event) => {
|
|
3710
|
+
this.$emit("update:modelValue", event.target.value);
|
|
3711
|
+
this.$emit("input", event);
|
|
3712
|
+
},
|
|
3713
|
+
onBlur: (event) => this.$emit("blur", event),
|
|
3714
|
+
onFocus: (event) => this.$emit("focus", event),
|
|
3715
|
+
onKeypadClick: (event) => this.$emit("keypad-click", event),
|
|
3716
|
+
onDial: (event) => this.$emit("dial", event),
|
|
3717
|
+
onEndCall: (event) => this.$emit("end-call", event)
|
|
3718
|
+
},
|
|
3520
3719
|
[
|
|
3521
3720
|
// @ts-ignore
|
|
3522
3721
|
this.$slots.default && this.$slots.default()
|
|
@@ -4313,7 +4512,11 @@ const VFilePicker = defineComponent({
|
|
|
4313
4512
|
change: (event) => this.$emit("change", event)
|
|
4314
4513
|
}
|
|
4315
4514
|
},
|
|
4316
|
-
[
|
|
4515
|
+
[
|
|
4516
|
+
this.$slots.default,
|
|
4517
|
+
// @slot helper-text Describes how to use the file-picker. Alternative to the `helper-text` attribute.
|
|
4518
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
4519
|
+
]
|
|
4317
4520
|
);
|
|
4318
4521
|
}
|
|
4319
4522
|
return h(
|
|
@@ -4344,7 +4547,9 @@ const VFilePicker = defineComponent({
|
|
|
4344
4547
|
},
|
|
4345
4548
|
[
|
|
4346
4549
|
// @ts-ignore
|
|
4347
|
-
this.$slots.default && this.$slots.default()
|
|
4550
|
+
this.$slots.default && this.$slots.default(),
|
|
4551
|
+
// @slot helper-text Describes how to use the file-picker. Alternative to the `helper-text` attribute.
|
|
4552
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
4348
4553
|
]
|
|
4349
4554
|
);
|
|
4350
4555
|
}
|
|
@@ -5372,7 +5577,18 @@ const VNavItem = defineComponent({
|
|
|
5372
5577
|
/**
|
|
5373
5578
|
* Indicates the text anchor's text.
|
|
5374
5579
|
*/
|
|
5375
|
-
text: { type: String, default: void 0 }
|
|
5580
|
+
text: { type: String, default: void 0 },
|
|
5581
|
+
/**
|
|
5582
|
+
* The connotation Text-Anchor should have.
|
|
5583
|
+
*/
|
|
5584
|
+
connotation: {
|
|
5585
|
+
type: String,
|
|
5586
|
+
default: void 0
|
|
5587
|
+
},
|
|
5588
|
+
/**
|
|
5589
|
+
* The appearance Text-Anchor should have.
|
|
5590
|
+
*/
|
|
5591
|
+
appearance: { type: String, default: void 0 }
|
|
5376
5592
|
},
|
|
5377
5593
|
emits: [
|
|
5378
5594
|
/**
|
|
@@ -5433,7 +5649,9 @@ const VNavItem = defineComponent({
|
|
|
5433
5649
|
...this.rel !== void 0 ? { rel: this.rel } : {},
|
|
5434
5650
|
...this.target !== void 0 ? { target: this.target } : {},
|
|
5435
5651
|
...this.type !== void 0 ? { type: this.type } : {},
|
|
5436
|
-
...this.text !== void 0 ? { text: this.text } : {}
|
|
5652
|
+
...this.text !== void 0 ? { text: this.text } : {},
|
|
5653
|
+
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5654
|
+
...this.appearance !== void 0 ? { appearance: this.appearance } : {}
|
|
5437
5655
|
},
|
|
5438
5656
|
class: "vvd-component",
|
|
5439
5657
|
on: {
|
|
@@ -5470,6 +5688,8 @@ const VNavItem = defineComponent({
|
|
|
5470
5688
|
...this.target !== void 0 ? { target: this.target } : {},
|
|
5471
5689
|
...this.type !== void 0 ? { type: this.type } : {},
|
|
5472
5690
|
...this.text !== void 0 ? { text: this.text } : {},
|
|
5691
|
+
...this.connotation !== void 0 ? { connotation: this.connotation } : {},
|
|
5692
|
+
...this.appearance !== void 0 ? { appearance: this.appearance } : {},
|
|
5473
5693
|
onClick: (event) => this.$emit("click", event),
|
|
5474
5694
|
onFocus: (event) => this.$emit("focus", event),
|
|
5475
5695
|
onBlur: (event) => this.$emit("blur", event),
|
|
@@ -5855,7 +6075,11 @@ const VNumberField = defineComponent({
|
|
|
5855
6075
|
change: (event) => this.$emit("change", event)
|
|
5856
6076
|
}
|
|
5857
6077
|
},
|
|
5858
|
-
[
|
|
6078
|
+
[
|
|
6079
|
+
this.$slots.default,
|
|
6080
|
+
// @slot helper-text Describes how to use the number-field. Alternative to the `helper-text` attribute.
|
|
6081
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
6082
|
+
]
|
|
5859
6083
|
);
|
|
5860
6084
|
}
|
|
5861
6085
|
return h(
|
|
@@ -5907,7 +6131,9 @@ const VNumberField = defineComponent({
|
|
|
5907
6131
|
},
|
|
5908
6132
|
[
|
|
5909
6133
|
// @ts-ignore
|
|
5910
|
-
this.$slots.default && this.$slots.default()
|
|
6134
|
+
this.$slots.default && this.$slots.default(),
|
|
6135
|
+
// @slot helper-text Describes how to use the number-field. Alternative to the `helper-text` attribute.
|
|
6136
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
5911
6137
|
]
|
|
5912
6138
|
);
|
|
5913
6139
|
}
|
|
@@ -7277,7 +7503,9 @@ const VSelect = defineComponent({
|
|
|
7277
7503
|
// @slot icon Slot to add an icon to the select control.
|
|
7278
7504
|
handleNamedSlot("icon", this.$slots["icon"]),
|
|
7279
7505
|
// @slot meta Slot to add meta content to the select control.
|
|
7280
|
-
handleNamedSlot("meta", this.$slots["meta"])
|
|
7506
|
+
handleNamedSlot("meta", this.$slots["meta"]),
|
|
7507
|
+
// @slot helper-text Describes how to use the select. Alternative to the `helper-text` attribute.
|
|
7508
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
7281
7509
|
]
|
|
7282
7510
|
);
|
|
7283
7511
|
}
|
|
@@ -7325,7 +7553,9 @@ const VSelect = defineComponent({
|
|
|
7325
7553
|
// @slot icon Slot to add an icon to the select control.
|
|
7326
7554
|
handleNamedSlot("icon", this.$slots["icon"]),
|
|
7327
7555
|
// @slot meta Slot to add meta content to the select control.
|
|
7328
|
-
handleNamedSlot("meta", this.$slots["meta"])
|
|
7556
|
+
handleNamedSlot("meta", this.$slots["meta"]),
|
|
7557
|
+
// @slot helper-text Describes how to use the select. Alternative to the `helper-text` attribute.
|
|
7558
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
7329
7559
|
]
|
|
7330
7560
|
);
|
|
7331
7561
|
}
|
|
@@ -9126,7 +9356,11 @@ const VTextArea = defineComponent({
|
|
|
9126
9356
|
change: (event) => this.$emit("change", event)
|
|
9127
9357
|
}
|
|
9128
9358
|
},
|
|
9129
|
-
[
|
|
9359
|
+
[
|
|
9360
|
+
this.$slots.default,
|
|
9361
|
+
// @slot helper-text Describes how to use the text-area. Alternative to the `helper-text` attribute.
|
|
9362
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
9363
|
+
]
|
|
9130
9364
|
);
|
|
9131
9365
|
}
|
|
9132
9366
|
return h(
|
|
@@ -9173,7 +9407,9 @@ const VTextArea = defineComponent({
|
|
|
9173
9407
|
},
|
|
9174
9408
|
[
|
|
9175
9409
|
// @ts-ignore
|
|
9176
|
-
this.$slots.default && this.$slots.default()
|
|
9410
|
+
this.$slots.default && this.$slots.default(),
|
|
9411
|
+
// @slot helper-text Describes how to use the text-area. Alternative to the `helper-text` attribute.
|
|
9412
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
9177
9413
|
]
|
|
9178
9414
|
);
|
|
9179
9415
|
}
|
|
@@ -9415,7 +9651,9 @@ const VTextField = defineComponent({
|
|
|
9415
9651
|
this.$slots["leading-action-items"]
|
|
9416
9652
|
),
|
|
9417
9653
|
// @slot action-items Used to add action items to the end of the text-field.
|
|
9418
|
-
handleNamedSlot("action-items", this.$slots["action-items"])
|
|
9654
|
+
handleNamedSlot("action-items", this.$slots["action-items"]),
|
|
9655
|
+
// @slot helper-text Describes how to use the text-field. Alternative to the `helper-text` attribute.
|
|
9656
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
9419
9657
|
]
|
|
9420
9658
|
);
|
|
9421
9659
|
}
|
|
@@ -9472,7 +9710,9 @@ const VTextField = defineComponent({
|
|
|
9472
9710
|
this.$slots["leading-action-items"]
|
|
9473
9711
|
),
|
|
9474
9712
|
// @slot action-items Used to add action items to the end of the text-field.
|
|
9475
|
-
handleNamedSlot("action-items", this.$slots["action-items"])
|
|
9713
|
+
handleNamedSlot("action-items", this.$slots["action-items"]),
|
|
9714
|
+
// @slot helper-text Describes how to use the text-field. Alternative to the `helper-text` attribute.
|
|
9715
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
9476
9716
|
]
|
|
9477
9717
|
);
|
|
9478
9718
|
}
|
|
@@ -9642,7 +9882,11 @@ const VTimePicker = defineComponent({
|
|
|
9642
9882
|
change: (event) => this.$emit("change", event)
|
|
9643
9883
|
}
|
|
9644
9884
|
},
|
|
9645
|
-
[
|
|
9885
|
+
[
|
|
9886
|
+
this.$slots.default,
|
|
9887
|
+
// @slot helper-text Describes how to use the time-picker. Alternative to the `helper-text` attribute.
|
|
9888
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
9889
|
+
]
|
|
9646
9890
|
);
|
|
9647
9891
|
}
|
|
9648
9892
|
return h(
|
|
@@ -9681,7 +9925,9 @@ const VTimePicker = defineComponent({
|
|
|
9681
9925
|
},
|
|
9682
9926
|
[
|
|
9683
9927
|
// @ts-ignore
|
|
9684
|
-
this.$slots.default && this.$slots.default()
|
|
9928
|
+
this.$slots.default && this.$slots.default(),
|
|
9929
|
+
// @slot helper-text Describes how to use the time-picker. Alternative to the `helper-text` attribute.
|
|
9930
|
+
handleNamedSlot("helper-text", this.$slots["helper-text"])
|
|
9685
9931
|
]
|
|
9686
9932
|
);
|
|
9687
9933
|
}
|
|
@@ -10205,6 +10451,161 @@ const VTreeView = defineComponent({
|
|
|
10205
10451
|
}
|
|
10206
10452
|
});
|
|
10207
10453
|
|
|
10454
|
+
const VVideoPlayer = defineComponent({
|
|
10455
|
+
name: "VVideoPlayer",
|
|
10456
|
+
props: {
|
|
10457
|
+
/**
|
|
10458
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
10459
|
+
*/
|
|
10460
|
+
ariaCurrent: {
|
|
10461
|
+
type: String,
|
|
10462
|
+
default: void 0
|
|
10463
|
+
},
|
|
10464
|
+
/**
|
|
10465
|
+
* Reference to an image which is displayed before the video is played
|
|
10466
|
+
*/
|
|
10467
|
+
poster: { type: String, default: void 0 },
|
|
10468
|
+
/**
|
|
10469
|
+
* URL of a video file
|
|
10470
|
+
*/
|
|
10471
|
+
src: { type: String, default: void 0 },
|
|
10472
|
+
/**
|
|
10473
|
+
* Allows the video will play automatically (muted)
|
|
10474
|
+
*/
|
|
10475
|
+
autoplay: { type: Boolean, default: void 0 },
|
|
10476
|
+
/**
|
|
10477
|
+
* Allows the video to loop back to the beginning when finished
|
|
10478
|
+
*/
|
|
10479
|
+
loop: { type: Boolean, default: void 0 },
|
|
10480
|
+
/**
|
|
10481
|
+
* Sets the available playback rates. When an empty string, no choices will be available
|
|
10482
|
+
*/
|
|
10483
|
+
playbackRates: { type: String, default: void 0 },
|
|
10484
|
+
/**
|
|
10485
|
+
* Allows the video to loop back to the beginning when finished
|
|
10486
|
+
*/
|
|
10487
|
+
skipBy: {
|
|
10488
|
+
type: String,
|
|
10489
|
+
default: void 0
|
|
10490
|
+
}
|
|
10491
|
+
},
|
|
10492
|
+
emits: [
|
|
10493
|
+
/**
|
|
10494
|
+
* 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.
|
|
10495
|
+
* @type {MouseEvent}
|
|
10496
|
+
*/
|
|
10497
|
+
"click",
|
|
10498
|
+
/**
|
|
10499
|
+
* Fires when the element receives focus.
|
|
10500
|
+
* @type {FocusEvent}
|
|
10501
|
+
*/
|
|
10502
|
+
"focus",
|
|
10503
|
+
/**
|
|
10504
|
+
* Fires when the element loses focus.
|
|
10505
|
+
* @type {FocusEvent}
|
|
10506
|
+
*/
|
|
10507
|
+
"blur",
|
|
10508
|
+
/**
|
|
10509
|
+
* Fires when a key is pressed.
|
|
10510
|
+
* @type {KeyboardEvent}
|
|
10511
|
+
*/
|
|
10512
|
+
"keydown",
|
|
10513
|
+
/**
|
|
10514
|
+
* Fires when a key is released.
|
|
10515
|
+
* @type {KeyboardEvent}
|
|
10516
|
+
*/
|
|
10517
|
+
"keyup",
|
|
10518
|
+
/**
|
|
10519
|
+
* Fires when the value of an element has been changed.
|
|
10520
|
+
* @type {Event}
|
|
10521
|
+
*/
|
|
10522
|
+
"input",
|
|
10523
|
+
/**
|
|
10524
|
+
* Fired when the video is played
|
|
10525
|
+
* @type {unknown}
|
|
10526
|
+
*/
|
|
10527
|
+
"play",
|
|
10528
|
+
/**
|
|
10529
|
+
* Fired when the video is paused
|
|
10530
|
+
* @type {unknown}
|
|
10531
|
+
*/
|
|
10532
|
+
"pause",
|
|
10533
|
+
/**
|
|
10534
|
+
* Fired when the video is ended
|
|
10535
|
+
* @type {unknown}
|
|
10536
|
+
*/
|
|
10537
|
+
"ended"
|
|
10538
|
+
],
|
|
10539
|
+
methods: {},
|
|
10540
|
+
setup(props, ctx) {
|
|
10541
|
+
const componentName = registerComponent(
|
|
10542
|
+
"video-player",
|
|
10543
|
+
registerVideoPlayer
|
|
10544
|
+
);
|
|
10545
|
+
const element = ref(null);
|
|
10546
|
+
return { componentName, element };
|
|
10547
|
+
},
|
|
10548
|
+
render() {
|
|
10549
|
+
if (isVue2) {
|
|
10550
|
+
return h(
|
|
10551
|
+
this.componentName,
|
|
10552
|
+
{
|
|
10553
|
+
ref: "element",
|
|
10554
|
+
attrs: {
|
|
10555
|
+
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10556
|
+
...this.poster !== void 0 ? { poster: this.poster } : {},
|
|
10557
|
+
...this.src !== void 0 ? { src: this.src } : {},
|
|
10558
|
+
...this.autoplay !== void 0 ? { autoplay: this.autoplay } : {},
|
|
10559
|
+
...this.loop !== void 0 ? { loop: this.loop } : {},
|
|
10560
|
+
...this.playbackRates !== void 0 ? { "playback-rates": this.playbackRates } : {},
|
|
10561
|
+
...this.skipBy !== void 0 ? { "skip-by": this.skipBy } : {}
|
|
10562
|
+
},
|
|
10563
|
+
class: "vvd-component",
|
|
10564
|
+
on: {
|
|
10565
|
+
click: (event) => this.$emit("click", event),
|
|
10566
|
+
focus: (event) => this.$emit("focus", event),
|
|
10567
|
+
blur: (event) => this.$emit("blur", event),
|
|
10568
|
+
keydown: (event) => this.$emit("keydown", event),
|
|
10569
|
+
keyup: (event) => this.$emit("keyup", event),
|
|
10570
|
+
input: (event) => this.$emit("input", event),
|
|
10571
|
+
play: (event) => this.$emit("play", event),
|
|
10572
|
+
pause: (event) => this.$emit("pause", event),
|
|
10573
|
+
ended: (event) => this.$emit("ended", event)
|
|
10574
|
+
}
|
|
10575
|
+
},
|
|
10576
|
+
[this.$slots.default]
|
|
10577
|
+
);
|
|
10578
|
+
}
|
|
10579
|
+
return h(
|
|
10580
|
+
this.componentName,
|
|
10581
|
+
{
|
|
10582
|
+
ref: "element",
|
|
10583
|
+
class: "vvd-component",
|
|
10584
|
+
...this.ariaCurrent !== void 0 ? { "aria-current": this.ariaCurrent } : {},
|
|
10585
|
+
...this.poster !== void 0 ? { poster: this.poster } : {},
|
|
10586
|
+
...this.src !== void 0 ? { src: this.src } : {},
|
|
10587
|
+
...this.autoplay !== void 0 ? { autoplay: this.autoplay } : {},
|
|
10588
|
+
...this.loop !== void 0 ? { loop: this.loop } : {},
|
|
10589
|
+
...this.playbackRates !== void 0 ? { "playback-rates": this.playbackRates } : {},
|
|
10590
|
+
...this.skipBy !== void 0 ? { "skip-by": this.skipBy } : {},
|
|
10591
|
+
onClick: (event) => this.$emit("click", event),
|
|
10592
|
+
onFocus: (event) => this.$emit("focus", event),
|
|
10593
|
+
onBlur: (event) => this.$emit("blur", event),
|
|
10594
|
+
onKeydown: (event) => this.$emit("keydown", event),
|
|
10595
|
+
onKeyup: (event) => this.$emit("keyup", event),
|
|
10596
|
+
onInput: (event) => this.$emit("input", event),
|
|
10597
|
+
onPlay: (event) => this.$emit("play", event),
|
|
10598
|
+
onPause: (event) => this.$emit("pause", event),
|
|
10599
|
+
onEnded: (event) => this.$emit("ended", event)
|
|
10600
|
+
},
|
|
10601
|
+
[
|
|
10602
|
+
// @ts-ignore
|
|
10603
|
+
this.$slots.default && this.$slots.default()
|
|
10604
|
+
]
|
|
10605
|
+
);
|
|
10606
|
+
}
|
|
10607
|
+
});
|
|
10608
|
+
|
|
10208
10609
|
var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
10209
10610
|
Icon2["10SecBackwardSolid"] = "10-sec-backward-solid";
|
|
10210
10611
|
Icon2["10SecForwardLine"] = "10-sec-forward-line";
|
|
@@ -11407,17 +11808,17 @@ var Icon = /* @__PURE__ */ ((Icon2) => {
|
|
|
11407
11808
|
return Icon2;
|
|
11408
11809
|
})(Icon || {});
|
|
11409
11810
|
|
|
11410
|
-
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n}\n";
|
|
11811
|
+
const tokensThemeLightCss = "/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n}\n";
|
|
11411
11812
|
|
|
11412
|
-
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n/**\n * Do not edit directly\n * Generated on Wed, 20 Mar 2024 10:23:28 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n}\n";
|
|
11813
|
+
const tokensThemeDarkCss = "/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 GMT\n */\n@property --vvd-size-density {\n syntax: \"<integer>\";\n inherits: true;\n initial-value: 0;\n}\n@property --vvd-size-font-scale-base {\n syntax: \"<length>\";\n inherits: true;\n initial-value: 16px;\n}\n.vvd-root, ::part(vvd-root) {\n --vvd-color-scheme: dark;\n --vvd-color-canvas: #000000;\n --vvd-color-canvas-text: #ffffff;\n --vvd-color-neutral-50: #1a1a1a;\n --vvd-color-neutral-100: #333333;\n --vvd-color-neutral-200: #4d4d4d;\n --vvd-color-neutral-300: #666666;\n --vvd-color-neutral-400: #757575;\n --vvd-color-neutral-500: #929292;\n --vvd-color-neutral-600: #b3b3b3;\n --vvd-color-neutral-700: #cccccc;\n --vvd-color-neutral-800: #E6E6E6;\n --vvd-color-neutral-900: #F2F2F2;\n --vvd-color-neutral-950: #ffffff;\n --vvd-color-cta-50: #26044d;\n --vvd-color-cta-100: #440291;\n --vvd-color-cta-200: #6405d1;\n --vvd-color-cta-300: #871eff;\n --vvd-color-cta-400: #9941ff;\n --vvd-color-cta-500: #b27bf2;\n --vvd-color-cta-600: #cba1fa;\n --vvd-color-cta-700: #dcc1fc;\n --vvd-color-cta-800: #ece2fa;\n --vvd-color-cta-900: #f5f0fd;\n --vvd-color-warning-50: #2A1502;\n --vvd-color-warning-100: #522801;\n --vvd-color-warning-200: #803807;\n --vvd-color-warning-300: #A64C03;\n --vvd-color-warning-400: #be5702;\n --vvd-color-warning-500: #e07902;\n --vvd-color-warning-600: #fa9f00;\n --vvd-color-warning-700: #FACC4B;\n --vvd-color-warning-800: #FDEAA0;\n --vvd-color-warning-900: #FDF5D4;\n --vvd-color-information-50: #071939;\n --vvd-color-information-100: #0e306d;\n --vvd-color-information-200: #094a9e;\n --vvd-color-information-300: #0e65c2;\n --vvd-color-information-400: #0276d5;\n --vvd-color-information-500: #2997f0;\n --vvd-color-information-600: #65baff;\n --vvd-color-information-700: #9dd2fe;\n --vvd-color-information-800: #d3e9fc;\n --vvd-color-information-900: #e8f4fb;\n --vvd-color-announcement-50: #32082c;\n --vvd-color-announcement-100: #620256;\n --vvd-color-announcement-200: #8f1669;\n --vvd-color-announcement-300: #bb1e89;\n --vvd-color-announcement-400: #d6219c;\n --vvd-color-announcement-500: #e560bb;\n --vvd-color-announcement-600: #fb8fd8;\n --vvd-color-announcement-700: #f8b9e7;\n --vvd-color-announcement-800: #ffdcf7;\n --vvd-color-announcement-900: #ffedfb;\n --vvd-color-alert-50: #3e0004;\n --vvd-color-alert-100: #6e0000;\n --vvd-color-alert-200: #9f0202;\n --vvd-color-alert-300: #cd0d0d;\n --vvd-color-alert-400: #e61d1d;\n --vvd-color-alert-500: #f75959;\n --vvd-color-alert-600: #fe9696;\n --vvd-color-alert-700: #ffbbbb;\n --vvd-color-alert-800: #fedfdf;\n --vvd-color-alert-900: #ffeef2;\n --vvd-color-success-50: #0a1e11;\n --vvd-color-success-100: #183a1e;\n --vvd-color-success-200: #155923;\n --vvd-color-success-300: #167629;\n --vvd-color-success-400: #1c8731;\n --vvd-color-success-500: #30a849;\n --vvd-color-success-600: #53ca6a;\n --vvd-color-success-700: #86e090;\n --vvd-color-success-800: #cfeed4;\n --vvd-color-success-900: #e1f8e5;\n --vvd-color-surface-0dp: #0d0d0d;\n --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;\n --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;\n --vvd-color-surface-8dp: linear-gradient(#ffffff1a, #ffffff1a), #0d0d0d;\n --vvd-color-surface-12dp: linear-gradient(#ffffff1f, #ffffff1f), #0d0d0d;\n --vvd-color-surface-16dp: linear-gradient(#ffffff24, #ffffff24), #0d0d0d;\n --vvd-color-surface-24dp: linear-gradient(#ffffff29, #ffffff29), #0d0d0d;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #00000040) drop-shadow(0px 1px 2px #00000040) drop-shadow(0px 2px 1px #00000040);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #00000040) drop-shadow(0px 2px 4px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #00000040) drop-shadow(0px 8px 8px #00000040) drop-shadow(0px 4px 4px #00000040);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #00000040) drop-shadow(0px 12px 16px #00000040) drop-shadow(0px 6px 8px #00000040);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);\n --vvd-typography-headline: 500 calc(var(--vvd-size-font-scale-base, 16px) * 4.125)/1.3333333333333333 Montserrat;\n --vvd-typography-subtitle: 500 calc(var(--vvd-size-font-scale-base, 16px) * 3.25)/1.3076923076923077 Montserrat;\n --vvd-typography-heading-1: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2.5)/1.3 Montserrat;\n --vvd-typography-heading-2: 500 calc(var(--vvd-size-font-scale-base, 16px) * 2)/1.375 Montserrat;\n --vvd-typography-heading-3: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.625)/1.3846153846153846 Montserrat;\n --vvd-typography-heading-4: 500 calc(var(--vvd-size-font-scale-base, 16px) * 1.25)/1.4 Montserrat;\n --vvd-typography-base: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Montserrat;\n --vvd-typography-base-code: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.875)/1.4285714285714286 Roboto Mono;\n --vvd-typography-base-condensed: 400 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-condensed-bold: 600 calc(var(--vvd-size-font-scale-base, 16px) * 0.75)/1.3333333333333333 Montserrat;\n --vvd-typography-base-extended: 400 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n --vvd-typography-base-extended-bold: 600 calc(var(--vvd-size-font-scale-base, 16px))/1.5 Montserrat;\n}\n\n.vvd-theme-alternate, ::part(vvd-theme-alternate) {\n --vvd-color-scheme: light;\n --vvd-color-canvas: #ffffff;\n --vvd-color-canvas-text: #0d0d0d;\n --vvd-color-neutral-50: #F2F2F2;\n --vvd-color-neutral-100: #E6E6E6;\n --vvd-color-neutral-200: #cccccc;\n --vvd-color-neutral-300: #b3b3b3;\n --vvd-color-neutral-400: #929292;\n --vvd-color-neutral-500: #757575;\n --vvd-color-neutral-600: #666666;\n --vvd-color-neutral-700: #4d4d4d;\n --vvd-color-neutral-800: #333333;\n --vvd-color-neutral-900: #1a1a1a;\n --vvd-color-neutral-950: #0d0d0d;\n --vvd-color-cta-50: #f5f0fd;\n --vvd-color-cta-100: #ece2fa;\n --vvd-color-cta-200: #dcc1fc;\n --vvd-color-cta-300: #cba1fa;\n --vvd-color-cta-400: #b27bf2;\n --vvd-color-cta-500: #9941ff;\n --vvd-color-cta-600: #871eff;\n --vvd-color-cta-700: #6405d1;\n --vvd-color-cta-800: #440291;\n --vvd-color-cta-900: #26044d;\n --vvd-color-cta-950: #140623;\n --vvd-color-warning-50: #FDF5D4;\n --vvd-color-warning-100: #FDEAA0;\n --vvd-color-warning-200: #FACC4B;\n --vvd-color-warning-300: #fa9f00;\n --vvd-color-warning-400: #e07902;\n --vvd-color-warning-500: #be5702;\n --vvd-color-warning-600: #A64C03;\n --vvd-color-warning-700: #893000;\n --vvd-color-warning-800: #522801;\n --vvd-color-warning-900: #2A1502;\n --vvd-color-warning-950: #150B01;\n --vvd-color-information-50: #e8f4fb;\n --vvd-color-information-100: #d3e9fc;\n --vvd-color-information-200: #9dd2fe;\n --vvd-color-information-300: #65baff;\n --vvd-color-information-400: #2997f0;\n --vvd-color-information-500: #0276d5;\n --vvd-color-information-600: #0e65c2;\n --vvd-color-information-700: #094a9e;\n --vvd-color-information-800: #0e306d;\n --vvd-color-information-900: #071939;\n --vvd-color-information-950: #040d1d;\n --vvd-color-announcement-50: #ffedfb;\n --vvd-color-announcement-100: #ffdcf7;\n --vvd-color-announcement-200: #f8b9e7;\n --vvd-color-announcement-300: #fb8fd8;\n --vvd-color-announcement-400: #e560bb;\n --vvd-color-announcement-500: #d6219c;\n --vvd-color-announcement-600: #bb1e89;\n --vvd-color-announcement-700: #8f1669;\n --vvd-color-announcement-800: #620256;\n --vvd-color-announcement-900: #32082c;\n --vvd-color-announcement-950: #1d031a;\n --vvd-color-success-50: #e1f8e5;\n --vvd-color-success-100: #cfeed4;\n --vvd-color-success-200: #86e090;\n --vvd-color-success-300: #53ca6a;\n --vvd-color-success-400: #30a849;\n --vvd-color-success-500: #1c8731;\n --vvd-color-success-600: #167629;\n --vvd-color-success-700: #155923;\n --vvd-color-success-800: #183a1e;\n --vvd-color-success-900: #0a1e11;\n --vvd-color-success-950: #060f09;\n --vvd-color-alert-50: #ffeef2;\n --vvd-color-alert-100: #fedfdf;\n --vvd-color-alert-200: #ffbbbb;\n --vvd-color-alert-300: #fe9696;\n --vvd-color-alert-400: #f75959;\n --vvd-color-alert-500: #e61d1d;\n --vvd-color-alert-600: #cd0d0d;\n --vvd-color-alert-700: #9f0202;\n --vvd-color-alert-800: #6e0000;\n --vvd-color-alert-900: #3e0004;\n --vvd-color-alert-950: #250004;\n --vvd-color-surface-0dp: #ffffff;\n --vvd-color-surface-2dp: #ffffff;\n --vvd-color-surface-4dp: #ffffff;\n --vvd-color-surface-8dp: #ffffff;\n --vvd-color-surface-12dp: #ffffff;\n --vvd-color-surface-16dp: #ffffff;\n --vvd-color-surface-24dp: #ffffff;\n --vvd-shadow-surface-0dp: drop-shadow(1px 0px 0px #cccccc) drop-shadow(0px 1px 0px #cccccc) drop-shadow(0px -1px 0px #cccccc) drop-shadow(-1px 0px 0px #cccccc);\n --vvd-shadow-surface-2dp: drop-shadow(0px 1px 4px #0000001a) drop-shadow(0px 1px 2px #0000000d) drop-shadow(0px 2px 1px #0000000d);\n --vvd-shadow-surface-4dp: drop-shadow(0px 2px 8px #0000001a) drop-shadow(0px 2px 4px #0000000d) drop-shadow(0px 4px 2px #0000000d);\n --vvd-shadow-surface-8dp: drop-shadow(0px 2px 16px #0000001a) drop-shadow(0px 8px 8px #0000000d) drop-shadow(0px 4px 4px #0000000d);\n --vvd-shadow-surface-12dp: drop-shadow(0px 4px 24px #0000001a) drop-shadow(0px 12px 16px #0000000d) drop-shadow(0px 6px 8px #0000000d);\n --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);\n --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);\n}\n";
|
|
11413
11814
|
|
|
11414
11815
|
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";
|
|
11415
11816
|
|
|
11416
|
-
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on
|
|
11817
|
+
const tokensVivid2CompatCss = "/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 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";
|
|
11417
11818
|
|
|
11418
|
-
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on
|
|
11819
|
+
const coreThemeCss = "/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 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";
|
|
11419
11820
|
|
|
11420
|
-
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on
|
|
11821
|
+
const coreTypographyCss = "/**\n * Do not edit directly\n * Generated on Thu, 04 Apr 2024 12:53:17 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";
|
|
11421
11822
|
|
|
11422
11823
|
const theme = {
|
|
11423
11824
|
name: "core/theme",
|
|
@@ -11515,4 +11916,4 @@ const vivid3 = {
|
|
|
11515
11916
|
}
|
|
11516
11917
|
};
|
|
11517
11918
|
|
|
11518
|
-
export { Icon, VAccordion, VAccordionItem, VActionGroup, VAlert, VAudioPlayer, VAvatar, VBadge, VBanner, VBreadcrumb, VBreadcrumbItem, VButton, VCalendar, VCalendarEvent, VCard, VCheckbox, VCombobox, VDataGrid, VDataGridCell, VDataGridRow, VDatePicker, VDateRangePicker, VDialog, VDivider, VEmptyState, VFab, VFilePicker, VHeader, VIcon, VLayout, VMenu, VMenuItem, VNav, VNavDisclosure, VNavItem, VNote, VNumberField, VOption, VPagination, VProgress, VProgressRing, VRadio, VRadioGroup, VRangeSlider, VSelect, VSelectableBox, VSideDrawer, VSlider, VSplitButton, VSwitch, VTab, VTabPanel, VTabs, VTag, VTagGroup, VTextArea, VTextField, VTimePicker, VToggletip, VTooltip, VTreeItem, VTreeView, optionalStyles, setCustomComponentPrefix, vivid3 };
|
|
11919
|
+
export { Icon, VAccordion, VAccordionItem, VActionGroup, VAlert, VAudioPlayer, VAvatar, VBadge, VBanner, VBreadcrumb, VBreadcrumbItem, VButton, VCalendar, VCalendarEvent, VCard, VCheckbox, VCombobox, VDataGrid, VDataGridCell, VDataGridRow, VDatePicker, VDateRangePicker, VDialPad, VDialog, VDivider, VEmptyState, VFab, VFilePicker, VHeader, VIcon, VLayout, VMenu, VMenuItem, VNav, VNavDisclosure, VNavItem, VNote, VNumberField, VOption, VPagination, VProgress, VProgressRing, VRadio, VRadioGroup, VRangeSlider, VSelect, VSelectableBox, VSideDrawer, VSlider, VSplitButton, VSwitch, VTab, VTabPanel, VTabs, VTag, VTagGroup, VTextArea, VTextField, VTimePicker, VToggletip, VTooltip, VTreeItem, VTreeView, VVideoPlayer, optionalStyles, setCustomComponentPrefix, vivid3 };
|