@lax-wp/design-system 0.3.62 → 0.3.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,7 +5,7 @@ import type { ComponentProps } from "react";
|
|
|
5
5
|
* Props for the DebounceInputField component
|
|
6
6
|
* Drop-in replacement matching the lax-web-portal API
|
|
7
7
|
*/
|
|
8
|
-
export type DebounceInputFieldProps = ComponentProps<typeof DebounceInput> & {
|
|
8
|
+
export type DebounceInputFieldProps = Omit<ComponentProps<typeof DebounceInput>, 'onChange'> & {
|
|
9
9
|
/** Current value of the input */
|
|
10
10
|
value: string;
|
|
11
11
|
/** Callback function called when the input value changes (debounced) */
|