mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-15 11:35:54 +00:00
1bceaaa229
* Make sure the label support is part of our behavior definitions. * Adjust test cases accordingly.
33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
module.exports = {
|
|
__init__: [
|
|
'appendBehavior',
|
|
'createBoundaryEventBehavior',
|
|
'createDataObjectBehavior',
|
|
'createOnFlowBehavior',
|
|
'createParticipantBehavior',
|
|
'dataInputAssociationBehavior',
|
|
'deleteLaneBehavior',
|
|
'labelBehavior',
|
|
'modelingFeedback',
|
|
'removeParticipantBehavior',
|
|
'replaceConnectionBehavior',
|
|
'replaceElementBehaviour',
|
|
'resizeLaneBehavior',
|
|
'updateFlowNodeRefsBehavior'
|
|
],
|
|
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
|
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
|
|
createDataObjectBehavior: [ 'type', require('./CreateDataObjectBehavior') ],
|
|
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
|
|
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
|
|
dataInputAssociationBehavior: [ 'type', require('./DataInputAssociationBehavior') ],
|
|
deleteLaneBehavior: [ 'type', require('./DeleteLaneBehavior') ],
|
|
labelBehavior: [ 'type', require('./LabelBehavior') ],
|
|
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
|
|
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
|
|
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ],
|
|
replaceElementBehaviour: [ 'type', require('./ReplaceElementBehaviour') ],
|
|
resizeLaneBehavior: [ 'type', require('./ResizeLaneBehavior') ],
|
|
updateFlowNodeRefsBehavior: [ 'type', require('./UpdateFlowNodeRefsBehavior') ]
|
|
};
|