I searched for ways to get the camunda modeler into angular 9 application. What I found was using bpmn-js
library and its other dependencies like bpmn-js-properties-panel
, etc.
I was able to get the following output.
But, as in the online camunda modeler, I cannot see the connectors in my implementation. I know that there is a dependency called bpmn-js-connectors-extension
but that is not working and I got below errors.
ERROR in ./node_modules/bpmn-js-connectors-extension/dist/index.es.js 775:11-16 export 'isAny' was not found in 'bpmn-js/lib/util/ModelUtil' ERROR in ./node_modules/bpmn-js-connectors-extension/dist/index.es.js 977:11-16 export 'isAny' was not found in 'bpmn-js/lib/util/ModelUtil'
The dependencies that I'm using are below.
- "bpmn-js": "6.3.4",
- "bpmn-js-connectors-extension": "^0.4.6",
- "bpmn-js-properties-panel": "0.37.5",
- "camunda-bpmn-moddle": "^7.0.1",
- "core-js": "3.6.4",
- "diagram-js": "^11.13.0"
I need to know whether there is any way to integrate camunda modeler into angular 9 and if using bpmn-js
is okay, then what is the way to get the camunda connectors as below.?
Thank you.