camunda-bpmn-js 5.10.0 → 5.11.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 +14 -7
- package/dist/base-modeler.development.js +3875 -2762
- package/dist/base-modeler.production.min.js +6 -6
- package/dist/camunda-cloud-modeler.development.js +4951 -3558
- package/dist/camunda-cloud-modeler.production.min.js +22 -22
- package/dist/camunda-platform-modeler.development.js +5471 -4182
- package/dist/camunda-platform-modeler.production.min.js +19 -19
- package/lib/camunda-cloud/features/popup-menu/CamundaDetailsPopupMenuProvider.js +5 -0
- package/package.json +7 -6
|
@@ -819,13 +819,20 @@ textarea.bio-properties-panel-input {
|
|
|
819
819
|
}
|
|
820
820
|
|
|
821
821
|
.bio-properties-panel-list-entry-header {
|
|
822
|
-
position:
|
|
822
|
+
position: sticky;
|
|
823
823
|
overflow: hidden;
|
|
824
824
|
display: flex;
|
|
825
825
|
justify-content: space-between;
|
|
826
826
|
height: 32px;
|
|
827
827
|
}
|
|
828
828
|
|
|
829
|
+
.bio-properties-panel-list-entry-header.sticky {
|
|
830
|
+
background-color: var(--color-white);
|
|
831
|
+
border-bottom: 1px solid var(--sticky-group-bottom-border-color);
|
|
832
|
+
top: 32px;
|
|
833
|
+
z-index: 9;
|
|
834
|
+
}
|
|
835
|
+
|
|
829
836
|
/* Nested list dot */
|
|
830
837
|
.bio-properties-panel-list-entry::before {
|
|
831
838
|
content: "";
|
|
@@ -1226,8 +1233,8 @@ textarea.bio-properties-panel-input {
|
|
|
1226
1233
|
}
|
|
1227
1234
|
|
|
1228
1235
|
.bio-properties-panel-tooltip .bio-properties-panel-tooltip-arrow {
|
|
1229
|
-
width: 0;
|
|
1230
|
-
height: 0;
|
|
1236
|
+
width: 0;
|
|
1237
|
+
height: 0;
|
|
1231
1238
|
border-top: 5px solid transparent;
|
|
1232
1239
|
border-bottom: 5px solid transparent;
|
|
1233
1240
|
border-left: 5px solid var(--tooltip-background-color);
|
|
@@ -1291,9 +1298,9 @@ textarea.bio-properties-panel-input {
|
|
|
1291
1298
|
font-size: 14px;
|
|
1292
1299
|
}
|
|
1293
1300
|
|
|
1294
|
-
.bio-properties-panel-popup h1,
|
|
1295
|
-
.bio-properties-panel-popup h2,
|
|
1296
|
-
.bio-properties-panel-popup h3,
|
|
1301
|
+
.bio-properties-panel-popup h1,
|
|
1302
|
+
.bio-properties-panel-popup h2,
|
|
1303
|
+
.bio-properties-panel-popup h3,
|
|
1297
1304
|
.bio-properties-panel-popup h4 {
|
|
1298
1305
|
font-weight: 500;
|
|
1299
1306
|
font-size: inherit;
|
|
@@ -1405,7 +1412,7 @@ textarea.bio-properties-panel-input {
|
|
|
1405
1412
|
}
|
|
1406
1413
|
|
|
1407
1414
|
.bio-properties-panel-feel-popup__title-link {
|
|
1408
|
-
margin-left: 8px;
|
|
1415
|
+
margin-left: 8px;
|
|
1409
1416
|
display: flex;
|
|
1410
1417
|
}
|
|
1411
1418
|
|