mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-22 05:03:44 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
173d416f14
commit
01054c4065
3 changed files with 27 additions and 42 deletions
13
types/TextInput/TextInput.svelte.d.ts
vendored
13
types/TextInput/TextInput.svelte.d.ts
vendored
|
@ -10,16 +10,13 @@ export interface TextInputProps
|
|||
size?: "sm" | "xl";
|
||||
|
||||
/**
|
||||
* Specify the input value
|
||||
* Specify the input value.
|
||||
*
|
||||
* `value` will be set to `null` if type="number"
|
||||
* and the value is empty.
|
||||
* @default ""
|
||||
*/
|
||||
value?: number | string;
|
||||
|
||||
/**
|
||||
* Specify the input type
|
||||
* @default ""
|
||||
*/
|
||||
type?: string;
|
||||
value?: null | number | string;
|
||||
|
||||
/**
|
||||
* Specify the placeholder text
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue