camunda-bpmn-js 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/camunda-cloud-modeler.development.js +5 -4
- package/dist/camunda-cloud-modeler.production.min.js +1 -1
- package/dist/camunda-cloud-navigated-viewer.development.js +5 -4
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +5 -4
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/lib/base/Modeler.d.ts +15 -15
- package/lib/base/NavigatedViewer.d.ts +2 -2
- package/lib/base/Viewer.d.ts +2 -2
- package/lib/camunda-cloud/ElementTemplatesValidator.d.ts +1 -1
- package/lib/camunda-cloud/Modeler.d.ts +3 -3
- package/lib/camunda-cloud/NavigatedViewer.d.ts +3 -3
- package/lib/camunda-cloud/Viewer.d.ts +3 -3
- package/lib/camunda-cloud/features/rules/BpmnRules.d.ts +32 -32
- package/lib/camunda-cloud/features/rules/index.d.ts +6 -6
- package/lib/camunda-cloud/util/commonModules.d.ts +9 -9
- package/lib/camunda-platform/Modeler.d.ts +3 -3
- package/lib/camunda-platform/NavigatedViewer.d.ts +5 -5
- package/lib/camunda-platform/Viewer.d.ts +5 -5
- package/lib/camunda-platform/util/commonModules.d.ts +9 -9
- package/lib/util/ExtensionElementsUtil.d.ts +24 -24
- package/package.json +2 -2
|
@@ -117489,11 +117489,12 @@
|
|
|
117489
117489
|
|
|
117490
117490
|
var renderer = this._bpmnRenderer.handlers[
|
|
117491
117491
|
[
|
|
117492
|
-
'bpmn:Task',
|
|
117493
|
-
'bpmn:StartEvent',
|
|
117494
|
-
'bpmn:IntermediateEvent',
|
|
117495
117492
|
'bpmn:BoundaryEvent',
|
|
117496
|
-
'bpmn:EndEvent'
|
|
117493
|
+
'bpmn:EndEvent',
|
|
117494
|
+
'bpmn:IntermediateCatchEvent',
|
|
117495
|
+
'bpmn:IntermediateThrowEvent',
|
|
117496
|
+
'bpmn:StartEvent',
|
|
117497
|
+
'bpmn:Task'
|
|
117497
117498
|
].find(t => is$6(element, t))
|
|
117498
117499
|
];
|
|
117499
117500
|
|