UNPKG

@club-employes/utopia

Version:

🎨 Modern Vue 3 design system with multi-brand theming, design tokens, and 30+ components. Supports Club Employés & Gifteo brands with light/dark modes.

11 lines (10 loc) • 315 B
export type BottomSheetChangeReason = 'open' | 'close' | 'escape' | 'overlay'; export interface BottomSheetProps { modelValue: boolean; title?: string; variant?: 'default' | 'fullscreen'; size?: 'medium'; disabled?: boolean; closeOnOverlayClick?: boolean; disableScrollLock?: boolean; }