camunda-bpmn-js 0.13.0-alpha.0 → 0.13.0-alpha.3

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