@bpmn-io/form-js-editor 1.15.3 → 1.16.1-alpha.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/form-js-editor.css +8 -1
- package/dist/assets/properties-panel.css +14 -7
- package/dist/index.cjs +2602 -2468
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +2607 -2473
- package/dist/index.es.js.map +1 -1
- package/dist/types/FormEditor.d.ts +10 -3
- package/dist/types/features/editor-actions/index.d.ts +3 -1
- package/dist/types/features/keyboard/index.d.ts +4 -1
- package/dist/types/features/modeling/index.d.ts +3 -1
- package/dist/types/features/properties-panel/Util.d.ts +9 -0
- package/dist/types/features/properties-panel/entries/DateTimeConstraintsEntry.d.ts +2 -2
- package/dist/types/features/properties-panel/entries/DateTimeFormatEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/HeadersSourceSelectEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/OptionsSourceSelectEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/TextEntry.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1633,13 +1633,20 @@ textarea.bio-properties-panel-input {
|
|
|
1633
1633
|
}
|
|
1634
1634
|
|
|
1635
1635
|
.bio-properties-panel-list-entry-header {
|
|
1636
|
-
position:
|
|
1636
|
+
position: sticky;
|
|
1637
1637
|
overflow: hidden;
|
|
1638
1638
|
display: flex;
|
|
1639
1639
|
justify-content: space-between;
|
|
1640
1640
|
height: 32px;
|
|
1641
1641
|
}
|
|
1642
1642
|
|
|
1643
|
+
.bio-properties-panel-list-entry-header.sticky {
|
|
1644
|
+
background-color: var(--color-white);
|
|
1645
|
+
border-bottom: 1px solid var(--sticky-group-bottom-border-color);
|
|
1646
|
+
top: 32px;
|
|
1647
|
+
z-index: 9;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1643
1650
|
/* Nested list dot */
|
|
1644
1651
|
.bio-properties-panel-list-entry::before {
|
|
1645
1652
|
content: "";
|
|
@@ -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
|
|