mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-21 04:39:19 +00:00
Run "yarn build docs"
This commit is contained in:
parent
1588161325
commit
e99c359441
4 changed files with 129 additions and 61 deletions
12
types/ComboBox/ComboBox.svelte.d.ts
vendored
12
types/ComboBox/ComboBox.svelte.d.ts
vendored
|
@ -118,6 +118,18 @@ export interface ComboBoxProps
|
|||
*/
|
||||
translateWithId?: (id: any) => string;
|
||||
|
||||
/**
|
||||
* Override the default translation ids for the menu
|
||||
* @default undefined
|
||||
*/
|
||||
translateWithIdMenu?: (id: any) => string;
|
||||
|
||||
/**
|
||||
* Override the default translation ids for the input
|
||||
* @default undefined
|
||||
*/
|
||||
translateWithIdInput?: (id: any) => string;
|
||||
|
||||
/**
|
||||
* Set an id for the list box component
|
||||
* @default "ccs-" + Math.random().toString(36)
|
||||
|
|
12
types/MultiSelect/MultiSelect.svelte.d.ts
vendored
12
types/MultiSelect/MultiSelect.svelte.d.ts
vendored
|
@ -128,6 +128,18 @@ export interface MultiSelectProps
|
|||
*/
|
||||
translateWithId?: (id: any) => string;
|
||||
|
||||
/**
|
||||
* Override the default translation ids for the menu
|
||||
* @default undefined
|
||||
*/
|
||||
translateWithIdMenu?: (id: any) => string;
|
||||
|
||||
/**
|
||||
* Override the default translation ids for the input
|
||||
* @default undefined
|
||||
*/
|
||||
translateWithIdInput?: (id: any) => string;
|
||||
|
||||
/**
|
||||
* Specify the title text
|
||||
* @default ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue