@bpmn-io/form-js-editor 1.15.4 → 1.15.5
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 +7 -1
- package/dist/assets/properties-panel.css +7 -1
- package/dist/index.cjs +459 -74
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +459 -74
- package/dist/index.es.js.map +1 -1
- package/package.json +5 -5
- package/dist/types/features/properties-panel/entries/EndpointKey.d.ts +0 -10
- package/dist/types/features/properties-panel/entries/SpacerHeightEntry.d.ts +0 -9
- package/dist/types/features/properties-panel/groups/DownloadSettings.d.ts +0 -12
|
@@ -1979,7 +1979,7 @@ textarea.bio-properties-panel-input {
|
|
|
1979
1979
|
display: flex;
|
|
1980
1980
|
color: var(--color-white, white);
|
|
1981
1981
|
position: fixed;
|
|
1982
|
-
z-index:
|
|
1982
|
+
z-index: 1001;
|
|
1983
1983
|
max-width: 300px;
|
|
1984
1984
|
font-size: var(--text-size-small);
|
|
1985
1985
|
font-family: var(--font-family);
|
|
@@ -2333,3 +2333,9 @@ textarea.bio-properties-panel-input {
|
|
|
2333
2333
|
.bio-properties-panel-feel-popup .cm-gutters .cm-lineNumbers .cm-gutterElement {
|
|
2334
2334
|
text-align: center;
|
|
2335
2335
|
}
|
|
2336
|
+
|
|
2337
|
+
/* Checkbox Group */
|
|
2338
|
+
.bio-properties-panel-checkbox-group .bio-properties-panel-checkbox-group-entries > .bio-properties-panel-entry {
|
|
2339
|
+
margin: 0;
|
|
2340
|
+
padding: 0;
|
|
2341
|
+
}
|
|
@@ -1176,7 +1176,7 @@ textarea.bio-properties-panel-input {
|
|
|
1176
1176
|
display: flex;
|
|
1177
1177
|
color: var(--color-white, white);
|
|
1178
1178
|
position: fixed;
|
|
1179
|
-
z-index:
|
|
1179
|
+
z-index: 1001;
|
|
1180
1180
|
max-width: 300px;
|
|
1181
1181
|
font-size: var(--text-size-small);
|
|
1182
1182
|
font-family: var(--font-family);
|
|
@@ -1532,3 +1532,9 @@ textarea.bio-properties-panel-input {
|
|
|
1532
1532
|
.bio-properties-panel-feel-popup .cm-gutters .cm-lineNumbers .cm-gutterElement {
|
|
1533
1533
|
text-align: center;
|
|
1534
1534
|
}
|
|
1535
|
+
|
|
1536
|
+
/* Checkbox Group */
|
|
1537
|
+
.bio-properties-panel-checkbox-group .bio-properties-panel-checkbox-group-entries > .bio-properties-panel-entry {
|
|
1538
|
+
margin: 0;
|
|
1539
|
+
padding: 0;
|
|
1540
|
+
}
|