camunda-bpmn-js 0.15.1 → 0.16.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/CHANGELOG.md +323 -280
- package/LICENSE +20 -20
- package/README.md +84 -84
- package/dist/assets/base-modeler.css +4 -4
- package/dist/assets/base-navigated-viewer.css +1 -1
- package/dist/assets/base-viewer.css +1 -1
- package/dist/assets/camunda-cloud-modeler.css +1 -1
- package/dist/assets/camunda-platform-modeler.css +1 -1
- package/dist/assets/properties-panel.css +93 -6
- package/dist/base-modeler.development.js +3961 -609
- package/dist/base-modeler.production.min.js +4 -4
- package/dist/base-navigated-viewer.development.js +7 -4
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +7 -4
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +5426 -1438
- package/dist/camunda-cloud-modeler.production.min.js +4 -4
- package/dist/camunda-cloud-navigated-viewer.development.js +42 -39
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +42 -39
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/dist/camunda-platform-modeler.development.js +4134 -884
- package/dist/camunda-platform-modeler.production.min.js +4 -4
- package/dist/camunda-platform-navigated-viewer.development.js +26 -23
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +26 -23
- package/dist/camunda-platform-viewer.production.min.js +1 -1
- package/lib/base/Modeler.js +46 -46
- package/lib/base/NavigatedViewer.js +2 -2
- package/lib/base/Viewer.js +2 -2
- package/lib/camunda-cloud/Modeler.js +68 -68
- package/lib/camunda-cloud/NavigatedViewer.js +34 -34
- package/lib/camunda-cloud/Viewer.js +34 -34
- package/lib/camunda-cloud/features/context-pad/ContextPadOptions.js +15 -15
- package/lib/camunda-cloud/features/context-pad/index.js +6 -6
- package/lib/camunda-cloud/features/drilldown/index.js +3 -3
- package/lib/camunda-cloud/features/palette/PaletteOptions.js +14 -14
- package/lib/camunda-cloud/features/palette/PaletteProvider.js +31 -31
- package/lib/camunda-cloud/features/palette/index.js +6 -6
- package/lib/camunda-cloud/features/popup-menu/ReplaceMenuProvider.js +71 -71
- package/lib/camunda-cloud/features/popup-menu/ReplaceOptions.js +46 -46
- package/lib/camunda-cloud/features/popup-menu/index.js +6 -6
- package/lib/camunda-cloud/features/rules/BpmnRules.js +137 -137
- package/lib/camunda-cloud/features/rules/index.js +5 -5
- package/lib/camunda-cloud/util/commonModules.js +13 -13
- package/lib/camunda-platform/Modeler.js +46 -46
- package/lib/camunda-platform/NavigatedViewer.js +25 -25
- package/lib/camunda-platform/Viewer.js +24 -24
- package/lib/camunda-platform/util/commonModules.js +6 -6
- package/lib/util/ExtensionElementsUtil.js +59 -59
- package/package.json +109 -110
- package/styles/base-modeler.css +4 -4
- package/styles/base-navigated-viewer.css +1 -1
- package/styles/base-viewer.css +1 -1
- package/styles/camunda-cloud-modeler.css +1 -1
- package/styles/camunda-platform-modeler.css +1 -1
- package/util/index.js +39 -39
|
@@ -4399,11 +4399,14 @@
|
|
|
4399
4399
|
helperSvg = create('svg');
|
|
4400
4400
|
|
|
4401
4401
|
attr(helperSvg, {
|
|
4402
|
-
id: 'helper-svg'
|
|
4403
|
-
|
|
4404
|
-
|
|
4402
|
+
id: 'helper-svg'
|
|
4403
|
+
});
|
|
4404
|
+
|
|
4405
|
+
assign$1(helperSvg, {
|
|
4405
4406
|
visibility: 'hidden',
|
|
4406
|
-
position: 'fixed'
|
|
4407
|
+
position: 'fixed',
|
|
4408
|
+
width: 0,
|
|
4409
|
+
height: 0
|
|
4407
4410
|
});
|
|
4408
4411
|
|
|
4409
4412
|
document.body.appendChild(helperSvg);
|
|
@@ -23791,27 +23794,27 @@
|
|
|
23791
23794
|
emumerations: emumerations
|
|
23792
23795
|
};
|
|
23793
23796
|
|
|
23794
|
-
const commonModdleExtensions = {
|
|
23795
|
-
camunda: camundaModdle
|
|
23797
|
+
const commonModdleExtensions = {
|
|
23798
|
+
camunda: camundaModdle
|
|
23796
23799
|
};
|
|
23797
23800
|
|
|
23798
|
-
/**
|
|
23799
|
-
*
|
|
23800
|
-
* @param {Object} options
|
|
23801
|
-
*/
|
|
23802
|
-
function NavigatedViewer$1(options = {}) {
|
|
23803
|
-
|
|
23804
|
-
options = {
|
|
23805
|
-
...options,
|
|
23806
|
-
moddleExtensions: {
|
|
23807
|
-
...commonModdleExtensions,
|
|
23808
|
-
...options.moddleExtensions
|
|
23809
|
-
}
|
|
23810
|
-
};
|
|
23811
|
-
|
|
23812
|
-
NavigatedViewer.call(this, options);
|
|
23813
|
-
}
|
|
23814
|
-
|
|
23801
|
+
/**
|
|
23802
|
+
*
|
|
23803
|
+
* @param {Object} options
|
|
23804
|
+
*/
|
|
23805
|
+
function NavigatedViewer$1(options = {}) {
|
|
23806
|
+
|
|
23807
|
+
options = {
|
|
23808
|
+
...options,
|
|
23809
|
+
moddleExtensions: {
|
|
23810
|
+
...commonModdleExtensions,
|
|
23811
|
+
...options.moddleExtensions
|
|
23812
|
+
}
|
|
23813
|
+
};
|
|
23814
|
+
|
|
23815
|
+
NavigatedViewer.call(this, options);
|
|
23816
|
+
}
|
|
23817
|
+
|
|
23815
23818
|
inherits_browser(NavigatedViewer$1, NavigatedViewer);
|
|
23816
23819
|
|
|
23817
23820
|
return NavigatedViewer$1;
|