Skip to content

Commit

Permalink
v1.4.0-alpha.25+sha.c3a67ce
Browse files Browse the repository at this point in the history
  • Loading branch information
taye committed Feb 3, 2019
1 parent c3a67ce commit 41eb932
Show file tree
Hide file tree
Showing 185 changed files with 923 additions and 18,183 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.4.0-alpha.24",
"version": "1.4.0-alpha.25",
"packages": [
".",
"packages/*"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@interactjs/_dev",
"private": "true",
"version": "1.4.0-alpha.24+sha.1196d35",
"version": "1.4.0-alpha.25+sha.c3a67ce",
"bin": {
"_dev": "scripts/_dev",
"@build": "scripts/build.js",
Expand Down
6 changes: 2 additions & 4 deletions packages/actions/drag.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { Scope } from '@interactjs/core/scope';
export declare type DraggableMethod = (options?: Interact.DraggableOptions) => Interact.Interactable | {
[key: string]: any;
};
export declare type DraggableMethod = (options?: Interact.OrBoolean<Interact.DraggableOptions> | boolean) => Interact.Interactable | Interact.DropzoneOptions;
declare function install(scope: Scope): void;
declare function beforeMove({ interaction }: {
interaction: any;
Expand Down Expand Up @@ -49,7 +47,7 @@ declare function move({ iEvent, interaction }: {
* @return {boolean | Interactable} boolean indicating if this can be the
* target of drag events, or this Interctable
*/
declare function draggable(this: Interact.Interactable, options?: Interact.DraggableOptions): import("../interactjs/types").DraggableOptions | import("@interactjs/core/Interactable").Interactable;
declare function draggable(this: Interact.Interactable, options?: Interact.DraggableOptions | boolean): import("../interactjs/types").DraggableOptions | import("@interactjs/core/Interactable").Interactable;
declare const drag: {
install: typeof install;
draggable: typeof draggable;
Expand Down
2 changes: 1 addition & 1 deletion packages/actions/drag.js

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

1 change: 0 additions & 1 deletion packages/actions/drag.js.map

This file was deleted.

Loading

0 comments on commit 41eb932

Please sign in to comment.