Update API doc
parent
63a8709748
commit
293a01b770
|
@ -71999,6 +71999,24 @@
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Border radius of chip"
|
"description": "Border radius of chip"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "chip.focusBackground",
|
||||||
|
"token": "autocomplete.chip.focus.background",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "string",
|
||||||
|
"default": "",
|
||||||
|
"description": "Focus background of chip"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "chip.color",
|
||||||
|
"token": "autocomplete.chip.color",
|
||||||
|
"optional": true,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "string",
|
||||||
|
"default": "",
|
||||||
|
"description": "Color of chip"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "emptyMessage.padding",
|
"name": "emptyMessage.padding",
|
||||||
"token": "autocomplete.empty.message.padding",
|
"token": "autocomplete.empty.message.padding",
|
||||||
|
|
|
@ -409,6 +409,18 @@ export interface AutoCompleteDesignTokens extends ColorSchemeDesignToken<AutoCom
|
||||||
* @designToken autocomplete.chip.border.radius
|
* @designToken autocomplete.chip.border.radius
|
||||||
*/
|
*/
|
||||||
borderRadius?: string;
|
borderRadius?: string;
|
||||||
|
/**
|
||||||
|
* Focus background of chip
|
||||||
|
*
|
||||||
|
* @designToken autocomplete.chip.focus.background
|
||||||
|
*/
|
||||||
|
focusBackground?: string;
|
||||||
|
/**
|
||||||
|
* Color of chip
|
||||||
|
*
|
||||||
|
* @designToken autocomplete.chip.color
|
||||||
|
*/
|
||||||
|
color?: string;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* Used to pass tokens of the empty message section
|
* Used to pass tokens of the empty message section
|
||||||
|
|
Loading…
Reference in New Issue