camunda-bpmn-js 0.13.0-alpha.8 → 0.13.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.
Files changed (66) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/assets/base-navigated-viewer.css +2 -0
  3. package/dist/assets/base-viewer.css +2 -0
  4. package/dist/assets/camunda-cloud-navigated-viewer.css +1 -0
  5. package/dist/assets/camunda-cloud-viewer.css +1 -0
  6. package/dist/assets/camunda-platform-navigated-viewer.css +1 -0
  7. package/dist/assets/camunda-platform-viewer.css +1 -0
  8. package/dist/assets/properties-panel.css +900 -901
  9. package/dist/base-navigated-viewer.development.js +22218 -0
  10. package/dist/base-navigated-viewer.production.min.js +2 -0
  11. package/dist/base-viewer.development.js +21227 -0
  12. package/dist/base-viewer.production.min.js +2 -0
  13. package/dist/camunda-cloud-modeler.development.js +1249 -944
  14. package/dist/camunda-cloud-modeler.production.min.js +4 -4
  15. package/dist/camunda-cloud-navigated-viewer.development.js +23041 -0
  16. package/dist/camunda-cloud-navigated-viewer.production.min.js +2 -0
  17. package/dist/camunda-cloud-viewer.development.js +22050 -0
  18. package/dist/camunda-cloud-viewer.production.min.js +2 -0
  19. package/dist/camunda-platform-modeler.development.js +1464 -1381
  20. package/dist/camunda-platform-modeler.production.min.js +4 -4
  21. package/dist/camunda-platform-navigated-viewer.development.js +23413 -0
  22. package/dist/camunda-platform-navigated-viewer.production.min.js +2 -0
  23. package/dist/camunda-platform-viewer.development.js +22422 -0
  24. package/dist/camunda-platform-viewer.production.min.js +2 -0
  25. package/lib/base/NavigatedViewer.js +3 -0
  26. package/lib/base/Viewer.js +3 -0
  27. package/lib/camunda-cloud/Modeler.js +7 -11
  28. package/lib/camunda-cloud/NavigatedViewer.js +34 -0
  29. package/lib/camunda-cloud/Viewer.js +34 -0
  30. package/lib/camunda-cloud/util/commonModules.js +14 -0
  31. package/lib/camunda-platform/Modeler.js +5 -5
  32. package/lib/camunda-platform/NavigatedViewer.js +25 -0
  33. package/lib/camunda-platform/Viewer.js +24 -0
  34. package/lib/camunda-platform/util/commonModules.js +7 -0
  35. package/package.json +9 -4
  36. package/styles/base-navigated-viewer.css +2 -0
  37. package/styles/base-viewer.css +2 -0
  38. package/styles/camunda-cloud-navigated-viewer.css +1 -0
  39. package/styles/camunda-cloud-viewer.css +1 -0
  40. package/styles/camunda-platform-navigated-viewer.css +1 -0
  41. package/styles/camunda-platform-viewer.css +1 -0
  42. package/util/index.js +39 -0
  43. package/lib/camunda-cloud/features/modeling/behavior/CleanUpBusinessRuleTaskBehavior.js +0 -115
  44. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeBoundaryEventBehavior.js +0 -76
  45. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeCallActivityBehavior.js +0 -86
  46. package/lib/camunda-cloud/features/modeling/behavior/FormDefinitionBehavior.js +0 -138
  47. package/lib/camunda-cloud/features/modeling/behavior/RemoveAssignmentDefinitionBehavior.js +0 -51
  48. package/lib/camunda-cloud/features/modeling/behavior/UpdatePropagateAllChildVariablesBehavior.js +0 -136
  49. package/lib/camunda-cloud/features/modeling/behavior/index.js +0 -24
  50. package/lib/camunda-cloud/features/modeling/index.js +0 -7
  51. package/lib/camunda-cloud/helper/CalledElementHelper.js +0 -72
  52. package/lib/camunda-cloud/helper/ElementHelper.js +0 -18
  53. package/lib/camunda-cloud/helper/FormsHelper.js +0 -84
  54. package/lib/camunda-cloud/helper/InputOutputHelper.js +0 -138
  55. package/lib/camunda-cloud/helper/Utils.js +0 -10
  56. package/lib/camunda-cloud/helper/ZeebeServiceTaskHelper.js +0 -41
  57. package/lib/camunda-platform/features/modeling/behavior/DeleteErrorEventDefinitionBehavior.js +0 -54
  58. package/lib/camunda-platform/features/modeling/behavior/DeleteRetryTimeCycleBehavior.js +0 -96
  59. package/lib/camunda-platform/features/modeling/behavior/UpdateCamundaExclusiveBehavior.js +0 -68
  60. package/lib/camunda-platform/features/modeling/behavior/UpdateInputOutputBehavior.js +0 -44
  61. package/lib/camunda-platform/features/modeling/behavior/UpdateResultVariableBehavior.js +0 -54
  62. package/lib/camunda-platform/features/modeling/behavior/UserTaskFormsBehavior.js +0 -71
  63. package/lib/camunda-platform/features/modeling/behavior/UserTaskGeneratedFormsBehavior.js +0 -116
  64. package/lib/camunda-platform/features/modeling/behavior/index.js +0 -26
  65. package/lib/camunda-platform/features/modeling/index.js +0 -7
  66. package/lib/camunda-platform/helper/InputOutputHelper.js +0 -29
package/CHANGELOG.md CHANGED
@@ -6,6 +6,19 @@ 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.1
10
+
11
+ _Re-publish of v0.13.0 with fixed distro._
12
+
13
+ * `FIX`: fix distro on Windows ([#125](https://github.com/camunda/camunda-bpmn-js/pull/125))
14
+
15
+ ## 0.13.0
16
+
17
+ * `FEAT`: add viewer distributions ([#115](https://github.com/camunda/camunda-bpmn-js/pull/115))
18
+ * `CHORE`: import behaviors from camunda-bpmn-js-behaviors ([#116](https://github.com/camunda/camunda-bpmn-js/pull/116))
19
+ * `DEPS`: update to `bpmn-js-disable-collapsed-subprocess@0.1.4` ([#112](https://github.com/camunda/camunda-bpmn-js/pull/112))
20
+ * `DEPS`: update to `bpmn-js-properties-panel@1.1.0` ([03b659](https://github.com/camunda/camunda-bpmn-js/pull/123/commits/03b659da729364abf97ccc2dba421d83e9f5c48e))
21
+
9
22
  ## 0.13.0-alpha.8
10
23
 
11
24
  * `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
@@ -0,0 +1,2 @@
1
+ @import './diagram-js.css';
2
+ @import './bpmn-js.css';
@@ -0,0 +1,2 @@
1
+ @import './diagram-js.css';
2
+ @import './bpmn-js.css';
@@ -0,0 +1 @@
1
+ @import './base-navigated-viewer.css';
@@ -0,0 +1 @@
1
+ @import './base-viewer.css';
@@ -0,0 +1 @@
1
+ @import './base-navigated-viewer.css';
@@ -0,0 +1 @@
1
+ @import './base-viewer.css';