@homebound/beam 3.68.0 → 3.68.1

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.js CHANGED
@@ -26045,23 +26045,25 @@ function FormSectionLayout(props) {
26045
26045
  sections
26046
26046
  } = props;
26047
26047
  const tid = useTestIds(props, "formSectionLayout");
26048
- return /* @__PURE__ */ jsxs107("div", { className: "df fdc gap3 w100 pt4 maxw_720px mla mra sm_pl2 sm_pr2", ...tid, children: [
26049
- /* @__PURE__ */ jsxs107("div", { className: "df fdc jcsb gap_12px", children: [
26050
- /* @__PURE__ */ jsxs107("div", { className: "df jcsb aic", children: [
26051
- /* @__PURE__ */ jsx209("h1", { className: "fw6 fz_20px lh_28px", ...tid.title, children: title }),
26052
- actions && /* @__PURE__ */ jsx209("div", { className: "df gap1 fs0", ...tid.actions, children: actions.map((action) => action.kind === "icon" ? /* @__PURE__ */ jsx209(IconButton, { ...action, variant: "outline" }, action.icon) : /* @__PURE__ */ jsx209(Button, { ...action }, `${action.label}`)) })
26048
+ return /* @__PURE__ */ jsxs107("div", { className: "df fdc gap8 w100 pt4 maxw_720px mla mra sm_pl2 sm_pr2", ...tid, children: [
26049
+ /* @__PURE__ */ jsxs107("div", { className: "df fdc gap3", children: [
26050
+ /* @__PURE__ */ jsxs107("div", { className: "df fdc jcsb gap_12px", children: [
26051
+ /* @__PURE__ */ jsxs107("div", { className: "df jcsb aic", children: [
26052
+ /* @__PURE__ */ jsx209("h1", { className: "fw6 fz_20px lh_28px", ...tid.title, children: title }),
26053
+ actions && /* @__PURE__ */ jsx209("div", { className: "df gap1 fs0", ...tid.actions, children: actions.map((action) => action.kind === "icon" ? /* @__PURE__ */ jsx209(IconButton, { ...action, variant: "outline" }, action.icon) : /* @__PURE__ */ jsx209(Button, { ...action }, `${action.label}`)) })
26054
+ ] }),
26055
+ description && /* @__PURE__ */ jsx209("div", { ...trussProps120({
26056
+ fontWeight: "fw4",
26057
+ fontSize: "fz_14px",
26058
+ lineHeight: "lh_20px",
26059
+ color: ["color_var", {
26060
+ "--color": "var(--b-on-surface)"
26061
+ }]
26062
+ }), ...tid.description, children: description })
26053
26063
  ] }),
26054
- description && /* @__PURE__ */ jsx209("div", { ...trussProps120({
26055
- fontWeight: "fw4",
26056
- fontSize: "fz_14px",
26057
- lineHeight: "lh_20px",
26058
- color: ["color_var", {
26059
- "--color": "var(--b-on-surface)"
26060
- }]
26061
- }), ...tid.description, children: description })
26064
+ initialFields
26062
26065
  ] }),
26063
- initialFields,
26064
- /* @__PURE__ */ jsx209("div", { className: "df fdc gap6", children: sections.map((section, i) => /* @__PURE__ */ jsx209(FormSection, { ...section }, defaultTestId(section.title) || i)) })
26066
+ /* @__PURE__ */ jsx209("div", { className: "df fdc gap8", children: sections.map((section, i) => /* @__PURE__ */ jsx209(FormSection, { ...section }, defaultTestId(section.title) || i)) })
26065
26067
  ] });
26066
26068
  }
26067
26069