@opengis/form 0.0.72 → 0.0.73
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/components/inputs/index.d.ts +15 -15
- package/dist/index.js +705 -705
- package/dist/index.umd.cjs +3 -3
- package/package.json +67 -67
|
@@ -426,26 +426,26 @@ declare const _default: {
|
|
|
426
426
|
maxHeight: number;
|
|
427
427
|
teleport: string;
|
|
428
428
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
429
|
-
'vs-input-array': import("vue").DefineComponent<{
|
|
430
|
-
|
|
431
|
-
placeholder?: string;
|
|
432
|
-
disabled?: boolean;
|
|
433
|
-
} & {
|
|
434
|
-
modelValue?: string[];
|
|
429
|
+
'vs-input-array': import("vue").DefineComponent<import("../../types/form.js").IInputArrayProps & {
|
|
430
|
+
modelValue?: (string | number | null)[];
|
|
435
431
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
436
|
-
"update:modelValue": (value: string[]) => any;
|
|
437
|
-
}, string, import("vue").PublicProps, Readonly<{
|
|
438
|
-
|
|
439
|
-
placeholder?: string;
|
|
440
|
-
disabled?: boolean;
|
|
441
|
-
} & {
|
|
442
|
-
modelValue?: string[];
|
|
432
|
+
"update:modelValue": (value: (string | number | null)[]) => any;
|
|
433
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputArrayProps & {
|
|
434
|
+
modelValue?: (string | number | null)[];
|
|
443
435
|
}> & Readonly<{
|
|
444
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
436
|
+
"onUpdate:modelValue"?: ((value: (string | number | null)[]) => any) | undefined;
|
|
445
437
|
}>, {
|
|
438
|
+
count: number;
|
|
439
|
+
limit: number;
|
|
440
|
+
mask: string;
|
|
441
|
+
unmask: boolean;
|
|
442
|
+
inputType: "number" | "text" | "email" | "tel" | "mask";
|
|
443
|
+
isAdded: boolean;
|
|
444
|
+
style: Record<string, any>;
|
|
445
|
+
error: string | null;
|
|
446
|
+
customClass: string;
|
|
446
447
|
disabled: boolean;
|
|
447
448
|
placeholder: string;
|
|
448
|
-
addButtonText: string;
|
|
449
449
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
450
450
|
'vs-input-address': import("vue").DefineComponent<import("../../types/form.js").IInputProps & {
|
|
451
451
|
api?: string;
|