Brand Drawer
<brand-drawer> wraps Shoelace's <sl-drawer>. Same modality as <brand-dialog> but slides in from a screen edge.
Placements
Slides in from the end edge (right in LTR, left in RTL).
Slides in from the start edge.
Slides down from the top.
Slides up from the bottom.
Form inside a drawer
Usage
import { BrandDrawer } from '@brandos/ui';
<brand-drawer label="Settings" placement="end" id="settings">
<p>Drawer body.</p>
<brand-button slot="footer" variant="primary">Save</brand-button>
</brand-drawer>
document.getElementById('settings').show();