UNPKG

radix-vue

Version:

Vue port for Radix UI Primitives.

10 lines (9 loc) 324 B
export type Direction = 'horizontal' | 'vertical'; export type ResizeEvent = KeyboardEvent | MouseEvent | TouchEvent; export type ResizeHandler = (event: ResizeEvent) => void; export type DragState = { dragHandleId: string; dragHandleRect: DOMRect; initialCursorPosition: number; initialLayout: number[]; };