@flytedan/flytebot-design-system 0.9.0 → 0.10.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/index.cjs +1109 -1091
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +37 -7
- package/dist/index.d.ts +37 -7
- package/dist/index.js +1109 -1091
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/styles/components.css +12 -3
package/package.json
CHANGED
package/styles/components.css
CHANGED
|
@@ -3901,9 +3901,15 @@
|
|
|
3901
3901
|
gap: 8px;
|
|
3902
3902
|
min-width: 0;
|
|
3903
3903
|
}
|
|
3904
|
+
/* The title keeps a floor and the meta is what gives way. Previously the title was
|
|
3905
|
+
"flex: 1; min-width: 0" against a "flex: none" meta, which means the title is the
|
|
3906
|
+
ONLY thing that can shrink — so in a narrow panel (a two-pane transfer list at ~245px
|
|
3907
|
+
per side) a row carrying three figures squeezed the school name to zero width and the
|
|
3908
|
+
row lost its identity entirely. A row you cannot name is a row you cannot act on,
|
|
3909
|
+
which makes the name the last thing that should go, not the first. */
|
|
3904
3910
|
.fd-erow-title {
|
|
3905
|
-
flex: 1;
|
|
3906
|
-
min-width:
|
|
3911
|
+
flex: 1 1 auto;
|
|
3912
|
+
min-width: 45%;
|
|
3907
3913
|
font-weight: var(--w-semibold);
|
|
3908
3914
|
color: var(--text);
|
|
3909
3915
|
white-space: nowrap;
|
|
@@ -3911,10 +3917,13 @@
|
|
|
3911
3917
|
text-overflow: ellipsis;
|
|
3912
3918
|
}
|
|
3913
3919
|
.fd-erow-meta {
|
|
3914
|
-
flex:
|
|
3920
|
+
flex: 0 1 auto;
|
|
3921
|
+
min-width: 0;
|
|
3915
3922
|
font-size: var(--overline-size);
|
|
3916
3923
|
color: var(--text-muted);
|
|
3917
3924
|
white-space: nowrap;
|
|
3925
|
+
overflow: hidden;
|
|
3926
|
+
text-overflow: ellipsis;
|
|
3918
3927
|
}
|
|
3919
3928
|
.fd-erow-strip {
|
|
3920
3929
|
display: flex;
|