@homebound/beam 3.72.1 → 3.73.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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -10158,7 +10158,7 @@ type FormSectionLayoutProps = {
|
|
|
10158
10158
|
initialFields?: ReactNode;
|
|
10159
10159
|
/** Rendered top-right of the title row, e.g. an "Add items" Button. */
|
|
10160
10160
|
actions?: FormSectionAction[];
|
|
10161
|
-
sections
|
|
10161
|
+
sections?: FormSectionProps[];
|
|
10162
10162
|
};
|
|
10163
10163
|
/** Centered (720px) width/column shell for a form built out of `FormSection`s — e.g. as a `WorkflowLayoutStep`'s `content`. */
|
|
10164
10164
|
declare function FormSectionLayout(props: FormSectionLayoutProps): JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -10158,7 +10158,7 @@ type FormSectionLayoutProps = {
|
|
|
10158
10158
|
initialFields?: ReactNode;
|
|
10159
10159
|
/** Rendered top-right of the title row, e.g. an "Add items" Button. */
|
|
10160
10160
|
actions?: FormSectionAction[];
|
|
10161
|
-
sections
|
|
10161
|
+
sections?: FormSectionProps[];
|
|
10162
10162
|
};
|
|
10163
10163
|
/** Centered (720px) width/column shell for a form built out of `FormSection`s — e.g. as a `WorkflowLayoutStep`'s `content`. */
|
|
10164
10164
|
declare function FormSectionLayout(props: FormSectionLayoutProps): JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -26149,7 +26149,7 @@ function FormSectionLayout(props) {
|
|
|
26149
26149
|
] }),
|
|
26150
26150
|
initialFields
|
|
26151
26151
|
] }),
|
|
26152
|
-
/* @__PURE__ */ jsx209("div", { className: "df fdc gap8", children: sections.map((section, i) => /* @__PURE__ */ jsx209(FormSection, { ...section }, defaultTestId(section.title) || i)) })
|
|
26152
|
+
sections && /* @__PURE__ */ jsx209("div", { className: "df fdc gap8", children: sections.map((section, i) => /* @__PURE__ */ jsx209(FormSection, { ...section }, defaultTestId(section.title) || i)) })
|
|
26153
26153
|
] });
|
|
26154
26154
|
}
|
|
26155
26155
|
|