@invana/forms 0.0.29 → 0.0.30
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -1411,8 +1411,8 @@ var ParamRow = React2.forwardRef(
|
|
|
1411
1411
|
...props,
|
|
1412
1412
|
children: [
|
|
1413
1413
|
/* @__PURE__ */ jsxs("div", { className: "w-[118px] shrink-0 pt-1", children: [
|
|
1414
|
-
/* @__PURE__ */ jsx("div", { className: "truncate font-mono text-
|
|
1415
|
-
type != null ? /* @__PURE__ */ jsx("div", { className: "truncate text-
|
|
1414
|
+
/* @__PURE__ */ jsx("div", { className: "truncate font-mono text-sm", children: name }),
|
|
1415
|
+
type != null ? /* @__PURE__ */ jsx("div", { className: "truncate text-sm text-muted-foreground", children: type }) : null
|
|
1416
1416
|
] }),
|
|
1417
1417
|
/* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 flex-col gap-1", children: [
|
|
1418
1418
|
children ?? /* @__PURE__ */ jsxs("div", { className: "flex min-w-0", children: [
|
|
@@ -1428,7 +1428,7 @@ var ParamRow = React2.forwardRef(
|
|
|
1428
1428
|
{
|
|
1429
1429
|
triggerSize: "sm",
|
|
1430
1430
|
"aria-label": `${name} source`,
|
|
1431
|
-
className: "w-auto shrink-0 rounded-r-none border-r-0 text-
|
|
1431
|
+
className: "w-auto shrink-0 rounded-r-none border-r-0 text-sm text-muted-foreground",
|
|
1432
1432
|
children: /* @__PURE__ */ jsx(SelectValue, {})
|
|
1433
1433
|
}
|
|
1434
1434
|
),
|
|
@@ -1454,7 +1454,7 @@ var ParamRow = React2.forwardRef(
|
|
|
1454
1454
|
"div",
|
|
1455
1455
|
{
|
|
1456
1456
|
className: cn(
|
|
1457
|
-
"text-
|
|
1457
|
+
"text-sm",
|
|
1458
1458
|
invalid ? "text-destructive" : "text-muted-foreground"
|
|
1459
1459
|
),
|
|
1460
1460
|
children: note
|