Skip to content

pantoken / renderers/web-components/src / drawerLayout

Variable: drawerLayout

const drawerLayout: ElementDefinition

Alpha

&lt;instui-drawer-layout&gt; — a side tray plus main content area. The open attribute reveals the tray; placement (start|end) picks the side. Drivable from light DOM via Invoker Commands: <button command="--toggle|--open|--close" commandfor="drawer-id">. Content goes in the default slot; the tray in slot="tray". The interactions behavior auto-toggles overlay mode based on the --pantoken-bp-md threshold.

Accessibilité

Le panneau de contenu porte role="region", correspondant au DrawerLayout d'InstUI ; étiquetez-le avec aria-label/aria-labelledby lorsque le contexte environnant ne l'a pas déjà nommé.

Exemple

html
<button command="--toggle" commandfor="drawer">Toggle panel</button>
<instui-drawer-layout id="drawer" open placement="start">
  <nav slot="tray">…</nav>
  <article>Main content</article>
</instui-drawer-layout>