@bpmn-io/form-js-editor 1.17.0 → 1.19.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 +13 -1
- package/dist/assets/properties-panel.css +13 -1
- package/dist/index.cjs +400 -77
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +401 -78
- package/dist/index.es.js.map +1 -1
- package/package.json +7 -7
|
@@ -2268,7 +2268,7 @@ textarea.bio-properties-panel-input {
|
|
|
2268
2268
|
top: 0;
|
|
2269
2269
|
right: 0;
|
|
2270
2270
|
line-height: 1;
|
|
2271
|
-
padding:
|
|
2271
|
+
padding: 3px 4px;
|
|
2272
2272
|
margin: 3px;
|
|
2273
2273
|
display: none;
|
|
2274
2274
|
background: none;
|
|
@@ -2277,6 +2277,12 @@ textarea.bio-properties-panel-input {
|
|
|
2277
2277
|
cursor: pointer;
|
|
2278
2278
|
}
|
|
2279
2279
|
|
|
2280
|
+
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup svg,
|
|
2281
|
+
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup svg {
|
|
2282
|
+
width: 16px;
|
|
2283
|
+
height: 16px;
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2280
2286
|
.bio-properties-panel-feelers-editor-container:hover .bio-properties-panel-open-feel-popup,
|
|
2281
2287
|
.bio-properties-panel-feel-container:hover .bio-properties-panel-open-feel-popup,
|
|
2282
2288
|
.bio-properties-panel-feelers-editor-container:focus-within .bio-properties-panel-open-feel-popup,
|
|
@@ -2327,3 +2333,9 @@ textarea.bio-properties-panel-input {
|
|
|
2327
2333
|
.bio-properties-panel-feel-popup .cm-gutters .cm-lineNumbers .cm-gutterElement {
|
|
2328
2334
|
text-align: center;
|
|
2329
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
|
+
}
|
|
@@ -1467,7 +1467,7 @@ textarea.bio-properties-panel-input {
|
|
|
1467
1467
|
top: 0;
|
|
1468
1468
|
right: 0;
|
|
1469
1469
|
line-height: 1;
|
|
1470
|
-
padding:
|
|
1470
|
+
padding: 3px 4px;
|
|
1471
1471
|
margin: 3px;
|
|
1472
1472
|
display: none;
|
|
1473
1473
|
background: none;
|
|
@@ -1476,6 +1476,12 @@ textarea.bio-properties-panel-input {
|
|
|
1476
1476
|
cursor: pointer;
|
|
1477
1477
|
}
|
|
1478
1478
|
|
|
1479
|
+
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup svg,
|
|
1480
|
+
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup svg {
|
|
1481
|
+
width: 16px;
|
|
1482
|
+
height: 16px;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1479
1485
|
.bio-properties-panel-feelers-editor-container:hover .bio-properties-panel-open-feel-popup,
|
|
1480
1486
|
.bio-properties-panel-feel-container:hover .bio-properties-panel-open-feel-popup,
|
|
1481
1487
|
.bio-properties-panel-feelers-editor-container:focus-within .bio-properties-panel-open-feel-popup,
|
|
@@ -1526,3 +1532,9 @@ textarea.bio-properties-panel-input {
|
|
|
1526
1532
|
.bio-properties-panel-feel-popup .cm-gutters .cm-lineNumbers .cm-gutterElement {
|
|
1527
1533
|
text-align: center;
|
|
1528
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
|
+
}
|