121
GitHub
OverlaysGlass surface

Sheet

Shows a side sheet for secondary flows.

FrameworksAstro · React · Elements

Registry commandlumen add Sheet

InteractionNative markup

01

See it in context

Preview

Deployment details

Build 128 deployed from main in 42s.

02

Copy a working example

Usage

astro
---
import {
  Button,
  Sheet
} from '@santi020k/lumen-astro'
---

<Button variant="outline" data-ui-sheet-trigger="ex-sheet">Open details</Button>
<Sheet id="ex-sheet">
  <h2>Deployment details</h2>
  <p>Build 128 deployed from main in 42s.</p>
  <Button variant="ghost" data-ui-sheet-close>Close</Button>
</Sheet>
---
import {
  Button,
  Sheet
} from '@santi020k/lumen-astro'
---

<Button variant="outline" data-ui-sheet-trigger="ex-sheet">Open details</Button>
<Sheet id="ex-sheet">
  <h2>Deployment details</h2>
  <p>Build 128 deployed from main in 42s.</p>
  <Button variant="ghost" data-ui-sheet-close>Close</Button>
</Sheet>
03

Choose your target

Add this component

Choose the package for your runtime. All adapters share the Lumen stylesheet. Use the matching registry command when you want a local wrapper for that framework.

bash@santi020k/lumen-astro
pnpm add @santi020k/lumen-astro
pnpm add @santi020k/lumen-astro
bashAstro wrapper
lumen add Sheet
lumen add Sheet

Glass

Add the glass prop to apply the shared blur, saturation, border, and highlight tokens. Glass reads best over vivid content, so place the surface above imagery or color.

Deployment details

The glass sheet slides in as a full-height lens: page content stays visible, blurred and saturated.

astro
---
import {
  Button,
  Sheet
} from '@santi020k/lumen-astro'
---

<div class="docs-glass-demo" style="justify-items: center;">
  <Button variant="outline" data-ui-sheet-trigger="ex-sheet-glass">Open glass details</Button>
</div>
<Sheet id="ex-sheet-glass" glass>
  <h2>Deployment details</h2>
  <p>The glass sheet slides in as a full-height lens: page content stays visible, blurred and saturated.</p>
  <Button variant="ghost" data-ui-sheet-close>Close</Button>
</Sheet>
---
import {
  Button,
  Sheet
} from '@santi020k/lumen-astro'
---

<div class="docs-glass-demo" style="justify-items: center;">
  <Button variant="outline" data-ui-sheet-trigger="ex-sheet-glass">Open glass details</Button>
</div>
<Sheet id="ex-sheet-glass" glass>
  <h2>Deployment details</h2>
  <p>The glass sheet slides in as a full-height lens: page content stays visible, blurred and saturated.</p>
  <Button variant="ghost" data-ui-sheet-close>Close</Button>
</Sheet>

API reference

Lumen-specific props and runtime attributes for the Astro primitive. React props follow the same names; Elements use equivalent kebab-case attributes where custom elements expose them.

AttributeValuesDefaultDescription
glassboolean | "subtle" | "strong"falseApplies the tokenized liquid-glass surface treatment with backdrop-filter fallbacks; "subtle" and "strong" adjust the fill intensity.
surface"default" | "glass""default"Deprecated alias for glass; surface="glass" maps to glass={true}.
idstring-Connects the dialog surface to a matching trigger attribute value.
data-ui-sheet-triggertarget id-Marks an external trigger and points it at the dialog id.
data-ui-sheet-closeboolean attribute-Marks a child control that closes the nearest dialog.
class, classNamestring""Merges custom classes with the generated ui-* root classes.
...native attributesHTML attributes-Forwards standard attributes to the root element unless the component consumes them.