@flytedan/flytebot-design-system 0.11.5 → 0.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flytedan/flytebot-design-system",
3
- "version": "0.11.5",
3
+ "version": "0.12.0",
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",
@@ -2163,6 +2163,24 @@
2163
2163
  color: var(--text);
2164
2164
  font-weight: var(--w-semibold);
2165
2165
  }
2166
+ .fd-topbar-overflow-list {
2167
+ gap: 2px;
2168
+ min-width: 160px;
2169
+ }
2170
+ /* Narrow Topbar (`is-narrow`, set by Topbar from its own `overflowBreakpoint`, so the
2171
+ crumb rules and the overflow menu always switch together): earlier crumbs hide (the
2172
+ nav drawer `onMenu` opens still reaches them), and the current crumb truncates with
2173
+ an ellipsis instead of spilling its text outside a zero-width box. */
2174
+ .fd-topbar.is-narrow .fd-crumb > *:not(:last-child) {
2175
+ display: none;
2176
+ }
2177
+ .fd-topbar.is-narrow .fd-crumb-current {
2178
+ display: block;
2179
+ min-width: 0;
2180
+ overflow: hidden;
2181
+ text-overflow: ellipsis;
2182
+ white-space: nowrap;
2183
+ }
2166
2184
 
2167
2185
  /* ============ Overlays ============ */
2168
2186
  .fd-scrim {