Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Inspector panel

Linear: AUT-138

Right-pane inspector used by both the editor and the cursor studio. Tab strip (Style / Cursor / Audio / Captions / AI) + zero-or-more PropertySection blocks rendering rows with slider / toggle / color swatch / pill controls.

States

API

#![allow(unused)]
fn main() {
use ui_storybook::components::editor::{InspectorPanel, InspectorTab};
use ui_storybook::fixtures::editor::sample_inspector_style_tab;

view! { <InspectorPanel view=sample_inspector_style_tab() /> }
}

Controls are an enum, not a slot

PropertyControlView is an enum (ValueOnly, SliderPercent, Toggle, ColorSwatches, SelectPill) so all five common controls render through the same row layout without dragging a Children slot through the macro. If a future panel needs something custom, add a new variant — the parent never has to ship its own row markup.