camunda-bpmn-js 0.13.0-alpha.2 → 0.13.0-alpha.5
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 +19 -0
- package/dist/assets/bpmn-js.css +6 -3
- package/dist/assets/camunda-cloud-modeler.css +2 -1
- package/dist/assets/properties-panel.css +20 -0
- package/dist/base-modeler.development.js +24156 -26033
- package/dist/base-modeler.production.min.js +4 -4
- package/dist/camunda-cloud-modeler.development.js +32001 -29683
- package/dist/camunda-cloud-modeler.production.min.js +4 -4
- package/dist/camunda-platform-modeler.development.js +3721 -5440
- package/dist/camunda-platform-modeler.production.min.js +4 -4
- package/lib/camunda-cloud/ElementTemplatesValidator.js +1 -0
- package/lib/camunda-cloud/Modeler.js +2 -0
- package/package.json +12 -7
- package/styles/camunda-cloud-modeler.css +2 -1
- package/dist/assets/bpmn-js-properties-panel.css +0 -778
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,25 @@ 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.5
|
|
10
|
+
|
|
11
|
+
* `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
|
|
12
|
+
* `DEPS`: update to `bpmn-properties-panel@1.0.0-alpha.7`
|
|
13
|
+
|
|
14
|
+
## 0.13.0-alpha.4
|
|
15
|
+
|
|
16
|
+
* `FIX`: move properties panel deps to peer dependencies
|
|
17
|
+
* `CHORE`: add prepare script
|
|
18
|
+
* `DEPS`: update to `bpmn-js@9.0.3`
|
|
19
|
+
|
|
20
|
+
## 0.13.0-alpha.3
|
|
21
|
+
|
|
22
|
+
* `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
|
|
23
|
+
* `DEPS`: update to `bpmn-js@9.0.2`
|
|
24
|
+
* `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
|
|
25
|
+
* `DEPS`: update to `bpmn-properties-panel@1.0.0-alpha.5`
|
|
26
|
+
* `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
|
|
27
|
+
|
|
9
28
|
## 0.13.0-alpha.2
|
|
10
29
|
|
|
11
30
|
* `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
|
package/dist/assets/bpmn-js.css
CHANGED
|
@@ -40,7 +40,10 @@
|
|
|
40
40
|
display: none;
|
|
41
41
|
flex-wrap: wrap;
|
|
42
42
|
align-items: center;
|
|
43
|
-
top:
|
|
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:
|
|
57
|
+
left: 90px;
|
|
55
58
|
}
|
|
56
59
|
|
|
57
60
|
.djs-palette-shown.djs-palette-two-column .bjs-breadcrumbs {
|
|
58
|
-
left:
|
|
61
|
+
left: 140px;
|
|
59
62
|
}
|
|
60
63
|
|
|
61
64
|
.bjs-breadcrumbs li {
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
@import './base-modeler.css';
|
|
1
|
+
@import './base-modeler.css';
|
|
2
|
+
@import './element-templates.css';
|
|
@@ -875,3 +875,23 @@ textarea.bio-properties-panel-input {
|
|
|
875
875
|
.bio-properties-panel-dropdown-button__menu-item--actionable:hover {
|
|
876
876
|
background-color: var(--dropdown-item-hover-background-color);
|
|
877
877
|
}
|
|
878
|
+
|
|
879
|
+
.bio-properties-panel-feel-input {
|
|
880
|
+
position: relative;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.bio-properties-panel-feel-input input {
|
|
884
|
+
padding-right: 2em
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.bio-properties-panel-feel-icon {
|
|
888
|
+
display: inline-block;
|
|
889
|
+
height: 16px;
|
|
890
|
+
vertical-align: text-bottom;
|
|
891
|
+
padding: 0 3px;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.bio-properties-panel-feel-icon svg {
|
|
895
|
+
width: 16px;
|
|
896
|
+
height: 16px;
|
|
897
|
+
}
|