afd8f8e8 fix(devtools): rename Solid use* primitives to create* for React Compiler compat (#477)
* fix(devtools): rename Solid use* primitives to create* for React Compiler compat
The devtools packages are Solid but used React-style naming (useStyles,
useTheme, useDevtoolsState, ...) for their custom primitives. When an app
enables React Compiler, it matches the use* convention and transforms this
Solid code as if it were React, breaking the panel.
Rename every custom Solid primitive in @tanstack/devtools, devtools-ui, and
devtools-a11y from use* to create*, and import Solid's useContext and
@solid-primitives' useKeyDownList under non-use aliases (getContext,
getKeyDownList).
BREAKING(@tanstack/devtools-ui): exported useTheme is renamed to createTheme.
* fix(devtools): apply create* rename to tests and docs merged from main
#472 added component tests (tabs.test.tsx, settings-tab.test.tsx) using the
old useDevtoolsState/useDevtoolsSettings names, and the devtools-plugin-panel
skill docs referenced the renamed devtools-ui export useTheme. Update them to
the create* names.