index.js 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. import AdaptiveLabelPositioningBehavior from './AdaptiveLabelPositioningBehavior';
  2. import AppendBehavior from './AppendBehavior';
  3. import BoundaryEventBehavior from './BoundaryEventBehavior';
  4. import CopyPasteBehavior from './CopyPasteBehavior';
  5. import CreateBoundaryEventBehavior from './CreateBoundaryEventBehavior';
  6. import CreateDataObjectBehavior from './CreateDataObjectBehavior';
  7. import CreateParticipantBehavior from './CreateParticipantBehavior';
  8. import DataInputAssociationBehavior from './DataInputAssociationBehavior';
  9. import DataStoreBehavior from './DataStoreBehavior';
  10. import DeleteLaneBehavior from './DeleteLaneBehavior';
  11. import DropOnFlowBehavior from './DropOnFlowBehavior';
  12. import ImportDockingFix from './ImportDockingFix';
  13. import IsHorizontalFix from './IsHorizontalFix';
  14. import LabelBehavior from './LabelBehavior';
  15. import ModelingFeedback from './ModelingFeedback';
  16. import ReplaceConnectionBehavior from './ReplaceConnectionBehavior';
  17. import RemoveParticipantBehavior from './RemoveParticipantBehavior';
  18. import ReplaceElementBehaviour from './ReplaceElementBehaviour';
  19. import ResizeLaneBehavior from './ResizeLaneBehavior';
  20. import RemoveElementBehavior from './RemoveElementBehavior';
  21. import ToggleElementCollapseBehaviour from './ToggleElementCollapseBehaviour';
  22. import UnclaimIdBehavior from './UnclaimIdBehavior';
  23. import UpdateFlowNodeRefsBehavior from './UpdateFlowNodeRefsBehavior';
  24. import UnsetDefaultFlowBehavior from './UnsetDefaultFlowBehavior';
  25. export default {
  26. __init__: [
  27. 'adaptiveLabelPositioningBehavior',
  28. 'appendBehavior',
  29. 'boundaryEventBehavior',
  30. 'copyPasteBehavior',
  31. 'createBoundaryEventBehavior',
  32. 'createDataObjectBehavior',
  33. 'dataStoreBehavior',
  34. 'createParticipantBehavior',
  35. 'dataInputAssociationBehavior',
  36. 'deleteLaneBehavior',
  37. 'dropOnFlowBehavior',
  38. 'importDockingFix',
  39. 'isHorizontalFix',
  40. 'labelBehavior',
  41. 'modelingFeedback',
  42. 'removeElementBehavior',
  43. 'removeParticipantBehavior',
  44. 'replaceConnectionBehavior',
  45. 'replaceElementBehaviour',
  46. 'resizeLaneBehavior',
  47. 'toggleElementCollapseBehaviour',
  48. 'unclaimIdBehavior',
  49. 'unsetDefaultFlowBehavior',
  50. 'updateFlowNodeRefsBehavior'
  51. ],
  52. adaptiveLabelPositioningBehavior: [ 'type', AdaptiveLabelPositioningBehavior ],
  53. appendBehavior: [ 'type', AppendBehavior ],
  54. boundaryEventBehavior: [ 'type', BoundaryEventBehavior ],
  55. copyPasteBehavior: [ 'type', CopyPasteBehavior ],
  56. createBoundaryEventBehavior: [ 'type', CreateBoundaryEventBehavior ],
  57. createDataObjectBehavior: [ 'type', CreateDataObjectBehavior ],
  58. createParticipantBehavior: [ 'type', CreateParticipantBehavior ],
  59. dataInputAssociationBehavior: [ 'type', DataInputAssociationBehavior ],
  60. dataStoreBehavior: [ 'type', DataStoreBehavior ],
  61. deleteLaneBehavior: [ 'type', DeleteLaneBehavior ],
  62. dropOnFlowBehavior: [ 'type', DropOnFlowBehavior ],
  63. importDockingFix: [ 'type', ImportDockingFix ],
  64. isHorizontalFix: [ 'type', IsHorizontalFix ],
  65. labelBehavior: [ 'type', LabelBehavior ],
  66. modelingFeedback: [ 'type', ModelingFeedback ],
  67. replaceConnectionBehavior: [ 'type', ReplaceConnectionBehavior ],
  68. removeParticipantBehavior: [ 'type', RemoveParticipantBehavior ],
  69. replaceElementBehaviour: [ 'type', ReplaceElementBehaviour ],
  70. resizeLaneBehavior: [ 'type', ResizeLaneBehavior ],
  71. removeElementBehavior: [ 'type', RemoveElementBehavior ],
  72. toggleElementCollapseBehaviour : [ 'type', ToggleElementCollapseBehaviour ],
  73. unclaimIdBehavior: [ 'type', UnclaimIdBehavior ],
  74. updateFlowNodeRefsBehavior: [ 'type', UpdateFlowNodeRefsBehavior ],
  75. unsetDefaultFlowBehavior: [ 'type', UnsetDefaultFlowBehavior ]
  76. };