DocSpace-buildtools/web/ASC.Web.Components/src/components/drag-and-drop
2020-08-26 13:14:36 +03:00
..
drag-and-drop.stories.js Web: Components: added react-dropzone library to drag-and-drop component 2020-08-26 11:34:01 +03:00
index.js Web: Components: fixed drag-and-drop styles 2020-08-26 13:14:36 +03:00
README.md Web: Components: added react-dropzone library to drag-and-drop component 2020-08-26 11:34:01 +03:00

DragAndDrop

Drag And Drop component can be used as Dropzone

See documentation: https://github.com/react-dropzone/react-dropzone

import { DragAndDrop } from "asc-web-components";
<DragAndDrop onDrop={onDrop} style={width: 200, height: 200, border: "5px solid #999"}>
  <Text style={textStyles} color="#999" fontSize="20px">
    Drop items here
  </Text>
</DragAndDrop>

Properties

Props Type Required Values Default Description
dragging bool false Show that the item is being dragged now.
isDropZone bool false Sets the component as a dropzone
onDrop function Occurs when the dragged element is dropped on the drop target