@volverjs/form-vue 1.0.0-beta.19 → 1.0.0-beta.20
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/VvFormField.d.ts +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +6 -6
- package/src/VvFormField.ts +1 -1
package/dist/VvFormField.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ export declare function defineFormField<Schema extends FormSchema>(formProvideKe
|
|
|
114
114
|
lazyLoad: boolean;
|
|
115
115
|
readonly: boolean;
|
|
116
116
|
}, SlotsType<{
|
|
117
|
-
[key: string]:
|
|
117
|
+
[key: string]: any;
|
|
118
118
|
default: {
|
|
119
119
|
errors: z.inferFormattedError<Schema>;
|
|
120
120
|
formData?: Partial<TypeOf<Schema>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -216,7 +216,7 @@ export declare function useForm<Schema extends FormSchema>(schema: Schema, optio
|
|
|
216
216
|
lazyLoad: boolean;
|
|
217
217
|
readonly: boolean;
|
|
218
218
|
}, import('vue').SlotsType<{
|
|
219
|
-
[key: string]:
|
|
219
|
+
[key: string]: any;
|
|
220
220
|
default: {
|
|
221
221
|
errors: import('zod').inferFormattedError<Schema, string>;
|
|
222
222
|
formData?: Partial<import('zod').TypeOf<Schema>> | undefined;
|
|
@@ -561,7 +561,7 @@ export declare function useForm<Schema extends FormSchema>(schema: Schema, optio
|
|
|
561
561
|
lazyLoad: boolean;
|
|
562
562
|
readonly: boolean;
|
|
563
563
|
}, import('vue').SlotsType<{
|
|
564
|
-
[key: string]:
|
|
564
|
+
[key: string]: any;
|
|
565
565
|
default: {
|
|
566
566
|
errors: import('zod').inferFormattedError<AnyZodObject, string>;
|
|
567
567
|
formData?: Partial<{
|
|
@@ -927,7 +927,7 @@ export declare function formFactory<Schema extends FormSchema>(schema: Schema, o
|
|
|
927
927
|
lazyLoad: boolean;
|
|
928
928
|
readonly: boolean;
|
|
929
929
|
}, import('vue').SlotsType<{
|
|
930
|
-
[key: string]:
|
|
930
|
+
[key: string]: any;
|
|
931
931
|
default: {
|
|
932
932
|
errors: import('zod').inferFormattedError<Schema, string>;
|
|
933
933
|
formData?: Partial<import('zod').TypeOf<Schema>> | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volverjs/form-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.0-beta.
|
|
4
|
+
"version": "1.0.0-beta.20",
|
|
5
5
|
"description": "Vue 3 Forms with @volverjs/ui-vue",
|
|
6
6
|
"author": "8 Wave S.r.l.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"@testing-library/vue": "^8.1.0",
|
|
64
64
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
65
65
|
"@volverjs/style": "0.1.13",
|
|
66
|
-
"@vue/compiler-sfc": "^3.5.
|
|
67
|
-
"@vue/runtime-core": "^3.5.
|
|
66
|
+
"@vue/compiler-sfc": "^3.5.12",
|
|
67
|
+
"@vue/runtime-core": "^3.5.12",
|
|
68
68
|
"@vue/test-utils": "^2.4.6",
|
|
69
69
|
"copy": "^0.3.2",
|
|
70
70
|
"eslint": "^9.12.0",
|
|
71
71
|
"happy-dom": "^15.7.4",
|
|
72
72
|
"typescript": "^5.6.3",
|
|
73
|
-
"vite": "^5.4.
|
|
74
|
-
"vite-plugin-dts": "^4.2.
|
|
73
|
+
"vite": "^5.4.9",
|
|
74
|
+
"vite-plugin-dts": "^4.2.4",
|
|
75
75
|
"vite-plugin-externalize-deps": "^0.8.0",
|
|
76
|
-
"vitest": "^2.1.
|
|
76
|
+
"vitest": "^2.1.3"
|
|
77
77
|
},
|
|
78
78
|
"scripts": {
|
|
79
79
|
"lint": "eslint .",
|
package/src/VvFormField.ts
CHANGED
|
@@ -98,7 +98,7 @@ export function defineFormField<Schema extends FormSchema>(formProvideKey: Injec
|
|
|
98
98
|
'type',
|
|
99
99
|
],
|
|
100
100
|
slots: Object as SlotsType<{
|
|
101
|
-
[key: string]:
|
|
101
|
+
[key: string]: any
|
|
102
102
|
default: {
|
|
103
103
|
errors: z.inferFormattedError<Schema>
|
|
104
104
|
formData?: Partial<TypeOf<Schema>>
|