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.
@@ -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
  */