diff --git a/.changeset/red-hats-jam.md b/.changeset/red-hats-jam.md new file mode 100644 index 000000000..86caeedf3 --- /dev/null +++ b/.changeset/red-hats-jam.md @@ -0,0 +1,6 @@ +--- +'@tanstack/form-core': patch +'@tanstack/react-form': patch +--- + +fix(core): field unmount diff --git a/docs/framework/angular/guides/listeners.md b/docs/framework/angular/guides/listeners.md index 80a91b596..729e00a86 100644 --- a/docs/framework/angular/guides/listeners.md +++ b/docs/framework/angular/guides/listeners.md @@ -15,10 +15,11 @@ In this example, when the user changes the country, the selected province needs Events that can be "listened" to are: -- onChange -- onBlur -- onMount -- onSubmit +- `onChange` +- `onBlur` +- `onMount` +- `onSubmit` +- `onUnmount` ```angular-ts @Component({ diff --git a/docs/framework/react/guides/listeners.md b/docs/framework/react/guides/listeners.md index b5f765d11..f42cb6dcd 100644 --- a/docs/framework/react/guides/listeners.md +++ b/docs/framework/react/guides/listeners.md @@ -19,6 +19,7 @@ Events that can be "listened" to are: - `onBlur` - `onMount` - `onSubmit` +- `onUnmount` ```tsx function App() { diff --git a/docs/framework/vue/guides/listeners.md b/docs/framework/vue/guides/listeners.md index c8b2d2c99..946af1e7f 100644 --- a/docs/framework/vue/guides/listeners.md +++ b/docs/framework/vue/guides/listeners.md @@ -15,10 +15,11 @@ In this example, when the user changes the country, the selected province needs Events that can be "listened" to are: -- onChange -- onBlur -- onMount -- onSubmit +- `onChange` +- `onBlur` +- `onMount` +- `onSubmit` +- `onUnmount` ```vue