@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.
@@ -4467,6 +4467,7 @@ export declare const TwoColumnsList: ForwardRefExoticComponent<TwoColumnsListTyp
4467
4467
 
4468
4468
  declare interface TwoColumnsListType {
4469
4469
  title?: string;
4470
+ titleValue?: string;
4470
4471
  list: TwoColumnsItemType[];
4471
4472
  }
4472
4473
 
@@ -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: "basis-16 justify-self-end text-right font-medium", children: e })
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, list: n }, i) {
55135
- return /* @__PURE__ */ b("div", { ref: i, className: "flex flex-col gap-2", children: [
55136
- e && /* @__PURE__ */ f("div", { className: "font-medium", children: e }),
55137
- n.map((r) => /* @__PURE__ */ f(xK, { title: r.title, info: r.info }, r.title))
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
  );