@opengis/form 0.0.69 → 0.0.71
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/array/vs-input-array.vue.d.ts +6 -4
- package/dist/components/inputs/array/vs-input-array.vue.d.ts.map +1 -1
- package/dist/components/inputs/base/vs-input-mask.vue.d.ts +2 -2
- package/dist/components/inputs/index.d.ts +9 -7
- package/dist/components/inputs/index.d.ts.map +1 -1
- package/dist/components/inputs/table/vs-input-datatable.vue.d.ts.map +1 -1
- package/dist/index.js +2250 -2140
- package/dist/index.umd.cjs +3 -3
- package/dist/types/form.d.ts +3 -1
- package/dist/types/form.d.ts.map +1 -1
- package/dist/utils/formRules.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import { IInputArrayProps } from "../../../types/form";
|
|
2
2
|
type __VLS_Props = IInputArrayProps;
|
|
3
3
|
type __VLS_PublicProps = __VLS_Props & {
|
|
4
|
-
modelValue?: (string | number)[];
|
|
4
|
+
modelValue?: (string | number | null)[];
|
|
5
5
|
};
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (value: (string | number)[]) => any;
|
|
7
|
+
"update:modelValue": (value: (string | number | null)[]) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
9
|
+
"onUpdate:modelValue"?: ((value: (string | number | null)[]) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
count: number;
|
|
12
12
|
limit: number;
|
|
13
|
-
|
|
13
|
+
mask: string;
|
|
14
|
+
unmask: boolean;
|
|
15
|
+
inputType: "number" | "text" | "email" | "tel" | "mask";
|
|
14
16
|
style: Record<string, any>;
|
|
15
17
|
error: string | null;
|
|
16
18
|
customClass: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-array.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/array/vs-input-array.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-array.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/array/vs-input-array.vue"],"names":[],"mappings":"AAwPA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAIvD,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAsMpC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,EAAG,CAAC;CACxC,CAAC;;;;;;;;;;;;;;;;;AAoKF,wBAQG"}
|
|
@@ -8,12 +8,12 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
9
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
|
-
style: Record<string, any>;
|
|
12
11
|
mask: string;
|
|
12
|
+
unmask: boolean;
|
|
13
|
+
style: Record<string, any>;
|
|
13
14
|
customClass: string;
|
|
14
15
|
disabled: boolean;
|
|
15
16
|
placeholder: string;
|
|
16
|
-
unmask: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
export default _default;
|
|
19
19
|
//# sourceMappingURL=vs-input-mask.vue.d.ts.map
|
|
@@ -79,12 +79,12 @@ declare const _default: {
|
|
|
79
79
|
}> & Readonly<{
|
|
80
80
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
81
81
|
}>, {
|
|
82
|
-
style: Record<string, any>;
|
|
83
82
|
mask: string;
|
|
83
|
+
unmask: boolean;
|
|
84
|
+
style: Record<string, any>;
|
|
84
85
|
customClass: string;
|
|
85
86
|
disabled: boolean;
|
|
86
87
|
placeholder: string;
|
|
87
|
-
unmask: boolean;
|
|
88
88
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
89
89
|
'vs-input-number': import("vue").DefineComponent<import("../../types/form.js").IInputNumberProps & {
|
|
90
90
|
modelValue?: number;
|
|
@@ -406,17 +406,19 @@ declare const _default: {
|
|
|
406
406
|
teleport: string;
|
|
407
407
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
408
408
|
'vs-input-array': import("vue").DefineComponent<import("../../types/form.js").IInputArrayProps & {
|
|
409
|
-
modelValue?: (string | number)[];
|
|
409
|
+
modelValue?: (string | number | null)[];
|
|
410
410
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
411
|
-
"update:modelValue": (value: (string | number)[]) => any;
|
|
411
|
+
"update:modelValue": (value: (string | number | null)[]) => any;
|
|
412
412
|
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputArrayProps & {
|
|
413
|
-
modelValue?: (string | number)[];
|
|
413
|
+
modelValue?: (string | number | null)[];
|
|
414
414
|
}> & Readonly<{
|
|
415
|
-
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
415
|
+
"onUpdate:modelValue"?: ((value: (string | number | null)[]) => any) | undefined;
|
|
416
416
|
}>, {
|
|
417
417
|
count: number;
|
|
418
418
|
limit: number;
|
|
419
|
-
|
|
419
|
+
mask: string;
|
|
420
|
+
unmask: boolean;
|
|
421
|
+
inputType: "number" | "text" | "email" | "tel" | "mask";
|
|
420
422
|
style: Record<string, any>;
|
|
421
423
|
error: string | null;
|
|
422
424
|
customClass: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCA,wBA8BE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-datatable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/table/vs-input-datatable.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-datatable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/table/vs-input-datatable.vue"],"names":[],"mappings":"AAqYA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAgLpC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,CAAC;;;;;;AAu4BF,wBAOG"}
|