@flytedan/flytebot-design-system 0.5.0 → 0.6.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.5.0",
3
+ "version": "0.6.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",
@@ -852,6 +852,26 @@
852
852
  border-color: var(--border-brand);
853
853
  color: var(--text-on-surface-brand);
854
854
  }
855
+ .fd-tag[aria-pressed="true"].fd-tag-info {
856
+ background: var(--info-fill);
857
+ border-color: var(--info-border);
858
+ color: var(--info-text);
859
+ }
860
+ .fd-tag[aria-pressed="true"].fd-tag-success {
861
+ background: var(--ok-fill);
862
+ border-color: var(--ok-border);
863
+ color: var(--ok-text);
864
+ }
865
+ .fd-tag[aria-pressed="true"].fd-tag-warning {
866
+ background: var(--warn-fill);
867
+ border-color: var(--warn-border);
868
+ color: var(--warn-text);
869
+ }
870
+ .fd-tag[aria-pressed="true"].fd-tag-danger {
871
+ background: var(--danger-fill);
872
+ border-color: var(--danger-border);
873
+ color: var(--danger-text);
874
+ }
855
875
  .fd-tag-remove {
856
876
  display: grid;
857
877
  place-items: center;
@@ -2389,7 +2409,12 @@
2389
2409
  box-shadow: var(--e-3);
2390
2410
  animation: fd-pop-in 160ms var(--ease-out) both;
2391
2411
  transform-origin: top center;
2392
- 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;
2393
2418
  display: flex;
2394
2419
  flex-direction: column;
2395
2420
  }