Skip to content

Commit

Permalink
v1.4.0-rc.12
Browse files Browse the repository at this point in the history
  • Loading branch information
taye committed Apr 20, 2019
1 parent 91e5391 commit 41ac135
Show file tree
Hide file tree
Showing 64 changed files with 1,218 additions and 1,129 deletions.
8 changes: 3 additions & 5 deletions packages/actions/drop/DropEvent.d.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
import BaseEvent from '@interactjs/core/BaseEvent';
import Interactable from '@interactjs/core/Interactable';
import InteractEvent from '@interactjs/core/InteractEvent';
import Interaction from '@interactjs/core/Interaction';
import { ActionName } from '@interactjs/core/scope';
declare class DropEvent {
type: string;
declare class DropEvent extends BaseEvent {
target: Element;
currentTarget: Element;
dropzone: Interactable;
dragEvent: InteractEvent<ActionName.Drag>;
relatedTarget: Element;
interaction: Interaction;
draggable: Interactable;
timeStamp: number;
propagationStopped: boolean;
immediatePropagationStopped: boolean;
/**
* Class of events fired on dropzones during drags with acceptable targets.
*/
constructor(dropState: Interaction['dropState'], dragEvent: any, type: any);
constructor(dropState: Interaction['dropState'], dragEvent: InteractEvent, type: string);
/**
* If this is a `dropactivate` event, the dropzone element will be
* deactivated.
Expand Down
9 changes: 5 additions & 4 deletions packages/actions/drop/DropEvent.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 41ac135

Please sign in to comment.