prlg-ui 1.8.156 → 1.8.158
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 +6 -4
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1591 -1589
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -520,7 +520,7 @@ declare type __VLS_PublicProps = {
|
|
|
520
520
|
} & __VLS_Props_2;
|
|
521
521
|
|
|
522
522
|
declare type __VLS_PublicProps_10 = {
|
|
523
|
-
modelValue: string | null;
|
|
523
|
+
modelValue: number | string | null;
|
|
524
524
|
} & __VLS_Props_11;
|
|
525
525
|
|
|
526
526
|
declare type __VLS_PublicProps_11 = {
|
|
@@ -1641,7 +1641,9 @@ declare type OffsetValue = number | {
|
|
|
1641
1641
|
alignmentAxis?: number | null;
|
|
1642
1642
|
};
|
|
1643
1643
|
|
|
1644
|
-
export declare const OTPCode: DefineComponent<__VLS_PublicProps_16, {
|
|
1644
|
+
export declare const OTPCode: DefineComponent<__VLS_PublicProps_16, {
|
|
1645
|
+
$els: HTMLInputElement[];
|
|
1646
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1645
1647
|
"update:modelValue": (value: string) => any;
|
|
1646
1648
|
} & {
|
|
1647
1649
|
blur: (index: number) => any;
|
|
@@ -1740,9 +1742,9 @@ declare interface ScheduleProps {
|
|
|
1740
1742
|
}
|
|
1741
1743
|
|
|
1742
1744
|
export declare const SelectButton: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1743
|
-
"update:modelValue": (value: string | null) => any;
|
|
1745
|
+
"update:modelValue": (value: string | number | null) => any;
|
|
1744
1746
|
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
1745
|
-
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
1747
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
1746
1748
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1747
1749
|
|
|
1748
1750
|
declare type SelectButtonProps = {
|