@esfaenza/flow-builder 20.0.0 → 20.3.2
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/README.md +393 -354
- package/fesm2022/esfaenza-flow-builder.mjs +1459 -244
- package/fesm2022/esfaenza-flow-builder.mjs.map +1 -1
- package/index.d.ts +575 -61
- package/package.json +1 -1
- package/styles/flow-builder.css +25 -0
package/package.json
CHANGED
package/styles/flow-builder.css
CHANGED
|
@@ -413,6 +413,19 @@ f-flow .fb-edge--goto .f-connection-path {
|
|
|
413
413
|
margin-bottom: 6px;
|
|
414
414
|
}
|
|
415
415
|
|
|
416
|
+
/**
|
|
417
|
+
* I picker sono elementi custom: senza `flex` occuperebbero la larghezza del loro contenuto,
|
|
418
|
+
* e dentro l'intestazione di una voce di elenco resterebbero una casella minuscola accanto al
|
|
419
|
+
* bottone di rimozione. La regola sta qui perche' vale per ogni editor che li mette in fila.
|
|
420
|
+
*/
|
|
421
|
+
.fb-list__header > fb-name-picker,
|
|
422
|
+
.fb-list__header > fb-field-picker,
|
|
423
|
+
.fb-list__header > fb-object-picker,
|
|
424
|
+
.fb-list__header > fb-reference-picker {
|
|
425
|
+
flex: 1;
|
|
426
|
+
min-width: 0;
|
|
427
|
+
}
|
|
428
|
+
|
|
416
429
|
.fb-list__index {
|
|
417
430
|
display: grid;
|
|
418
431
|
place-items: center;
|
|
@@ -425,6 +438,18 @@ f-flow .fb-edge--goto .f-connection-path {
|
|
|
425
438
|
color: var(--fb-text, #1d2939);
|
|
426
439
|
}
|
|
427
440
|
|
|
441
|
+
/**
|
|
442
|
+
* Il titolo di una voce di elenco, dove il badge numerico non va: gli step di uno stage non
|
|
443
|
+
* sono numerati, perche' non sono una sequenza (§5.13), e un'etichetta dentro il cerchio da
|
|
444
|
+
* 18px si sovrappone a se stessa.
|
|
445
|
+
*/
|
|
446
|
+
.fb-list__title {
|
|
447
|
+
font-size: 12px;
|
|
448
|
+
font-weight: 600;
|
|
449
|
+
color: var(--fb-text, #1d2939);
|
|
450
|
+
overflow-wrap: anywhere;
|
|
451
|
+
}
|
|
452
|
+
|
|
428
453
|
.fb-list__spacer {
|
|
429
454
|
flex: 1;
|
|
430
455
|
}
|