mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-09 08:41:59 +00:00
645265ad7e
* Treat features as optional dependencies and register action only if feature exists * Explicitly add features to the Modeler and NavigatedViewer types
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
import EditorActionsModule from 'diagram-js/lib/features/editor-actions';
|
|
|
|
import BpmnEditorActions from './BpmnEditorActions';
|
|
|
|
export default {
|
|
__depends__: [
|
|
EditorActionsModule
|
|
],
|
|
editorActions: [ 'type', BpmnEditorActions ]
|
|
};
|