@homebound/beam 2.382.0 → 2.383.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 +131 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +221 -133
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -7605,11 +7605,12 @@ type HeaderBreadcrumb = {
|
|
|
7605
7605
|
label: string;
|
|
7606
7606
|
};
|
|
7607
7607
|
|
|
7608
|
-
type
|
|
7608
|
+
type FormSection<F> = {
|
|
7609
7609
|
title?: string;
|
|
7610
7610
|
icon?: IconKey;
|
|
7611
7611
|
rows: BoundFormInputConfig<F>;
|
|
7612
|
-
}
|
|
7612
|
+
};
|
|
7613
|
+
type FormSectionConfig<F> = FormSection<F>[];
|
|
7613
7614
|
type ActionButtonProps = Pick<ButtonProps, "onClick" | "label" | "disabled" | "tooltip">;
|
|
7614
7615
|
type FormPageLayoutProps<F> = {
|
|
7615
7616
|
pageTitle: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -7605,11 +7605,12 @@ type HeaderBreadcrumb = {
|
|
|
7605
7605
|
label: string;
|
|
7606
7606
|
};
|
|
7607
7607
|
|
|
7608
|
-
type
|
|
7608
|
+
type FormSection<F> = {
|
|
7609
7609
|
title?: string;
|
|
7610
7610
|
icon?: IconKey;
|
|
7611
7611
|
rows: BoundFormInputConfig<F>;
|
|
7612
|
-
}
|
|
7612
|
+
};
|
|
7613
|
+
type FormSectionConfig<F> = FormSection<F>[];
|
|
7613
7614
|
type ActionButtonProps = Pick<ButtonProps, "onClick" | "label" | "disabled" | "tooltip">;
|
|
7614
7615
|
type FormPageLayoutProps<F> = {
|
|
7615
7616
|
pageTitle: string;
|