a8afd8b]
5b32de8]
54a1ecf]
63c339b]
3f1e71e]
9cef4e9]
1d755c1: External state store, store adapters, and bug fixes.### New: External State Store
The StateStore interface lets you plug in your own state management (Redux, Zustand, Jotai, XState, etc.) instead of the built-in internal store. Pass a store prop to StateProvider, JSONUIProvider, or createRenderer for controlled mode.
StateStore interface and createStateStore() factory to @json-render/coreStateProvider, JSONUIProvider, and createRenderer now accept an optional store prop for controlled modestore is provided, it becomes the single source of truth (initialState/onStateChange are ignored)store is omitted, everything works exactly as before (fully backward compatible)createStoreAdapter, immutableSetByPath, flattenToPointers) available via @json-render/core/store-utils for building custom adapters### New: Store Adapter Packages
@json-render/zustand — Zustand adapter for StateStore@json-render/redux — Redux / Redux Toolkit adapter for StateStore@json-render/jotai — Jotai adapter for StateStore### Changed: onStateChange signature updated (breaking)
The onStateChange callback now receives a single array of changed entries instead of being called once per path:
// Before
onStateChange?: (path: string, value: unknown) => void
// After
onStateChange?: (changes: Array<{ path: string; value: unknown }>) => void
### Fixed
@json-render/react/schema subpath, avoiding createContext crashes in Next.js App Router API routes@json-render/react, @json-render/react-native, and @json-render/react-pdf1d755c1]