camunda-bpmn-js 2.3.0 → 2.3.1

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.
@@ -109842,7 +109842,7 @@
109842
109842
  bo = getBusinessObject$2(newShape),
109843
109843
  eventDefinitions = bo.get('eventDefinitions');
109844
109844
  if (!eventDefinition) {
109845
- return eventDefinitions.length === 0;
109845
+ return eventDefinitions.length !== 0;
109846
109846
  }
109847
109847
  return !is$6(eventDefinitions[0], eventDefinition);
109848
109848
  }
@@ -116240,9 +116240,11 @@
116240
116240
 
116241
116241
  const expressionVariables = toUnifiedFormat(resultContext.computedValue());
116242
116242
 
116243
- result.push(
116244
- ...expressionVariables[0].entries
116245
- );
116243
+ if (expressionVariables && expressionVariables.length > 0) {
116244
+ result.push(
116245
+ ...expressionVariables[0].entries
116246
+ );
116247
+ }
116246
116248
  }
116247
116249
 
116248
116250
  return result;
@@ -116600,7 +116602,7 @@
116600
116602
  element,
116601
116603
  label: translate('Example output'),
116602
116604
  description: m$3`
116603
- <a href="https://docs.camunda.io/docs/next/components/modeler/data-handling/" target="_blank" rel="noopener" title=${ translate('Example Data documentation') }>
116605
+ <a href="https://docs.camunda.io/docs/components/modeler/data-handling/" target="_blank" rel="noopener" title=${ translate('Example Data documentation') }>
116604
116606
  ${ translate('About example data') }
116605
116607
  </a>`,
116606
116608
  id: 'exampleJson',