@homebound/beam 2.413.0-alpha.5 → 2.413.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 +40 -17
- 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 +120 -97
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4571,8 +4571,8 @@ type GridColumn<R extends Kinded> = {
|
|
|
4571
4571
|
name?: string;
|
|
4572
4572
|
/** Flag that will allow to know which columns are hide-able */
|
|
4573
4573
|
canHide?: boolean;
|
|
4574
|
-
/** Flag that will allow
|
|
4575
|
-
|
|
4574
|
+
/** Flag that will allow hide-able columns to be hidden on initial load */
|
|
4575
|
+
initHidden?: boolean;
|
|
4576
4576
|
/** A list of columns that should only be shown when this column is "expanded" */
|
|
4577
4577
|
expandColumns?: GridColumn<R>[] | (() => Promise<GridColumn<R>[]>);
|
|
4578
4578
|
/** Determines whether the group should initially be expanded on load of the table */
|
|
@@ -7579,6 +7579,7 @@ declare function RightSidebar({ content, headerHeightPx }: RightSidebarProps): _
|
|
|
7579
7579
|
type HeaderBreadcrumb = {
|
|
7580
7580
|
href: string;
|
|
7581
7581
|
label: string;
|
|
7582
|
+
right?: ReactNode;
|
|
7582
7583
|
};
|
|
7583
7584
|
|
|
7584
7585
|
type FormSection<F> = {
|
package/dist/index.d.ts
CHANGED
|
@@ -4571,8 +4571,8 @@ type GridColumn<R extends Kinded> = {
|
|
|
4571
4571
|
name?: string;
|
|
4572
4572
|
/** Flag that will allow to know which columns are hide-able */
|
|
4573
4573
|
canHide?: boolean;
|
|
4574
|
-
/** Flag that will allow
|
|
4575
|
-
|
|
4574
|
+
/** Flag that will allow hide-able columns to be hidden on initial load */
|
|
4575
|
+
initHidden?: boolean;
|
|
4576
4576
|
/** A list of columns that should only be shown when this column is "expanded" */
|
|
4577
4577
|
expandColumns?: GridColumn<R>[] | (() => Promise<GridColumn<R>[]>);
|
|
4578
4578
|
/** Determines whether the group should initially be expanded on load of the table */
|
|
@@ -7579,6 +7579,7 @@ declare function RightSidebar({ content, headerHeightPx }: RightSidebarProps): _
|
|
|
7579
7579
|
type HeaderBreadcrumb = {
|
|
7580
7580
|
href: string;
|
|
7581
7581
|
label: string;
|
|
7582
|
+
right?: ReactNode;
|
|
7582
7583
|
};
|
|
7583
7584
|
|
|
7584
7585
|
type FormSection<F> = {
|