@nipe-solutions/react-spring-bottom-sheet
Version:
Accessible and composable bottom sheets for React
10 lines (9 loc) • 323 B
TypeScript
export type OpenChangeReason = 'trigger' | 'close' | 'escape' | 'backdrop' | 'drag' | 'imperative';
export interface OpenChangeDetails {
reason: OpenChangeReason;
}
export type SnapPointValue = number | `${number}px` | `${number}%` | 'content';
export interface SnapPoint {
id: string;
value: SnapPointValue;
}