@volverjs/form-vue 0.0.14-beta.2 → 0.0.14-beta.4

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.
@@ -1,21 +0,0 @@
1
- import { type Component, type InjectionKey, type DeepReadonly, type Ref } from 'vue';
2
- import type { TypeOf, z } from 'zod';
3
- import type { FormSchema, InjectedFormData } from './types';
4
- import type { FormStatus } from './enums';
5
- export declare const defineFormTemplate: <Schema extends FormSchema>(formProvideKey: InjectionKey<InjectedFormData<Schema>>, VvFormField: Component) => (import("vue").ComponentOptions<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, any> | {
6
- new (...args: any[]): any;
7
- __isFragment?: undefined;
8
- __isTeleport?: undefined;
9
- __isSuspense?: undefined;
10
- }) & (new () => {
11
- $slots: {
12
- default: (_: {
13
- formData: unknown extends Partial<TypeOf<Schema>> | undefined ? undefined : Partial<TypeOf<Schema>> | undefined;
14
- submit: () => boolean;
15
- validate: () => boolean;
16
- errors: Readonly<Ref<DeepReadonly<z.inferFormattedError<Schema, string>>>>;
17
- status: Ref<DeepReadonly<`${FormStatus}` | undefined>>;
18
- invalid: Ref<DeepReadonly<boolean>>;
19
- }) => any;
20
- };
21
- });
File without changes
File without changes
File without changes