camunda-bpmn-js 0.15.1 → 0.16.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 (57) hide show
  1. package/CHANGELOG.md +323 -280
  2. package/LICENSE +20 -20
  3. package/README.md +84 -84
  4. package/dist/assets/base-modeler.css +4 -4
  5. package/dist/assets/base-navigated-viewer.css +1 -1
  6. package/dist/assets/base-viewer.css +1 -1
  7. package/dist/assets/camunda-cloud-modeler.css +1 -1
  8. package/dist/assets/camunda-platform-modeler.css +1 -1
  9. package/dist/assets/properties-panel.css +93 -6
  10. package/dist/base-modeler.development.js +3961 -609
  11. package/dist/base-modeler.production.min.js +4 -4
  12. package/dist/base-navigated-viewer.development.js +7 -4
  13. package/dist/base-navigated-viewer.production.min.js +1 -1
  14. package/dist/base-viewer.development.js +7 -4
  15. package/dist/base-viewer.production.min.js +1 -1
  16. package/dist/camunda-cloud-modeler.development.js +5426 -1438
  17. package/dist/camunda-cloud-modeler.production.min.js +4 -4
  18. package/dist/camunda-cloud-navigated-viewer.development.js +42 -39
  19. package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
  20. package/dist/camunda-cloud-viewer.development.js +42 -39
  21. package/dist/camunda-cloud-viewer.production.min.js +1 -1
  22. package/dist/camunda-platform-modeler.development.js +4134 -884
  23. package/dist/camunda-platform-modeler.production.min.js +4 -4
  24. package/dist/camunda-platform-navigated-viewer.development.js +26 -23
  25. package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
  26. package/dist/camunda-platform-viewer.development.js +26 -23
  27. package/dist/camunda-platform-viewer.production.min.js +1 -1
  28. package/lib/base/Modeler.js +46 -46
  29. package/lib/base/NavigatedViewer.js +2 -2
  30. package/lib/base/Viewer.js +2 -2
  31. package/lib/camunda-cloud/Modeler.js +68 -68
  32. package/lib/camunda-cloud/NavigatedViewer.js +34 -34
  33. package/lib/camunda-cloud/Viewer.js +34 -34
  34. package/lib/camunda-cloud/features/context-pad/ContextPadOptions.js +15 -15
  35. package/lib/camunda-cloud/features/context-pad/index.js +6 -6
  36. package/lib/camunda-cloud/features/drilldown/index.js +3 -3
  37. package/lib/camunda-cloud/features/palette/PaletteOptions.js +14 -14
  38. package/lib/camunda-cloud/features/palette/PaletteProvider.js +31 -31
  39. package/lib/camunda-cloud/features/palette/index.js +6 -6
  40. package/lib/camunda-cloud/features/popup-menu/ReplaceMenuProvider.js +71 -71
  41. package/lib/camunda-cloud/features/popup-menu/ReplaceOptions.js +46 -46
  42. package/lib/camunda-cloud/features/popup-menu/index.js +6 -6
  43. package/lib/camunda-cloud/features/rules/BpmnRules.js +137 -137
  44. package/lib/camunda-cloud/features/rules/index.js +5 -5
  45. package/lib/camunda-cloud/util/commonModules.js +13 -13
  46. package/lib/camunda-platform/Modeler.js +46 -46
  47. package/lib/camunda-platform/NavigatedViewer.js +25 -25
  48. package/lib/camunda-platform/Viewer.js +24 -24
  49. package/lib/camunda-platform/util/commonModules.js +6 -6
  50. package/lib/util/ExtensionElementsUtil.js +59 -59
  51. package/package.json +109 -110
  52. package/styles/base-modeler.css +4 -4
  53. package/styles/base-navigated-viewer.css +1 -1
  54. package/styles/base-viewer.css +1 -1
  55. package/styles/camunda-cloud-modeler.css +1 -1
  56. package/styles/camunda-platform-modeler.css +1 -1
  57. package/util/index.js +39 -39
