@arbidocs/blocks 0.3.162 → 0.3.164

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 CHANGED
@@ -1236,7 +1236,7 @@ function EntityIdentityBar({
1236
1236
  /* @__PURE__ */ jsxRuntime.jsxs("dl", { className: "min-w-0 flex-1 space-y-1.5", children: [
1237
1237
  fields.map((field) => /* @__PURE__ */ jsxRuntime.jsx(IdentityFieldRow, { field, canEdit }, field.label)),
1238
1238
  extraRows.map((row) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex min-w-0 items-center gap-2", "data-testid": row.testId, children: [
1239
- /* @__PURE__ */ jsxRuntime.jsxs("dt", { className: "w-24 shrink-0 text-xs font-medium text-muted-foreground", children: [
1239
+ /* @__PURE__ */ jsxRuntime.jsxs("dt", { className: "w-24 shrink-0 text-sm font-medium text-muted-foreground", children: [
1240
1240
  row.label,
1241
1241
  ":"
1242
1242
  ] }),
@@ -1304,7 +1304,7 @@ function IdentityFieldRow({ field, canEdit }) {
1304
1304
  "dt",
1305
1305
  {
1306
1306
  className: react.cn(
1307
- "w-24 shrink-0 text-xs font-medium text-muted-foreground",
1307
+ "w-24 shrink-0 text-sm font-medium text-muted-foreground",
1308
1308
  multiline && "pt-1"
1309
1309
  ),
1310
1310
  children: [
@@ -1320,15 +1320,9 @@ function IdentityFieldRow({ field, canEdit }) {
1320
1320
  {
1321
1321
  ...shared,
1322
1322
  rows: 2,
1323
- className: react.cn(fieldClass, "min-h-0 resize-none text-sm leading-snug")
1323
+ className: react.cn(fieldClass, "min-h-0 resize-none leading-snug", valueClassName)
1324
1324
  }
1325
- ) : /* @__PURE__ */ jsxRuntime.jsx(
1326
- react.Input,
1327
- {
1328
- ...shared,
1329
- className: react.cn(fieldClass, "pr-20 text-xl font-semibold tracking-tight")
1330
- }
1331
- ),
1325
+ ) : /* @__PURE__ */ jsxRuntime.jsx(react.Input, { ...shared, className: react.cn(fieldClass, "pr-20", valueClassName) }),
1332
1326
  charsLeft !== null && charsLeft <= COUNTER_THRESHOLD && /* @__PURE__ */ jsxRuntime.jsx(
1333
1327
  "span",
1334
1328
  {