@aiready/components 0.11.22 → 0.13.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": "@aiready/components",
3
- "version": "0.11.22",
3
+ "version": "0.13.0",
4
4
  "description": "Unified shared components library (UI, charts, hooks, utilities) for AIReady",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -65,7 +65,7 @@
65
65
  "framer-motion": "^12.35.0",
66
66
  "lucide-react": "^0.577.0",
67
67
  "tailwind-merge": "^3.0.0",
68
- "@aiready/core": "0.21.21"
68
+ "@aiready/core": "0.23.0"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@testing-library/jest-dom": "^6.6.5",
@@ -72,8 +72,8 @@ function NavItemComponent({
72
72
  className={cn(
73
73
  'flex items-center gap-3 px-4 py-3 rounded-xl transition-all',
74
74
  isActive
75
- ? 'bg-cyan-500/10 text-cyan-400 border border-cyan-500/20'
76
- : 'text-slate-400 hover:text-white hover:bg-slate-800/50 border border-transparent'
75
+ ? 'bg-cyan-500/10 text-cyan-400 border border-cyan-500/20 glow-blue'
76
+ : 'text-slate-400 hover:text-white hover:bg-slate-800/50 border border-transparent hover:glow-blue'
77
77
  )}
78
78
  >
79
79
  <Icon
@@ -337,7 +337,7 @@ export function PlatformShell({
337
337
  <header className="sticky top-0 z-20 h-16 border-b border-indigo-500/10 backdrop-blur-md bg-slate-950/20 px-4 sm:px-6 lg:px-8">
338
338
  <div className="h-full flex items-center justify-between">
339
339
  <div className="flex items-center gap-4">
340
- <p className="text-xs font-semibold text-slate-500 uppercase tracking-widest hidden sm:block">
340
+ <p className="text-xs font-semibold text-slate-400 uppercase tracking-widest hidden sm:block glow-text">
341
341
  {activePage || 'Dashboard'}
342
342
  </p>
343
343
  </div>