camunda-bpmn-js 3.12.1 → 3.13.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/properties-panel.css +40 -17
- package/dist/base-modeler.development.js +3848 -2576
- package/dist/base-modeler.production.min.js +33 -33
- package/dist/base-navigated-viewer.development.js +1 -1
- package/dist/base-viewer.development.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +22866 -12003
- package/dist/camunda-cloud-modeler.production.min.js +35 -34
- package/dist/camunda-cloud-navigated-viewer.development.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +1 -1
- package/dist/camunda-platform-modeler.development.js +6784 -5434
- package/dist/camunda-platform-modeler.production.min.js +33 -33
- package/dist/camunda-platform-navigated-viewer.development.js +1 -1
- package/dist/camunda-platform-viewer.development.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 +84 -84
- package/lib/camunda-cloud/NavigatedViewer.d.ts +3 -3
- package/lib/camunda-cloud/Viewer.d.ts +3 -3
- 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 +17 -17
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Theming
|
|
3
3
|
*/
|
|
4
|
-
.bio-properties-panel
|
|
4
|
+
.bio-properties-panel,
|
|
5
|
+
.djs-parent {
|
|
5
6
|
--color-grey-225-10-15: hsl(225, 10%, 15%);
|
|
6
7
|
--color-grey-225-10-35: hsl(225, 10%, 35%);
|
|
7
8
|
--color-grey-225-10-55: hsl(225, 10%, 55%);
|
|
@@ -26,11 +27,13 @@
|
|
|
26
27
|
--color-red-360-100-45: hsl(360, 100%, 45%);
|
|
27
28
|
--color-red-360-100-92: hsl(360, 100%, 92%);
|
|
28
29
|
--color-red-360-100-97: hsl(360, 100%, 97%);
|
|
29
|
-
|
|
30
30
|
--color-white: white;
|
|
31
31
|
--color-black: black;
|
|
32
32
|
--color-transparent: transparent;
|
|
33
33
|
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.bio-properties-panel {
|
|
34
37
|
--text-base-color: var(--color-grey-225-10-15);
|
|
35
38
|
--text-error-color: var(--color-red-360-100-45);
|
|
36
39
|
--link-color: var(--color-blue-205-100-50);
|
|
@@ -118,12 +121,6 @@
|
|
|
118
121
|
|
|
119
122
|
--feelers-select-color: var(--color-blue-205-100-85);
|
|
120
123
|
|
|
121
|
-
--tooltip-underline-color: var(--color-blue-219-99-53);
|
|
122
|
-
--tooltip-background-color: var(--color-grey-0-0-22);
|
|
123
|
-
--tooltip-link: var(--color-blue-218-100-74);
|
|
124
|
-
--tooltip-code-background-color: var(--color-grey-225-10-97);
|
|
125
|
-
--tooltip-code-border-color: var(--color-grey-225-10-85);
|
|
126
|
-
|
|
127
124
|
--text-size-base: 14px;
|
|
128
125
|
--text-size-small: 13px;
|
|
129
126
|
--text-size-smallest: 12px;
|
|
@@ -1116,7 +1113,7 @@ textarea.bio-properties-panel-input {
|
|
|
1116
1113
|
}
|
|
1117
1114
|
|
|
1118
1115
|
.bio-properties-panel-feel-editor-container .bio-properties-panel-input {
|
|
1119
|
-
resize:
|
|
1116
|
+
resize: none;
|
|
1120
1117
|
overflow: hidden;
|
|
1121
1118
|
overflow-y: auto;
|
|
1122
1119
|
}
|
|
@@ -1149,19 +1146,35 @@ textarea.bio-properties-panel-input {
|
|
|
1149
1146
|
text-decoration-style: dotted;
|
|
1150
1147
|
text-underline-offset: 2px;
|
|
1151
1148
|
font: inherit;
|
|
1149
|
+
display: flex;
|
|
1150
|
+
justify-content: center;
|
|
1151
|
+
width: fit-content;
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
1154
|
.bio-properties-panel-tooltip {
|
|
1155
|
+
--tooltip-underline-color: var(--color-blue-219-99-53);
|
|
1156
|
+
--tooltip-background-color: var(--color-grey-0-0-22);
|
|
1157
|
+
--tooltip-link: var(--color-blue-218-100-74);
|
|
1158
|
+
--tooltip-code-background-color: var(--color-grey-225-10-97);
|
|
1159
|
+
--tooltip-code-border-color: var(--color-grey-225-10-85);
|
|
1160
|
+
|
|
1155
1161
|
display: flex;
|
|
1156
1162
|
color: var(--color-white, white);
|
|
1157
1163
|
position: fixed;
|
|
1158
1164
|
z-index: 1000;
|
|
1159
|
-
padding-right: 6px;
|
|
1160
1165
|
max-width: 300px;
|
|
1161
1166
|
font-size: var(--text-size-small);
|
|
1162
1167
|
font-family: var(--font-family);
|
|
1163
1168
|
}
|
|
1164
1169
|
|
|
1170
|
+
.bio-properties-panel-tooltip.right {
|
|
1171
|
+
padding-right: 6px;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
.bio-properties-panel-tooltip.top {
|
|
1175
|
+
flex-direction: column;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1165
1178
|
.bio-properties-panel-tooltip-content {
|
|
1166
1179
|
background-color: var(--tooltip-background-color);
|
|
1167
1180
|
padding: 16px;
|
|
@@ -1207,6 +1220,12 @@ textarea.bio-properties-panel-input {
|
|
|
1207
1220
|
margin-top: 16px;
|
|
1208
1221
|
}
|
|
1209
1222
|
|
|
1223
|
+
.bio-properties-panel-tooltip.top .bio-properties-panel-tooltip-arrow {
|
|
1224
|
+
margin-top: -3px;
|
|
1225
|
+
margin-left: calc(50% - 2.5px);
|
|
1226
|
+
transform: rotate(90deg);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1210
1229
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-feelers-editor__open-popup-placeholder,
|
|
1211
1230
|
.bio-properties-panel-feel-editor-container .bio-properties-panel-feel-editor__open-popup-placeholder {
|
|
1212
1231
|
display: none;
|
|
@@ -1277,6 +1296,8 @@ textarea.bio-properties-panel-input {
|
|
|
1277
1296
|
|
|
1278
1297
|
.bio-properties-panel-popup .bio-properties-panel-popup__body:not(:first-child) {
|
|
1279
1298
|
padding-top: 0;
|
|
1299
|
+
padding-left: 0;
|
|
1300
|
+
padding-right: 0;
|
|
1280
1301
|
}
|
|
1281
1302
|
|
|
1282
1303
|
.bio-properties-panel-popup .bio-properties-panel-popup__header {
|
|
@@ -1361,6 +1382,10 @@ textarea.bio-properties-panel-input {
|
|
|
1361
1382
|
min-width: 100%;
|
|
1362
1383
|
}
|
|
1363
1384
|
|
|
1385
|
+
.bio-properties-panel-feel-popup .bio-properties-panel-feel-editor-container .cm-scroller {
|
|
1386
|
+
overflow: auto !important;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1364
1389
|
.bio-properties-panel-feel-popup .bio-properties-panel-feelers-editor-container {
|
|
1365
1390
|
width: 100%;
|
|
1366
1391
|
display: flex;
|
|
@@ -1378,7 +1403,6 @@ textarea.bio-properties-panel-input {
|
|
|
1378
1403
|
width: 100%;
|
|
1379
1404
|
resize: none;
|
|
1380
1405
|
padding: 0;
|
|
1381
|
-
margin-left: -12px;
|
|
1382
1406
|
overflow: hidden;
|
|
1383
1407
|
overflow-y: auto
|
|
1384
1408
|
}
|
|
@@ -1390,9 +1414,12 @@ textarea.bio-properties-panel-input {
|
|
|
1390
1414
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup,
|
|
1391
1415
|
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup {
|
|
1392
1416
|
position: absolute;
|
|
1393
|
-
|
|
1417
|
+
top: 0;
|
|
1394
1418
|
right: 0;
|
|
1395
|
-
|
|
1419
|
+
line-height: 1;
|
|
1420
|
+
padding: 2px 4px;
|
|
1421
|
+
margin: 3px;
|
|
1422
|
+
display: none;
|
|
1396
1423
|
background: none;
|
|
1397
1424
|
border: none;
|
|
1398
1425
|
color: var(--feel-open-popup-color);
|
|
@@ -1406,10 +1433,6 @@ textarea.bio-properties-panel-input {
|
|
|
1406
1433
|
display: block;
|
|
1407
1434
|
}
|
|
1408
1435
|
|
|
1409
|
-
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup {
|
|
1410
|
-
bottom: 0;
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
1436
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup:hover,
|
|
1414
1437
|
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup:hover {
|
|
1415
1438
|
color: var(--feel-open-popup-hover-color);
|