camunda-bpmn-js 0.13.0-drilldown.0 → 0.13.2

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 (76) hide show
  1. package/CHANGELOG.md +92 -0
  2. package/dist/assets/base-navigated-viewer.css +2 -0
  3. package/dist/assets/base-viewer.css +2 -0
  4. package/dist/assets/bpmn-js.css +7 -4
  5. package/dist/assets/camunda-cloud-modeler.css +2 -1
  6. package/dist/assets/camunda-cloud-navigated-viewer.css +1 -0
  7. package/dist/assets/camunda-cloud-viewer.css +1 -0
  8. package/dist/assets/camunda-platform-navigated-viewer.css +1 -0
  9. package/dist/assets/camunda-platform-viewer.css +1 -0
  10. package/dist/assets/element-templates.css +4 -0
  11. package/dist/assets/properties-panel.css +901 -877
  12. package/dist/base-modeler.development.js +1949 -3883
  13. package/dist/base-modeler.production.min.js +4 -4
  14. package/dist/base-navigated-viewer.development.js +22218 -0
  15. package/dist/base-navigated-viewer.production.min.js +2 -0
  16. package/dist/base-viewer.development.js +21227 -0
  17. package/dist/base-viewer.production.min.js +2 -0
  18. package/dist/camunda-cloud-modeler.development.js +8579 -5480
  19. package/dist/camunda-cloud-modeler.production.min.js +4 -4
  20. package/dist/camunda-cloud-navigated-viewer.development.js +23041 -0
  21. package/dist/camunda-cloud-navigated-viewer.production.min.js +2 -0
  22. package/dist/camunda-cloud-viewer.development.js +22050 -0
  23. package/dist/camunda-cloud-viewer.production.min.js +2 -0
  24. package/dist/camunda-platform-modeler.development.js +6777 -8719
  25. package/dist/camunda-platform-modeler.production.min.js +4 -4
  26. package/dist/camunda-platform-navigated-viewer.development.js +23413 -0
  27. package/dist/camunda-platform-navigated-viewer.production.min.js +2 -0
  28. package/dist/camunda-platform-viewer.development.js +22422 -0
  29. package/dist/camunda-platform-viewer.production.min.js +2 -0
  30. package/lib/base/NavigatedViewer.js +3 -0
  31. package/lib/base/Viewer.js +3 -0
  32. package/lib/camunda-cloud/ElementTemplatesValidator.js +1 -0
  33. package/lib/camunda-cloud/Modeler.js +8 -7
  34. package/lib/camunda-cloud/NavigatedViewer.js +34 -0
  35. package/lib/camunda-cloud/Viewer.js +34 -0
  36. package/lib/camunda-cloud/util/commonModules.js +14 -0
  37. package/lib/camunda-platform/Modeler.js +5 -5
  38. package/lib/camunda-platform/NavigatedViewer.js +25 -0
  39. package/lib/camunda-platform/Viewer.js +24 -0
  40. package/lib/camunda-platform/util/commonModules.js +7 -0
  41. package/lib/util/ExtensionElementsUtil.js +59 -0
  42. package/package.json +33 -15
  43. package/styles/base-navigated-viewer.css +2 -0
  44. package/styles/base-viewer.css +2 -0
  45. package/styles/camunda-cloud-modeler.css +2 -1
  46. package/styles/camunda-cloud-navigated-viewer.css +1 -0
  47. package/styles/camunda-cloud-viewer.css +1 -0
  48. package/styles/camunda-platform-navigated-viewer.css +1 -0
  49. package/styles/camunda-platform-viewer.css +1 -0
  50. package/util/index.js +39 -0
  51. package/dist/assets/bpmn-js-properties-panel.css +0 -778
  52. package/lib/camunda-cloud/features/modeling/behavior/CleanUpAssignmentDefinitionBehavior.js +0 -78
  53. package/lib/camunda-cloud/features/modeling/behavior/CleanUpBusinessRuleTaskBehavior.js +0 -112
  54. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeBoundaryEventBehavior.js +0 -76
  55. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeCallActivityBehavior.js +0 -74
  56. package/lib/camunda-cloud/features/modeling/behavior/FormDefinitionBehavior.js +0 -138
  57. package/lib/camunda-cloud/features/modeling/behavior/UpdatePropagateAllChildVariablesBehavior.js +0 -109
  58. package/lib/camunda-cloud/features/modeling/behavior/index.js +0 -24
  59. package/lib/camunda-cloud/features/modeling/index.js +0 -7
  60. package/lib/camunda-cloud/helper/CalledElementHelper.js +0 -72
  61. package/lib/camunda-cloud/helper/ElementHelper.js +0 -18
  62. package/lib/camunda-cloud/helper/ExtensionElementsHelper.js +0 -17
  63. package/lib/camunda-cloud/helper/FormsHelper.js +0 -84
  64. package/lib/camunda-cloud/helper/InputOutputHelper.js +0 -138
  65. package/lib/camunda-cloud/helper/Utils.js +0 -10
  66. package/lib/camunda-cloud/helper/ZeebeServiceTaskHelper.js +0 -41
  67. package/lib/camunda-platform/features/modeling/behavior/DeleteErrorEventDefinitionBehavior.js +0 -67
  68. package/lib/camunda-platform/features/modeling/behavior/DeleteRetryTimeCycleBehavior.js +0 -84
  69. package/lib/camunda-platform/features/modeling/behavior/UpdateCamundaExclusiveBehavior.js +0 -65
  70. package/lib/camunda-platform/features/modeling/behavior/UpdateInputOutputBehavior.js +0 -54
  71. package/lib/camunda-platform/features/modeling/behavior/UpdateResultVariableBehavior.js +0 -51
  72. package/lib/camunda-platform/features/modeling/behavior/UserTaskFormsBehavior.js +0 -70
  73. package/lib/camunda-platform/features/modeling/behavior/UserTaskGeneratedFormsBehavior.js +0 -117
  74. package/lib/camunda-platform/features/modeling/behavior/index.js +0 -26
  75. package/lib/camunda-platform/features/modeling/index.js +0 -7
  76. package/lib/camunda-platform/helper/InputOutputHelper.js +0 -29
