index.js 601 B

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