-
-
Notifications
You must be signed in to change notification settings - Fork 651
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
129 changed files
with
346 additions
and
351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export {CollisionObserver} from './observer.js'; | ||
export {CollisionNotifier} from './notifier.js'; | ||
export {sortCollisions} from './utilities.js'; | ||
export * from './types.js'; | ||
export {CollisionObserver} from './observer.ts'; | ||
export {CollisionNotifier} from './notifier.ts'; | ||
export {sortCollisions} from './utilities.ts'; | ||
export * from './types.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export {Draggable} from './draggable.js'; | ||
export type {Input as DraggableInput} from './draggable.js'; | ||
export {Draggable} from './draggable.ts'; | ||
export type {Input as DraggableInput} from './draggable.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export {Droppable} from './droppable.js'; | ||
export type {Input as DroppableInput} from './droppable.js'; | ||
export {Droppable} from './droppable.ts'; | ||
export type {Input as DroppableInput} from './droppable.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export {Entity} from './entity.js'; | ||
export type {Input as EntityInput} from './entity.js'; | ||
export {Entity} from './entity.ts'; | ||
export type {Input as EntityInput} from './entity.ts'; | ||
|
||
export type {Data, Type, UniqueIdentifier} from './types.js'; | ||
export type {Data, Type, UniqueIdentifier} from './types.ts'; | ||
|
||
export {EntityRegistry} from './registry.js'; | ||
export {EntityRegistry} from './registry.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export * from './entity/index.js'; | ||
export * from './draggable/index.js'; | ||
export * from './droppable/index.js'; | ||
export * from './entity/index.ts'; | ||
export * from './draggable/index.ts'; | ||
export * from './droppable/index.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export {DragDropManager} from './manager.js'; | ||
export type {DragDropManagerInput, DragDropConfiguration} from './manager.js'; | ||
export type {DragDropEvents} from './events.js'; | ||
export {Status as DragOperationStatus} from './dragOperation.js'; | ||
export type {DragOperation, DragOperationManager} from './dragOperation.js'; | ||
export type {DragDropRegistry} from './registry.js'; | ||
export type {InferDraggable, InferDroppable} from './types.js'; | ||
export type {Renderer} from './renderer.js'; | ||
export {DragDropManager} from './manager.ts'; | ||
export type {DragDropManagerInput, DragDropConfiguration} from './manager.ts'; | ||
export type {DragDropEvents} from './events.ts'; | ||
export {Status as DragOperationStatus} from './dragOperation.ts'; | ||
export type {DragOperation, DragOperationManager} from './dragOperation.ts'; | ||
export type {DragDropRegistry} from './registry.ts'; | ||
export type {InferDraggable, InferDroppable} from './types.ts'; | ||
export type {Renderer} from './renderer.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import type {DragDropManager} from './manager.js'; | ||
import type {DragDropManager} from './manager.ts'; | ||
|
||
export type InferDraggable<P> = P extends DragDropManager<infer T> ? T : never; | ||
|
||
export type InferDroppable<P> = P extends DragDropManager<any, infer T> | ||
? T | ||
: never; | ||
export type InferDroppable<P> = | ||
P extends DragDropManager<any, infer T> ? T : never; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export {Modifier} from './modifier.js'; | ||
export {Modifier} from './modifier.ts'; | ||
|
||
export type { | ||
Modifiers, | ||
ModifierConstructor, | ||
ModifierDescriptor, | ||
ModifierOptions, | ||
} from './modifier.js'; | ||
} from './modifier.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export {Plugin, CorePlugin} from './plugin.js'; | ||
export {PluginRegistry} from './registry.js'; | ||
export {Plugin, CorePlugin} from './plugin.ts'; | ||
export {PluginRegistry} from './registry.ts'; | ||
export type { | ||
Plugins, | ||
PluginConstructor, | ||
PluginDescriptor, | ||
PluginOptions, | ||
} from './types.js'; | ||
export {configure, configurator, descriptor} from './utilities.js'; | ||
} from './types.ts'; | ||
export {configure, configurator, descriptor} from './utilities.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.