camunda-bpmn-js 5.2.2 → 5.3.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.
- package/dist/assets/element-templates.css +19 -4
- package/dist/camunda-cloud-modeler.development.js +5022 -2086
- package/dist/camunda-cloud-modeler.production.min.js +20 -20
- package/dist/camunda-platform-modeler.development.js +4463 -1605
- package/dist/camunda-platform-modeler.production.min.js +17 -17
- package/package.json +4 -4
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
--unknown-template-background-color: var(--color-red-360-100-45);
|
|
10
10
|
--unknown-template-hover-background-color: var(--color-red-360-100-40);
|
|
11
11
|
|
|
12
|
+
--incompatible-template-background-color: rgb(255, 131, 43);
|
|
13
|
+
--incompatible-template-hover-background-color: hsl(25, 100%, 50%);
|
|
14
|
+
|
|
12
15
|
--select-template-information-text-color: var(--color-grey-225-10-55);
|
|
13
16
|
|
|
14
17
|
--deprecated-template-hover-background-color: var(--color-grey-225-10-50);
|
|
@@ -59,7 +62,8 @@
|
|
|
59
62
|
|
|
60
63
|
.bio-properties-panel-template-update-available:last-child,
|
|
61
64
|
.bio-properties-panel-applied-template-button:last-child,
|
|
62
|
-
.bio-properties-panel-template-not-found:last-child
|
|
65
|
+
.bio-properties-panel-template-not-found:last-child,
|
|
66
|
+
.bio-properties-panel-template-incompatible:last-child {
|
|
63
67
|
margin-right: 32px;
|
|
64
68
|
}
|
|
65
69
|
|
|
@@ -77,7 +81,6 @@
|
|
|
77
81
|
background-color: var(--deprecated-template-hover-background-color);
|
|
78
82
|
}
|
|
79
83
|
|
|
80
|
-
|
|
81
84
|
.bio-properties-panel-template-not-found .bio-properties-panel-group-header-button {
|
|
82
85
|
background-color: var(--unknown-template-background-color);
|
|
83
86
|
color: var(--select-template-label-color);
|
|
@@ -88,13 +91,25 @@
|
|
|
88
91
|
background-color: var(--unknown-template-hover-background-color);
|
|
89
92
|
}
|
|
90
93
|
|
|
94
|
+
.bio-properties-panel-template-incompatible .bio-properties-panel-group-header-button {
|
|
95
|
+
background-color: var(--incompatible-template-background-color);
|
|
96
|
+
color: var(--select-template-label-color);
|
|
97
|
+
fill: var(--select-template-fill-color);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.bio-properties-panel-template-incompatible .bio-properties-panel-group-header-button:hover {
|
|
101
|
+
background-color: var(--incompatible-template-hover-background-color);
|
|
102
|
+
}
|
|
103
|
+
|
|
91
104
|
.bio-properties-panel-template-not-found-text,
|
|
92
|
-
.bio-properties-panel-template-update-available-text
|
|
105
|
+
.bio-properties-panel-template-update-available-text,
|
|
106
|
+
.bio-properties-panel-template-incompatible-text {
|
|
93
107
|
color: var(--select-template-information-text-color);
|
|
94
108
|
}
|
|
95
109
|
|
|
96
110
|
.bio-properties-panel-template-not-found-text,
|
|
97
111
|
.bio-properties-panel-template-update-available-text,
|
|
98
|
-
.bio-properties-panel-deprecated-template-text
|
|
112
|
+
.bio-properties-panel-deprecated-template-text,
|
|
113
|
+
.bio-properties-panel-template-incompatible-text {
|
|
99
114
|
width: 216px;
|
|
100
115
|
}
|