camunda-bpmn-js 3.1.2 → 3.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/bpmn-font/css/bpmn.css +1 -0
- package/dist/assets/bpmn-js.css +1 -0
- package/dist/assets/element-templates.css +18 -1
- package/dist/base-modeler.development.js +484 -588
- package/dist/base-modeler.production.min.js +31 -31
- package/dist/base-navigated-viewer.development.js +20 -142
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +20 -142
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +66038 -46951
- package/dist/camunda-cloud-modeler.production.min.js +40 -40
- package/dist/camunda-cloud-navigated-viewer.development.js +31 -142
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +31 -142
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/dist/camunda-platform-modeler.development.js +574 -600
- package/dist/camunda-platform-modeler.production.min.js +31 -31
- package/dist/camunda-platform-navigated-viewer.development.js +20 -142
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +20 -142
- package/dist/camunda-platform-viewer.production.min.js +1 -1
- package/lib/base/Modeler.d.ts +15 -15
- package/lib/base/NavigatedViewer.d.ts +2 -2
- package/lib/base/Viewer.d.ts +2 -2
- package/lib/camunda-cloud/ElementTemplatesValidator.d.ts +1 -1
- package/lib/camunda-cloud/Modeler.d.ts +3 -3
- package/lib/camunda-cloud/Modeler.js +3 -1
- package/lib/camunda-cloud/NavigatedViewer.d.ts +3 -3
- package/lib/camunda-cloud/Viewer.d.ts +3 -3
- package/lib/camunda-cloud/features/rules/BpmnRules.d.ts +32 -32
- package/lib/camunda-cloud/features/rules/index.d.ts +6 -6
- package/lib/camunda-cloud/util/commonModules.d.ts +9 -9
- package/lib/camunda-platform/Modeler.d.ts +3 -3
- package/lib/camunda-platform/NavigatedViewer.d.ts +5 -5
- package/lib/camunda-platform/Viewer.d.ts +5 -5
- package/lib/camunda-platform/util/commonModules.d.ts +9 -9
- package/lib/util/ExtensionElementsUtil.d.ts +24 -24
- package/package.json +9 -7
package/dist/assets/bpmn-js.css
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
.bio-properties-panel {
|
|
2
|
+
--color-grey-225-10-50: hsl(225, 10%, 50%);
|
|
3
|
+
|
|
2
4
|
--select-template-background-color: var(--color-blue-205-100-50);
|
|
3
5
|
--select-template-hover-background-color: var(--color-blue-205-100-45);
|
|
4
6
|
--select-template-fill-color: var(--color-white);
|
|
@@ -8,6 +10,9 @@
|
|
|
8
10
|
--unknown-template-hover-background-color: var(--color-red-360-100-40);
|
|
9
11
|
|
|
10
12
|
--select-template-information-text-color: var(--color-grey-225-10-55);
|
|
13
|
+
|
|
14
|
+
--deprecated-template-hover-background-color: var(--color-grey-225-10-50);
|
|
15
|
+
--deprecated-template-background-color: var(--color-grey-225-10-55);
|
|
11
16
|
}
|
|
12
17
|
|
|
13
18
|
.bio-properties-panel-header-template-icon {
|
|
@@ -62,6 +67,17 @@
|
|
|
62
67
|
color: var(--text-error-color);
|
|
63
68
|
}
|
|
64
69
|
|
|
70
|
+
.bio-properties-panel-deprecated-template-button .bio-properties-panel-group-header-button {
|
|
71
|
+
background-color: var(--deprecated-template-background-color);
|
|
72
|
+
color: var(--select-template-label-color);
|
|
73
|
+
fill: var(--select-template-fill-color);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.bio-properties-panel-deprecated-template-button:hover .bio-properties-panel-group-header-button:hover {
|
|
77
|
+
background-color: var(--deprecated-template-hover-background-color);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
|
|
65
81
|
.bio-properties-panel-template-not-found .bio-properties-panel-group-header-button {
|
|
66
82
|
background-color: var(--unknown-template-background-color);
|
|
67
83
|
color: var(--select-template-label-color);
|
|
@@ -78,6 +94,7 @@
|
|
|
78
94
|
}
|
|
79
95
|
|
|
80
96
|
.bio-properties-panel-template-not-found-text,
|
|
81
|
-
.bio-properties-panel-template-update-available-text
|
|
97
|
+
.bio-properties-panel-template-update-available-text,
|
|
98
|
+
.bio-properties-panel-deprecated-template-text {
|
|
82
99
|
width: 216px;
|
|
83
100
|
}
|