@turingpaper/ui 0.0.10 → 0.0.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/dist/table.mjs CHANGED
@@ -50,7 +50,7 @@ const f = l.forwardRef(({ className: e, ...a }, o) => /* @__PURE__ */ t(
50
50
  {
51
51
  ref: o,
52
52
  className: r(
53
- "h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",
53
+ "h-10 px-3 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",
54
54
  e
55
55
  ),
56
56
  ...a
@@ -61,7 +61,7 @@ const i = l.forwardRef(({ className: e, ...a }, o) => /* @__PURE__ */ t(
61
61
  "td",
62
62
  {
63
63
  ref: o,
64
- className: r("p-4 align-middle [&:has([role=checkbox])]:pr-0", e),
64
+ className: r("p-3 align-middle [&:has([role=checkbox])]:pr-0", e),
65
65
  ...a
66
66
  }
67
67
  ));
@@ -70,7 +70,7 @@ const n = l.forwardRef(({ className: e, ...a }, o) => /* @__PURE__ */ t(
70
70
  "caption",
71
71
  {
72
72
  ref: o,
73
- className: r("mt-4 text-sm text-muted-foreground", e),
73
+ className: r("mt-3 text-sm text-muted-foreground", e),
74
74
  ...a
75
75
  }
76
76
  ));
package/dist/tabs.mjs CHANGED
@@ -7,7 +7,7 @@ const b = e.Root, n = o.forwardRef(({ className: i, ...s }, t) => /* @__PURE__ *
7
7
  {
8
8
  ref: t,
9
9
  className: r(
10
- "inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground",
10
+ "inline-flex h-8 items-center justify-center rounded-md bg-muted p-0.5 text-muted-foreground",
11
11
  i
12
12
  ),
13
13
  ...s
@@ -19,7 +19,7 @@ const d = o.forwardRef(({ className: i, ...s }, t) => /* @__PURE__ */ a(
19
19
  {
20
20
  ref: t,
21
21
  className: r(
22
- "inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium transition-all focus-visible:outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-sm",
22
+ "inline-flex items-center justify-center whitespace-nowrap rounded-sm px-2.5 py-1 text-sm font-medium transition-all focus-visible:outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-sm",
23
23
  i
24
24
  ),
25
25
  ...s
@@ -31,7 +31,7 @@ const m = o.forwardRef(({ className: i, ...s }, t) => /* @__PURE__ */ a(
31
31
  {
32
32
  ref: t,
33
33
  className: r(
34
- "mt-2 focus-visible:outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50",
34
+ "mt-1.5 focus-visible:outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50",
35
35
  i
36
36
  ),
37
37
  ...s
package/dist/textarea.mjs CHANGED
@@ -5,7 +5,7 @@ const s = t.forwardRef(({ className: e, ...r }, o) => /* @__PURE__ */ i(
5
5
  "textarea",
6
6
  {
7
7
  className: a(
8
- "flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-base placeholder:text-muted-foreground focus-visible:outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
8
+ "flex min-h-[60px] w-full rounded-md border border-input bg-background px-2.5 py-1.5 text-base placeholder:text-muted-foreground focus-visible:outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
9
9
  e
10
10
  ),
11
11
  ref: o,
package/dist/toggle.mjs CHANGED
@@ -12,9 +12,9 @@ const l = d(
12
12
  outline: "border border-input bg-transparent hover:bg-accent hover:text-accent-foreground"
13
13
  },
14
14
  size: {
15
- default: "h-10 px-3 min-w-10",
16
- sm: "h-9 px-2.5 min-w-9",
17
- lg: "h-11 px-5 min-w-11"
15
+ default: "h-8 px-2.5 min-w-8",
16
+ sm: "h-7 px-2 min-w-7",
17
+ lg: "h-9 px-4 min-w-9"
18
18
  }
19
19
  },
20
20
  defaultVariants: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turingpaper/ui",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "type": "module",
5
5
  "description": "Pre-built Shadcn/ui component library for Turingpaper TSX functions",
6
6
  "license": "MIT",