camunda-bpmn-js 0.13.0-alpha.1 → 0.13.0-alpha.4

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 (35) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/assets/base-modeler.css +1 -0
  3. package/dist/assets/bpmn-js-properties-panel.css +778 -0
  4. package/dist/assets/bpmn-js.css +116 -0
  5. package/dist/assets/camunda-cloud-modeler.css +2 -1
  6. package/dist/base-modeler.development.js +22251 -21746
  7. package/dist/base-modeler.production.min.js +4 -4
  8. package/dist/camunda-cloud-modeler.development.js +30353 -26018
  9. package/dist/camunda-cloud-modeler.production.min.js +4 -4
  10. package/dist/camunda-platform-modeler.development.js +28818 -28649
  11. package/dist/camunda-platform-modeler.production.min.js +4 -4
  12. package/lib/base/Modeler.js +0 -6
  13. package/lib/camunda-cloud/ElementTemplatesValidator.js +1 -0
  14. package/lib/camunda-cloud/Modeler.js +8 -0
  15. package/lib/camunda-cloud/features/drilldown/index.js +3 -0
  16. package/lib/camunda-cloud/features/modeling/behavior/CleanUpBusinessRuleTaskBehavior.js +60 -57
  17. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeCallActivityBehavior.js +1 -1
  18. package/lib/camunda-cloud/features/modeling/behavior/RemoveAssignmentDefinitionBehavior.js +51 -0
  19. package/lib/camunda-cloud/features/modeling/behavior/UpdatePropagateAllChildVariablesBehavior.js +60 -33
  20. package/lib/camunda-cloud/features/modeling/behavior/index.js +8 -8
  21. package/lib/camunda-cloud/helper/CalledElementHelper.js +5 -5
  22. package/lib/camunda-cloud/helper/FormsHelper.js +4 -4
  23. package/lib/camunda-platform/features/modeling/behavior/DeleteErrorEventDefinitionBehavior.js +23 -36
  24. package/lib/camunda-platform/features/modeling/behavior/DeleteRetryTimeCycleBehavior.js +33 -21
  25. package/lib/camunda-platform/features/modeling/behavior/UpdateCamundaExclusiveBehavior.js +14 -11
  26. package/lib/camunda-platform/features/modeling/behavior/UpdateInputOutputBehavior.js +20 -30
  27. package/lib/camunda-platform/features/modeling/behavior/UpdateResultVariableBehavior.js +15 -12
  28. package/lib/camunda-platform/features/modeling/behavior/UserTaskFormsBehavior.js +9 -8
  29. package/lib/camunda-platform/features/modeling/behavior/UserTaskGeneratedFormsBehavior.js +32 -33
  30. package/lib/util/ExtensionElementsUtil.js +59 -0
  31. package/package.json +15 -11
  32. package/styles/base-modeler.css +1 -0
  33. package/styles/camunda-cloud-modeler.css +2 -1
  34. package/lib/camunda-cloud/features/modeling/behavior/CleanUpAssignmentDefinitionBehavior.js +0 -78
  35. package/lib/camunda-cloud/helper/ExtensionElementsHelper.js +0 -17
package/CHANGELOG.md CHANGED
@@ -6,6 +6,29 @@ 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.13.0-alpha.4
10
+
11
+ * `FIX`: move properties panel deps to peer dependencies
12
+ * `CHORE`: add prepare script
13
+ * `DEPS`: update to `bpmn-js@9.0.3`
14
+
15
+ ## 0.13.0-alpha.3
16
+
17
+ * `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
18
+ * `DEPS`: update to `bpmn-js@9.0.2`
19
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
20
+ * `DEPS`: update to `bpmn-properties-panel@1.0.0-alpha.5`
21
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
22
+
23
+ ## 0.13.0-alpha.2
24
+
25
+ * `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
26
+ * `CHORE`: refactor behaviors to only use modeling API ([#91](https://github.com/camunda/camunda-bpmn-js/pull/91))
27
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.3` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
28
+ * `DEPS`: update to `bpmn-js@9.0.0-alpha.2` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
29
+ * `DEPS`: update to `diagram-js-minimap@2.1.0` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
30
+ * `DEPS`: update to `diagram-js@8.1.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
31
+
9
32
  ## 0.13.0-alpha.1
10
33
 
11
34
  * `FEAT`: include documentation fields in properties panel for Camunda Cloud ([#83](https://github.com/camunda/camunda-bpmn-js/issues/83))
@@ -1,4 +1,5 @@
1
1
  @import './diagram-js.css';
2
+ @import './bpmn-js.css';
2
3
  @import './bpmn-font/css/bpmn-embedded.css';
3
4
  @import './diagram-js-minimap.css';
4
5
  @import './properties-panel.css';