mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
feat(inputs) debounce input and change events (#13764)
* feat(helpers) add debounce helper * feat(searchbar) debounce ionInput * feat(range) debounce ionChange * feat(input) debouce ionInput * feat(textarea) debounce ionInput * feat(range) make debounceChange private * feat(searchbar) make debounceInput private * feat(inputs) change default debounce to 0 in input/textarea
This commit is contained in:
2
packages/core/src/components.d.ts
vendored
2
packages/core/src/components.d.ts
vendored
@ -1155,6 +1155,7 @@ declare global {
|
||||
checked?: boolean;
|
||||
clearInput?: boolean;
|
||||
clearOnEdit?: boolean;
|
||||
debounce?: number;
|
||||
disabled?: boolean;
|
||||
inputmode?: string;
|
||||
max?: string;
|
||||
@ -2880,6 +2881,7 @@ declare global {
|
||||
autofocus?: boolean;
|
||||
clearOnEdit?: boolean;
|
||||
cols?: number;
|
||||
debounce?: number;
|
||||
disabled?: boolean;
|
||||
maxlength?: number;
|
||||
minlength?: number;
|
||||
|
Reference in New Issue
Block a user