@flytedan/flytebot-design-system 0.12.2 → 0.12.3

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.12.2",
3
+ "version": "0.12.3",
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",
@@ -2328,6 +2328,8 @@
2328
2328
  border-top: 1px solid var(--border);
2329
2329
  background: var(--surface-2);
2330
2330
  }
2331
+ /* z-index below is a resting default only — Drawer.tsx sets it (and its scrim's) inline
2332
+ via useOverlayLayer(DRAWER_BASE), which wins over this rule (see Popover.tsx). */
2331
2333
  .fd-drawer {
2332
2334
  position: fixed;
2333
2335
  top: 0;
@@ -2351,9 +2353,11 @@
2351
2353
  min-width: 0;
2352
2354
  }
2353
2355
  /* Portaled to document.body and placed by Tooltip.tsx (fixed, anchored geometry), so no
2354
- overflow: hidden ancestor of the trigger can clip it. It sits above popovers (140) so a
2355
- tip on something inside a popover is still visible. Short labels stay on one line
2356
- (max-content); a sentence wraps at a readable measure instead of running off-screen. */
2356
+ overflow: hidden ancestor of the trigger can clip it. Short labels stay on one line
2357
+ (max-content); a sentence wraps at a readable measure instead of running off-screen.
2358
+ The z-index below is a resting default only Tooltip.tsx always sets it inline via
2359
+ useOverlayLayer(TOOLTIP_BASE), which wins over this rule and is what actually keeps a
2360
+ tip above whatever popover its trigger happens to be nested inside (see Popover.tsx). */
2357
2361
  .fd-tooltip {
2358
2362
  position: fixed;
2359
2363
  z-index: 150;