index.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. import AdaptiveLabelPositioningBehavior from './AdaptiveLabelPositioningBehavior';
  2. import AppendBehavior from './AppendBehavior';
  3. import AssociationBehavior from './AssociationBehavior';
  4. import AttachEventBehavior from './AttachEventBehavior';
  5. import BoundaryEventBehavior from './BoundaryEventBehavior';
  6. import RootElementReferenceBehavior from './RootElementReferenceBehavior';
  7. import CreateBehavior from './CreateBehavior';
  8. import FixHoverBehavior from './FixHoverBehavior';
  9. import CreateDataObjectBehavior from './CreateDataObjectBehavior';
  10. import CreateParticipantBehavior from './CreateParticipantBehavior';
  11. import DataInputAssociationBehavior from './DataInputAssociationBehavior';
  12. import DataStoreBehavior from './DataStoreBehavior';
  13. import DeleteLaneBehavior from './DeleteLaneBehavior';
  14. import DetachEventBehavior from './DetachEventBehavior';
  15. import DropOnFlowBehavior from './DropOnFlowBehavior';
  16. import EventBasedGatewayBehavior from './EventBasedGatewayBehavior';
  17. import GroupBehavior from './GroupBehavior';
  18. import ImportDockingFix from './ImportDockingFix';
  19. import IsHorizontalFix from './IsHorizontalFix';
  20. import LabelBehavior from './LabelBehavior';
  21. import ModelingFeedback from './ModelingFeedback';
  22. import ReplaceConnectionBehavior from './ReplaceConnectionBehavior';
  23. import RemoveParticipantBehavior from './RemoveParticipantBehavior';
  24. import ReplaceElementBehaviour from './ReplaceElementBehaviour';
  25. import ResizeBehavior from './ResizeBehavior';
  26. import ResizeLaneBehavior from './ResizeLaneBehavior';
  27. import RemoveElementBehavior from './RemoveElementBehavior';
  28. import SpaceToolBehavior from './SpaceToolBehavior';
  29. import SubProcessStartEventBehavior from './SubProcessStartEventBehavior';
  30. import ToggleElementCollapseBehaviour from './ToggleElementCollapseBehaviour';
  31. import UnclaimIdBehavior from './UnclaimIdBehavior';
  32. import UpdateFlowNodeRefsBehavior from './UpdateFlowNodeRefsBehavior';
  33. import UnsetDefaultFlowBehavior from './UnsetDefaultFlowBehavior';
  34. export default {
  35. __init__: [
  36. 'adaptiveLabelPositioningBehavior',
  37. 'appendBehavior',
  38. 'associationBehavior',
  39. 'attachEventBehavior',
  40. 'boundaryEventBehavior',
  41. 'rootElementReferenceBehavior',
  42. 'createBehavior',
  43. 'fixHoverBehavior',
  44. 'createDataObjectBehavior',
  45. 'createParticipantBehavior',
  46. 'dataStoreBehavior',
  47. 'dataInputAssociationBehavior',
  48. 'deleteLaneBehavior',
  49. 'detachEventBehavior',
  50. 'dropOnFlowBehavior',
  51. 'eventBasedGatewayBehavior',
  52. 'groupBehavior',
  53. 'importDockingFix',
  54. 'isHorizontalFix',
  55. 'labelBehavior',
  56. 'modelingFeedback',
  57. 'removeElementBehavior',
  58. 'removeParticipantBehavior',
  59. 'replaceConnectionBehavior',
  60. 'replaceElementBehaviour',
  61. 'resizeBehavior',
  62. 'resizeLaneBehavior',
  63. 'toggleElementCollapseBehaviour',
  64. 'spaceToolBehavior',
  65. 'subProcessStartEventBehavior',
  66. 'unclaimIdBehavior',
  67. 'unsetDefaultFlowBehavior',
  68. 'updateFlowNodeRefsBehavior'
  69. ],
  70. adaptiveLabelPositioningBehavior: [ 'type', AdaptiveLabelPositioningBehavior ],
  71. appendBehavior: [ 'type', AppendBehavior ],
  72. associationBehavior: [ 'type', AssociationBehavior ],
  73. attachEventBehavior: [ 'type', AttachEventBehavior ],
  74. boundaryEventBehavior: [ 'type', BoundaryEventBehavior ],
  75. rootElementReferenceBehavior: [ 'type', RootElementReferenceBehavior ],
  76. createBehavior: [ 'type', CreateBehavior ],
  77. fixHoverBehavior: [ 'type', FixHoverBehavior ],
  78. createDataObjectBehavior: [ 'type', CreateDataObjectBehavior ],
  79. createParticipantBehavior: [ 'type', CreateParticipantBehavior ],
  80. dataInputAssociationBehavior: [ 'type', DataInputAssociationBehavior ],
  81. dataStoreBehavior: [ 'type', DataStoreBehavior ],
  82. deleteLaneBehavior: [ 'type', DeleteLaneBehavior ],
  83. detachEventBehavior: [ 'type', DetachEventBehavior ],
  84. dropOnFlowBehavior: [ 'type', DropOnFlowBehavior ],
  85. eventBasedGatewayBehavior: [ 'type', EventBasedGatewayBehavior ],
  86. groupBehavior: [ 'type', GroupBehavior ],
  87. importDockingFix: [ 'type', ImportDockingFix ],
  88. isHorizontalFix: [ 'type', IsHorizontalFix ],
  89. labelBehavior: [ 'type', LabelBehavior ],
  90. modelingFeedback: [ 'type', ModelingFeedback ],
  91. replaceConnectionBehavior: [ 'type', ReplaceConnectionBehavior ],
  92. removeParticipantBehavior: [ 'type', RemoveParticipantBehavior ],
  93. replaceElementBehaviour: [ 'type', ReplaceElementBehaviour ],
  94. resizeBehavior: [ 'type', ResizeBehavior ],
  95. resizeLaneBehavior: [ 'type', ResizeLaneBehavior ],
  96. removeElementBehavior: [ 'type', RemoveElementBehavior ],
  97. toggleElementCollapseBehaviour : [ 'type', ToggleElementCollapseBehaviour ],
  98. spaceToolBehavior: [ 'type', SpaceToolBehavior ],
  99. subProcessStartEventBehavior: [ 'type', SubProcessStartEventBehavior ],
  100. unclaimIdBehavior: [ 'type', UnclaimIdBehavior ],
  101. updateFlowNodeRefsBehavior: [ 'type', UpdateFlowNodeRefsBehavior ],
  102. unsetDefaultFlowBehavior: [ 'type', UnsetDefaultFlowBehavior ]
  103. };