camunda-bpmn-js 2.6.1 → 3.0.0
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/assets/properties-panel.css +11 -6
- package/dist/base-modeler.development.js +419 -2039
- package/dist/base-modeler.production.min.js +16 -18
- package/dist/base-navigated-viewer.development.js +1 -2
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +1 -2
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +12662 -9103
- package/dist/camunda-cloud-modeler.production.min.js +32 -34
- package/dist/camunda-cloud-navigated-viewer.development.js +1 -2
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +1 -2
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/dist/camunda-platform-modeler.development.js +12519 -8990
- package/dist/camunda-platform-modeler.production.min.js +12 -14
- package/dist/camunda-platform-navigated-viewer.development.js +1 -2
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +1 -2
- package/dist/camunda-platform-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/ElementTemplatesValidator.js +1 -1
- package/lib/camunda-cloud/Modeler.d.ts +3 -3
- package/lib/camunda-cloud/Modeler.js +4 -1
- 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/Modeler.js +7 -4
- 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 +10 -10
|
@@ -2850,7 +2850,7 @@
|
|
|
2850
2850
|
function colorEscape(str) {
|
|
2851
2851
|
|
|
2852
2852
|
// only allow characters and numbers
|
|
2853
|
-
return str.replace(/[^0-9a-zA-
|
|
2853
|
+
return str.replace(/[^0-9a-zA-Z]+/g, '_');
|
|
2854
2854
|
}
|
|
2855
2855
|
|
|
2856
2856
|
function marker(type, fill, stroke) {
|
|
@@ -18362,7 +18362,6 @@
|
|
|
18362
18362
|
{
|
|
18363
18363
|
name: "target",
|
|
18364
18364
|
type: "LinkEventDefinition",
|
|
18365
|
-
isAttr: true,
|
|
18366
18365
|
isReference: true
|
|
18367
18366
|
},
|
|
18368
18367
|
{
|