package/CHANGELOG.md CHANGED
@@ -1,280 +1,323 @@
1
- # Changelog
2
-
3
- All notable changes to [camunda-bpmn-js](https://github.com/camunda/camunda-bpmn-js) are documented here. We use [semantic versioning](http://semver.org/) for releases.
4
-
5
- ## Unreleased
6
-
7
- ___Note:__ Yet to be released changes appear here._
8
-
9
- ## 0.15.1
10
-
11
- * `DEPS`: update to `bpmn-js@9.3.1`
12
-
13
- ## 0.15.0
14
-
15
- * `DEPS`: update to `bpmn-js@9.3.0`
16
- * `DEPS`: update to `diagram-js@8.7.0`
17
- * `DEPS`: update to `bpmn-js-properties-panel@1.2.0`
18
-
19
- ## 0.14.0
20
-
21
- * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.2.0`
22
-
23
- ### Key changes in Modeling
24
-
25
- * `FEAT`: enforce rectangular element template icon size ([#4](https://github.com/bpmn-io/element-templates-icons-renderer/issues/4))
26
- * `FIX`: remove `label` property on empty label ([#1637](https://github.com/bpmn-io/bpmn-js/issues/1637))
27
- * `FIX`: create drilldown overlays on `viewer.open` ([`574a67438`](https://github.com/bpmn-io/bpmn-js/commit/574a674381d6449b509396b6d17c4ca94674ea1c))
28
- * `FIX`: render data association inside collapsed sub-processes ([#1619](https://github.com/bpmn-io/bpmn-js/issues/1619))
29
- * `FIX`: preserve multi-instance properties when toggling between parallel and sequential ([#1581](https://github.com/bpmn-io/bpmn-js/issues/1581))
30
- * `FIX`: correct hanging sequence flow label after collapsing sub-process ([#1617](https://github.com/bpmn-io/bpmn-js/issues/1617))
31
- * `FIX`: correct start event not added to newly created sub-process ([#1631](https://github.com/bpmn-io/bpmn-js/issues/1631))
32
-
33
- ## 0.13.2
34
-
35
- * `DEPS`: update to `bpmn-js-properties-panel@1.1.1`
36
- * `DEPS`: update to `@bpmn-io/properties-panel@0.13.2`
37
-
38
- ### Key changes in Properties Panel
39
-
40
- * `FIX`: remove unnecessary scroll padding ([#145](https://github.com/bpmn-io/properties-panel/pull/145))
41
- * `FIX`: keep existing configuration after template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
42
- * `FIX`: always override `hidden` configuration on template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
43
- * `FIX`: do not render non-existing values in element template ([#676](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/676))
44
- * `FIX`: pick-up correct element template icon ([#670](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/670))
45
-
46
- ## 0.13.1
47
-
48
- _Re-publish of v0.13.0 with fixed distro._
49
-
50
- * `FIX`: fix distro on Windows ([#125](https://github.com/camunda/camunda-bpmn-js/pull/125))
51
-
52
- ## 0.13.0
53
-
54
- * `FEAT`: add viewer distributions ([#115](https://github.com/camunda/camunda-bpmn-js/pull/115))
55
- * `CHORE`: import behaviors from camunda-bpmn-js-behaviors ([#116](https://github.com/camunda/camunda-bpmn-js/pull/116))
56
- * `DEPS`: update to `bpmn-js-disable-collapsed-subprocess@0.1.4` ([#112](https://github.com/camunda/camunda-bpmn-js/pull/112))
57
- * `DEPS`: update to `bpmn-js-properties-panel@1.1.0` ([03b659](https://github.com/camunda/camunda-bpmn-js/pull/123/commits/03b659da729364abf97ccc2dba421d83e9f5c48e))
58
-
59
- ## 0.13.0-alpha.8
60
-
61
- * `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
62
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.12` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
63
- * `DEPS`: update to `diagram-js@8.2.1` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
64
- * `DEPS`: update to `camunda-bpmn-moddle@6.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
65
- * `DEPS`: update to `zeebe-bpmn-moddle@0.12.0` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
66
- * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
67
-
68
- ### Key changes in Properties Panel
69
-
70
- * `FEAT`: apply element template icons ([#641](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/641))
71
- * `FEAT`: change task type when element template is applied ([#648](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/648))
72
- * `FEAT`: display element template icons in header ([#650](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/650))
73
-
74
- ## 0.13.0-alpha.7
75
-
76
- _Re-publish of v0.13.0-alpha.6 with fixed distro._
77
-
78
- * `FIX`: update peer dependencies ([#103](https://github.com/camunda/camunda-bpmn-js/pull/103))
79
-
80
- ## 0.13.0-alpha.6
81
-
82
- * `FIX`: set $parent when creating zeebe:CalledElement element ([#99](https://github.com/camunda/camunda-bpmn-js/pull/99))
83
- * `DEPS`: update to `@bpmn-io/properties-panel@0.13.1`
84
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.9`
85
-
86
- ### Key changes in Properties Panel
87
-
88
- * `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
89
- * `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
90
- * `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
91
- * `FEAT`: add show callbacks to show entries and errors ([#601](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/601))
92
- * `FEAT`: open element template custom groups ([#621](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/621))
93
- * `FEAT`: display template name in header ([#627](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/627))
94
- * `FEAT`: add documentation ref to header ([#629](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/629))
95
- * `FIX`: copy versioned element template ([#632](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/632))
96
-
97
- ## 0.13.0-alpha.5
98
-
99
- * `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
100
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.7`
101
-
102
- ## 0.13.0-alpha.4
103
-
104
- * `FIX`: move properties panel deps to peer dependencies
105
- * `CHORE`: add prepare script
106
- * `DEPS`: update to `bpmn-js@9.0.3`
107
-
108
- ## 0.13.0-alpha.3
109
-
110
- * `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
111
- * `DEPS`: update to `bpmn-js@9.0.2`
112
- * `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
113
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.5`
114
- * `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
115
-
116
- ## 0.13.0-alpha.2
117
-
118
- * `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
119
- * `CHORE`: refactor behaviors to only use modeling API ([#91](https://github.com/camunda/camunda-bpmn-js/pull/91))
120
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.3` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
121
- * `DEPS`: update to `bpmn-js@9.0.0-alpha.2` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
122
- * `DEPS`: update to `diagram-js-minimap@2.1.0` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
123
- * `DEPS`: update to `diagram-js@8.1.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
124
-
125
- ## 0.13.0-alpha.1
126
-
127
- * `FEAT`: include documentation fields in properties panel for Camunda Cloud ([#83](https://github.com/camunda/camunda-bpmn-js/issues/83))
128
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
129
- * `DEPS`: update to `bpmn-js@8.9.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
130
- * `DEPS`: update to `diagram-js@7.8.2` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
131
-
132
- ## 0.13.0-alpha.0
133
-
134
- * `FEAT`: support Zeebe 1.3 features ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
135
- * `DEPS`: migrate to `bpmn-js-properties-panel@1.0.0-alpha.0` ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
136
- * `DEPS`: update to `bpmn-js@8.8.3` ([#74](https://github.com/camunda/camunda-bpmn-js/pull/74))
137
-
138
- ### Breaking Changes
139
-
140
- * Extensions to `bpmn-js-properties-panel@0.x` no longer work with the `1.x` series.
141
- Read [the project's changelog for details](https://github.com/bpmn-io/bpmn-js-properties-panel/blob/next/CHANGELOG.md#breaking-changes).
142
-
143
- ## 0.12.2
144
-
145
- * `FEAT`: behavior for Cloud to ensure that no empty `zeebe:AssignmentDefinitions`
146
- remain in the model after modeling or propertyPanel operations ([e26c486](https://github.com/camunda/camunda-bpmn-js/commit/e26c486bac3b54202fdf6c2b09d64483b52a2298))
147
-
148
- ## 0.12.1
149
-
150
- * `DEPS`: update to `zeebe-bpmn-moddle@0.10.0`
151
-
152
- ## 0.12.0
153
-
154
- * `FEAT`: behavior for Cloud to ensure that `bpmn:BusinessRuleTask`s only have a `zeebe:CalledDecision` or
155
- `zeebe:TaskDefinition`/`zeebe:TaskHeaders` respectively. This supports the Zeebe 1.3 release ([#65](https://github.com/camunda/camunda-bpmn-js/issues/65))
156
- * `FIX`: use relative import path in library code ([b5a696](https://github.com/camunda/camunda-bpmn-js/commit/b5a696bf36f8b6592d6bf3d92ed33c26c63d68f7))
157
- * `CHORE`: refactor behaviors and helpers ([85573a](https://github.com/camunda/camunda-bpmn-js/commit/85573afe1653bffc2e1387da91076fb0cbe79345))
158
-
159
- ## 0.11.5
160
-
161
- * `FIX`: correct assignment of IDs when pasting multiple times
162
- * `DEPS`: update to `bpmn-js@8.8.2`
163
-
164
- ## 0.11.4
165
-
166
- * `FIX`: gracefully handle incompatible properties providers
167
- * `FIX`: re-use ID of a copied element if available
168
- * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
169
- * `DEPS`: update to `bpmn-js-properties-panel@0.46.0`
170
- * `DEPS`: update to `bpmn-js@8.8.1`
171
- * `DEPS`: update to `diagram-js@7.5.0`
172
-
173
- ## 0.11.3
174
-
175
- * `FIX`: correctly default to `camunda:formBindingRef=latest` ([#60](https://github.com/camunda/camunda-bpmn-js/pull/60))
176
- * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
177
-
178
- ## 0.11.2
179
-
180
- * `FIX`: do not clean up recently added inputOutput ([#59](https://github.com/camunda/camunda-bpmn-js/pull/59))
181
-
182
- ## 0.11.1
183
-
184
- * `CHORE`: ensure `dist` is built and tested before publish ([331584b4](https://github.com/camunda/camunda-bpmn-js/commit/331584b49c56841943a328761ebc7c89632f11fe))
185
-
186
- ## 0.11.0
187
-
188
- * `DEPS`: bump to `bpmn-js-properties-panel@0.45.0`
189
- * `DEPS`: bump to `camunda-bpmn-moddle@v6.1.0`
190
-
191
- ## 0.10.0
192
-
193
- * `FEAT`: update properties panel for Message Intermediate Throw Event and Message End Event for Cloud Modeler to support Zeebe 1.2 ([#55](https://github.com/camunda/camunda-bpmn-js/pull/55))
194
- * `FEAT`: allow replace with Message Intermediate Throw Event and Message End Event for Cloud Modeler to support Zeebe 1.2 ([#50](https://github.com/camunda/camunda-bpmn-js/pull/50))
195
- * `FEAT`: allow replace with Manual Task for Cloud Modeler to support Zeebe 1.2 ([#49](https://github.com/camunda/camunda-bpmn-js/pull/49))
196
- * `FEAT`: add behavior to clean up empty `camunda:inputOutput` elements ([#39](https://github.com/camunda/camunda-bpmn-js/pull/39))
197
- * `FEAT`: configure either `camunda:formKey` or `formRef` ([#37](https://github.com/camunda/camunda-bpmn-js/pull/37))
198
- * `FEAT`: add behavior to delete error event definition ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
199
- * `FEAT`: add behavior to update result variable ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
200
- * `FEAT`: delete `camunda:jobRetryTimeCycle` when async is disabled ([#33](https://github.com/camunda/camunda-bpmn-js/pull/33))
201
- * `FEAT`: set `camunda:exlusive flag` to true when async is disabled ([#31](https://github.com/camunda/camunda-bpmn-js/pull/31))
202
- * `DEPS`: update to `zeebe-bpmn-moddle@0.8.0`
203
- * `DEPS`: update to `camunda-bpmn-moddle@6.0.0`
204
- * `DEPS`: update to `bpmn-js@8.7.3`
205
- * `DEPS`: update dev dependencies
206
-
207
- ## 0.9.3
208
-
209
- * `DEPS`: update to `zeebe-bpmn-moddle@0.7.1`
210
-
211
- ## 0.9.2
212
-
213
- * `DEPS`: update to `bpmn-js-properties-panel@0.44.0`
214
-
215
- ## 0.9.1
216
-
217
- * `DEPS`: update to `bpmn-js@8.7.1`
218
-
219
- ## 0.9.0
220
-
221
- * `DEPS`: update to `bpmn-js@8.7.0`
222
- * `DEPS`: update to `bpmn-js-properties-panel@0.43.1`
223
-
224
- ## 0.8.0
225
-
226
- * `FEAT`: support business rule, send, and script tasks in Cloud Modeler ([#27](https://github.com/camunda/camunda-bpmn-js/pull/27))
227
- * `FIX`: allow to pass expression as `bpmn:CallActivity#processId` in Cloud Modeler ([#28](https://github.com/camunda/camunda-bpmn-js/pull/28))
228
- * `DEPS`: bump to `bpmn-js@8.6.1`
229
- * `DEPS`: bump to `zeebe-bpmn-moddle@0.7.0`
230
-
231
- ## 0.7.0
232
-
233
- * `DEPS`: bump to `bpmn-js@8.5.0`
234
- * `DEPS`: bump to `bpmn-js-properties-panel@0.43.0`
235
- * `DEPS`: bump to `diagram-js@7.3.0`
236
- * `DEPS`: bump to `zeebe-bpmn-moddle@0.6.0`
237
-
238
- ## 0.6.0
239
-
240
- * `FEAT`: re-enable user task support for Cloud Modeler
241
-
242
- ## 0.5.2
243
-
244
- * `CHORE`: bump to `camunda-bpmn-moddle@5.1.2`
245
-
246
- ## 0.5.1
247
-
248
- * `CHORE`: bump to `camunda-bpmn-moddle@5.1.1`
249
-
250
- ## 0.5.0
251
-
252
- * `CHORE`: bump to `bpmn-js-properties-panel@0.42.0`
253
- * `CHORE`: bump to `camunda-bpmn-moddle@5.1.0`
254
- * `CHORE`: bump to `bpmn-js@8.3.0`
255
-
256
- ## 0.4.0
257
-
258
- * `FEAT`: disable user task support for Cloud Modeler, can be enabled via `enableZeebeUserTasks` ([`9f782028`](https://github.com/camunda/camunda-bpmn-js/commit/9f7820284154b4ab0174f8c5eb745a3060f5c1ff))
259
-
260
- ## 0.3.0
261
-
262
- * `CHORE`: bump to `bpmn-js@8.2.1`
263
- * `CHORE`: bump to `bpmn-js-properties-panel@0.41.0`
264
- * `CHORE`: bump to `camunda-bpmn-moddle@5.0.0`
265
-
266
- ## 0.2.0
267
-
268
- * `FEAT`: add support for user tasks in cloud modeler ([#14](https://github.com/camunda/camunda-bpmn-js/pull/14))
269
-
270
- ## 0.1.0
271
-
272
- *Republish of `v0.1.0-alpha.1`*.
273
-
274
- ## 0.1.0-alpha.1
275
-
276
- * `FIX`: resolve moddle descriptors explicitly ([#11](https://github.com/camunda/camunda-bpmn-js/issues/11))
277
-
278
- ## 0.1.0-alpha.0
279
-
280
- * `CHORE`: first release 🎉
1
+ # Changelog
2
+
3
+ All notable changes to [camunda-bpmn-js](https://github.com/camunda/camunda-bpmn-js) are documented here. We use [semantic versioning](http://semver.org/) for releases.
4
+
5
+ ## Unreleased
6
+
7
+ ___Note:__ Yet to be released changes appear here._
8
+
9
+ ## 0.16.0
10
+
11
+ * `DEPS`: update to `bpmn-js-properties-panel@1.4.0`
12
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.18.0`
13
+ * `DEPS`: update to `camunda-bpmn-js-behaviors@0.1.1`
14
+
15
+ ### Key changes in Properties Panel
16
+
17
+ * `FEAT`: add FEEL editor for FEEL properties ([#158](https://github.com/bpmn-io/properties-panel/pull/158))
18
+ * `FIX`: do not update empty business key ([#2](https://github.com/camunda/camunda-bpmn-js-behaviors/pull/2))
19
+
20
+ ## 0.15.3
21
+
22
+ * `FIX`: remove `@bpmn-io/properties-panel` peer dependency as it is transitive ([#147](https://github.com/camunda/camunda-bpmn-js/pull/147))
23
+
24
+ ## 0.15.2
25
+
26
+ * `CHORE`: bumped properties-panel peer deps
27
+
28
+ ## 0.15.1
29
+
30
+ * `DEPS`: update to `bpmn-js@9.3.1`
31
+
32
+ ### Key changes in Modeling
33
+
34
+ * `FIX`: properly size icons for distribute/align menu ([bpmn-js#1694](https://github.com/bpmn-io/bpmn-js/pull/1694))
35
+
36
+ ## 0.15.0
37
+
38
+ * `DEPS`: update to `bpmn-js@9.3.0`
39
+ * `DEPS`: update to `diagram-js@8.7.0`
40
+ * `DEPS`: update to `bpmn-js-properties-panel@1.2.0`
41
+
42
+ ### Key changes in Modeling
43
+
44
+ * `FEAT`: allow to select participant and subprocess via click on body ([bpmn-js#1646](https://github.com/bpmn-io/bpmn-js/pull/1646))
45
+ * `FEAT`: clearly distinguish select and hover states ([bpmn-js#1616](https://github.com/bpmn-io/bpmn-js/issues/1616))
46
+ * `FEAT`: allow text annotation on sequence flows ([bpmn-js#1652](https://github.com/bpmn-io/bpmn-js/pull/1652))
47
+ * `FEAT`: add multi-element context pad ([bpmn-js#1525](https://github.com/bpmn-io/bpmn-js/pull/1525))
48
+ * `FEAT`: add aligment and distribution menu ([bpmn-js#1680](https://github.com/bpmn-io/bpmn-js/issues/1680), [#1691](https://github.com/bpmn-io/bpmn-js/issues/1691))
49
+ * `FEAT`: rework select and hover interaction on the diagram ([bpmn-js#1616](https://github.com/bpmn-io/bpmn-js/issues/1616), [diagram-js#640](https://github.com/bpmn-io/diagram-js/pull/640), [diagram-js#643](https://github.com/bpmn-io/diagram-js/pull/643))
50
+ * `FEAT`: rework diagram interaction handles ([diagram-js#640](https://github.com/bpmn-io/diagram-js/pull/640))
51
+ * `FIX`: complete direct editing when selection changes ([bpmn-js#1648](https://github.com/bpmn-io/bpmn-js/pull/1648))
52
+ * `FIX`: cancel direct editing before shape deletion ([bpmn-js#1677](https://github.com/bpmn-io/bpmn-js/issues/1677))
53
+ * `FIX`: set correct label color when batch coloring elements ([bpmn-js#1653](https://github.com/bpmn-io/bpmn-js/issues/1653))
54
+ * `FIX`: always reconnect labels and associations ([bpmn-js#1659](https://github.com/bpmn-io/bpmn-js/pull/1659))
55
+
56
+ ### Key changes in Properties Panel
57
+
58
+ * `FEAT`: enable multi-select state ([bpmn-props-panel#687](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/678))
59
+ * `FEAT`: display timestamp for template versions ([bpmn-props-panel#698](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/698))
60
+ * `FIX`: fixed error when field injection for execution listener is created ([bpmn-props-panel#710](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/710)
61
+
62
+ ## 0.14.0
63
+
64
+ * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.2.0`
65
+
66
+ ### Key changes in Modeling
67
+
68
+ * `FEAT`: enforce rectangular element template icon size ([#4](https://github.com/bpmn-io/element-templates-icons-renderer/issues/4))
69
+ * `FIX`: remove `label` property on empty label ([#1637](https://github.com/bpmn-io/bpmn-js/issues/1637))
70
+ * `FIX`: create drilldown overlays on `viewer.open` ([`574a67438`](https://github.com/bpmn-io/bpmn-js/commit/574a674381d6449b509396b6d17c4ca94674ea1c))
71
+ * `FIX`: render data association inside collapsed sub-processes ([#1619](https://github.com/bpmn-io/bpmn-js/issues/1619))
72
+ * `FIX`: preserve multi-instance properties when toggling between parallel and sequential ([#1581](https://github.com/bpmn-io/bpmn-js/issues/1581))
73
+ * `FIX`: correct hanging sequence flow label after collapsing sub-process ([#1617](https://github.com/bpmn-io/bpmn-js/issues/1617))
74
+ * `FIX`: correct start event not added to newly created sub-process ([#1631](https://github.com/bpmn-io/bpmn-js/issues/1631))
75
+
76
+ ## 0.13.2
77
+
78
+ * `DEPS`: update to `bpmn-js-properties-panel@1.1.1`
79
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.13.2`
80
+
81
+ ### Key changes in Properties Panel
82
+
83
+ * `FIX`: remove unnecessary scroll padding ([#145](https://github.com/bpmn-io/properties-panel/pull/145))
84
+ * `FIX`: keep existing configuration after template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
85
+ * `FIX`: always override `hidden` configuration on template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
86
+ * `FIX`: do not render non-existing values in element template ([#676](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/676))
87
+ * `FIX`: pick-up correct element template icon ([#670](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/670))
88
+
89
+ ## 0.13.1
90
+
91
+ _Re-publish of v0.13.0 with fixed distro._
92
+
93
+ * `FIX`: fix distro on Windows ([#125](https://github.com/camunda/camunda-bpmn-js/pull/125))
94
+
95
+ ## 0.13.0
96
+
97
+ * `FEAT`: add viewer distributions ([#115](https://github.com/camunda/camunda-bpmn-js/pull/115))
98
+ * `CHORE`: import behaviors from camunda-bpmn-js-behaviors ([#116](https://github.com/camunda/camunda-bpmn-js/pull/116))
99
+ * `DEPS`: update to `bpmn-js-disable-collapsed-subprocess@0.1.4` ([#112](https://github.com/camunda/camunda-bpmn-js/pull/112))
100
+ * `DEPS`: update to `bpmn-js-properties-panel@1.1.0` ([03b659](https://github.com/camunda/camunda-bpmn-js/pull/123/commits/03b659da729364abf97ccc2dba421d83e9f5c48e))
101
+
102
+ ## 0.13.0-alpha.8
103
+
104
+ * `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
105
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.12` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
106
+ * `DEPS`: update to `diagram-js@8.2.1` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
107
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
108
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.12.0` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
109
+ * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
110
+
111
+ ### Key changes in Properties Panel
112
+
113
+ * `FEAT`: apply element template icons ([#641](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/641))
114
+ * `FEAT`: change task type when element template is applied ([#648](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/648))
115
+ * `FEAT`: display element template icons in header ([#650](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/650))
116
+
117
+ ## 0.13.0-alpha.7
118
+
119
+ _Re-publish of v0.13.0-alpha.6 with fixed distro._
120
+
121
+ * `FIX`: update peer dependencies ([#103](https://github.com/camunda/camunda-bpmn-js/pull/103))
122
+
123
+ ## 0.13.0-alpha.6
124
+
125
+ * `FIX`: set $parent when creating zeebe:CalledElement element ([#99](https://github.com/camunda/camunda-bpmn-js/pull/99))
126
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.13.1`
127
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.9`
128
+
129
+ ### Key changes in Properties Panel
130
+
131
+ * `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
132
+ * `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
133
+ * `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
134
+ * `FEAT`: add show callbacks to show entries and errors ([#601](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/601))
135
+ * `FEAT`: open element template custom groups ([#621](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/621))
136
+ * `FEAT`: display template name in header ([#627](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/627))
137
+ * `FEAT`: add documentation ref to header ([#629](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/629))
138
+ * `FIX`: copy versioned element template ([#632](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/632))
139
+
140
+ ## 0.13.0-alpha.5
141
+
142
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
143
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.7`
144
+
145
+ ## 0.13.0-alpha.4
146
+
147
+ * `FIX`: move properties panel deps to peer dependencies
148
+ * `CHORE`: add prepare script
149
+ * `DEPS`: update to `bpmn-js@9.0.3`
150
+
151
+ ## 0.13.0-alpha.3
152
+
153
+ * `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
154
+ * `DEPS`: update to `bpmn-js@9.0.2`
155
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
156
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.5`
157
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
158
+
159
+ ## 0.13.0-alpha.2
160
+
161
+ * `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
162
+ * `CHORE`: refactor behaviors to only use modeling API ([#91](https://github.com/camunda/camunda-bpmn-js/pull/91))
163
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.3` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
164
+ * `DEPS`: update to `bpmn-js@9.0.0-alpha.2` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
165
+ * `DEPS`: update to `diagram-js-minimap@2.1.0` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
166
+ * `DEPS`: update to `diagram-js@8.1.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
167
+
168
+ ## 0.13.0-alpha.1
169
+
170
+ * `FEAT`: include documentation fields in properties panel for Camunda Cloud ([#83](https://github.com/camunda/camunda-bpmn-js/issues/83))
171
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
172
+ * `DEPS`: update to `bpmn-js@8.9.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
173
+ * `DEPS`: update to `diagram-js@7.8.2` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
174
+
175
+ ## 0.13.0-alpha.0
176
+
177
+ * `FEAT`: support Zeebe 1.3 features ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
178
+ * `DEPS`: migrate to `bpmn-js-properties-panel@1.0.0-alpha.0` ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
179
+ * `DEPS`: update to `bpmn-js@8.8.3` ([#74](https://github.com/camunda/camunda-bpmn-js/pull/74))
180
+
181
+ ### Breaking Changes
182
+
183
+ * Extensions to `bpmn-js-properties-panel@0.x` no longer work with the `1.x` series.
184
+ Read [the project's changelog for details](https://github.com/bpmn-io/bpmn-js-properties-panel/blob/next/CHANGELOG.md#breaking-changes).
185
+
186
+ ## 0.12.2
187
+
188
+ * `FEAT`: behavior for Cloud to ensure that no empty `zeebe:AssignmentDefinitions`
189
+ remain in the model after modeling or propertyPanel operations ([e26c486](https://github.com/camunda/camunda-bpmn-js/commit/e26c486bac3b54202fdf6c2b09d64483b52a2298))
190
+
191
+ ## 0.12.1
192
+
193
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.10.0`
194
+
195
+ ## 0.12.0
196
+
197
+ * `FEAT`: behavior for Cloud to ensure that `bpmn:BusinessRuleTask`s only have a `zeebe:CalledDecision` or
198
+ `zeebe:TaskDefinition`/`zeebe:TaskHeaders` respectively. This supports the Zeebe 1.3 release ([#65](https://github.com/camunda/camunda-bpmn-js/issues/65))
199
+ * `FIX`: use relative import path in library code ([b5a696](https://github.com/camunda/camunda-bpmn-js/commit/b5a696bf36f8b6592d6bf3d92ed33c26c63d68f7))
200
+ * `CHORE`: refactor behaviors and helpers ([85573a](https://github.com/camunda/camunda-bpmn-js/commit/85573afe1653bffc2e1387da91076fb0cbe79345))
201
+
202
+ ## 0.11.5
203
+
204
+ * `FIX`: correct assignment of IDs when pasting multiple times
205
+ * `DEPS`: update to `bpmn-js@8.8.2`
206
+
207
+ ## 0.11.4
208
+
209
+ * `FIX`: gracefully handle incompatible properties providers
210
+ * `FIX`: re-use ID of a copied element if available
211
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
212
+ * `DEPS`: update to `bpmn-js-properties-panel@0.46.0`
213
+ * `DEPS`: update to `bpmn-js@8.8.1`
214
+ * `DEPS`: update to `diagram-js@7.5.0`
215
+
216
+ ## 0.11.3
217
+
218
+ * `FIX`: correctly default to `camunda:formBindingRef=latest` ([#60](https://github.com/camunda/camunda-bpmn-js/pull/60))
219
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
220
+
221
+ ## 0.11.2
222
+
223
+ * `FIX`: do not clean up recently added inputOutput ([#59](https://github.com/camunda/camunda-bpmn-js/pull/59))
224
+
225
+ ## 0.11.1
226
+
227
+ * `CHORE`: ensure `dist` is built and tested before publish ([331584b4](https://github.com/camunda/camunda-bpmn-js/commit/331584b49c56841943a328761ebc7c89632f11fe))
228
+
229
+ ## 0.11.0
230
+
231
+ * `DEPS`: bump to `bpmn-js-properties-panel@0.45.0`
232
+ * `DEPS`: bump to `camunda-bpmn-moddle@v6.1.0`
233
+
234
+ ## 0.10.0
235
+
236
+ * `FEAT`: update properties panel for Message Intermediate Throw Event and Message End Event for Cloud Modeler to support Zeebe 1.2 ([#55](https://github.com/camunda/camunda-bpmn-js/pull/55))
237
+ * `FEAT`: allow replace with Message Intermediate Throw Event and Message End Event for Cloud Modeler to support Zeebe 1.2 ([#50](https://github.com/camunda/camunda-bpmn-js/pull/50))
238
+ * `FEAT`: allow replace with Manual Task for Cloud Modeler to support Zeebe 1.2 ([#49](https://github.com/camunda/camunda-bpmn-js/pull/49))
239
+ * `FEAT`: add behavior to clean up empty `camunda:inputOutput` elements ([#39](https://github.com/camunda/camunda-bpmn-js/pull/39))
240
+ * `FEAT`: configure either `camunda:formKey` or `formRef` ([#37](https://github.com/camunda/camunda-bpmn-js/pull/37))
241
+ * `FEAT`: add behavior to delete error event definition ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
242
+ * `FEAT`: add behavior to update result variable ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
243
+ * `FEAT`: delete `camunda:jobRetryTimeCycle` when async is disabled ([#33](https://github.com/camunda/camunda-bpmn-js/pull/33))
244
+ * `FEAT`: set `camunda:exlusive flag` to true when async is disabled ([#31](https://github.com/camunda/camunda-bpmn-js/pull/31))
245
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.8.0`
246
+ * `DEPS`: update to `camunda-bpmn-moddle@6.0.0`
247
+ * `DEPS`: update to `bpmn-js@8.7.3`
248
+ * `DEPS`: update dev dependencies
249
+
250
+ ## 0.9.3
251
+
252
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.7.1`
253
+
254
+ ## 0.9.2
255
+
256
+ * `DEPS`: update to `bpmn-js-properties-panel@0.44.0`
257
+
258
+ ## 0.9.1
259
+
260
+ * `DEPS`: update to `bpmn-js@8.7.1`
261
+
262
+ ## 0.9.0
263
+
264
+ * `DEPS`: update to `bpmn-js@8.7.0`
265
+ * `DEPS`: update to `bpmn-js-properties-panel@0.43.1`
266
+
267
+ ## 0.8.0
268
+
269
+ * `FEAT`: support business rule, send, and script tasks in Cloud Modeler ([#27](https://github.com/camunda/camunda-bpmn-js/pull/27))
270
+ * `FIX`: allow to pass expression as `bpmn:CallActivity#processId` in Cloud Modeler ([#28](https://github.com/camunda/camunda-bpmn-js/pull/28))
271
+ * `DEPS`: bump to `bpmn-js@8.6.1`
272
+ * `DEPS`: bump to `zeebe-bpmn-moddle@0.7.0`
273
+
274
+ ## 0.7.0
275
+
276
+ * `DEPS`: bump to `bpmn-js@8.5.0`
277
+ * `DEPS`: bump to `bpmn-js-properties-panel@0.43.0`
278
+ * `DEPS`: bump to `diagram-js@7.3.0`
279
+ * `DEPS`: bump to `zeebe-bpmn-moddle@0.6.0`
280
+
281
+ ## 0.6.0
282
+
283
+ * `FEAT`: re-enable user task support for Cloud Modeler
284
+
285
+ ## 0.5.2
286
+
287
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.1.2`
288
+
289
+ ## 0.5.1
290
+
291
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.1.1`
292
+
293
+ ## 0.5.0
294
+
295
+ * `CHORE`: bump to `bpmn-js-properties-panel@0.42.0`
296
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.1.0`
297
+ * `CHORE`: bump to `bpmn-js@8.3.0`
298
+
299
+ ## 0.4.0
300
+
301
+ * `FEAT`: disable user task support for Cloud Modeler, can be enabled via `enableZeebeUserTasks` ([`9f782028`](https://github.com/camunda/camunda-bpmn-js/commit/9f7820284154b4ab0174f8c5eb745a3060f5c1ff))
302
+
303
+ ## 0.3.0
304
+
305
+ * `CHORE`: bump to `bpmn-js@8.2.1`
306
+ * `CHORE`: bump to `bpmn-js-properties-panel@0.41.0`
307
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.0.0`
308
+
309
+ ## 0.2.0
310
+
311
+ * `FEAT`: add support for user tasks in cloud modeler ([#14](https://github.com/camunda/camunda-bpmn-js/pull/14))
312
+
313
+ ## 0.1.0
314
+
315
+ *Republish of `v0.1.0-alpha.1`*.
316
+
317
+ ## 0.1.0-alpha.1
318
+
319
+ * `FIX`: resolve moddle descriptors explicitly ([#11](https://github.com/camunda/camunda-bpmn-js/issues/11))
320
+
321
+ ## 0.1.0-alpha.0
322
+
323
+ * `CHORE`: first release 🎉