@volverjs/form-vue 1.1.1-beta.1 → 1.1.2-beta.1
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/VvForm.d.ts +3 -3
- package/dist/index.d.ts +6 -6
- package/package.json +13 -13
package/dist/VvForm.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare function defineForm<Schema extends FormSchema, Type, FormTemplate
|
|
|
5
5
|
clear: () => void;
|
|
6
6
|
errors: import('vue').Ref<InferFormattedError<Schema> | undefined, InferFormattedError<Schema> | undefined>;
|
|
7
7
|
formData: import('vue').Ref<(undefined extends Type ? Partial<InferSchema<Schema>> : Type) | undefined, (undefined extends Type ? Partial<InferSchema<Schema>> : Type) | undefined>;
|
|
8
|
-
ignoreUpdates: import('@vueuse/
|
|
8
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
9
9
|
invalid: import('vue').ComputedRef<boolean>;
|
|
10
10
|
readonly: import('vue').Ref<boolean, boolean>;
|
|
11
11
|
reset: () => void;
|
|
@@ -53,7 +53,7 @@ export declare function defineForm<Schema extends FormSchema, Type, FormTemplate
|
|
|
53
53
|
clear: () => void;
|
|
54
54
|
errors: Readonly<import('vue').Ref<import('vue').DeepReadonly<InferFormattedError<Schema>> | undefined, import('vue').DeepReadonly<InferFormattedError<Schema>> | undefined>>;
|
|
55
55
|
formData: import('vue').Ref<(undefined extends Type ? Partial<InferSchema<Schema>> : Type) | undefined, (undefined extends Type ? Partial<InferSchema<Schema>> : Type) | undefined>;
|
|
56
|
-
ignoreUpdates: import('@vueuse/
|
|
56
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
57
57
|
invalid: import('vue').ComputedRef<boolean>;
|
|
58
58
|
isReadonly: import('vue').Ref<boolean, boolean>;
|
|
59
59
|
reset: () => void;
|
|
@@ -118,7 +118,7 @@ export declare function defineForm<Schema extends FormSchema, Type, FormTemplate
|
|
|
118
118
|
status: UnwrapRef<Readonly<import('vue').Ref<FormStatus | undefined, FormStatus | undefined>>>;
|
|
119
119
|
wrappers: typeof wrappers;
|
|
120
120
|
clear: () => void;
|
|
121
|
-
ignoreUpdates: import('@vueuse/
|
|
121
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
122
122
|
reset: () => void;
|
|
123
123
|
stopUpdatesWatch: import('vue').WatchStopHandle;
|
|
124
124
|
submit: (options?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare function _formType<Schema extends FormSchema, Type>(schema: Schema, opti
|
|
|
11
11
|
formFieldInjectionKey: InjectionKey<InjectedFormFieldData<Schema>>;
|
|
12
12
|
formInjectionKey: InjectionKey<InjectedFormData<Schema, Type>>;
|
|
13
13
|
formWrapperInjectionKey: InjectionKey<InjectedFormWrapperData<Schema>>;
|
|
14
|
-
ignoreUpdates: import('@vueuse/
|
|
14
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
15
15
|
invalid: import('vue').ComputedRef<boolean>;
|
|
16
16
|
readonly: import('vue').Ref<boolean, boolean>;
|
|
17
17
|
reset: () => void;
|
|
@@ -59,7 +59,7 @@ declare function _formType<Schema extends FormSchema, Type>(schema: Schema, opti
|
|
|
59
59
|
clear: () => void;
|
|
60
60
|
errors: Readonly<import('vue').Ref<import('vue').DeepReadonly<import('./types').InferFormattedError<Schema>> | undefined, import('vue').DeepReadonly<import('./types').InferFormattedError<Schema>> | undefined>>;
|
|
61
61
|
formData: import('vue').Ref<(undefined extends Type ? Partial<import('./types').InferSchema<Schema>> : Type) | undefined, (undefined extends Type ? Partial<import('./types').InferSchema<Schema>> : Type) | undefined>;
|
|
62
|
-
ignoreUpdates: import('@vueuse/
|
|
62
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
63
63
|
invalid: import('vue').ComputedRef<boolean>;
|
|
64
64
|
isReadonly: import('vue').Ref<boolean, boolean>;
|
|
65
65
|
reset: () => void;
|
|
@@ -124,7 +124,7 @@ declare function _formType<Schema extends FormSchema, Type>(schema: Schema, opti
|
|
|
124
124
|
status: import('vue').UnwrapRef<Readonly<import('vue').Ref<import('./enums').FormStatus | undefined, import('./enums').FormStatus | undefined>>>;
|
|
125
125
|
wrappers: Map<string, InjectedFormWrapperData<Schema>>;
|
|
126
126
|
clear: () => void;
|
|
127
|
-
ignoreUpdates: import('@vueuse/
|
|
127
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
128
128
|
reset: () => void;
|
|
129
129
|
stopUpdatesWatch: import('vue').WatchStopHandle;
|
|
130
130
|
submit: (options?: {
|
|
@@ -501,7 +501,7 @@ export declare function formType<Schema extends FormSchema, Type>(schema: Schema
|
|
|
501
501
|
formFieldInjectionKey: InjectionKey<InjectedFormFieldData<Schema>>;
|
|
502
502
|
formInjectionKey: InjectionKey<InjectedFormData<Schema, Type>>;
|
|
503
503
|
formWrapperInjectionKey: InjectionKey<InjectedFormWrapperData<Schema>>;
|
|
504
|
-
ignoreUpdates: import('@vueuse/
|
|
504
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
505
505
|
invalid: import('vue').ComputedRef<boolean>;
|
|
506
506
|
readonly: import('vue').Ref<boolean, boolean>;
|
|
507
507
|
reset: () => void;
|
|
@@ -549,7 +549,7 @@ export declare function formType<Schema extends FormSchema, Type>(schema: Schema
|
|
|
549
549
|
clear: () => void;
|
|
550
550
|
errors: Readonly<import('vue').Ref<import('vue').DeepReadonly<import('./types').InferFormattedError<Schema>> | undefined, import('vue').DeepReadonly<import('./types').InferFormattedError<Schema>> | undefined>>;
|
|
551
551
|
formData: import('vue').Ref<(undefined extends Type ? Partial<import('./types').InferSchema<Schema>> : Type) | undefined, (undefined extends Type ? Partial<import('./types').InferSchema<Schema>> : Type) | undefined>;
|
|
552
|
-
ignoreUpdates: import('@vueuse/
|
|
552
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
553
553
|
invalid: import('vue').ComputedRef<boolean>;
|
|
554
554
|
isReadonly: import('vue').Ref<boolean, boolean>;
|
|
555
555
|
reset: () => void;
|
|
@@ -614,7 +614,7 @@ export declare function formType<Schema extends FormSchema, Type>(schema: Schema
|
|
|
614
614
|
status: import('vue').UnwrapRef<Readonly<import('vue').Ref<import('./enums').FormStatus | undefined, import('./enums').FormStatus | undefined>>>;
|
|
615
615
|
wrappers: Map<string, InjectedFormWrapperData<Schema>>;
|
|
616
616
|
clear: () => void;
|
|
617
|
-
ignoreUpdates: import('@vueuse/
|
|
617
|
+
ignoreUpdates: import('@vueuse/shared').IgnoredUpdater;
|
|
618
618
|
reset: () => void;
|
|
619
619
|
stopUpdatesWatch: import('vue').WatchStopHandle;
|
|
620
620
|
submit: (options?: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volverjs/form-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.2-beta.1",
|
|
5
5
|
"description": "Vue 3 Forms with @volverjs/ui-vue",
|
|
6
6
|
"author": "8 Wave S.r.l.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -50,35 +50,35 @@
|
|
|
50
50
|
"node": ">= 16.x"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@volverjs/ui-vue": "^0.0.
|
|
53
|
+
"@volverjs/ui-vue": "^0.0.11",
|
|
54
54
|
"@vueuse/core": "^13.0.0",
|
|
55
55
|
"dot-prop": "^10.0.0",
|
|
56
56
|
"vue": "^3.5.0",
|
|
57
57
|
"zod": "^3.25.0 || ^4.0.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@antfu/eslint-config": "^5.
|
|
60
|
+
"@antfu/eslint-config": "^5.4.1",
|
|
61
61
|
"@nabla/vite-plugin-eslint": "^2.0.6",
|
|
62
|
-
"@playwright/experimental-ct-vue": "^1.55.
|
|
62
|
+
"@playwright/experimental-ct-vue": "^1.55.1",
|
|
63
63
|
"@testing-library/vue": "^8.1.0",
|
|
64
64
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
65
65
|
"@volverjs/style": "^0.1.22",
|
|
66
|
-
"@volverjs/ui-vue": "^0.0.
|
|
67
|
-
"@vue/compiler-sfc": "^3.5.
|
|
68
|
-
"@vue/runtime-core": "^3.5.
|
|
66
|
+
"@volverjs/ui-vue": "^0.0.11",
|
|
67
|
+
"@vue/compiler-sfc": "^3.5.22",
|
|
68
|
+
"@vue/runtime-core": "^3.5.22",
|
|
69
69
|
"@vue/test-utils": "^2.4.6",
|
|
70
70
|
"@vueuse/core": "^13.9.0",
|
|
71
71
|
"copy": "^0.3.2",
|
|
72
72
|
"dot-prop": "^10.0.0",
|
|
73
|
-
"eslint": "^9.
|
|
74
|
-
"happy-dom": "^
|
|
75
|
-
"typescript": "^5.9.
|
|
76
|
-
"vite": "^7.1.
|
|
73
|
+
"eslint": "^9.36.0",
|
|
74
|
+
"happy-dom": "^19.0.2",
|
|
75
|
+
"typescript": "^5.9.3",
|
|
76
|
+
"vite": "^7.1.9",
|
|
77
77
|
"vite-plugin-dts": "^4.5.4",
|
|
78
78
|
"vite-plugin-externalize-deps": "^0.9.0",
|
|
79
79
|
"vitest": "^3.2.4",
|
|
80
|
-
"vue": "^3.5.
|
|
81
|
-
"zod": "^4.1.
|
|
80
|
+
"vue": "^3.5.22",
|
|
81
|
+
"zod": "^4.1.11"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
84
|
"lint": "eslint .",
|