Skip to content

Commit e18f00c

Browse files
fix(devtools): bumps devtools, fixes r-17 conflicts (#1892)
1 parent 3df3b4b commit e18f00c

File tree

7 files changed

+31
-22
lines changed

7 files changed

+31
-22
lines changed

.changeset/metal-views-accept.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@tanstack/form-devtools': patch
3+
---
4+
5+
Update @tanstack/devtools-utils to 0.0.9, fixes react 17 conflict

packages/form-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
],
5454
"dependencies": {
5555
"@tanstack/devtools-ui": "^0.4.4",
56-
"@tanstack/devtools-utils": "^0.0.4",
56+
"@tanstack/devtools-utils": "^0.0.9",
5757
"@tanstack/form-core": "workspace:*",
5858
"clsx": "^2.1.1",
5959
"dayjs": "^1.11.18",

packages/react-form-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"src"
5353
],
5454
"dependencies": {
55-
"@tanstack/devtools-utils": "^0.0.4",
55+
"@tanstack/devtools-utils": "^0.0.9",
5656
"@tanstack/form-devtools": "workspace:*"
5757
},
5858
"devDependencies": {
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { createReactPlugin } from '@tanstack/devtools-utils/react'
22
import { FormDevtoolsPanel } from './FormDevtools'
33

4-
const [formDevtoolsPlugin, formDevtoolsNoOpPlugin] = createReactPlugin(
5-
'TanStack Form',
6-
FormDevtoolsPanel,
7-
)
4+
const [formDevtoolsPlugin, formDevtoolsNoOpPlugin] = createReactPlugin({
5+
name: 'TanStack Form',
6+
Component: FormDevtoolsPanel,
7+
})
88

99
export { formDevtoolsPlugin, formDevtoolsNoOpPlugin }

packages/solid-form-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"solid-js": ">=1.9.7"
5555
},
5656
"dependencies": {
57-
"@tanstack/devtools-utils": "^0.0.4",
57+
"@tanstack/devtools-utils": "^0.0.9",
5858
"@tanstack/form-devtools": "workspace:*"
5959
},
6060
"devDependencies": {
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { createSolidPlugin } from '@tanstack/devtools-utils/solid'
22
import { FormDevtoolsPanel } from './FormDevtools'
33

4-
const [formDevtoolsPlugin, formDevtoolsNoOpPlugin] = createSolidPlugin(
5-
'TanStack Form',
6-
FormDevtoolsPanel,
7-
)
4+
const [formDevtoolsPlugin, formDevtoolsNoOpPlugin] = createSolidPlugin({
5+
name: 'TanStack Form',
6+
Component: FormDevtoolsPanel,
7+
})
88

99
export { formDevtoolsPlugin, formDevtoolsNoOpPlugin }

pnpm-lock.yaml

Lines changed: 15 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)