camunda-bpmn-js-behaviors
Version:
Camunda Platform 7 and 8 behaviors for bpmn-js
51 lines (49 loc) • 2.67 kB
JavaScript
import CleanUpBusinessRuleTaskBehavior from './CleanUpBusinessRuleTaskBehavior';
import CleanUpEndEventBehavior from './CleanUpEndEventBehavior';
import CleanUpExecutionListenersBehavior from './CleanUpExecutionListenersBehavior';
import CleanUpMessageRefBehavior from './CleanUpMessageRefBehavior';
import CleanUpTaskListenersBehavior from './CleanUpTaskListenersBehavior';
import CleanUpSubscriptionBehavior from './CleanUpSubscriptionBehavior';
import CleanUpTimerExpressionBehavior from './CleanUpTimerExpressionBehavior';
import CopyPasteBehavior from './CopyPasteBehavior';
import CreateZeebeCallActivityBehavior from './CreateZeebeCallActivityBehavior';
import CreateZeebeUserTaskBehavior from './CreateZeebeUserTaskBehavior';
import DeleteParticipantBehaviour from '../shared/DeleteParticipantBehaviour';
import FormsBehavior from './FormsBehavior';
import RemoveAssignmentDefinitionBehavior from './RemoveAssignmentDefinitionBehavior';
import RemoveTaskScheduleBehavior from './RemoveTaskScheduleBehavior';
import VersionTagBehavior from './VersionTagBehavior';
export default {
__init__: [
'cleanUpBusinessRuleTaskBehavior',
'cleanUpEndEventBehavior',
'cleanUpExecutionListenersBehavior',
'cleanUpMessageRefBehavior',
'cleanUpTaskListenersBehavior',
'cleanUpSubscriptionBehavior',
'cleanUpTimerExpressionBehavior',
'copyPasteBehavior',
'createZeebeCallActivityBehavior',
'createZeebeUserTaskBehavior',
'deleteParticipantBehaviour',
'formsBehavior',
'removeAssignmentDefinitionBehavior',
'removeTaskScheduleBehavior',
'versionTagBehavior'
],
cleanUpBusinessRuleTaskBehavior: [ 'type', CleanUpBusinessRuleTaskBehavior ],
cleanUpEndEventBehavior: [ 'type', CleanUpEndEventBehavior ],
cleanUpExecutionListenersBehavior: [ 'type', CleanUpExecutionListenersBehavior ],
cleanUpMessageRefBehavior: [ 'type', CleanUpMessageRefBehavior ],
cleanUpTaskListenersBehavior: [ 'type', CleanUpTaskListenersBehavior ],
cleanUpSubscriptionBehavior: [ 'type', CleanUpSubscriptionBehavior ],
cleanUpTimerExpressionBehavior: [ 'type', CleanUpTimerExpressionBehavior ],
copyPasteBehavior: [ 'type', CopyPasteBehavior ],
createZeebeCallActivityBehavior: [ 'type', CreateZeebeCallActivityBehavior ],
createZeebeUserTaskBehavior: [ 'type', CreateZeebeUserTaskBehavior ],
deleteParticipantBehaviour: [ 'type', DeleteParticipantBehaviour ],
formsBehavior: [ 'type', FormsBehavior ],
removeAssignmentDefinitionBehavior: [ 'type', RemoveAssignmentDefinitionBehavior ],
removeTaskScheduleBehavior: [ 'type', RemoveTaskScheduleBehavior ],
versionTagBehavior: [ 'type', VersionTagBehavior ]
};