2019-04-29 14:03:34 +00:00
|
|
|
import AutoPlaceBehavior from './AutoPlaceBehavior';
|
2019-06-03 13:31:54 +00:00
|
|
|
import CreateParticipantBehavior from './CreateParticipantBehavior';
|
2019-05-02 07:55:11 +00:00
|
|
|
import LayoutConnectionBehavior from './LayoutConnectionBehavior';
|
2019-04-29 14:03:34 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
__init__: [
|
2019-06-03 13:31:54 +00:00
|
|
|
'gridSnappingAutoPlaceBehavior',
|
|
|
|
'gridSnappingCreateParticipantBehavior',
|
2019-05-02 07:55:11 +00:00
|
|
|
'gridSnappingLayoutConnectionBehavior',
|
2019-04-29 14:03:34 +00:00
|
|
|
],
|
2019-05-02 07:55:11 +00:00
|
|
|
gridSnappingAutoPlaceBehavior: [ 'type', AutoPlaceBehavior ],
|
2019-06-03 13:31:54 +00:00
|
|
|
gridSnappingCreateParticipantBehavior: [ 'type', CreateParticipantBehavior ],
|
2019-05-02 07:55:11 +00:00
|
|
|
gridSnappingLayoutConnectionBehavior: [ 'type', LayoutConnectionBehavior ]
|
2019-04-29 14:03:34 +00:00
|
|
|
};
|