camunda-bpmn-js 0.14.0 → 0.15.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 (60) hide show
  1. package/CHANGELOG.md +276 -270
  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/bpmn-js.css +33 -4
  8. package/dist/assets/camunda-cloud-modeler.css +1 -1
  9. package/dist/assets/camunda-platform-modeler.css +1 -1
  10. package/dist/assets/diagram-js.css +55 -51
  11. package/dist/assets/element-templates.css +4 -0
  12. package/dist/assets/properties-panel.css +929 -900
  13. package/dist/base-modeler.development.js +7372 -5941
  14. package/dist/base-modeler.production.min.js +4 -4
  15. package/dist/base-navigated-viewer.development.js +21592 -21248
  16. package/dist/base-navigated-viewer.production.min.js +3 -2
  17. package/dist/base-viewer.development.js +20793 -20449
  18. package/dist/base-viewer.production.min.js +3 -2
  19. package/dist/camunda-cloud-modeler.development.js +9568 -7851
  20. package/dist/camunda-cloud-modeler.production.min.js +4 -4
  21. package/dist/camunda-cloud-navigated-viewer.development.js +647 -273
  22. package/dist/camunda-cloud-navigated-viewer.production.min.js +2 -2
  23. package/dist/camunda-cloud-viewer.development.js +646 -272
  24. package/dist/camunda-cloud-viewer.production.min.js +2 -2
  25. package/dist/camunda-platform-modeler.development.js +7557 -6077
  26. package/dist/camunda-platform-modeler.production.min.js +4 -4
  27. package/dist/camunda-platform-navigated-viewer.development.js +631 -257
  28. package/dist/camunda-platform-navigated-viewer.production.min.js +2 -2
  29. package/dist/camunda-platform-viewer.development.js +630 -256
  30. package/dist/camunda-platform-viewer.production.min.js +2 -2
  31. package/lib/base/Modeler.js +46 -46
  32. package/lib/base/NavigatedViewer.js +2 -2
  33. package/lib/base/Viewer.js +2 -2
  34. package/lib/camunda-cloud/Modeler.js +68 -68
  35. package/lib/camunda-cloud/NavigatedViewer.js +34 -34
  36. package/lib/camunda-cloud/Viewer.js +34 -34
  37. package/lib/camunda-cloud/features/context-pad/ContextPadOptions.js +15 -15
  38. package/lib/camunda-cloud/features/context-pad/index.js +6 -6
  39. package/lib/camunda-cloud/features/drilldown/index.js +3 -3
  40. package/lib/camunda-cloud/features/palette/PaletteOptions.js +14 -14
  41. package/lib/camunda-cloud/features/palette/PaletteProvider.js +31 -31
  42. package/lib/camunda-cloud/features/palette/index.js +6 -6
  43. package/lib/camunda-cloud/features/popup-menu/ReplaceMenuProvider.js +71 -71
  44. package/lib/camunda-cloud/features/popup-menu/ReplaceOptions.js +46 -46
  45. package/lib/camunda-cloud/features/popup-menu/index.js +6 -6
  46. package/lib/camunda-cloud/features/rules/BpmnRules.js +137 -137
  47. package/lib/camunda-cloud/features/rules/index.js +5 -5
  48. package/lib/camunda-cloud/util/commonModules.js +13 -13
  49. package/lib/camunda-platform/Modeler.js +46 -46
  50. package/lib/camunda-platform/NavigatedViewer.js +25 -25
  51. package/lib/camunda-platform/Viewer.js +24 -24
  52. package/lib/camunda-platform/util/commonModules.js +6 -6
  53. package/lib/util/ExtensionElementsUtil.js +59 -59
  54. package/package.json +110 -110
  55. package/styles/base-modeler.css +4 -4
  56. package/styles/base-navigated-viewer.css +1 -1
  57. package/styles/base-viewer.css +1 -1
  58. package/styles/camunda-cloud-modeler.css +1 -1
  59. package/styles/camunda-platform-modeler.css +1 -1
  60. package/util/index.js +39 -39
