@nr1e/qwik-ui 2.0.10 → 2.0.12
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.
|
@@ -7,7 +7,7 @@ export interface SelectFieldProps {
|
|
|
7
7
|
error?: string;
|
|
8
8
|
required?: boolean;
|
|
9
9
|
disabled?: boolean;
|
|
10
|
-
onChange$?: QRL<(event: Event) => void>;
|
|
11
|
-
onBlur$?: QRL<(event: FocusEvent) => void>;
|
|
10
|
+
onChange$?: QRL<(event: Event, element: HTMLSelectElement) => void>;
|
|
11
|
+
onBlur$?: QRL<(event: FocusEvent, element: HTMLSelectElement) => void>;
|
|
12
12
|
}
|
|
13
13
|
export declare const SelectField: import("@builder.io/qwik").Component<SelectFieldProps>;
|
|
@@ -20,11 +20,11 @@ export interface TextFieldProps {
|
|
|
20
20
|
/**
|
|
21
21
|
* Called when the input loses focus.
|
|
22
22
|
*/
|
|
23
|
-
onBlur$?: QRL<(event: FocusEvent) => void>;
|
|
23
|
+
onBlur$?: QRL<(event: FocusEvent, element: HTMLInputElement) => void>;
|
|
24
24
|
/**
|
|
25
25
|
* Called when the input value changes.
|
|
26
26
|
*/
|
|
27
|
-
onInput$?: QRL<(event: InputEvent) => void>;
|
|
27
|
+
onInput$?: QRL<(event: InputEvent, element: HTMLInputElement) => void>;
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
30
30
|
* A standardized text input field meant to be used independently or with Qwik
|