# Editor.PropertiesPanel > The contextual right-side panel. Reflects the selected section's fields - layout, text, shape, layer. Source: https://docs.docmosaic.com/docs/primitives/properties-panel `Editor.PropertiesPanel` is the contextual inspector. It auto-discriminates based on the selected section's `type` and renders the matching field set - position + size for layout, font + color for text, fill + stroke for shape, hide / lock toggles for the layer tab. ## Usage ```tsx ``` The panel reads from the editor context - drop it anywhere underneath `Editor.Root` and it lights up. With no section selected, the empty state suggests "Select a section to edit its properties." ## Composition The default panel renders all four sub-tabs. Mount sub-tabs individually for a flat (un-tabbed) inspector: ```tsx ``` In `readOnly` mode the inputs render disabled and the layer-action buttons hide. ## Examples ### Side-by-side with the layer list ```tsx
``` This is the canonical right-rail composition - outliner on top, contextual props underneath. ## API Reference ## Related - [LayerList](/docs/primitives/layer-list) - outliner that pairs with the panel - [Section](/docs/primitives/section) - the source of the selection