@factorialco/f0-react 1.186.2 → 1.187.0
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/experimental.d.ts +1 -0
- package/dist/experimental.js +8 -5
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
package/dist/experimental.js
CHANGED
|
@@ -55129,12 +55129,15 @@ function kJ({
|
|
|
55129
55129
|
}
|
|
55130
55130
|
const xK = ({ title: t, info: e }) => /* @__PURE__ */ b("div", { className: "flex items-center justify-between", children: [
|
|
55131
55131
|
/* @__PURE__ */ f("p", { className: "flex text-f1-foreground-secondary", children: t }),
|
|
55132
|
-
/* @__PURE__ */ f("div", { className: "
|
|
55132
|
+
/* @__PURE__ */ f("div", { className: "max-w-32 flex-shrink-0 overflow-hidden text-ellipsis whitespace-nowrap text-right font-medium", children: e })
|
|
55133
55133
|
] }), wJ = H(
|
|
55134
|
-
function({ title: e,
|
|
55135
|
-
return /* @__PURE__ */ b("div", { ref:
|
|
55136
|
-
e && /* @__PURE__ */
|
|
55137
|
-
|
|
55134
|
+
function({ title: e, titleValue: n, list: i }, r) {
|
|
55135
|
+
return /* @__PURE__ */ b("div", { ref: r, className: "flex flex-col gap-2", children: [
|
|
55136
|
+
e && /* @__PURE__ */ b("div", { className: "flex items-center justify-between gap-2 font-medium", children: [
|
|
55137
|
+
/* @__PURE__ */ f("div", { children: e }),
|
|
55138
|
+
n && /* @__PURE__ */ f("div", { children: n })
|
|
55139
|
+
] }),
|
|
55140
|
+
i.map((s) => /* @__PURE__ */ f(xK, { title: s.title, info: s.info }, s.title))
|
|
55138
55141
|
] });
|
|
55139
55142
|
}
|
|
55140
55143
|
);
|