Update API doc
parent
f238f7a83b
commit
06cc520b72
|
@ -92312,40 +92312,40 @@
|
||||||
"ProgressSpinnerDesignTokens": {
|
"ProgressSpinnerDesignTokens": {
|
||||||
"props": [
|
"props": [
|
||||||
{
|
{
|
||||||
"name": "root.color.1",
|
"name": "root.colorOne",
|
||||||
"token": "progressspinner.color.1",
|
"token": "progressspinner.color.one",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Color.1 of root"
|
"description": "Color one of root"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "root.color.2",
|
"name": "root.colorTwo",
|
||||||
"token": "progressspinner.color.2",
|
"token": "progressspinner.color.two",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Color.2 of root"
|
"description": "Color two of root"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "root.color.3",
|
"name": "root.colorThree",
|
||||||
"token": "progressspinner.color.3",
|
"token": "progressspinner.color.three",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Color.3 of root"
|
"description": "Color three of root"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "root.color.4",
|
"name": "root.colorFour",
|
||||||
"token": "progressspinner.color.4",
|
"token": "progressspinner.color.four",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Color.4 of root"
|
"description": "Color four of root"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,18 +2,18 @@ export default {
|
||||||
colorScheme: {
|
colorScheme: {
|
||||||
light: {
|
light: {
|
||||||
root: {
|
root: {
|
||||||
'colorOne': '{red.500}',
|
colorOne: '{red.500}',
|
||||||
'colorTwo': '{blue.500}',
|
colorTwo: '{blue.500}',
|
||||||
'colorThree': '{green.500}',
|
colorThree: '{green.500}',
|
||||||
'colorFour': '{yellow.500}'
|
colorFour: '{yellow.500}'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
root: {
|
root: {
|
||||||
'colorOne': '{red.400}',
|
colorOne: '{red.400}',
|
||||||
'colorTwo': '{blue.400}',
|
colorTwo: '{blue.400}',
|
||||||
'colorThree': '{green.400}',
|
colorThree: '{green.400}',
|
||||||
'colorFour': '{yellow.400}'
|
colorFour: '{yellow.400}'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,25 +16,25 @@ export interface ProgressSpinnerDesignTokens extends ColorSchemeDesignToken<Prog
|
||||||
*/
|
*/
|
||||||
root?: {
|
root?: {
|
||||||
/**
|
/**
|
||||||
* Color 1 of root
|
* Color one of root
|
||||||
*
|
*
|
||||||
* @designToken progressspinner.color.one
|
* @designToken progressspinner.color.one
|
||||||
*/
|
*/
|
||||||
colorOne?: string;
|
colorOne?: string;
|
||||||
/**
|
/**
|
||||||
* Color 2 of root
|
* Color two of root
|
||||||
*
|
*
|
||||||
* @designToken progressspinner.color.two
|
* @designToken progressspinner.color.two
|
||||||
*/
|
*/
|
||||||
colorTwo?: string;
|
colorTwo?: string;
|
||||||
/**
|
/**
|
||||||
* Color 3 of root
|
* Color three of root
|
||||||
*
|
*
|
||||||
* @designToken progressspinner.color.three
|
* @designToken progressspinner.color.three
|
||||||
*/
|
*/
|
||||||
colorThree?: string;
|
colorThree?: string;
|
||||||
/**
|
/**
|
||||||
* Color 4 of root
|
* Color four of root
|
||||||
*
|
*
|
||||||
* @designToken progressspinner.color.four
|
* @designToken progressspinner.color.four
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue