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