13 lines
241 B
JavaScript
13 lines
241 B
JavaScript
|
|
import HoverFixModule from '../hover-fix';
|
||
|
|
import SelectionModule from '../selection';
|
||
|
|
|
||
|
|
import Dragging from './Dragging';
|
||
|
|
|
||
|
|
|
||
|
|
export default {
|
||
|
|
__depends__: [
|
||
|
|
HoverFixModule,
|
||
|
|
SelectionModule,
|
||
|
|
],
|
||
|
|
dragging: [ 'type', Dragging ],
|
||
|
|
};
|