index.js 742 B

12345678910111213141516171819202122
  1. import DraggingModule from '../dragging';
  2. import RulesModule from '../rules';
  3. import Bendpoints from './Bendpoints';
  4. import BendpointMove from './BendpointMove';
  5. import BendpointMovePreview from './BendpointMovePreview';
  6. import ConnectionSegmentMove from './ConnectionSegmentMove';
  7. import BendpointSnapping from './BendpointSnapping';
  8. export default {
  9. __depends__: [
  10. DraggingModule,
  11. RulesModule
  12. ],
  13. __init__: [ 'bendpoints', 'bendpointSnapping', 'bendpointMovePreview' ],
  14. bendpoints: [ 'type', Bendpoints ],
  15. bendpointMove: [ 'type', BendpointMove ],
  16. bendpointMovePreview: [ 'type', BendpointMovePreview ],
  17. connectionSegmentMove: [ 'type', ConnectionSegmentMove ],
  18. bendpointSnapping: [ 'type', BendpointSnapping ]
  19. };