camunda-bpmn-js 0.23.0 → 0.24.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/bpmn-js.css +7 -7
- package/dist/assets/diagram-js.css +205 -45
- package/dist/base-modeler.development.js +5701 -5951
- package/dist/base-modeler.production.min.js +149 -4
- package/dist/base-navigated-viewer.development.js +18 -19
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +4 -4
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +16976 -18915
- package/dist/camunda-cloud-modeler.production.min.js +149 -4
- package/dist/camunda-cloud-navigated-viewer.development.js +197 -525
- package/dist/camunda-cloud-navigated-viewer.production.min.js +2 -2
- package/dist/camunda-cloud-viewer.development.js +183 -510
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/dist/camunda-platform-modeler.development.js +5944 -8635
- package/dist/camunda-platform-modeler.production.min.js +149 -4
- package/dist/camunda-platform-navigated-viewer.development.js +18 -19
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +4 -4
- package/dist/camunda-platform-viewer.production.min.js +1 -1
- package/lib/camunda-cloud/Modeler.js +3 -1
- package/lib/camunda-cloud/features/replace/ElementTemplatesReplaceProvider.js +249 -0
- package/lib/camunda-cloud/features/replace/ReplaceOptionsUtil.js +7 -0
- package/lib/camunda-cloud/features/replace/index.js +6 -0
- package/package.json +15 -12
|
@@ -9248,7 +9248,7 @@
|
|
|
9248
9248
|
// this way we can always get the correct container size
|
|
9249
9249
|
// (this is impossible for <svg> elements at the moment)
|
|
9250
9250
|
const parent = document.createElement('div');
|
|
9251
|
-
parent.setAttribute('class', 'djs-container');
|
|
9251
|
+
parent.setAttribute('class', 'djs-container djs-parent');
|
|
9252
9252
|
|
|
9253
9253
|
assign(parent, {
|
|
9254
9254
|
position: 'relative',
|
|
@@ -10669,7 +10669,7 @@
|
|
|
10669
10669
|
/**
|
|
10670
10670
|
* Removes an element from the registry.
|
|
10671
10671
|
*
|
|
10672
|
-
* @param {djs.model.Base} element
|
|
10672
|
+
* @param {string|djs.model.Base} element
|
|
10673
10673
|
*/
|
|
10674
10674
|
ElementRegistry.prototype.remove = function(element) {
|
|
10675
10675
|
var elements = this._elements,
|
|
@@ -10692,7 +10692,7 @@
|
|
|
10692
10692
|
/**
|
|
10693
10693
|
* Update the id of an element
|
|
10694
10694
|
*
|
|
10695
|
-
* @param {djs.model.Base} element
|
|
10695
|
+
* @param {string|djs.model.Base} element
|
|
10696
10696
|
* @param {string} newId
|
|
10697
10697
|
*/
|
|
10698
10698
|
ElementRegistry.prototype.updateId = function(element, newId) {
|
|
@@ -10721,7 +10721,7 @@
|
|
|
10721
10721
|
/**
|
|
10722
10722
|
* Update the graphics of an element
|
|
10723
10723
|
*
|
|
10724
|
-
* @param {djs.model.Base} element
|
|
10724
|
+
* @param {string|djs.model.Base} element
|
|
10725
10725
|
* @param {SVGElement} gfx
|
|
10726
10726
|
* @param {boolean} [secondary=false] whether to update the secondary connected element
|
|
10727
10727
|
*/
|