@flytedan/flytebot-design-system 0.9.0 → 0.9.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flytedan/flytebot-design-system",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "flytedesk Design System — shared component library, tokens, and business-logic kits for flytedesk apps.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -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: 0;
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: none;
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;