ObjectUIObjectUI
ComponentsOverlay

Drawer

Sliding panel from edge of screen

Examples

Basic Drawer

{
  "type": "drawer",
  "trigger": {
    "type": "button",
    "label": "Open Drawer"
  },
  "title": "Drawer Title",
  "children": [
    {
      "type": "text",
      "content": "Drawer content"
    }
  ]
}

Schema

interface DrawerSchema {
  type: 'drawer';
  trigger: SchemaNode;
  title?: string;
  children: SchemaNode[];
  side?: 'left' | 'right' | 'top' | 'bottom';
}

On this page