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