@turingpaper/ui 0.0.1-test.7 → 0.0.1-test.8
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/breadcrumb.mjs +37 -34
- package/dist/button.mjs +21 -18
- package/dist/components/command.d.ts +12 -12
- package/dist/input-otp.mjs +9 -9
- package/dist/input.mjs +9 -9
- package/dist/provider.mjs +1 -1
- package/dist/styles.css +1 -1
- package/dist/textarea.mjs +4 -4
- package/package.json +1 -1
package/dist/textarea.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import * as
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import * as t from "react";
|
|
3
3
|
import { cn as a } from "./utils.mjs";
|
|
4
|
-
const s =
|
|
4
|
+
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
|
|
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",
|
|
9
9
|
e
|
|
10
10
|
),
|
|
11
11
|
ref: o,
|