@cntyclub/ui-react 0.10.5 → 0.10.7

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 CHANGED
@@ -1657,7 +1657,9 @@ function AvatarGroup({
1657
1657
  "aria-label": `${overflow} more`,
1658
1658
  className: cn(
1659
1659
  avatarVariants({ size }),
1660
- "bg-muted font-medium text-muted-foreground"
1660
+ // Solid neutral fill so the chip reads as a distinct surface in both
1661
+ // themes — the `bg-muted` token is only 4% opacity (near-transparent).
1662
+ "bg-stone-200 font-medium text-stone-600 dark:bg-stone-700 dark:text-stone-200"
1661
1663
  ),
1662
1664
  "data-slot": "avatar-group-overflow",
1663
1665
  children: [
@@ -10755,7 +10757,7 @@ function ImageUploadBase({
10755
10757
  className
10756
10758
  ),
10757
10759
  ...props,
10758
- children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col relative rounded-md", children: [
10760
+ children: /* @__PURE__ */ jsxs("div", { className: "grow flex flex-col relative rounded-md", children: [
10759
10761
  /* @__PURE__ */ jsx("input", { ...getInputProps() }),
10760
10762
  /* @__PURE__ */ jsxs(
10761
10763
  Avatar,
@@ -10772,7 +10774,7 @@ function ImageUploadBase({
10772
10774
  "div",
10773
10775
  {
10774
10776
  "data-active": loading || isDragActive,
10775
- className: "flex justify-center items-center [--opacity:0] p-8 data-[active=true]:[--opacity:1] peer-has-data-[slot=avatar-fallback]/avatar:[--opacity:1] group-hover/image-upload-root:[--opacity:1] relative z-10 rounded-[inherit] bg-background/[calc(55%*var(--opacity))] backdrop-blur-[calc(var(--blur-xs)*var(--opacity))] gap-3 transition",
10777
+ className: "grow flex justify-center items-center [--opacity:0] p-8 data-[active=true]:[--opacity:1] peer-has-data-[slot=avatar-fallback]/avatar:[--opacity:1] group-hover/image-upload-root:[--opacity:1] relative z-10 rounded-[inherit] bg-background/[calc(55%*var(--opacity))] backdrop-blur-[calc(var(--blur-xs)*var(--opacity))] gap-3 transition",
10776
10778
  children: [
10777
10779
  /* @__PURE__ */ jsxs(
10778
10780
  Button,