Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (TanStack#987)
Browse files Browse the repository at this point in the history
* chore(deps): update all non-major dependencies

* chore: fix issues with typescript patches

* ci: apply automated fixes and generate docs

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Corbin Crutchley <[email protected]>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 22, 2024
1 parent f81eca7 commit ebb6a3e
Show file tree
Hide file tree
Showing 47 changed files with 3,556 additions and 4,059 deletions.
34 changes: 0 additions & 34 deletions docs/framework/vue/reference/functions/field.md

This file was deleted.

4 changes: 2 additions & 2 deletions docs/framework/vue/reference/functions/usefield.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ readonly api: FieldApi<TParentData, TName, TFieldValidator, TFormValidator, TDat
### state

```ts
readonly state: Readonly<Ref<FieldState<TData>>> = fieldState;
readonly state: Readonly<Ref<FieldState<TData>, FieldState<TData>>> = fieldState;
```

## Defined in

[packages/vue-form/src/useField.tsx:49](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L49)
[useField.tsx:49](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L49)
2 changes: 1 addition & 1 deletion docs/framework/vue/reference/functions/useform.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ function useForm<TFormData, TFormValidator>(opts?): FormApi<TFormData, TFormVali

## Defined in

[packages/vue-form/src/useForm.tsx:30](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L30)
[useForm.tsx:30](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L30)
5 changes: 4 additions & 1 deletion docs/framework/vue/reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ title: "@tanstack/vue-form"
- [FieldComponent](type-aliases/fieldcomponent.md)
- [UseField](type-aliases/usefield.md)

## Variables

- [Field](variables/field.md)

## Functions

- [Field](functions/field.md)
- [useField](functions/usefield.md)
- [useForm](functions/useform.md)
2 changes: 1 addition & 1 deletion docs/framework/vue/reference/interfaces/vuefieldapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Field: FieldComponent<TParentData, TFormValidator>;

#### Defined in

[packages/vue-form/src/useField.tsx:14](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L14)
[useField.tsx:14](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L14)
12 changes: 6 additions & 6 deletions docs/framework/vue/reference/interfaces/vueformapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Field: FieldComponent<TFormData, TFormValidator>;

#### Defined in

[packages/vue-form/src/useForm.tsx:14](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L14)
[useForm.tsx:14](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L14)

***

Expand Down Expand Up @@ -49,7 +49,7 @@ Subscribe: <TSelected>(props, context) => any;

#### Defined in

[packages/vue-form/src/useForm.tsx:19](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L19)
[useForm.tsx:19](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L19)

***

Expand All @@ -61,14 +61,14 @@ useField: UseField<TFormData, TFormValidator>;

#### Defined in

[packages/vue-form/src/useForm.tsx:15](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L15)
[useForm.tsx:15](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L15)

***

### useStore()

```ts
useStore: <TSelected>(selector?) => Readonly<Ref<TSelected>>;
useStore: <TSelected>(selector?) => Readonly<Ref<TSelected, TSelected>>;
```

#### Type Parameters
Expand All @@ -81,8 +81,8 @@ useStore: <TSelected>(selector?) => Readonly<Ref<TSelected>>;

#### Returns

`Readonly`\<`Ref`\<`TSelected`\>\>
`Readonly`\<`Ref`\<`TSelected`, `TSelected`\>\>

#### Defined in

[packages/vue-form/src/useForm.tsx:16](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L16)
[useForm.tsx:16](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useForm.tsx#L16)
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ type FieldComponent<TParentData, TFormValidator>: <TName, TFieldValidator, TData

## Defined in

[packages/vue-form/src/useField.tsx:117](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L117)
[useField.tsx:117](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L117)
2 changes: 1 addition & 1 deletion docs/framework/vue/reference/type-aliases/usefield.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ state: Readonly<Ref<FieldApi<TParentData, TName, TFieldValidator, TFormValidator

## Defined in

[packages/vue-form/src/useField.tsx:17](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L17)
[useField.tsx:17](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L17)
14 changes: 14 additions & 0 deletions docs/framework/vue/reference/variables/field.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
id: Field
title: Field
---

# Variable: Field

```ts
const Field: Function;
```

## Defined in

[useField.tsx:162](https://github.com/TanStack/form/blob/main/packages/vue-form/src/useField.tsx#L162)
4 changes: 2 additions & 2 deletions examples/angular/array/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"@angular/router": "^17.3.12",
"@tanstack/angular-form": "^0.34.0",
"rxjs": "^7.8.1",
"tslib": "^2.7.0",
"tslib": "^2.8.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.10",
"@angular/cli": "^17.3.10",
"@angular/compiler-cli": "^17.3.12",
"typescript": "5.4.2"
"typescript": "5.4.5"
}
}
4 changes: 2 additions & 2 deletions examples/angular/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"@angular/router": "^17.3.12",
"@tanstack/angular-form": "^0.34.0",
"rxjs": "^7.8.1",
"tslib": "^2.7.0",
"tslib": "^2.8.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.10",
"@angular/cli": "^17.3.10",
"@angular/compiler-cli": "^17.3.12",
"typescript": "5.4.2"
"typescript": "5.4.5"
}
}
6 changes: 3 additions & 3 deletions examples/angular/valibot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"@tanstack/angular-form": "^0.34.0",
"@tanstack/valibot-form-adapter": "^0.34.0",
"rxjs": "^7.8.1",
"tslib": "^2.7.0",
"valibot": "1.0.0-beta.0",
"tslib": "^2.8.0",
"valibot": "1.0.0-beta.1",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.10",
"@angular/cli": "^17.3.10",
"@angular/compiler-cli": "^17.3.12",
"typescript": "5.4.2"
"typescript": "5.4.5"
}
}
4 changes: 2 additions & 2 deletions examples/angular/yup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"@tanstack/angular-form": "^0.34.0",
"@tanstack/yup-form-adapter": "^0.34.0",
"rxjs": "^7.8.1",
"tslib": "^2.7.0",
"tslib": "^2.8.0",
"yup": "^1.4.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.10",
"@angular/cli": "^17.3.10",
"@angular/compiler-cli": "^17.3.12",
"typescript": "5.4.2"
"typescript": "5.4.5"
}
}
4 changes: 2 additions & 2 deletions examples/angular/zod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"@tanstack/angular-form": "^0.34.0",
"@tanstack/zod-form-adapter": "^0.34.0",
"rxjs": "^7.8.1",
"tslib": "^2.7.0",
"tslib": "^2.8.0",
"zod": "^3.23.8",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.10",
"@angular/cli": "^17.3.10",
"@angular/compiler-cli": "^17.3.12",
"typescript": "5.4.2"
"typescript": "5.4.5"
}
}
2 changes: 1 addition & 1 deletion examples/lit/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lit": "^3.2.1"
},
"devDependencies": {
"vite": "^5.4.8"
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
2 changes: 1 addition & 1 deletion examples/lit/ui-libraries/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lit": "^3.2.1"
},
"devDependencies": {
"vite": "^5.4.8"
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
4 changes: 2 additions & 2 deletions examples/react/array/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8"
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
4 changes: 2 additions & 2 deletions examples/react/field-errors-from-form-validators/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8"
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ const nextConfig = {
reactStrictMode: true,
}

module.exports = nextConfig
export default nextConfig
4 changes: 2 additions & 2 deletions examples/react/next-server-actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
},
"dependencies": {
"@tanstack/react-form": "^0.34.0",
"next": "15.0.0-rc.0",
"next": "15.0.0",
"react": "19.0.0-rc-5dcb0097-20240918",
"react-dom": "19.0.0-rc-5dcb0097-20240918"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"typescript": "5.4.2"
"typescript": "5.4.5"
},
"overrides": {
"@types/react": "npm:types-react@rc",
Expand Down
6 changes: 3 additions & 3 deletions examples/react/query-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
},
"dependencies": {
"@tanstack/react-form": "^0.34.0",
"@tanstack/react-query": "^5.59.13",
"@tanstack/react-query": "^5.59.15",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8"
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
4 changes: 2 additions & 2 deletions examples/react/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8"
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
10 changes: 5 additions & 5 deletions examples/react/tanstack-start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"dependencies": {
"@tanstack/form-core": "^0.34.0",
"@tanstack/react-form": "^0.34.0",
"@tanstack/react-router": "^1.65.0",
"@tanstack/start": "^1.66.0",
"@tanstack/react-router": "^1.75.0",
"@tanstack/start": "^1.76.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vinxi": "^0.4.3"
Expand All @@ -21,9 +21,9 @@
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"typescript": "5.4.2",
"vite": "^5.4.8",
"@vitejs/plugin-react": "^4.3.3",
"typescript": "5.4.5",
"vite": "^5.4.9",
"vite-tsconfig-paths": "^5.0.1"
}
}
10 changes: 5 additions & 5 deletions examples/react/ui-libraries/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"dependencies": {
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mantine/core": "7.13.2",
"@mantine/hooks": "7.13.2",
"@mantine/core": "7.13.3",
"@mantine/hooks": "7.13.3",
"@mui/material": "5.16.7",
"@tanstack/react-form": "^0.34.0",
"@yme/lay-postcss": "0.1.0",
Expand All @@ -25,10 +25,10 @@
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-react-swc": "^3.7.1",
"typescript": "5.4.2",
"vite": "^5.4.8"
"typescript": "5.4.5",
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
6 changes: 3 additions & 3 deletions examples/react/valibot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"@tanstack/valibot-form-adapter": "^0.34.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"valibot": "1.0.0-beta.0"
"valibot": "1.0.0-beta.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8"
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
4 changes: 2 additions & 2 deletions examples/react/yup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8"
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.9"
},
"browserslist": {
"production": [
Expand Down
Loading

0 comments on commit ebb6a3e

Please sign in to comment.