@aiready/components 0.12.0 → 0.13.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.
|
@@ -3,7 +3,7 @@ import * as React from 'react';
|
|
|
3
3
|
import { VariantProps } from 'class-variance-authority';
|
|
4
4
|
|
|
5
5
|
declare const buttonVariants: (props?: ({
|
|
6
|
-
variant?: "
|
|
6
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "glow" | "glass" | "accent" | null | undefined;
|
|
7
7
|
size?: "default" | "sm" | "lg" | "icon" | "xs" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
package/dist/index.js
CHANGED
|
@@ -1269,7 +1269,7 @@ function NavItemComponent({
|
|
|
1269
1269
|
{
|
|
1270
1270
|
className: cn(
|
|
1271
1271
|
"flex items-center gap-3 px-4 py-3 rounded-xl transition-all",
|
|
1272
|
-
isActive ? "bg-cyan-500/10 text-cyan-400 border border-cyan-500/20" : "text-slate-400 hover:text-white hover:bg-slate-800/50 border border-transparent"
|
|
1272
|
+
isActive ? "bg-cyan-500/10 text-cyan-400 border border-cyan-500/20 glow-blue" : "text-slate-400 hover:text-white hover:bg-slate-800/50 border border-transparent hover:glow-blue"
|
|
1273
1273
|
),
|
|
1274
1274
|
children: [
|
|
1275
1275
|
/* @__PURE__ */ jsx(
|
|
@@ -1491,7 +1491,7 @@ function PlatformShell({
|
|
|
1491
1491
|
] }) })
|
|
1492
1492
|
] }) });
|
|
1493
1493
|
const Navbar = () => /* @__PURE__ */ jsx("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", children: /* @__PURE__ */ jsxs("div", { className: "h-full flex items-center justify-between", children: [
|
|
1494
|
-
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-4", children: /* @__PURE__ */ jsx("p", { className: "text-xs font-semibold text-slate-
|
|
1494
|
+
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-4", children: /* @__PURE__ */ jsx("p", { className: "text-xs font-semibold text-slate-400 uppercase tracking-widest hidden sm:block glow-text", children: activePage || "Dashboard" }) }),
|
|
1495
1495
|
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-4", children: user && /* @__PURE__ */ jsx(
|
|
1496
1496
|
UserMenu,
|
|
1497
1497
|
{
|