@brightweblabs/ui 1.4.9 → 1.4.11

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@brightweblabs/ui",
3
3
  "private": false,
4
- "version": "1.4.9",
4
+ "version": "1.4.11",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
7
7
  "files": [
@@ -78,7 +78,7 @@
78
78
  "recharts": "^2.15.4",
79
79
  "sonner": "^2.0.7",
80
80
  "tailwind-merge": "^3.6.0",
81
- "@brightweblabs/theme": "0.7.4"
81
+ "@brightweblabs/theme": "0.8.0"
82
82
  },
83
83
  "peerDependencies": {
84
84
  "lucide-react": "^1.8.0",
@@ -184,7 +184,7 @@ function DropdownMenuShortcut({
184
184
  <span
185
185
  data-slot="dropdown-menu-shortcut"
186
186
  className={cn(
187
- "text-muted-foreground ml-auto text-meta tracking-widest",
187
+ "text-muted-foreground ml-auto text-meta",
188
188
  className
189
189
  )}
190
190
  {...props}
@@ -20,7 +20,7 @@ const toneClasses: Record<InitialsAvatarTone, string> = {
20
20
  export function InitialsAvatar({ label, fallback, tone = "active", className, ...props }: InitialsAvatarProps) {
21
21
  return (
22
22
  <Avatar className={cn("shrink-0", toneClasses[tone], className)} {...props}>
23
- <AvatarFallback className="bg-transparent text-meta font-bold uppercase text-current">
23
+ <AvatarFallback className="bg-transparent text-meta font-bold text-current">
24
24
  {getInitials(label, fallback)}
25
25
  </AvatarFallback>
26
26
  </Avatar>