Skip to content

Changelog

Version v0.9.0

0.9.0 (2025-08-19)

Persistence

  • Inspect.Panel can now be configured to persist changes to state / settings made through the UI (open state, appearance, alignment) (d970455)
    • Added width and height props to Inspect.Panel. These will be persisted when resizing the Panel.

Usage

<!-- Use default persist settings -->
<Inspect.Panel persist />
<!-- Use default persist settings with tab syncing enabled -->
<Inspect.Panel persistSync />
<!-- Use default persist settings with alternative key -->
<Inspect.Panel persist="todo-app-panel" />
<!-- Use default persist settings tab syncing enabled and alternative key -->
<Inspect.Panel persistSync="todo-app-panel" />
<!-- Use custom persist settings -->
<Inspect.Panel persist={{ key: 'todo-app-panel', storage: 'local', syncTabs: true }} />