index.js 635 B

1234567891011121314151617181920212223242526
  1. import InteractionEventsModule from '../interaction-events';
  2. import SelectionModule from '../selection';
  3. import OutlineModule from '../outline';
  4. import RulesModule from '../rules';
  5. import DraggingModule from '../dragging';
  6. import PreviewSupportModule from '../preview-support';
  7. import Move from './Move';
  8. import MovePreview from './MovePreview';
  9. export default {
  10. __depends__: [
  11. InteractionEventsModule,
  12. SelectionModule,
  13. OutlineModule,
  14. RulesModule,
  15. DraggingModule,
  16. PreviewSupportModule
  17. ],
  18. __init__: [
  19. 'move',
  20. 'movePreview'
  21. ],
  22. move: [ 'type', Move ],
  23. movePreview: [ 'type', MovePreview ]
  24. };