-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT] Update API to display BPMN Elements with Overlays #27
[FEAT] Update API to display BPMN Elements with Overlays #27
Conversation
36af1f2
to
523bafc
Compare
523bafc
to
f9f3f10
Compare
f9f3f10
to
c0ca7d1
Compare
Prior 96b272e, the BPMN diagram wasn't displayed anymore: the R binding had changed (pass an object instead of only the bpmn content) and the JS binding hadn't been updated. So the bpmn input passed to bpmn-visualization was empty and a alert window was displayed with the "parsing error". This is now working, I have tested the display with bpmn_file <- system.file("examples/Travel_Booking.bpmn", package = "bpmnVisualization")
bpmnVisualization::display(bpmn_file) I have been able to display an overlay by following the README explanations overlays <- list(bpmnVisualization::create_overlay("_6-203", "9"))
bpmnVisualization::display(bpmn_file, overlays) Note about robustness > overlays <- bpmnVisualization::create_overlay("_6-203", "9")
> bpmnVisualization::display(bpmn_file, overlays) |
Closes #9