@volverjs/form-vue 1.0.0-beta.18 → 1.0.0-beta.19
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 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/VvFormField.ts +1 -0
package/dist/VvFormField.d.ts
CHANGED
|
@@ -114,6 +114,7 @@ export declare function defineFormField<Schema extends FormSchema>(formProvideKe
|
|
|
114
114
|
lazyLoad: boolean;
|
|
115
115
|
readonly: boolean;
|
|
116
116
|
}, SlotsType<{
|
|
117
|
+
[key: string]: unknown;
|
|
117
118
|
default: {
|
|
118
119
|
errors: z.inferFormattedError<Schema>;
|
|
119
120
|
formData?: Partial<TypeOf<Schema>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -216,6 +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]: unknown;
|
|
219
220
|
default: {
|
|
220
221
|
errors: import('zod').inferFormattedError<Schema, string>;
|
|
221
222
|
formData?: Partial<import('zod').TypeOf<Schema>> | undefined;
|
|
@@ -560,6 +561,7 @@ export declare function useForm<Schema extends FormSchema>(schema: Schema, optio
|
|
|
560
561
|
lazyLoad: boolean;
|
|
561
562
|
readonly: boolean;
|
|
562
563
|
}, import('vue').SlotsType<{
|
|
564
|
+
[key: string]: unknown;
|
|
563
565
|
default: {
|
|
564
566
|
errors: import('zod').inferFormattedError<AnyZodObject, string>;
|
|
565
567
|
formData?: Partial<{
|
|
@@ -925,6 +927,7 @@ export declare function formFactory<Schema extends FormSchema>(schema: Schema, o
|
|
|
925
927
|
lazyLoad: boolean;
|
|
926
928
|
readonly: boolean;
|
|
927
929
|
}, import('vue').SlotsType<{
|
|
930
|
+
[key: string]: unknown;
|
|
928
931
|
default: {
|
|
929
932
|
errors: import('zod').inferFormattedError<Schema, string>;
|
|
930
933
|
formData?: Partial<import('zod').TypeOf<Schema>> | undefined;
|
package/package.json
CHANGED
package/src/VvFormField.ts
CHANGED