@flytedan/flytebot-design-system 0.6.0 → 0.7.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.6.0",
3
+ "version": "0.7.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",
@@ -2409,7 +2409,12 @@
2409
2409
  box-shadow: var(--e-3);
2410
2410
  animation: fd-pop-in 160ms var(--ease-out) both;
2411
2411
  transform-origin: top center;
2412
- overflow: hidden;
2412
+ /* max-height (set inline by Popover.tsx) sizes to content by default, capped only
2413
+ at the real available room to the viewport edge — so this is a last-resort
2414
+ scroller for that legitimate viewport-collision case, not a content clipper.
2415
+ overflow-x stays hidden so children never poke past the rounded corners. */
2416
+ overflow-x: hidden;
2417
+ overflow-y: auto;
2413
2418
  display: flex;
2414
2419
  flex-direction: column;
2415
2420
  }