Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-03-13 18:59:56 -07:00
commit 76c73f82fc
3 changed files with 18 additions and 18 deletions

View file

@ -3163,8 +3163,8 @@ None.
| 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>string</code> | <code>""</code> | Specify the value of the search input |
| expanded | <code>let</code> | Yes | <code>boolean</code> | <code>false</code> | Set to `true to expand the search input |
| value | <code>let</code> | Yes | <code>any</code> | <code>""</code> | Specify the value of the search input |
| small | <code>let</code> | No | <code>boolean</code> | <code>false</code> | -- |
| size | <code>let</code> | No | <code>"sm" &#124; "lg" &#124; "xl"</code> | <code>"xl"</code> | Specify the size of the search input |
| searchClass | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the class name passed to the outer div element |

View file

@ -9115,6 +9115,17 @@
"moduleName": "Search",
"filePath": "src/Search/Search.svelte",
"props": [
{
"name": "value",
"kind": "let",
"description": "Specify the value of the search input",
"type": "any",
"value": "\"\"",
"isFunction": false,
"isFunctionDeclaration": false,
"constant": false,
"reactive": true
},
{
"name": "small",
"kind": "let",
@ -9202,17 +9213,6 @@
"constant": false,
"reactive": true
},
{
"name": "value",
"kind": "let",
"description": "Specify the value of the search input",
"type": "string",
"value": "\"\"",
"isFunction": false,
"isFunctionDeclaration": false,
"constant": false,
"reactive": true
},
{
"name": "placeholder",
"kind": "let",

View file

@ -2,6 +2,12 @@
import { SvelteComponentTyped } from "svelte";
export interface SearchProps {
/**
* Specify the value of the search input
* @default ""
*/
value?: any;
/**
* @default false
*/
@ -49,12 +55,6 @@ export interface SearchProps {
*/
expanded?: boolean;
/**
* Specify the value of the search input
* @default ""
*/
value?: string;
/**
* Specify the `placeholder` attribute of the search input
* @default "Search..."