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
|
@@ -9278,7 +9278,7 @@
|
|
|
9278
9278
|
// this way we can always get the correct container size
|
|
9279
9279
|
// (this is impossible for <svg> elements at the moment)
|
|
9280
9280
|
const parent = document.createElement('div');
|
|
9281
|
-
parent.setAttribute('class', 'djs-container');
|
|
9281
|
+
parent.setAttribute('class', 'djs-container djs-parent');
|
|
9282
9282
|
|
|
9283
9283
|
assign(parent, {
|
|
9284
9284
|
position: 'relative',
|
|
@@ -10699,7 +10699,7 @@
|
|
|
10699
10699
|
/**
|
|
10700
10700
|
* Removes an element from the registry.
|
|
10701
10701
|
*
|
|
10702
|
-
* @param {djs.model.Base} element
|
|
10702
|
+
* @param {string|djs.model.Base} element
|
|
10703
10703
|
*/
|
|
10704
10704
|
ElementRegistry.prototype.remove = function(element) {
|
|
10705
10705
|
var elements = this._elements,
|
|
@@ -10722,7 +10722,7 @@
|
|
|
10722
10722
|
/**
|
|
10723
10723
|
* Update the id of an element
|
|
10724
10724
|
*
|
|
10725
|
-
* @param {djs.model.Base} element
|
|
10725
|
+
* @param {string|djs.model.Base} element
|
|
10726
10726
|
* @param {string} newId
|
|
10727
10727
|
*/
|
|
10728
10728
|
ElementRegistry.prototype.updateId = function(element, newId) {
|
|
@@ -10751,7 +10751,7 @@
|
|
|
10751
10751
|
/**
|
|
10752
10752
|
* Update the graphics of an element
|
|
10753
10753
|
*
|
|
10754
|
-
* @param {djs.model.Base} element
|
|
10754
|
+
* @param {string|djs.model.Base} element
|
|
10755
10755
|
* @param {SVGElement} gfx
|
|
10756
10756
|
* @param {boolean} [secondary=false] whether to update the secondary connected element
|
|
10757
10757
|
*/
|