@octanejs/tanstack-form 0.0.42 → 0.0.44
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/README.md +7 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
[TanStack Form](https://tanstack.com/form) bindings for the
|
|
4
4
|
[Octane](https://github.com/octanejs/octane) UI framework.
|
|
5
5
|
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
```sh
|
|
9
|
+
npm install @octanejs/tanstack-form
|
|
10
|
+
pnpm add @octanejs/tanstack-form
|
|
11
|
+
```
|
|
12
|
+
|
|
6
13
|
This package ports `@tanstack/react-form@1.33.2` onto Octane while reusing
|
|
7
14
|
`@tanstack/form-core@1.33.2` unchanged. The runtime export surface matches the
|
|
8
15
|
React adapter, so migration starts by changing the package import:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/tanstack-form",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.44",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@tanstack/form-core": "1.33.2",
|
|
34
|
-
"@octanejs/tanstack-store": "0.0.
|
|
34
|
+
"@octanejs/tanstack-store": "0.0.44"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"octane": "0.1.
|
|
37
|
+
"octane": "0.1.50"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@tanstack/react-form": "1.33.2",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"react": "^19.2.7",
|
|
46
46
|
"react-dom": "^19.2.7",
|
|
47
47
|
"vitest": "^4.1.10",
|
|
48
|
-
"@octanejs/testing-library": "0.1.
|
|
49
|
-
"octane": "0.1.
|
|
48
|
+
"@octanejs/testing-library": "0.1.47",
|
|
49
|
+
"octane": "0.1.50"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"test": "vitest run"
|