chore: update value prop description [ci skip]

This commit is contained in:
Eric Liu 2022-01-26 20:21:14 -08:00
commit d69cd37de4
4 changed files with 29 additions and 29 deletions

View file

@ -2561,9 +2561,9 @@ export type NumberInputTranslationId = "increment" | "decrement";
### Props
| Prop name | Kind | Reactive | Type | Default value | Description |
| :-------------- | :----------------- | :------- | :-------------------------------------------------------------- | ---------------------------------------------------------------- | ------------------------------------------------------------ |
| :-------------- | :----------------- | :------- | :-------------------------------------------------------------- | ---------------------------------------------------------------- | ------------------------------------------------------------- |
| ref | <code>let</code> | Yes | <code>null &#124; HTMLInputElement</code> | <code>null</code> | Obtain a reference to the input HTML element |
| value | <code>let</code> | Yes | <code>null &#124; number</code> | <code>null</code> | Specify the input value.<br />Type `null` denotes "no value" |
| value | <code>let</code> | Yes | <code>null &#124; number</code> | <code>null</code> | Specify the input value.<br />Use `null` to denote "no value" |
| size | <code>let</code> | No | <code>"sm" &#124; "xl"</code> | <code>undefined</code> | Set the size of the input |
| step | <code>let</code> | No | <code>number</code> | <code>1</code> | Specify the step increment |
| max | <code>let</code> | No | <code>number</code> | <code>undefined</code> | Specify the maximum value |

View file

@ -6969,7 +6969,7 @@
{
"name": "value",
"kind": "let",
"description": "Specify the input value.\nType `null` denotes \"no value\"",
"description": "Specify the input value.\nUse `null` to denote \"no value\"",
"type": "null | number",
"value": "null",
"isFunction": false,

View file

@ -12,7 +12,7 @@
/**
* Specify the input value.
* Type `null` denotes "no value"
* Use `null` to denote "no value"
* @type {null | number}
*/
export let value = null;

View file

@ -13,7 +13,7 @@ export interface NumberInputProps
/**
* Specify the input value.
* Type `null` denotes "no value"
* Use `null` to denote "no value"
* @default null
*/
value?: null | number;