| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- import AdaptiveLabelPositioningBehavior from './AdaptiveLabelPositioningBehavior';
- import AppendBehavior from './AppendBehavior';
- import AssociationBehavior from './AssociationBehavior';
- import AttachEventBehavior from './AttachEventBehavior';
- import BoundaryEventBehavior from './BoundaryEventBehavior';
- import CompensateBoundaryEventBehavior from './CompensateBoundaryEventBehavior';
- import CreateBehavior from './CreateBehavior';
- import CreateDataObjectBehavior from './CreateDataObjectBehavior';
- import CreateParticipantBehavior from './CreateParticipantBehavior';
- import DataInputAssociationBehavior from './DataInputAssociationBehavior';
- import DataStoreBehavior from './DataStoreBehavior';
- import DeleteLaneBehavior from './DeleteLaneBehavior';
- import DetachEventBehavior from './DetachEventBehavior';
- import DropOnFlowBehavior from './DropOnFlowBehavior';
- import EventBasedGatewayBehavior from './EventBasedGatewayBehavior';
- import FixHoverBehavior from './FixHoverBehavior';
- import GroupBehavior from './GroupBehavior';
- import ImportDockingFix from './ImportDockingFix';
- import IsHorizontalFix from './IsHorizontalFix';
- import LabelBehavior from './LabelBehavior';
- import LayoutConnectionBehavior from './LayoutConnectionBehavior';
- import MessageFlowBehavior from './MessageFlowBehavior';
- import NonInterruptingBehavior from './NonInterruptingBehavior';
- import RemoveEmbeddedLabelBoundsBehavior from './RemoveEmbeddedLabelBoundsBehavior';
- import RemoveElementBehavior from './RemoveElementBehavior';
- import RemoveParticipantBehavior from './RemoveParticipantBehavior';
- import ReplaceConnectionBehavior from './ReplaceConnectionBehavior';
- import ReplaceElementBehaviour from './ReplaceElementBehaviour';
- import ResizeBehavior from './ResizeBehavior';
- import ResizeLaneBehavior from './ResizeLaneBehavior';
- import RootElementReferenceBehavior from './RootElementReferenceBehavior';
- import SpaceToolBehavior from './SpaceToolBehavior';
- import SubProcessPlaneBehavior from './SubProcessPlaneBehavior';
- import SubProcessStartEventBehavior from './SubProcessStartEventBehavior';
- import ToggleCollapseConnectionBehaviour from './ToggleCollapseConnectionBehaviour';
- import ToggleElementCollapseBehaviour from './ToggleElementCollapseBehaviour';
- import UnclaimIdBehavior from './UnclaimIdBehavior';
- import UnsetDefaultFlowBehavior from './UnsetDefaultFlowBehavior';
- import UpdateFlowNodeRefsBehavior from './UpdateFlowNodeRefsBehavior';
- /**
- * @type { import('didi').ModuleDeclaration }
- */
- export default {
- __init__: [
- 'adaptiveLabelPositioningBehavior',
- 'appendBehavior',
- 'associationBehavior',
- 'attachEventBehavior',
- 'boundaryEventBehavior',
- 'compensateBoundaryEventBehaviour',
- 'createBehavior',
- 'createDataObjectBehavior',
- 'createParticipantBehavior',
- 'dataInputAssociationBehavior',
- 'dataStoreBehavior',
- 'deleteLaneBehavior',
- 'detachEventBehavior',
- 'dropOnFlowBehavior',
- 'eventBasedGatewayBehavior',
- 'fixHoverBehavior',
- 'groupBehavior',
- 'importDockingFix',
- 'isHorizontalFix',
- 'labelBehavior',
- 'layoutConnectionBehavior',
- 'messageFlowBehavior',
- 'nonInterruptingBehavior',
- 'removeElementBehavior',
- 'removeEmbeddedLabelBoundsBehavior',
- 'removeParticipantBehavior',
- 'replaceConnectionBehavior',
- 'replaceElementBehaviour',
- 'resizeBehavior',
- 'resizeLaneBehavior',
- 'rootElementReferenceBehavior',
- 'spaceToolBehavior',
- 'subProcessPlaneBehavior',
- 'subProcessStartEventBehavior',
- 'toggleCollapseConnectionBehaviour',
- 'toggleElementCollapseBehaviour',
- 'unclaimIdBehavior',
- 'updateFlowNodeRefsBehavior',
- 'unsetDefaultFlowBehavior'
- ],
- adaptiveLabelPositioningBehavior: [ 'type', AdaptiveLabelPositioningBehavior ],
- appendBehavior: [ 'type', AppendBehavior ],
- associationBehavior: [ 'type', AssociationBehavior ],
- attachEventBehavior: [ 'type', AttachEventBehavior ],
- boundaryEventBehavior: [ 'type', BoundaryEventBehavior ],
- compensateBoundaryEventBehaviour: [ 'type', CompensateBoundaryEventBehavior ],
- createBehavior: [ 'type', CreateBehavior ],
- createDataObjectBehavior: [ 'type', CreateDataObjectBehavior ],
- createParticipantBehavior: [ 'type', CreateParticipantBehavior ],
- dataInputAssociationBehavior: [ 'type', DataInputAssociationBehavior ],
- dataStoreBehavior: [ 'type', DataStoreBehavior ],
- deleteLaneBehavior: [ 'type', DeleteLaneBehavior ],
- detachEventBehavior: [ 'type', DetachEventBehavior ],
- dropOnFlowBehavior: [ 'type', DropOnFlowBehavior ],
- eventBasedGatewayBehavior: [ 'type', EventBasedGatewayBehavior ],
- fixHoverBehavior: [ 'type', FixHoverBehavior ],
- groupBehavior: [ 'type', GroupBehavior ],
- importDockingFix: [ 'type', ImportDockingFix ],
- isHorizontalFix: [ 'type', IsHorizontalFix ],
- labelBehavior: [ 'type', LabelBehavior ],
- layoutConnectionBehavior: [ 'type', LayoutConnectionBehavior ],
- messageFlowBehavior: [ 'type', MessageFlowBehavior ],
- nonInterruptingBehavior: [ 'type', NonInterruptingBehavior ],
- removeElementBehavior: [ 'type', RemoveElementBehavior ],
- removeEmbeddedLabelBoundsBehavior: [ 'type', RemoveEmbeddedLabelBoundsBehavior ],
- removeParticipantBehavior: [ 'type', RemoveParticipantBehavior ],
- replaceConnectionBehavior: [ 'type', ReplaceConnectionBehavior ],
- replaceElementBehaviour: [ 'type', ReplaceElementBehaviour ],
- resizeBehavior: [ 'type', ResizeBehavior ],
- resizeLaneBehavior: [ 'type', ResizeLaneBehavior ],
- rootElementReferenceBehavior: [ 'type', RootElementReferenceBehavior ],
- spaceToolBehavior: [ 'type', SpaceToolBehavior ],
- subProcessPlaneBehavior: [ 'type', SubProcessPlaneBehavior ],
- subProcessStartEventBehavior: [ 'type', SubProcessStartEventBehavior ],
- toggleCollapseConnectionBehaviour: [ 'type', ToggleCollapseConnectionBehaviour ],
- toggleElementCollapseBehaviour : [ 'type', ToggleElementCollapseBehaviour ],
- unclaimIdBehavior: [ 'type', UnclaimIdBehavior ],
- unsetDefaultFlowBehavior: [ 'type', UnsetDefaultFlowBehavior ],
- updateFlowNodeRefsBehavior: [ 'type', UpdateFlowNodeRefsBehavior ]
- };
|