mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
Add input props to ToolbarSearch (#647)
This commit is contained in:
parent
cff16e5d7d
commit
630e19b57a
3 changed files with 5 additions and 2 deletions
|
@ -11016,7 +11016,7 @@
|
||||||
{ "type": "forwarded", "name": "blur", "element": "Search" }
|
{ "type": "forwarded", "name": "blur", "element": "Search" }
|
||||||
],
|
],
|
||||||
"typedefs": [],
|
"typedefs": [],
|
||||||
"rest_props": { "type": "InlineComponent", "name": "Search" }
|
"rest_props": { "type": "Element", "name": "input" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleName": "Tooltip",
|
"moduleName": "Tooltip",
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
|
/** @restProps {input} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specify the value of the search input
|
* Specify the value of the search input
|
||||||
* @type {number | string}
|
* @type {number | string}
|
||||||
|
|
3
types/DataTable/ToolbarSearch.d.ts
vendored
3
types/DataTable/ToolbarSearch.d.ts
vendored
|
@ -1,7 +1,8 @@
|
||||||
/// <reference types="svelte" />
|
/// <reference types="svelte" />
|
||||||
import { SvelteComponentTyped } from "svelte";
|
import { SvelteComponentTyped } from "svelte";
|
||||||
|
|
||||||
export interface ToolbarSearchProps {
|
export interface ToolbarSearchProps
|
||||||
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["input"]> {
|
||||||
/**
|
/**
|
||||||
* Specify the value of the search input
|
* Specify the value of the search input
|
||||||
* @default ""
|
* @default ""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue