File tree Expand file tree Collapse file tree 12 files changed +69
-17
lines changed
Expand file tree Collapse file tree 12 files changed +69
-17
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @tanstack/react-form-devtools ' : patch
3+ ' @tanstack/solid-form-devtools ' : patch
4+ ' @tanstack/form-devtools ' : patch
5+ ---
6+
7+ Bump devtools utils to latest versions.
Original file line number Diff line number Diff line change 1+ ---
2+ ' @tanstack/react-form-devtools ' : patch
3+ ' @tanstack/solid-form-devtools ' : patch
4+ ---
5+
6+ use explicit paths for the devtools production exports
Original file line number Diff line number Diff line change 5353 ],
5454 "dependencies" : {
5555 "@tanstack/devtools-ui" : " ^0.4.4" ,
56- "@tanstack/devtools-utils" : " ^0.2.3 " ,
56+ "@tanstack/devtools-utils" : " ^0.3.0 " ,
5757 "@tanstack/form-core" : " workspace:*" ,
5858 "clsx" : " ^2.1.1" ,
5959 "dayjs" : " ^1.11.18" ,
Original file line number Diff line number Diff line change 5252 " src"
5353 ],
5454 "dependencies" : {
55- "@tanstack/devtools-utils" : " ^0.2.3 " ,
55+ "@tanstack/devtools-utils" : " ^0.3.0 " ,
5656 "@tanstack/form-devtools" : " workspace:*"
5757 },
5858 "devDependencies" : {
Original file line number Diff line number Diff line change 11'use client'
22
3- export { FormDevtoolsPanel } from './FormDevtools'
3+ export { FormDevtoolsPanel } from './production/ FormDevtools'
44
5- export type { FormDevtoolsReactInit } from './FormDevtools'
5+ export type { FormDevtoolsReactInit } from './production/ FormDevtools'
66
7- export { formDevtoolsPlugin } from './plugin'
7+ export { formDevtoolsPlugin } from './production/ plugin'
Original file line number Diff line number Diff line change 1+ import { createReactPanel } from '@tanstack/devtools-utils/react'
2+ import { FormDevtoolsCore } from '@tanstack/form-devtools/production'
3+
4+ // type
5+ import type { DevtoolsPanelProps } from '@tanstack/devtools-utils/react'
6+
7+ export interface FormDevtoolsReactInit extends DevtoolsPanelProps { }
8+
9+ const [ FormDevtoolsPanel ] = createReactPanel ( FormDevtoolsCore )
10+
11+ export { FormDevtoolsPanel }
Original file line number Diff line number Diff line change 1+ import { createReactPlugin } from '@tanstack/devtools-utils/react'
2+ import { FormDevtoolsPanel } from './FormDevtools'
3+
4+ const [ formDevtoolsPlugin ] = createReactPlugin ( {
5+ name : 'TanStack Form' ,
6+ Component : FormDevtoolsPanel ,
7+ } )
8+
9+ export { formDevtoolsPlugin }
Original file line number Diff line number Diff line change 5454 "solid-js" : " >=1.9.7"
5555 },
5656 "dependencies" : {
57- "@tanstack/devtools-utils" : " ^0.2.3 " ,
57+ "@tanstack/devtools-utils" : " ^0.3.0 " ,
5858 "@tanstack/form-devtools" : " workspace:*"
5959 },
6060 "devDependencies" : {
Original file line number Diff line number Diff line change 11export { FormDevtoolsPanel } from './FormDevtools'
22
3- export type { FormDevtoolsSolidInit } from './FormDevtools'
3+ export type { FormDevtoolsSolidInit } from './production/ FormDevtools'
44
5- export { formDevtoolsPlugin } from './plugin'
5+ export { formDevtoolsPlugin } from './production/ plugin'
Original file line number Diff line number Diff line change 1+ import { createSolidPanel } from '@tanstack/devtools-utils/solid'
2+ import { FormDevtoolsCore } from '@tanstack/form-devtools/production'
3+
4+ import type { DevtoolsPanelProps } from '@tanstack/devtools-utils/solid'
5+
6+ const [ FormDevtoolsPanel ] = createSolidPanel ( FormDevtoolsCore )
7+
8+ export interface FormDevtoolsSolidInit extends DevtoolsPanelProps { }
9+
10+ export { FormDevtoolsPanel }
You can’t perform that action at this time.
0 commit comments