Interface: SearchInputStore<T>
Defined in: widgets/utility/searchInput.tsx:103
Represents the state store for an abstract search input component.
See
Type Parameters
Type Parameter | Default type |
---|---|
|
|
Properties
Property | Modifier | Type | Description |
---|---|---|---|
| Events for the search store. |
Accessors
mode
Get Signature
get mode():
"explicit"
|"debounce"
|"immediate"
Defined in: widgets/utility/searchInput.tsx:114
Current submit mode for the input
value changes in the store:
debounce
: submit after debounce timeout;immediate
: submit immediately after input;explicit
: submit only on explicitsubmit
action.
Returns
"explicit"
| "debounce"
| "immediate"
value
Get Signature
get value():
T
Defined in: widgets/utility/searchInput.tsx:118
Current search query value.
Returns
T
Methods
change()
change(
params
):void
Defined in: widgets/utility/searchInput.tsx:122
Changes the search query value with specified intent (action).
Parameters
Parameter | Type | Description |
---|---|---|
| { | ‐ |
|
| Change intent (action):
|
|
| New search query value. |
Returns
void