Update API doc

pull/6596/head
GitHub Actions Bot 2024-10-16 07:43:55 +00:00
parent 63a8709748
commit 293a01b770
2 changed files with 30 additions and 0 deletions

View File

@ -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",

View File

@ -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