UNPKG

uiik

Version:

A UI interactions kit includes draggable, splittable, rotatable, selectable, etc.

31 lines (30 loc) 1.04 kB
import { newSplittable } from './splittable'; import { newResizable } from './resizable'; import { newDraggable } from './draggable'; import { newDroppable } from './droppable'; import { newRotatable } from './rotatable'; import { newSelectable } from './selectable'; import { newSortable } from './sortable'; export * from './splittable'; export * from './resizable'; export * from './draggable'; export * from './droppable'; export * from './rotatable'; export * from './selectable'; export * from './sortable'; export * from './detector'; export * from './types'; export * from './transform'; export * from './utils'; export declare const VERSION: string; declare const _default: { VERSION: string; newSplittable: typeof newSplittable; newResizable: typeof newResizable; newDraggable: typeof newDraggable; newDroppable: typeof newDroppable; newRotatable: typeof newRotatable; newSelectable: typeof newSelectable; newSortable: typeof newSortable; }; export default _default;