UNPKG

react-moveable

Version:

A React Component that create Moveable, Draggable, Resizable, Scalable, Rotatable, Warpable, Pinchable, Groupable.

19 lines (18 loc) 1.04 kB
import Moveable from "./Moveable"; export { MOVEABLE_ABLES, MOVEABLE_EVENTS, MOVEABLE_EVENTS_MAP, MOVEABLE_EVENTS_PROPS_MAP, MOVEABLE_PROPS, MOVEABLE_PROPS_MAP, } from "./ables/consts"; export { MOVEABLE_METHODS, } from "./consts"; export { makeMoveable, } from "./makeMoveable"; export { InitialMoveable, } from "./InitialMoveable"; export { getElementInfo } from "./utils"; export { default as Draggable, } from "./ables/Draggable"; export { default as Resizable, } from "./ables/Resizable"; export { default as Scalable, } from "./ables/Scalable"; export { default as Rotatable, } from "./ables/Rotatable"; export { default as Warpable, } from "./ables/Warpable"; export { default as Clippable, } from "./ables/Clippable"; export { default as EdgeDraggable, } from "./ables/edgeDraggable"; export { default as Snappable, } from "./ables/Snappable"; export { default as Roundable, } from "./ables/Roundable"; export { default as Pinchable, } from "./ables/Pinchable"; export { makeAble, } from "./ables/AbleManager"; export default Moveable;