@cosxai/ui 0.4.8 → 0.4.9

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": "@cosxai/ui",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "COSX design system — React 19 component primitives shared across product-meta and other consumers",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -72,7 +72,12 @@ export function Modal({
72
72
  position: "fixed",
73
73
  inset: 0,
74
74
  background: "rgba(10, 14, 26, 0.6)",
75
- backdropFilter: "blur(2px)",
75
+ // Pull the page surface noticeably out of focus behind the
76
+ // modal — agent-dataroom's `backdrop-blur-sm` (4px) reads as
77
+ // a hint; 8px reads as a clear "the world stopped". The card
78
+ // sits above the blurred layer, so the content stays crisp.
79
+ backdropFilter: "blur(8px)",
80
+ WebkitBackdropFilter: "blur(8px)",
76
81
  display: "flex",
77
82
  alignItems: "center",
78
83
  justifyContent: "center",