@flytedan/flytebot-design-system 0.11.6 → 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/dist/index.cjs +56 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -1
- package/dist/index.d.ts +14 -1
- package/dist/index.js +74 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/styles/components.css +18 -0
package/package.json
CHANGED
package/styles/components.css
CHANGED
|
@@ -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 {
|