COMPONENT
🪟
IntentDialog
Modal intent-first (overlay + panel centré), focus trap, fermeture ESC/overlay, slots header/footer.
🧱 SurfaceSince v0.2.9
DESIGN SYSTEM
mode
Intent
Variant
Glow
Intensity
State
PLAYGROUND
Open
Layout
maxWidthPx: — · overlayOpacity: 0.55
Behavior
Copy
Action log
Aucune action pour l’instant.
PREVIEW
size: md · maxWidthPx: — · overlay: true · opaqueBackdrop: false
RESOLVED
{
"mode": "dark",
"intent": "informed",
"variant": "elevated",
"intensity": "medium",
"toneStep": 500,
"toneEffective": "blue",
"glowKey": null,
"glowBackground": null,
"style": {
"--intent-bg": "var(--ids-color-blue-500)",
"--intent-ring": "var(--ids-color-blue-700)",
"--intent-text": "var(--ids-color-blue-200)",
"--intent-bg-opacity": "0.16",
"--intent-ring-opacity": "0.304",
"--intent-border": "var(--ids-color-blue-700)",
"--intent-glow-fill-opacity": "0",
"--intent-glow-border-opacity": "0",
"--intent-glow-filter": "none"
},
"classes": {
"base": "intent-surface inline-flex items-center gap-2",
"surface": "intent-bg",
"border": "intent-ring",
"text": "intent-text",
"ring": "",
"shadow": "intent-shadow-soft",
"glow": "",
"disabled": ""
},
"warnings": []
}PROPS
| Prop | Type | Default |
|---|---|---|
| PROPS SYSTÈME | ||
intent Intent sémantique (informed/empowered/warned/threatened/themed/toned/glowed). | Intent | DEFAULT_INTENT |
variant Variant visuel (flat/outlined/elevated/ghost). | Variant | DEFAULT_VARIANT |
tone Override de tone (n’a d’effet que si intent='toned'). | Tone | DEFAULT_TONE (si toned) |
toneStep Step Tailwind (50..950) pour éclaircir/assombrir les teintes (autour du step canonique 500). | ToneStep | DEFAULT_TONE_STEP |
glow Glow normal (true/false) ou glow esthétique (uniquement si intent='glowed'). | boolean | Glow | false (ou glow par intent) |
intensity Intensité (soft/medium/strong). | Intensity | DEFAULT_INTENSITY |
mode Mode colorimétrique (dark/light). | Mode | DEFAULT_MODE |
disabled Désactive l’état visuel (hooks + styles). | boolean | false |
| PROPS LOCALES | ||
open / defaultOpen / onOpenChange Contrôle l’ouverture (controlled/uncontrolled). | boolean / boolean / (open:boolean)=>void | defaultOpen=false |
overlay / closeOnOverlay / closeOnEscape Overlay + fermeture via clic overlay / ESC. | boolean / boolean / boolean | true / true / true |
lockScroll / trapFocus / restoreFocus Verrouille le scroll, piège le focus, restaure le focus. | boolean / boolean / boolean | true / true / true |
preventClose Désactive toutes les interactions de fermeture. | boolean | false |
size / maxWidthPx / centerY / padded / scrollBehavior Taille du panel, override px, centrage vertical, padding, scroll inside/body. | "xs"|"sm"|"md"|"lg"|"xl" / number / boolean / boolean / "inside"|"body" | md / - / true / true / inside |
opaqueBackdrop / backdropOpacity Fond opaque sous le panel + opacité overlay. | boolean / number | false / 0.55 |
title / description / header / footer / children Contenu (header auto ou custom) + footer + body. | React.ReactNode | — |
showClose / closeButton / closeButtonAriaLabel Bouton fermer (afficher, override, aria-label). | boolean / React.ReactNode / string | true / - / Close |
ariaLabel / ariaLabelledby / ariaDescribedby Accessibilité: label fallback ou ids custom. | string | — |
initialFocusRef / finalFocusRef Focus initial à l’ouverture, focus final à la fermeture. | React.RefObject<HTMLElement> | — |
onBeforeClose / onInteractOutside Hooks avancés avant fermeture + clic outside. | (...)=>boolean|void / (e)=>void | — |
(native props) Props natives sur le root. | Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children' | 'title'> | — |
TYPES & CONSTANTES
| API | Valeur / Référence |
|---|---|
| TYPES | |
IntentNametype Type union des intents sémantiques. | "informed" | "empowered" | "warned" | "threatened" | "themed" | "toned" | "glowed" |
VariantNametype Type union des variants visuels. | "flat" | "outlined" | "elevated" | "ghost" |
ToneNametype Type union des tones (familles Tailwind + theme + black). | ("slate" | "gray" | ... | "theme" | "black") |
GlowNametype Type union des aesthetic glows (utilisable quand intent='glowed'). | "aurora" | "ember" | "cosmic" | "mythic" | "royal" | "mono" |
Intensitytype Intensité des effets (glow/contraste). | "soft" | "medium" | "strong" |
ModeNametype Mode colorimétrique. | "dark" | "light" |
| CONSTANTES | |
DEFAULT_INTENTconst Intent par défaut si aucun intent n’est fourni. | informed |
DEFAULT_VARIANTconst Variant par défaut si aucun variant n’est fourni. | elevated |
DEFAULT_GLOW_BY_INTENTconst Mapping intent → glow par défaut (quand glow est implicite). | DEFAULT_GLOW_BY_INTENT |