Update knob d.ts

pull/5806/head
Cagatay Civici 2024-05-21 14:29:15 +03:00
parent 069ea11666
commit 5e3b79d6dc
2 changed files with 7 additions and 7 deletions

View File

@ -151,17 +151,17 @@ export interface KnobProps {
max?: number | undefined;
/**
* Background of the value.
* @defaultValue var(--<prefix>primary-color, Black)
* @defaultValue $dt('knob.value.background')
*/
valueColor?: string | undefined;
/**
* Background color of the range.
* @defaultValue var(--<prefix>surface-border, LightGray)
* @defaultValue $dt('knob.range.background')
*/
rangeColor?: string | undefined;
/**
* Color of the value text.
* @defaultValue var(--<prefix>text-color-secondary, Black)
* @defaultValue $dt('knob.text.color')
*/
textColor?: string | undefined;
/**

View File

@ -43443,7 +43443,7 @@
"optional": true,
"readonly": false,
"type": "string",
"default": "var(--<prefix>primary-color, Black)",
"default": "$dt('knob.value.background')",
"description": "Background of the value."
},
{
@ -43451,7 +43451,7 @@
"optional": true,
"readonly": false,
"type": "string",
"default": "var(--<prefix>surface-border, LightGray)",
"default": "$dt('knob.range.background')",
"description": "Background color of the range."
},
{
@ -43459,7 +43459,7 @@
"optional": true,
"readonly": false,
"type": "string",
"default": "var(--<prefix>text-color-secondary, Black)",
"default": "$dt('knob.text.color')",
"description": "Color of the value text."
},
{