@tanstack/vue-form 1.27.1 → 1.27.3

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/types.ts +6 -2
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@tanstack/vue-form",
3
- "version": "1.27.1",
3
+ "version": "1.27.3",
4
4
  "description": "Powerful, type-safe forms for Vue.",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/TanStack/form.git",
9
+ "url": "git+https://github.com/TanStack/form.git",
10
10
  "directory": "packages/vue-form"
11
11
  },
12
12
  "homepage": "https://tanstack.com/form",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "dependencies": {
40
40
  "@tanstack/vue-store": "^0.7.7",
41
- "@tanstack/form-core": "1.27.1"
41
+ "@tanstack/form-core": "1.27.3"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@vitejs/plugin-vue": "^5.2.4",
package/src/types.ts CHANGED
@@ -45,7 +45,9 @@ export interface UseFieldOptions<
45
45
  TFormOnDynamicAsync extends undefined | FormAsyncValidateOrFn<TParentData>,
46
46
  TFormOnServer extends undefined | FormAsyncValidateOrFn<TParentData>,
47
47
  TSubmitMeta,
48
- > extends FieldApiOptions<
48
+ >
49
+ extends
50
+ FieldApiOptions<
49
51
  TParentData,
50
52
  TName,
51
53
  TData,
@@ -93,7 +95,9 @@ export interface UseFieldOptionsBound<
93
95
  TOnDynamicAsync extends
94
96
  | undefined
95
97
  | FieldAsyncValidateOrFn<TParentData, TName, TData>,
96
- > extends FieldOptions<
98
+ >
99
+ extends
100
+ FieldOptions<
97
101
  TParentData,
98
102
  TName,
99
103
  TData,