mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-28 17:54:57 +00:00
5e26068f99
This commit adds the functionality to * add a lane (above/below an existing one) * split a lane into sub lanes * remove a lane * resize a lane Closes #379 Closes #338
27 lines
1.1 KiB
JavaScript
27 lines
1.1 KiB
JavaScript
module.exports = {
|
|
__init__: [
|
|
'appendBehavior',
|
|
'createBoundaryEventBehavior',
|
|
'createDataObjectBehavior',
|
|
'deleteLaneBehavior',
|
|
'createOnFlowBehavior',
|
|
'createParticipantBehavior',
|
|
'modelingFeedback',
|
|
'removeParticipantBehavior',
|
|
'replaceConnectionBehavior',
|
|
'replaceElementBehaviour',
|
|
'resizeLaneBehavior'
|
|
],
|
|
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
|
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
|
|
createDataObjectBehavior: [ 'type', require('./CreateDataObjectBehavior') ],
|
|
deleteLaneBehavior: [ 'type', require('./DeleteLaneBehavior') ],
|
|
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
|
|
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
|
|
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
|
|
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
|
|
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ],
|
|
replaceElementBehaviour: [ 'type', require('./ReplaceElementBehaviour') ],
|
|
resizeLaneBehavior: [ 'type', require('./ResizeLaneBehavior') ]
|
|
};
|