package/CHANGELOG.md CHANGED
@@ -6,6 +6,98 @@ 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.2
10
+
11
+ * `DEPS`: update to `bpmn-js-properties-panel@1.1.1`
12
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.13.2`
13
+
14
+ ### Key changes in Properties Panel
15
+
16
+ * `FIX`: remove unnecessary scroll padding ([#145](https://github.com/bpmn-io/properties-panel/pull/145))
17
+ * `FIX`: keep existing configuration after template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
18
+ * `FIX`: always override `hidden` configuration on template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
19
+ * `FIX`: do not render non-existing values in element template ([#676](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/676))
20
+ * `FIX`: pick-up correct element template icon ([#670](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/670))
21
+
22
+ ## 0.13.1
23
+
24
+ _Re-publish of v0.13.0 with fixed distro._
25
+
26
+ * `FIX`: fix distro on Windows ([#125](https://github.com/camunda/camunda-bpmn-js/pull/125))
27
+
28
+ ## 0.13.0
29
+
30
+ * `FEAT`: add viewer distributions ([#115](https://github.com/camunda/camunda-bpmn-js/pull/115))
31
+ * `CHORE`: import behaviors from camunda-bpmn-js-behaviors ([#116](https://github.com/camunda/camunda-bpmn-js/pull/116))
32
+ * `DEPS`: update to `bpmn-js-disable-collapsed-subprocess@0.1.4` ([#112](https://github.com/camunda/camunda-bpmn-js/pull/112))
33
+ * `DEPS`: update to `bpmn-js-properties-panel@1.1.0` ([03b659](https://github.com/camunda/camunda-bpmn-js/pull/123/commits/03b659da729364abf97ccc2dba421d83e9f5c48e))
34
+
35
+ ## 0.13.0-alpha.8
36
+
37
+ * `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
38
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.12` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
39
+ * `DEPS`: update to `diagram-js@8.2.1` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
40
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
41
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.12.0` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
42
+ * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
43
+
44
+ ### Key changes in Properties Panel
45
+
46
+ * `FEAT`: apply element template icons ([#641](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/641))
47
+ * `FEAT`: change task type when element template is applied ([#648](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/648))
48
+ * `FEAT`: display element template icons in header ([#650](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/650))
49
+
50
+ ## 0.13.0-alpha.7
51
+
52
+ _Re-publish of v0.13.0-alpha.6 with fixed distro._
53
+
54
+ * `FIX`: update peer dependencies ([#103](https://github.com/camunda/camunda-bpmn-js/pull/103))
55
+
56
+ ## 0.13.0-alpha.6
57
+
58
+ * `FIX`: set $parent when creating zeebe:CalledElement element ([#99](https://github.com/camunda/camunda-bpmn-js/pull/99))
59
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.13.1`
60
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.9`
61
+
62
+ ### Key changes in Properties Panel
63
+
64
+ * `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
65
+ * `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
66
+ * `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
67
+ * `FEAT`: add show callbacks to show entries and errors ([#601](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/601))
68
+ * `FEAT`: open element template custom groups ([#621](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/621))
69
+ * `FEAT`: display template name in header ([#627](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/627))
70
+ * `FEAT`: add documentation ref to header ([#629](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/629))
71
+ * `FIX`: copy versioned element template ([#632](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/632))
72
+
73
+ ## 0.13.0-alpha.5
74
+
75
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
76
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.7`
77
+
78
+ ## 0.13.0-alpha.4
79
+
80
+ * `FIX`: move properties panel deps to peer dependencies
81
+ * `CHORE`: add prepare script
82
+ * `DEPS`: update to `bpmn-js@9.0.3`
83
+
84
+ ## 0.13.0-alpha.3
85
+
86
+ * `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
87
+ * `DEPS`: update to `bpmn-js@9.0.2`
88
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
89
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.5`
90
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
91
+
92
+ ## 0.13.0-alpha.2
93
+
94
+ * `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
95
+ * `CHORE`: refactor behaviors to only use modeling API ([#91](https://github.com/camunda/camunda-bpmn-js/pull/91))
96
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.3` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
97
+ * `DEPS`: update to `bpmn-js@9.0.0-alpha.2` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
98
+ * `DEPS`: update to `diagram-js-minimap@2.1.0` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
99
+ * `DEPS`: update to `diagram-js@8.1.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
100
+
9
101
  ## 0.13.0-alpha.1
10
102
 
11
103
  * `FEAT`: include documentation fields in properties panel for Camunda Cloud ([#83](https://github.com/camunda/camunda-bpmn-js/issues/83))
@@ -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';
@@ -40,7 +40,10 @@
40
40
  display: none;
41
41
  flex-wrap: wrap;
42
42
  align-items: center;
43
- top: 10px;
43
+ top: 30px;
44
+ left: 30px;
45
+ padding: 0px;
46
+ margin: 0px;
44
47
  font-family: var(--breadcrumbs-font-family);
45
48
  font-size: 16px;
46
49
  line-height: normal;
@@ -51,11 +54,11 @@
51
54
  }
52
55
 
53
56
  .djs-palette-shown .bjs-breadcrumbs {
54
- left: 50px;
57
+ left: 90px;
55
58
  }
56
59
 
57
60
  .djs-palette-shown.djs-palette-two-column .bjs-breadcrumbs {
58
- left: 100px;
61
+ left: 140px;
59
62
  }
60
63
 
61
64
  .bjs-breadcrumbs li {
@@ -80,7 +83,7 @@
80
83
  height: 1em;
81
84
  }
82
85
 
83
- .bjs-breadcrumbs .bpmnjs-crumb {
86
+ .bjs-breadcrumbs .bjs-crumb {
84
87
  display: inline-block;
85
88
  max-width: 200px;
86
89
  overflow: hidden;
@@ -1 +1,2 @@
1
- @import './base-modeler.css';
1
+ @import './base-modeler.css';
2
+ @import './element-templates.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';
@@ -10,6 +10,10 @@
10
10
  --select-template-information-text-color: var(--color-grey-225-10-55);
11
11
  }
12
12
 
13
+ .bio-properties-panel-header-template-icon {
14
+ object-fit: contain;
15
+ }
16
+
13
17
  .bio-properties-panel-templates-group .bio-properties-panel-group-header-button:not(.bio-properties-panel-arrow) {
14
18
  padding-right: 6px;
15
19
  padding-left: 9px;