Interface: SearchInputStore<T>
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
mode():"explicit"
|"debounce"
|"immediate"
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"
Defined in
widgets/utility/searchInput.tsx:114
value
get
value():T
Current search query value.
Returns
T
Defined in
widgets/utility/searchInput.tsx:118
Methods
change()
change(
params
):void
Changes the search query value with specified intent (action).
Parameters
Parameter | Type | Description |
---|---|---|
|
| ‐ |
|
| Change intent (action):
|
|
| New search query value. |
Returns
void