camunda-bpmn-js 0.13.0-alpha.5 → 0.13.0-alpha.8
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.
- package/CHANGELOG.md +40 -2
- package/dist/assets/element-templates.css +4 -0
- package/dist/assets/properties-panel.css +5 -0
- package/dist/base-modeler.development.js +819 -178
- package/dist/base-modeler.production.min.js +4 -4
- package/dist/camunda-cloud-modeler.development.js +2759 -1505
- package/dist/camunda-cloud-modeler.production.min.js +4 -4
- package/dist/camunda-platform-modeler.development.js +1289 -539
- package/dist/camunda-platform-modeler.production.min.js +4 -4
- package/lib/camunda-cloud/Modeler.js +4 -1
- package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeCallActivityBehavior.js +17 -5
- package/package.json +13 -10
package/CHANGELOG.md
CHANGED
|
@@ -6,10 +6,48 @@ 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.8
|
|
10
|
+
|
|
11
|
+
* `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
12
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.12` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
13
|
+
* `DEPS`: update to `diagram-js@8.2.1` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
14
|
+
* `DEPS`: update to `camunda-bpmn-moddle@6.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
15
|
+
* `DEPS`: update to `zeebe-bpmn-moddle@0.12.0` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
16
|
+
* `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
17
|
+
|
|
18
|
+
### Key changes in Properties Panel
|
|
19
|
+
|
|
20
|
+
* `FEAT`: apply element template icons ([#641](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/641))
|
|
21
|
+
* `FEAT`: change task type when element template is applied ([#648](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/648))
|
|
22
|
+
* `FEAT`: display element template icons in header ([#650](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/650))
|
|
23
|
+
|
|
24
|
+
## 0.13.0-alpha.7
|
|
25
|
+
|
|
26
|
+
_Re-publish of v0.13.0-alpha.6 with fixed distro._
|
|
27
|
+
|
|
28
|
+
* `FIX`: update peer dependencies ([#103](https://github.com/camunda/camunda-bpmn-js/pull/103))
|
|
29
|
+
|
|
30
|
+
## 0.13.0-alpha.6
|
|
31
|
+
|
|
32
|
+
* `FIX`: set $parent when creating zeebe:CalledElement element ([#99](https://github.com/camunda/camunda-bpmn-js/pull/99))
|
|
33
|
+
* `DEPS`: update to `@bpmn-io/properties-panel@0.13.1`
|
|
34
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.9`
|
|
35
|
+
|
|
36
|
+
### Key changes in Properties Panel
|
|
37
|
+
|
|
38
|
+
* `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
|
|
39
|
+
* `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
|
|
40
|
+
* `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
|
|
41
|
+
* `FEAT`: add show callbacks to show entries and errors ([#601](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/601))
|
|
42
|
+
* `FEAT`: open element template custom groups ([#621](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/621))
|
|
43
|
+
* `FEAT`: display template name in header ([#627](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/627))
|
|
44
|
+
* `FEAT`: add documentation ref to header ([#629](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/629))
|
|
45
|
+
* `FIX`: copy versioned element template ([#632](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/632))
|
|
46
|
+
|
|
9
47
|
## 0.13.0-alpha.5
|
|
10
48
|
|
|
11
49
|
* `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
|
|
12
|
-
* `DEPS`: update to `bpmn-properties-panel@1.0.0-alpha.7`
|
|
50
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.7`
|
|
13
51
|
|
|
14
52
|
## 0.13.0-alpha.4
|
|
15
53
|
|
|
@@ -22,7 +60,7 @@ ___Note:__ Yet to be released changes appear here._
|
|
|
22
60
|
* `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
|
|
23
61
|
* `DEPS`: update to `bpmn-js@9.0.2`
|
|
24
62
|
* `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
|
|
25
|
-
* `DEPS`: update to `bpmn-properties-panel@1.0.0-alpha.5`
|
|
63
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.5`
|
|
26
64
|
* `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
|
|
27
65
|
|
|
28
66
|
## 0.13.0-alpha.2
|
|
@@ -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;
|