prlg-ui 1.8.149 → 1.8.150
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.
- package/dist/index.d.ts +2 -2
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +325 -330
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1580,13 +1580,13 @@ export declare const InputText: DefineComponent<__VLS_PublicProps_6, {}, {}, {},
|
|
|
1580
1580
|
} & {
|
|
1581
1581
|
clear: () => any;
|
|
1582
1582
|
input: (value: Event) => any;
|
|
1583
|
-
blur: () => any;
|
|
1583
|
+
blur: (value: FocusEvent) => any;
|
|
1584
1584
|
focus: (value: FocusEvent) => any;
|
|
1585
1585
|
paste: (value: ClipboardEvent) => any;
|
|
1586
1586
|
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
1587
1587
|
onClear?: (() => any) | undefined;
|
|
1588
1588
|
onInput?: ((value: Event) => any) | undefined;
|
|
1589
|
-
onBlur?: (() => any) | undefined;
|
|
1589
|
+
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
1590
1590
|
onFocus?: ((value: FocusEvent) => any) | undefined;
|
|
1591
1591
|
onPaste?: ((value: ClipboardEvent) => any) | undefined;
|
|
1592
1592
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|