@cntyclub/ui-react 0.10.5 → 0.10.6
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/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ui/avatar-group.tsx +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cntyclub/ui-react",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.6",
|
|
4
4
|
"description": "React component library for the Country Club UI Kit — Base UI primitives styled with the Country Club design system (Tailwind CSS v4)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -81,7 +81,9 @@ function AvatarGroup({
|
|
|
81
81
|
aria-label={`${overflow} more`}
|
|
82
82
|
className={cn(
|
|
83
83
|
avatarVariants({ size }),
|
|
84
|
-
|
|
84
|
+
// Solid neutral fill so the chip reads as a distinct surface in both
|
|
85
|
+
// themes — the `bg-muted` token is only 4% opacity (near-transparent).
|
|
86
|
+
"bg-stone-200 font-medium text-stone-600 dark:bg-stone-700 dark:text-stone-200",
|
|
85
87
|
)}
|
|
86
88
|
data-slot="avatar-group-overflow"
|
|
87
89
|
>
|