@jackbernnie/hiyf 0.1.4 → 0.1.5

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.
@@ -12,7 +12,7 @@ function Card({
12
12
  "data-slot": "card",
13
13
  "data-size": size,
14
14
  className: cn(
15
- "group/card flex flex-col gap-(--card-spacing) overflow-hidden rounded-xl bg-card py-(--card-spacing) text-sm text-card-foreground shadow-xs ring-1 ring-foreground/10 [--card-spacing:--spacing(6)] has-[>img:first-child]:pt-0 data-[size=sm]:[--card-spacing:--spacing(4)] *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl",
15
+ "group/card flex flex-col gap-(--card-spacing) overflow-hidden rounded-xl bg-card px-(--card-spacing) py-(--card-spacing) text-sm text-card-foreground shadow-xs ring-1 ring-foreground/10 [--card-spacing:--spacing(6)] has-[>img:first-child]:pt-0 data-[size=sm]:[--card-spacing:--spacing(4)] *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl",
16
16
  className
17
17
  ),
18
18
  ...props
@@ -25,7 +25,7 @@ function CardHeader({ className, ...props }) {
25
25
  {
26
26
  "data-slot": "card-header",
27
27
  className: cn(
28
- "group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-(--card-spacing) has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-(--card-spacing)",
28
+ "group/card-header @container/card-header grid auto-rows-min items-start gap-1 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-(--card-spacing)",
29
29
  className
30
30
  ),
31
31
  ...props
@@ -60,7 +60,7 @@ function CardContent({ className, ...props }) {
60
60
  "div",
61
61
  {
62
62
  "data-slot": "card-content",
63
- className: cn("px-(--card-spacing)", className),
63
+ className: cn(className),
64
64
  ...props
65
65
  }
66
66
  );
@@ -71,7 +71,7 @@ function CardFooter({ className, ...props }) {
71
71
  {
72
72
  "data-slot": "card-footer",
73
73
  className: cn(
74
- "flex items-center rounded-b-xl px-(--card-spacing) [.border-t]:pt-(--card-spacing)",
74
+ "flex items-center rounded-b-xl [.border-t]:pt-(--card-spacing)",
75
75
  className
76
76
  ),
77
77
  ...props
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jackbernnie/hiyf",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "human-in-your-face — a personal, LLM-safe design system. Forked from Polar's Orbit (Apache-2.0).",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",