@volverjs/form-vue 1.0.0-beta.20 → 1.0.0-beta.21
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 +2 -2
- package/src/VvFormField.ts +1 -1
package/dist/VvFormField.d.ts
CHANGED
|
@@ -121,7 +121,7 @@ export declare function defineFormField<Schema extends FormSchema>(formProvideKe
|
|
|
121
121
|
formErrors?: DeepReadonly<inferFormattedError<Schema, string>>;
|
|
122
122
|
invalid: boolean;
|
|
123
123
|
invalidLabel: string;
|
|
124
|
-
modelValue:
|
|
124
|
+
modelValue: any;
|
|
125
125
|
onUpdate: (value: unknown) => void;
|
|
126
126
|
readonly: boolean;
|
|
127
127
|
submit?: InjectedFormData<Schema>["submit"];
|
package/dist/index.d.ts
CHANGED
|
@@ -223,7 +223,7 @@ export declare function useForm<Schema extends FormSchema>(schema: Schema, optio
|
|
|
223
223
|
formErrors?: import('vue').DeepReadonly<import('zod').inferFormattedError<Schema, string>> | undefined;
|
|
224
224
|
invalid: boolean;
|
|
225
225
|
invalidLabel: string;
|
|
226
|
-
modelValue:
|
|
226
|
+
modelValue: any;
|
|
227
227
|
onUpdate: (value: unknown) => void;
|
|
228
228
|
readonly: boolean;
|
|
229
229
|
submit?: InjectedFormData<Schema_1>["submit"];
|
|
@@ -575,7 +575,7 @@ export declare function useForm<Schema extends FormSchema>(schema: Schema, optio
|
|
|
575
575
|
} | undefined;
|
|
576
576
|
invalid: boolean;
|
|
577
577
|
invalidLabel: string;
|
|
578
|
-
modelValue:
|
|
578
|
+
modelValue: any;
|
|
579
579
|
onUpdate: (value: unknown) => void;
|
|
580
580
|
readonly: boolean;
|
|
581
581
|
submit?: InjectedFormData<Schema_1>["submit"];
|
|
@@ -934,7 +934,7 @@ export declare function formFactory<Schema extends FormSchema>(schema: Schema, o
|
|
|
934
934
|
formErrors?: import('vue').DeepReadonly<import('zod').inferFormattedError<Schema, string>> | undefined;
|
|
935
935
|
invalid: boolean;
|
|
936
936
|
invalidLabel: string;
|
|
937
|
-
modelValue:
|
|
937
|
+
modelValue: any;
|
|
938
938
|
onUpdate: (value: unknown) => void;
|
|
939
939
|
readonly: boolean;
|
|
940
940
|
submit?: InjectedFormData<Schema_1>["submit"];
|
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.21",
|
|
5
5
|
"description": "Vue 3 Forms with @volverjs/ui-vue",
|
|
6
6
|
"author": "8 Wave S.r.l.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@antfu/eslint-config": "^3.7.3",
|
|
61
61
|
"@nabla/vite-plugin-eslint": "^2.0.4",
|
|
62
|
-
"@playwright/experimental-ct-vue": "1.48.
|
|
62
|
+
"@playwright/experimental-ct-vue": "1.48.1",
|
|
63
63
|
"@testing-library/vue": "^8.1.0",
|
|
64
64
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
65
65
|
"@volverjs/style": "0.1.13",
|
package/src/VvFormField.ts
CHANGED
|
@@ -105,7 +105,7 @@ export function defineFormField<Schema extends FormSchema>(formProvideKey: Injec
|
|
|
105
105
|
formErrors?: DeepReadonly<inferFormattedError<Schema, string>>
|
|
106
106
|
invalid: boolean
|
|
107
107
|
invalidLabel: string
|
|
108
|
-
modelValue:
|
|
108
|
+
modelValue: any
|
|
109
109
|
onUpdate: (value: unknown) => void
|
|
110
110
|
readonly: boolean
|
|
111
111
|
submit?: InjectedFormData<Schema>['submit']
|