camunda-bpmn-js 0.11.2 → 0.12.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.
Files changed (27) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/assets/properties-panel.css +780 -0
  3. package/dist/base-modeler.development.js +383 -104
  4. package/dist/base-modeler.production.min.js +3 -3
  5. package/dist/camunda-cloud-modeler.development.js +929 -609
  6. package/dist/camunda-cloud-modeler.production.min.js +3 -3
  7. package/dist/camunda-platform-modeler.development.js +573 -375
  8. package/dist/camunda-platform-modeler.production.min.js +3 -3
  9. package/lib/camunda-cloud/features/modeling/behavior/CleanUpBusinessRuleTaskBehavior.js +112 -0
  10. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeBoundaryEventBehavior.js +51 -55
  11. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeCallActivityBehavior.js +56 -59
  12. package/lib/camunda-cloud/features/modeling/behavior/FormDefinitionBehavior.js +69 -127
  13. package/lib/camunda-cloud/features/modeling/behavior/UpdatePropagateAllChildVariablesBehavior.js +76 -128
  14. package/lib/camunda-cloud/features/modeling/behavior/index.js +3 -0
  15. package/lib/camunda-cloud/features/properties-provider/parts/implementation/InputOutput.js +21 -7
  16. package/lib/camunda-cloud/features/rules/BpmnRules.js +1 -1
  17. package/lib/camunda-cloud/helper/CalledElementHelper.js +43 -41
  18. package/lib/camunda-cloud/helper/FormsHelper.js +38 -50
  19. package/lib/camunda-cloud/helper/InputOutputHelper.js +92 -106
  20. package/lib/camunda-platform/features/modeling/behavior/DeleteErrorEventDefinitionBehavior.js +24 -47
  21. package/lib/camunda-platform/features/modeling/behavior/DeleteRetryTimeCycleBehavior.js +39 -81
  22. package/lib/camunda-platform/features/modeling/behavior/UpdateCamundaExclusiveBehavior.js +31 -65
  23. package/lib/camunda-platform/features/modeling/behavior/UpdateInputOutputBehavior.js +42 -76
  24. package/lib/camunda-platform/features/modeling/behavior/UpdateResultVariableBehavior.js +21 -26
  25. package/lib/camunda-platform/features/modeling/behavior/UserTaskFormsBehavior.js +27 -9
  26. package/lib/camunda-platform/helper/InputOutputHelper.js +29 -0
  27. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -6,6 +6,32 @@ All notable changes to [camunda-bpmn-js](https://github.com/camunda/camunda-bpmn
6
6
 
7
7
  ___Note:__ Yet to be released changes appear here._
8
8
 
9
+ ## 0.12.0
10
+
11
+ * `FEAT`: behavior for Cloud to ensure that `bpmn:BusinessRuleTask`s only have a `zeebe:CalledDecision` or
12
+ `zeebe:TaskDefinition`/`zeebe:TaskHeaders` respectively. This supports the Zeebe 1.3 release ([#65](https://github.com/camunda/camunda-bpmn-js/issues/65))
13
+ * `FIX`: use relative import path in library code ([b5a696](https://github.com/camunda/camunda-bpmn-js/commit/b5a696bf36f8b6592d6bf3d92ed33c26c63d68f7))
14
+ * `CHORE`: refactor behaviors and helpers ([85573a](https://github.com/camunda/camunda-bpmn-js/commit/85573afe1653bffc2e1387da91076fb0cbe79345))
15
+
16
+ ## 0.11.5
17
+
18
+ * `FIX`: correct assignment of IDs when pasting multiple times
19
+ * `DEPS`: update to `bpmn-js@8.8.2`
20
+
21
+ ## 0.11.4
22
+
23
+ * `FIX`: gracefully handle incompatible properties providers
24
+ * `FIX`: re-use ID of a copied element if available
25
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
26
+ * `DEPS`: update to `bpmn-js-properties-panel@0.46.0`
27
+ * `DEPS`: update to `bpmn-js@8.8.1`
28
+ * `DEPS`: update to `diagram-js@7.5.0`
29
+
30
+ ## 0.11.3
31
+
32
+ * `FIX`: correctly default to `camunda:formBindingRef=latest` ([#60](https://github.com/camunda/camunda-bpmn-js/pull/60))
33
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
34
+
9
35
  ## 0.11.2
10
36
 
11
37
  * `FIX`: do not clean up recently added inputOutput ([#59](https://github.com/camunda/camunda-bpmn-js/pull/59))