BPMN 2.0 Choreographies Containers
Call Choreography calling Global
- Preview
- Usage
- Definition
import { CallChoreographyCallingGlobal } from '@dinghy/diagrams/containersBpmn2Choreographies'
<CallChoreographyCallingGlobal/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CALL_CHOREOGRAPHY_CALLING_GLOBAL } from '@dinghy/diagrams/containersBpmn2Choreographies'
<Shape
{...props}
_style={extendStyle(props, CALL_CHOREOGRAPHY_CALLING_GLOBAL)}
/>
{
_style: {
container: 'rounded=1;whiteSpace=wrap;html=1;container=1;collapsible=0;absoluteArcSize=1;arcSize=20;childLayout=stackLayout;horizontal=1;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;strokeWidth=8;',
},
}
Choreography Task
- Preview
- Usage
- Definition
import { ChoreographyTask } from '@dinghy/diagrams/containersBpmn2Choreographies'
<ChoreographyTask/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CHOREOGRAPHY_TASK } from '@dinghy/diagrams/containersBpmn2Choreographies'
<Shape
{...props}
_style={extendStyle(props, CHOREOGRAPHY_TASK)}
/>
{
_style: {
container: 'rounded=1;whiteSpace=wrap;html=1;container=1;collapsible=0;absoluteArcSize=1;arcSize=20;childLayout=stackLayout;horizontal=1;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;',
},
}