From 574e3d64eeb806883134c4209541c45c8407f3a4 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sun, 13 Mar 2022 18:59:04 -0700 Subject: [PATCH] Run "yarn build:docs" --- COMPONENT_INDEX.md | 1 - docs/src/COMPONENT_API.json | 11 ----------- types/Search/Search.svelte.d.ts | 6 ------ 3 files changed, 18 deletions(-) diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 58506edc..818301c1 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -3172,7 +3172,6 @@ None. | light | let | No | boolean | false | Set to `true` to enable the light variant | | disabled | let | No | boolean | false | Set to `true` to disable the search input | | expandable | let | No | boolean | false | Set to `true` to enable the expandable variant | -| type | let | No | string | "text" | Specify the `type` attribute of the search input | | placeholder | let | No | string | "Search..." | Specify the `placeholder` attribute of the search input | | autocomplete | let | No | "on" | "off" | "off" | Specify the `autocomplete` attribute | | autofocus | let | No | boolean | false | Set to `true` to auto focus the search element | diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index 800f489e..ade957df 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -9213,17 +9213,6 @@ "constant": false, "reactive": true }, - { - "name": "type", - "kind": "let", - "description": "Specify the `type` attribute of the search input", - "type": "string", - "value": "\"text\"", - "isFunction": false, - "isFunctionDeclaration": false, - "constant": false, - "reactive": false - }, { "name": "placeholder", "kind": "let", diff --git a/types/Search/Search.svelte.d.ts b/types/Search/Search.svelte.d.ts index c340ae05..fa91b200 100644 --- a/types/Search/Search.svelte.d.ts +++ b/types/Search/Search.svelte.d.ts @@ -55,12 +55,6 @@ export interface SearchProps { */ value?: string; - /** - * Specify the `type` attribute of the search input - * @default "text" - */ - type?: string; - /** * Specify the `placeholder` attribute of the search input * @default "Search..."