-
Notifications
You must be signed in to change notification settings - Fork 24
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
about camunda-web-modeler #64
Comments
The web version is not the client version. |
Hi @zxxj you could use this part as a bpmn.js Module. Unfortunately it is not possible to add custom modules to the camunda-web-modeler right now. We do not pass additional modules here Did I miss something @peterhnm? To be able to add custom bpmn.js modules would be a nice feature for the camunda-web-modeler |
@dominikhorn93 no, you are right. The UI part of the plugin cannot be used for the
This is not quite correct. It is possible to pass additional modules via the const bpmnJsOptions = useMemo(() => ({
additionalModules: [
TokenSimulationModule
],
}), []);
return (
<BpmnModeler
xml={xml}
onEvent={onEvent}
xmlTabOptions={xmlTabOptions}
modelerTabOptions={{
className: undefined,
disabled: undefined,
bpmnJsOptions: bpmnJsOptions,
modelerOptions: modelerOptions,
propertiesPanelOptions: propertiesPanelOptions
}}/>
); |
May I ask if the camunda-modeler-i18n plugin can be used in camunda-web-modeler?
Looking forward to your answer.
thanks.
The text was updated successfully, but these errors were encountered: