@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.
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@volverjs/form-vue",
3
3
  "type": "module",
4
- "version": "1.0.0-beta.18",
4
+ "version": "1.0.0-beta.19",
5
5
  "description": "Vue 3 Forms with @volverjs/ui-vue",
6
6
  "author": "8 Wave S.r.l.",
7
7
  "license": "MIT",
@@ -98,6 +98,7 @@ export function defineFormField<Schema extends FormSchema>(formProvideKey: Injec
98
98
  'type',
99
99
  ],
100
100
  slots: Object as SlotsType<{
101
+ [key: string]: unknown
101
102
  default: {
102
103
  errors: z.inferFormattedError<Schema>
103
104
  formData?: Partial<TypeOf<Schema>>