package/CHANGELOG.md CHANGED
@@ -1,270 +1,276 @@
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.14.0
10
-
11
- * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.2.0`
12
-
13
- ### Key changes in Modeling
14
-
15
- * `FEAT`: enforce rectangular element template icon size ([#4](https://github.com/bpmn-io/element-templates-icons-renderer/issues/4))
16
- * `FIX`: remove `label` property on empty label ([#1637](https://github.com/bpmn-io/bpmn-js/issues/1637))
17
- * `FIX`: create drilldown overlays on `viewer.open` ([`574a67438`](https://github.com/bpmn-io/bpmn-js/commit/574a674381d6449b509396b6d17c4ca94674ea1c))
18
- * `FIX`: render data association inside collapsed sub-processes ([#1619](https://github.com/bpmn-io/bpmn-js/issues/1619))
19
- * `FIX`: preserve multi-instance properties when toggling between parallel and sequential ([#1581](https://github.com/bpmn-io/bpmn-js/issues/1581))
20
- * `FIX`: correct hanging sequence flow label after collapsing sub-process ([#1617](https://github.com/bpmn-io/bpmn-js/issues/1617))
21
- * `FIX`: correct start event not added to newly created sub-process ([#1631](https://github.com/bpmn-io/bpmn-js/issues/1631))
22
-
23
- ## 0.13.2
24
-
25
- * `DEPS`: update to `bpmn-js-properties-panel@1.1.1`
26
- * `DEPS`: update to `@bpmn-io/properties-panel@0.13.2`
27
-
28
- ### Key changes in Properties Panel
29
-
30
- * `FIX`: remove unnecessary scroll padding ([#145](https://github.com/bpmn-io/properties-panel/pull/145))
31
- * `FIX`: keep existing configuration after template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
32
- * `FIX`: always override `hidden` configuration on template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
33
- * `FIX`: do not render non-existing values in element template ([#676](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/676))
34
- * `FIX`: pick-up correct element template icon ([#670](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/670))
35
-
36
- ## 0.13.1
37
-
38
- _Re-publish of v0.13.0 with fixed distro._
39
-
40
- * `FIX`: fix distro on Windows ([#125](https://github.com/camunda/camunda-bpmn-js/pull/125))
41
-
42
- ## 0.13.0
43
-
44
- * `FEAT`: add viewer distributions ([#115](https://github.com/camunda/camunda-bpmn-js/pull/115))
45
- * `CHORE`: import behaviors from camunda-bpmn-js-behaviors ([#116](https://github.com/camunda/camunda-bpmn-js/pull/116))
46
- * `DEPS`: update to `bpmn-js-disable-collapsed-subprocess@0.1.4` ([#112](https://github.com/camunda/camunda-bpmn-js/pull/112))
47
- * `DEPS`: update to `bpmn-js-properties-panel@1.1.0` ([03b659](https://github.com/camunda/camunda-bpmn-js/pull/123/commits/03b659da729364abf97ccc2dba421d83e9f5c48e))
48
-
49
- ## 0.13.0-alpha.8
50
-
51
- * `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
52
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.12` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
53
- * `DEPS`: update to `diagram-js@8.2.1` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
54
- * `DEPS`: update to `camunda-bpmn-moddle@6.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
55
- * `DEPS`: update to `zeebe-bpmn-moddle@0.12.0` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
56
- * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
57
-
58
- ### Key changes in Properties Panel
59
-
60
- * `FEAT`: apply element template icons ([#641](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/641))
61
- * `FEAT`: change task type when element template is applied ([#648](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/648))
62
- * `FEAT`: display element template icons in header ([#650](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/650))
63
-
64
- ## 0.13.0-alpha.7
65
-
66
- _Re-publish of v0.13.0-alpha.6 with fixed distro._
67
-
68
- * `FIX`: update peer dependencies ([#103](https://github.com/camunda/camunda-bpmn-js/pull/103))
69
-
70
- ## 0.13.0-alpha.6
71
-
72
- * `FIX`: set $parent when creating zeebe:CalledElement element ([#99](https://github.com/camunda/camunda-bpmn-js/pull/99))
73
- * `DEPS`: update to `@bpmn-io/properties-panel@0.13.1`
74
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.9`
75
-
76
- ### Key changes in Properties Panel
77
-
78
- * `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
79
- * `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
80
- * `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
81
- * `FEAT`: add show callbacks to show entries and errors ([#601](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/601))
82
- * `FEAT`: open element template custom groups ([#621](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/621))
83
- * `FEAT`: display template name in header ([#627](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/627))
84
- * `FEAT`: add documentation ref to header ([#629](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/629))
85
- * `FIX`: copy versioned element template ([#632](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/632))
86
-
87
- ## 0.13.0-alpha.5
88
-
89
- * `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
90
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.7`
91
-
92
- ## 0.13.0-alpha.4
93
-
94
- * `FIX`: move properties panel deps to peer dependencies
95
- * `CHORE`: add prepare script
96
- * `DEPS`: update to `bpmn-js@9.0.3`
97
-
98
- ## 0.13.0-alpha.3
99
-
100
- * `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
101
- * `DEPS`: update to `bpmn-js@9.0.2`
102
- * `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
103
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.5`
104
- * `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
105
-
106
- ## 0.13.0-alpha.2
107
-
108
- * `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
109
- * `CHORE`: refactor behaviors to only use modeling API ([#91](https://github.com/camunda/camunda-bpmn-js/pull/91))
110
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.3` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
111
- * `DEPS`: update to `bpmn-js@9.0.0-alpha.2` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
112
- * `DEPS`: update to `diagram-js-minimap@2.1.0` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
113
- * `DEPS`: update to `diagram-js@8.1.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
114
-
115
- ## 0.13.0-alpha.1
116
-
117
- * `FEAT`: include documentation fields in properties panel for Camunda Cloud ([#83](https://github.com/camunda/camunda-bpmn-js/issues/83))
118
- * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
119
- * `DEPS`: update to `bpmn-js@8.9.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
120
- * `DEPS`: update to `diagram-js@7.8.2` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
121
-
122
- ## 0.13.0-alpha.0
123
-
124
- * `FEAT`: support Zeebe 1.3 features ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
125
- * `DEPS`: migrate to `bpmn-js-properties-panel@1.0.0-alpha.0` ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
126
- * `DEPS`: update to `bpmn-js@8.8.3` ([#74](https://github.com/camunda/camunda-bpmn-js/pull/74))
127
-
128
- ### Breaking Changes
129
-
130
- * Extensions to `bpmn-js-properties-panel@0.x` no longer work with the `1.x` series.
131
- Read [the project's changelog for details](https://github.com/bpmn-io/bpmn-js-properties-panel/blob/next/CHANGELOG.md#breaking-changes).
132
-
133
- ## 0.12.2
134
-
135
- * `FEAT`: behavior for Cloud to ensure that no empty `zeebe:AssignmentDefinitions`
136
- remain in the model after modeling or propertyPanel operations ([e26c486](https://github.com/camunda/camunda-bpmn-js/commit/e26c486bac3b54202fdf6c2b09d64483b52a2298))
137
-
138
- ## 0.12.1
139
-
140
- * `DEPS`: update to `zeebe-bpmn-moddle@0.10.0`
141
-
142
- ## 0.12.0
143
-
144
- * `FEAT`: behavior for Cloud to ensure that `bpmn:BusinessRuleTask`s only have a `zeebe:CalledDecision` or
145
- `zeebe:TaskDefinition`/`zeebe:TaskHeaders` respectively. This supports the Zeebe 1.3 release ([#65](https://github.com/camunda/camunda-bpmn-js/issues/65))
146
- * `FIX`: use relative import path in library code ([b5a696](https://github.com/camunda/camunda-bpmn-js/commit/b5a696bf36f8b6592d6bf3d92ed33c26c63d68f7))
147
- * `CHORE`: refactor behaviors and helpers ([85573a](https://github.com/camunda/camunda-bpmn-js/commit/85573afe1653bffc2e1387da91076fb0cbe79345))
148
-
149
- ## 0.11.5
150
-
151
- * `FIX`: correct assignment of IDs when pasting multiple times
152
- * `DEPS`: update to `bpmn-js@8.8.2`
153
-
154
- ## 0.11.4
155
-
156
- * `FIX`: gracefully handle incompatible properties providers
157
- * `FIX`: re-use ID of a copied element if available
158
- * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
159
- * `DEPS`: update to `bpmn-js-properties-panel@0.46.0`
160
- * `DEPS`: update to `bpmn-js@8.8.1`
161
- * `DEPS`: update to `diagram-js@7.5.0`
162
-
163
- ## 0.11.3
164
-
165
- * `FIX`: correctly default to `camunda:formBindingRef=latest` ([#60](https://github.com/camunda/camunda-bpmn-js/pull/60))
166
- * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
167
-
168
- ## 0.11.2
169
-
170
- * `FIX`: do not clean up recently added inputOutput ([#59](https://github.com/camunda/camunda-bpmn-js/pull/59))
171
-
172
- ## 0.11.1
173
-
174
- * `CHORE`: ensure `dist` is built and tested before publish ([331584b4](https://github.com/camunda/camunda-bpmn-js/commit/331584b49c56841943a328761ebc7c89632f11fe))
175
-
176
- ## 0.11.0
177
-
178
- * `DEPS`: bump to `bpmn-js-properties-panel@0.45.0`
179
- * `DEPS`: bump to `camunda-bpmn-moddle@v6.1.0`
180
-
181
- ## 0.10.0
182
-
183
- * `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))
184
- * `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))
185
- * `FEAT`: allow replace with Manual Task for Cloud Modeler to support Zeebe 1.2 ([#49](https://github.com/camunda/camunda-bpmn-js/pull/49))
186
- * `FEAT`: add behavior to clean up empty `camunda:inputOutput` elements ([#39](https://github.com/camunda/camunda-bpmn-js/pull/39))
187
- * `FEAT`: configure either `camunda:formKey` or `formRef` ([#37](https://github.com/camunda/camunda-bpmn-js/pull/37))
188
- * `FEAT`: add behavior to delete error event definition ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
189
- * `FEAT`: add behavior to update result variable ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
190
- * `FEAT`: delete `camunda:jobRetryTimeCycle` when async is disabled ([#33](https://github.com/camunda/camunda-bpmn-js/pull/33))
191
- * `FEAT`: set `camunda:exlusive flag` to true when async is disabled ([#31](https://github.com/camunda/camunda-bpmn-js/pull/31))
192
- * `DEPS`: update to `zeebe-bpmn-moddle@0.8.0`
193
- * `DEPS`: update to `camunda-bpmn-moddle@6.0.0`
194
- * `DEPS`: update to `bpmn-js@8.7.3`
195
- * `DEPS`: update dev dependencies
196
-
197
- ## 0.9.3
198
-
199
- * `DEPS`: update to `zeebe-bpmn-moddle@0.7.1`
200
-
201
- ## 0.9.2
202
-
203
- * `DEPS`: update to `bpmn-js-properties-panel@0.44.0`
204
-
205
- ## 0.9.1
206
-
207
- * `DEPS`: update to `bpmn-js@8.7.1`
208
-
209
- ## 0.9.0
210
-
211
- * `DEPS`: update to `bpmn-js@8.7.0`
212
- * `DEPS`: update to `bpmn-js-properties-panel@0.43.1`
213
-
214
- ## 0.8.0
215
-
216
- * `FEAT`: support business rule, send, and script tasks in Cloud Modeler ([#27](https://github.com/camunda/camunda-bpmn-js/pull/27))
217
- * `FIX`: allow to pass expression as `bpmn:CallActivity#processId` in Cloud Modeler ([#28](https://github.com/camunda/camunda-bpmn-js/pull/28))
218
- * `DEPS`: bump to `bpmn-js@8.6.1`
219
- * `DEPS`: bump to `zeebe-bpmn-moddle@0.7.0`
220
-
221
- ## 0.7.0
222
-
223
- * `DEPS`: bump to `bpmn-js@8.5.0`
224
- * `DEPS`: bump to `bpmn-js-properties-panel@0.43.0`
225
- * `DEPS`: bump to `diagram-js@7.3.0`
226
- * `DEPS`: bump to `zeebe-bpmn-moddle@0.6.0`
227
-
228
- ## 0.6.0
229
-
230
- * `FEAT`: re-enable user task support for Cloud Modeler
231
-
232
- ## 0.5.2
233
-
234
- * `CHORE`: bump to `camunda-bpmn-moddle@5.1.2`
235
-
236
- ## 0.5.1
237
-
238
- * `CHORE`: bump to `camunda-bpmn-moddle@5.1.1`
239
-
240
- ## 0.5.0
241
-
242
- * `CHORE`: bump to `bpmn-js-properties-panel@0.42.0`
243
- * `CHORE`: bump to `camunda-bpmn-moddle@5.1.0`
244
- * `CHORE`: bump to `bpmn-js@8.3.0`
245
-
246
- ## 0.4.0
247
-
248
- * `FEAT`: disable user task support for Cloud Modeler, can be enabled via `enableZeebeUserTasks` ([`9f782028`](https://github.com/camunda/camunda-bpmn-js/commit/9f7820284154b4ab0174f8c5eb745a3060f5c1ff))
249
-
250
- ## 0.3.0
251
-
252
- * `CHORE`: bump to `bpmn-js@8.2.1`
253
- * `CHORE`: bump to `bpmn-js-properties-panel@0.41.0`
254
- * `CHORE`: bump to `camunda-bpmn-moddle@5.0.0`
255
-
256
- ## 0.2.0
257
-
258
- * `FEAT`: add support for user tasks in cloud modeler ([#14](https://github.com/camunda/camunda-bpmn-js/pull/14))
259
-
260
- ## 0.1.0
261
-
262
- *Republish of `v0.1.0-alpha.1`*.
263
-
264
- ## 0.1.0-alpha.1
265
-
266
- * `FIX`: resolve moddle descriptors explicitly ([#11](https://github.com/camunda/camunda-bpmn-js/issues/11))
267
-
268
- ## 0.1.0-alpha.0
269
-
270
- * `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.15.0
10
+
11
+ * `DEPS`: update to `bpmn-js@9.3.0`
12
+ * `DEPS`: update to `diagram-js@8.7.0`
13
+ * `DEPS`: update to `bpmn-js-properties-panel@1.2.0`
14
+
15
+ ## 0.14.0
16
+
17
+ * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.2.0`
18
+
19
+ ### Key changes in Modeling
20
+
21
+ * `FEAT`: enforce rectangular element template icon size ([#4](https://github.com/bpmn-io/element-templates-icons-renderer/issues/4))
22
+ * `FIX`: remove `label` property on empty label ([#1637](https://github.com/bpmn-io/bpmn-js/issues/1637))
23
+ * `FIX`: create drilldown overlays on `viewer.open` ([`574a67438`](https://github.com/bpmn-io/bpmn-js/commit/574a674381d6449b509396b6d17c4ca94674ea1c))
24
+ * `FIX`: render data association inside collapsed sub-processes ([#1619](https://github.com/bpmn-io/bpmn-js/issues/1619))
25
+ * `FIX`: preserve multi-instance properties when toggling between parallel and sequential ([#1581](https://github.com/bpmn-io/bpmn-js/issues/1581))
26
+ * `FIX`: correct hanging sequence flow label after collapsing sub-process ([#1617](https://github.com/bpmn-io/bpmn-js/issues/1617))
27
+ * `FIX`: correct start event not added to newly created sub-process ([#1631](https://github.com/bpmn-io/bpmn-js/issues/1631))
28
+
29
+ ## 0.13.2
30
+
31
+ * `DEPS`: update to `bpmn-js-properties-panel@1.1.1`
32
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.13.2`
33
+
34
+ ### Key changes in Properties Panel
35
+
36
+ * `FIX`: remove unnecessary scroll padding ([#145](https://github.com/bpmn-io/properties-panel/pull/145))
37
+ * `FIX`: keep existing configuration after template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
38
+ * `FIX`: always override `hidden` configuration on template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
39
+ * `FIX`: do not render non-existing values in element template ([#676](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/676))
40
+ * `FIX`: pick-up correct element template icon ([#670](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/670))
41
+
42
+ ## 0.13.1
43
+
44
+ _Re-publish of v0.13.0 with fixed distro._
45
+
46
+ * `FIX`: fix distro on Windows ([#125](https://github.com/camunda/camunda-bpmn-js/pull/125))
47
+
48
+ ## 0.13.0
49
+
50
+ * `FEAT`: add viewer distributions ([#115](https://github.com/camunda/camunda-bpmn-js/pull/115))
51
+ * `CHORE`: import behaviors from camunda-bpmn-js-behaviors ([#116](https://github.com/camunda/camunda-bpmn-js/pull/116))
52
+ * `DEPS`: update to `bpmn-js-disable-collapsed-subprocess@0.1.4` ([#112](https://github.com/camunda/camunda-bpmn-js/pull/112))
53
+ * `DEPS`: update to `bpmn-js-properties-panel@1.1.0` ([03b659](https://github.com/camunda/camunda-bpmn-js/pull/123/commits/03b659da729364abf97ccc2dba421d83e9f5c48e))
54
+
55
+ ## 0.13.0-alpha.8
56
+
57
+ * `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
58
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.12` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
59
+ * `DEPS`: update to `diagram-js@8.2.1` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
60
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
61
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.12.0` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
62
+ * `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
63
+
64
+ ### Key changes in Properties Panel
65
+
66
+ * `FEAT`: apply element template icons ([#641](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/641))
67
+ * `FEAT`: change task type when element template is applied ([#648](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/648))
68
+ * `FEAT`: display element template icons in header ([#650](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/650))
69
+
70
+ ## 0.13.0-alpha.7
71
+
72
+ _Re-publish of v0.13.0-alpha.6 with fixed distro._
73
+
74
+ * `FIX`: update peer dependencies ([#103](https://github.com/camunda/camunda-bpmn-js/pull/103))
75
+
76
+ ## 0.13.0-alpha.6
77
+
78
+ * `FIX`: set $parent when creating zeebe:CalledElement element ([#99](https://github.com/camunda/camunda-bpmn-js/pull/99))
79
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.13.1`
80
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.9`
81
+
82
+ ### Key changes in Properties Panel
83
+
84
+ * `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
85
+ * `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
86
+ * `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
87
+ * `FEAT`: add show callbacks to show entries and errors ([#601](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/601))
88
+ * `FEAT`: open element template custom groups ([#621](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/621))
89
+ * `FEAT`: display template name in header ([#627](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/627))
90
+ * `FEAT`: add documentation ref to header ([#629](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/629))
91
+ * `FIX`: copy versioned element template ([#632](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/632))
92
+
93
+ ## 0.13.0-alpha.5
94
+
95
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
96
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.7`
97
+
98
+ ## 0.13.0-alpha.4
99
+
100
+ * `FIX`: move properties panel deps to peer dependencies
101
+ * `CHORE`: add prepare script
102
+ * `DEPS`: update to `bpmn-js@9.0.3`
103
+
104
+ ## 0.13.0-alpha.3
105
+
106
+ * `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
107
+ * `DEPS`: update to `bpmn-js@9.0.2`
108
+ * `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
109
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.5`
110
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
111
+
112
+ ## 0.13.0-alpha.2
113
+
114
+ * `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
115
+ * `CHORE`: refactor behaviors to only use modeling API ([#91](https://github.com/camunda/camunda-bpmn-js/pull/91))
116
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.3` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
117
+ * `DEPS`: update to `bpmn-js@9.0.0-alpha.2` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
118
+ * `DEPS`: update to `diagram-js-minimap@2.1.0` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
119
+ * `DEPS`: update to `diagram-js@8.1.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
120
+
121
+ ## 0.13.0-alpha.1
122
+
123
+ * `FEAT`: include documentation fields in properties panel for Camunda Cloud ([#83](https://github.com/camunda/camunda-bpmn-js/issues/83))
124
+ * `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
125
+ * `DEPS`: update to `bpmn-js@8.9.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
126
+ * `DEPS`: update to `diagram-js@7.8.2` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
127
+
128
+ ## 0.13.0-alpha.0
129
+
130
+ * `FEAT`: support Zeebe 1.3 features ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
131
+ * `DEPS`: migrate to `bpmn-js-properties-panel@1.0.0-alpha.0` ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
132
+ * `DEPS`: update to `bpmn-js@8.8.3` ([#74](https://github.com/camunda/camunda-bpmn-js/pull/74))
133
+
134
+ ### Breaking Changes
135
+
136
+ * Extensions to `bpmn-js-properties-panel@0.x` no longer work with the `1.x` series.
137
+ Read [the project's changelog for details](https://github.com/bpmn-io/bpmn-js-properties-panel/blob/next/CHANGELOG.md#breaking-changes).
138
+
139
+ ## 0.12.2
140
+
141
+ * `FEAT`: behavior for Cloud to ensure that no empty `zeebe:AssignmentDefinitions`
142
+ remain in the model after modeling or propertyPanel operations ([e26c486](https://github.com/camunda/camunda-bpmn-js/commit/e26c486bac3b54202fdf6c2b09d64483b52a2298))
143
+
144
+ ## 0.12.1
145
+
146
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.10.0`
147
+
148
+ ## 0.12.0
149
+
150
+ * `FEAT`: behavior for Cloud to ensure that `bpmn:BusinessRuleTask`s only have a `zeebe:CalledDecision` or
151
+ `zeebe:TaskDefinition`/`zeebe:TaskHeaders` respectively. This supports the Zeebe 1.3 release ([#65](https://github.com/camunda/camunda-bpmn-js/issues/65))
152
+ * `FIX`: use relative import path in library code ([b5a696](https://github.com/camunda/camunda-bpmn-js/commit/b5a696bf36f8b6592d6bf3d92ed33c26c63d68f7))
153
+ * `CHORE`: refactor behaviors and helpers ([85573a](https://github.com/camunda/camunda-bpmn-js/commit/85573afe1653bffc2e1387da91076fb0cbe79345))
154
+
155
+ ## 0.11.5
156
+
157
+ * `FIX`: correct assignment of IDs when pasting multiple times
158
+ * `DEPS`: update to `bpmn-js@8.8.2`
159
+
160
+ ## 0.11.4
161
+
162
+ * `FIX`: gracefully handle incompatible properties providers
163
+ * `FIX`: re-use ID of a copied element if available
164
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
165
+ * `DEPS`: update to `bpmn-js-properties-panel@0.46.0`
166
+ * `DEPS`: update to `bpmn-js@8.8.1`
167
+ * `DEPS`: update to `diagram-js@7.5.0`
168
+
169
+ ## 0.11.3
170
+
171
+ * `FIX`: correctly default to `camunda:formBindingRef=latest` ([#60](https://github.com/camunda/camunda-bpmn-js/pull/60))
172
+ * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
173
+
174
+ ## 0.11.2
175
+
176
+ * `FIX`: do not clean up recently added inputOutput ([#59](https://github.com/camunda/camunda-bpmn-js/pull/59))
177
+
178
+ ## 0.11.1
179
+
180
+ * `CHORE`: ensure `dist` is built and tested before publish ([331584b4](https://github.com/camunda/camunda-bpmn-js/commit/331584b49c56841943a328761ebc7c89632f11fe))
181
+
182
+ ## 0.11.0
183
+
184
+ * `DEPS`: bump to `bpmn-js-properties-panel@0.45.0`
185
+ * `DEPS`: bump to `camunda-bpmn-moddle@v6.1.0`
186
+
187
+ ## 0.10.0
188
+
189
+ * `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))
190
+ * `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))
191
+ * `FEAT`: allow replace with Manual Task for Cloud Modeler to support Zeebe 1.2 ([#49](https://github.com/camunda/camunda-bpmn-js/pull/49))
192
+ * `FEAT`: add behavior to clean up empty `camunda:inputOutput` elements ([#39](https://github.com/camunda/camunda-bpmn-js/pull/39))
193
+ * `FEAT`: configure either `camunda:formKey` or `formRef` ([#37](https://github.com/camunda/camunda-bpmn-js/pull/37))
194
+ * `FEAT`: add behavior to delete error event definition ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
195
+ * `FEAT`: add behavior to update result variable ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
196
+ * `FEAT`: delete `camunda:jobRetryTimeCycle` when async is disabled ([#33](https://github.com/camunda/camunda-bpmn-js/pull/33))
197
+ * `FEAT`: set `camunda:exlusive flag` to true when async is disabled ([#31](https://github.com/camunda/camunda-bpmn-js/pull/31))
198
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.8.0`
199
+ * `DEPS`: update to `camunda-bpmn-moddle@6.0.0`
200
+ * `DEPS`: update to `bpmn-js@8.7.3`
201
+ * `DEPS`: update dev dependencies
202
+
203
+ ## 0.9.3
204
+
205
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.7.1`
206
+
207
+ ## 0.9.2
208
+
209
+ * `DEPS`: update to `bpmn-js-properties-panel@0.44.0`
210
+
211
+ ## 0.9.1
212
+
213
+ * `DEPS`: update to `bpmn-js@8.7.1`
214
+
215
+ ## 0.9.0
216
+
217
+ * `DEPS`: update to `bpmn-js@8.7.0`
218
+ * `DEPS`: update to `bpmn-js-properties-panel@0.43.1`
219
+
220
+ ## 0.8.0
221
+
222
+ * `FEAT`: support business rule, send, and script tasks in Cloud Modeler ([#27](https://github.com/camunda/camunda-bpmn-js/pull/27))
223
+ * `FIX`: allow to pass expression as `bpmn:CallActivity#processId` in Cloud Modeler ([#28](https://github.com/camunda/camunda-bpmn-js/pull/28))
224
+ * `DEPS`: bump to `bpmn-js@8.6.1`
225
+ * `DEPS`: bump to `zeebe-bpmn-moddle@0.7.0`
226
+
227
+ ## 0.7.0
228
+
229
+ * `DEPS`: bump to `bpmn-js@8.5.0`
230
+ * `DEPS`: bump to `bpmn-js-properties-panel@0.43.0`
231
+ * `DEPS`: bump to `diagram-js@7.3.0`
232
+ * `DEPS`: bump to `zeebe-bpmn-moddle@0.6.0`
233
+
234
+ ## 0.6.0
235
+
236
+ * `FEAT`: re-enable user task support for Cloud Modeler
237
+
238
+ ## 0.5.2
239
+
240
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.1.2`
241
+
242
+ ## 0.5.1
243
+
244
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.1.1`
245
+
246
+ ## 0.5.0
247
+
248
+ * `CHORE`: bump to `bpmn-js-properties-panel@0.42.0`
249
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.1.0`
250
+ * `CHORE`: bump to `bpmn-js@8.3.0`
251
+
252
+ ## 0.4.0
253
+
254
+ * `FEAT`: disable user task support for Cloud Modeler, can be enabled via `enableZeebeUserTasks` ([`9f782028`](https://github.com/camunda/camunda-bpmn-js/commit/9f7820284154b4ab0174f8c5eb745a3060f5c1ff))
255
+
256
+ ## 0.3.0
257
+
258
+ * `CHORE`: bump to `bpmn-js@8.2.1`
259
+ * `CHORE`: bump to `bpmn-js-properties-panel@0.41.0`
260
+ * `CHORE`: bump to `camunda-bpmn-moddle@5.0.0`
261
+
262
+ ## 0.2.0
263
+
264
+ * `FEAT`: add support for user tasks in cloud modeler ([#14](https://github.com/camunda/camunda-bpmn-js/pull/14))
265
+
266
+ ## 0.1.0
267
+
268
+ *Republish of `v0.1.0-alpha.1`*.
269
+
270
+ ## 0.1.0-alpha.1
271
+
272
+ * `FIX`: resolve moddle descriptors explicitly ([#11](https://github.com/camunda/camunda-bpmn-js/issues/11))
273
+
274
+ ## 0.1.0-alpha.0
275
+
276
+ * `CHORE`: first release 🎉
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2021-present Camunda Services GmbH
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021-present Camunda Services GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
  THE SOFTWARE.