@homebound/beam 3.39.0 → 3.40.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 +91 -42
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +88 -40
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -182,6 +182,7 @@ __export(index_exports, {
|
|
|
182
182
|
Tabs: () => Tabs,
|
|
183
183
|
TabsWithContent: () => TabsWithContent,
|
|
184
184
|
Tag: () => Tag,
|
|
185
|
+
TagGroup: () => TagGroup,
|
|
185
186
|
TextAreaField: () => TextAreaField,
|
|
186
187
|
TextField: () => TextField,
|
|
187
188
|
Toast: () => Toast,
|
|
@@ -9380,7 +9381,7 @@ function RowImpl(props) {
|
|
|
9380
9381
|
const tooltip = isGridCellContent(maybeContent) ? maybeContent.tooltip : void 0;
|
|
9381
9382
|
const renderFn = (rowStyle?.renderCell || rowStyle?.rowLink) && wrapAction ? rowLinkRenderFn(as, currentColspan) : isHeader || isTotals || isExpandableHeader ? headerRenderFn(column2, as, currentColspan) : rowStyle?.onClick && wrapAction ? rowClickRenderFn(as, api, currentColspan) : defaultRenderFn(as, currentColspan);
|
|
9382
9383
|
const cellElement = renderFn(columnIndex, cellCss, content, row, rowStyle, void 0, cellOnClick, tooltip);
|
|
9383
|
-
if (!disableColumnResizing && isHeader && columnIndex < columns.length - 1 && currentColspan === 1 &&
|
|
9384
|
+
if (!disableColumnResizing && isHeader && columnIndex < columns.length - 1 && currentColspan === 1 && isContentColumn(column2)) {
|
|
9384
9385
|
const currentSizeStr = columnSizes[columnIndex];
|
|
9385
9386
|
const minWidthPx = column2.mw ? parseInt(column2.mw.replace("px", ""), 10) : 100;
|
|
9386
9387
|
const currentWidthPx = parseWidthToPx(currentSizeStr, void 0) ?? resizedWidths?.[column2.id] ?? minWidthPx;
|
|
@@ -21984,6 +21985,7 @@ function Tag(props) {
|
|
|
21984
21985
|
const {
|
|
21985
21986
|
text,
|
|
21986
21987
|
type,
|
|
21988
|
+
variant = "primary",
|
|
21987
21989
|
xss,
|
|
21988
21990
|
preventTooltip = false,
|
|
21989
21991
|
iconOnly,
|
|
@@ -21993,8 +21995,10 @@ function Tag(props) {
|
|
|
21993
21995
|
const isIconOnly = !!iconOnly && !!icon;
|
|
21994
21996
|
const {
|
|
21995
21997
|
background,
|
|
21996
|
-
iconColor
|
|
21997
|
-
|
|
21998
|
+
iconColor,
|
|
21999
|
+
typography,
|
|
22000
|
+
padding
|
|
22001
|
+
} = getVariantStyles(variant, type);
|
|
21998
22002
|
const tid = useTestIds(otherProps);
|
|
21999
22003
|
const [showTooltip, setShowTooltip] = (0, import_react117.useState)(false);
|
|
22000
22004
|
const ref = (0, import_react117.useRef)(null);
|
|
@@ -22013,10 +22017,6 @@ function Tag(props) {
|
|
|
22013
22017
|
...{
|
|
22014
22018
|
position: "relative",
|
|
22015
22019
|
display: "dif",
|
|
22016
|
-
fontWeight: "fw6",
|
|
22017
|
-
fontSize: "fz_10px",
|
|
22018
|
-
lineHeight: "lh_14px",
|
|
22019
|
-
textTransform: "ttu",
|
|
22020
22020
|
alignItems: "aic",
|
|
22021
22021
|
gap: "gap_4px",
|
|
22022
22022
|
paddingTop: "pt_2px",
|
|
@@ -22024,13 +22024,11 @@ function Tag(props) {
|
|
|
22024
22024
|
color: "gray900",
|
|
22025
22025
|
borderRadius: "br4"
|
|
22026
22026
|
},
|
|
22027
|
+
...typography,
|
|
22027
22028
|
...isIconOnly ? {
|
|
22028
22029
|
paddingLeft: "pl_2px",
|
|
22029
22030
|
paddingRight: "pr_2px"
|
|
22030
|
-
} :
|
|
22031
|
-
paddingLeft: "pl_6px",
|
|
22032
|
-
paddingRight: "pr_6px"
|
|
22033
|
-
},
|
|
22031
|
+
} : padding,
|
|
22034
22032
|
...background,
|
|
22035
22033
|
...xss
|
|
22036
22034
|
}), children: [
|
|
@@ -22039,7 +22037,42 @@ function Tag(props) {
|
|
|
22039
22037
|
] })
|
|
22040
22038
|
});
|
|
22041
22039
|
}
|
|
22042
|
-
function
|
|
22040
|
+
function getVariantStyles(variant, type) {
|
|
22041
|
+
if (variant === "secondary") {
|
|
22042
|
+
return {
|
|
22043
|
+
background: {
|
|
22044
|
+
backgroundColor: "bgWhite",
|
|
22045
|
+
borderColor: "bcGray300",
|
|
22046
|
+
borderWidth: "bw1",
|
|
22047
|
+
borderStyle: "bss"
|
|
22048
|
+
},
|
|
22049
|
+
iconColor: "rgba(100, 100, 100, 1)" /* Gray700 */,
|
|
22050
|
+
typography: {
|
|
22051
|
+
fontWeight: "fw4",
|
|
22052
|
+
fontSize: "fz_12px",
|
|
22053
|
+
lineHeight: "lh_16px"
|
|
22054
|
+
},
|
|
22055
|
+
padding: {
|
|
22056
|
+
paddingLeft: "pl_8px",
|
|
22057
|
+
paddingRight: "pr_8px"
|
|
22058
|
+
}
|
|
22059
|
+
};
|
|
22060
|
+
}
|
|
22061
|
+
return {
|
|
22062
|
+
...getPrimaryStyles(type),
|
|
22063
|
+
typography: {
|
|
22064
|
+
fontWeight: "fw6",
|
|
22065
|
+
fontSize: "fz_10px",
|
|
22066
|
+
lineHeight: "lh_14px",
|
|
22067
|
+
textTransform: "ttu"
|
|
22068
|
+
},
|
|
22069
|
+
padding: {
|
|
22070
|
+
paddingLeft: "pl_6px",
|
|
22071
|
+
paddingRight: "pr_6px"
|
|
22072
|
+
}
|
|
22073
|
+
};
|
|
22074
|
+
}
|
|
22075
|
+
function getPrimaryStyles(type) {
|
|
22043
22076
|
switch (type) {
|
|
22044
22077
|
case "info":
|
|
22045
22078
|
return {
|
|
@@ -24709,6 +24742,21 @@ function visit(rows, fn) {
|
|
|
24709
24742
|
}
|
|
24710
24743
|
}
|
|
24711
24744
|
|
|
24745
|
+
// src/components/TagGroup.tsx
|
|
24746
|
+
var import_jsx_runtime192 = require("react/jsx-runtime");
|
|
24747
|
+
function TagGroup(props) {
|
|
24748
|
+
const {
|
|
24749
|
+
tags,
|
|
24750
|
+
onEdit,
|
|
24751
|
+
...otherProps
|
|
24752
|
+
} = props;
|
|
24753
|
+
const tid = useTestIds(otherProps, "tagGroup");
|
|
24754
|
+
return /* @__PURE__ */ (0, import_jsx_runtime192.jsxs)("div", { ...tid, className: "df aic fww gap1", children: [
|
|
24755
|
+
tags.map((tag) => /* @__PURE__ */ (0, import_jsx_runtime192.jsx)(Tag, { ...tag, variant: "secondary" }, tag.text)),
|
|
24756
|
+
onEdit && /* @__PURE__ */ (0, import_jsx_runtime192.jsx)("span", { className: "ml1 fw4 fz_14px lh_20px", children: /* @__PURE__ */ (0, import_jsx_runtime192.jsx)(Button, { label: "Edit", variant: "text", onClick: onEdit, ...tid.edit }) })
|
|
24757
|
+
] });
|
|
24758
|
+
}
|
|
24759
|
+
|
|
24712
24760
|
// src/components/Toast/useToast.tsx
|
|
24713
24761
|
var import_react140 = require("react");
|
|
24714
24762
|
function useToast() {
|
|
@@ -24719,14 +24767,14 @@ function useToast() {
|
|
|
24719
24767
|
|
|
24720
24768
|
// src/layouts/SideNavLayout/SideNavLayout.tsx
|
|
24721
24769
|
var import_runtime108 = require("@homebound/truss/runtime");
|
|
24722
|
-
var
|
|
24770
|
+
var import_jsx_runtime193 = require("react/jsx-runtime");
|
|
24723
24771
|
var __maybeInc21 = (inc) => {
|
|
24724
24772
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
24725
24773
|
};
|
|
24726
24774
|
function SideNavLayout(props) {
|
|
24727
24775
|
const hasProvider = useHasSideNavLayoutProvider();
|
|
24728
|
-
if (hasProvider) return /* @__PURE__ */ (0,
|
|
24729
|
-
return /* @__PURE__ */ (0,
|
|
24776
|
+
if (hasProvider) return /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(SideNavLayoutContent, { ...props });
|
|
24777
|
+
return /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(SideNavLayoutProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(SideNavLayoutContent, { ...props }) });
|
|
24730
24778
|
}
|
|
24731
24779
|
function SideNavLayoutContent(props) {
|
|
24732
24780
|
const {
|
|
@@ -24748,7 +24796,7 @@ function SideNavLayoutContent(props) {
|
|
|
24748
24796
|
const railOffsetPx = !showRail ? 0 : !bp.mdAndUp || collapsed ? railCollapsedWidthPx : railWidthPx;
|
|
24749
24797
|
const navTop = bannerAndNavbarChromeTop();
|
|
24750
24798
|
const railViewportHeight = `calc(var(${beamLayoutViewportHeightVar}, 100vh) - var(${beamEnvironmentBannerLayoutHeightVar}, 0px) - var(${beamNavbarLayoutHeightVar}, 0px))`;
|
|
24751
|
-
const rail = showRail && /* @__PURE__ */ (0,
|
|
24799
|
+
const rail = showRail && /* @__PURE__ */ (0, import_jsx_runtime193.jsxs)("div", { ...(0, import_runtime108.trussProps)({
|
|
24752
24800
|
...{
|
|
24753
24801
|
display: "df",
|
|
24754
24802
|
flexDirection: "fdc",
|
|
@@ -24805,18 +24853,18 @@ function SideNavLayoutContent(props) {
|
|
|
24805
24853
|
}
|
|
24806
24854
|
}
|
|
24807
24855
|
}), ...tid.sideNav, children: [
|
|
24808
|
-
showCollapseToggle && /* @__PURE__ */ (0,
|
|
24809
|
-
/* @__PURE__ */ (0,
|
|
24856
|
+
showCollapseToggle && /* @__PURE__ */ (0, import_jsx_runtime193.jsx)("div", { className: "absolute right2 top2 z2", children: /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(IconButton, { icon: collapsed ? "menuOpen" : "menuClose", label: collapsed ? "Expand navigation" : "Collapse navigation", onClick: () => setNavState(collapsed ? "expanded" : "collapse"), ...tid.toggle }) }),
|
|
24857
|
+
/* @__PURE__ */ (0, import_jsx_runtime193.jsx)("div", { className: "fg1 mh0 df fdc", ...tid.sideNavContent, children: /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(SideNav, { ...sideNav }) })
|
|
24810
24858
|
] });
|
|
24811
|
-
return /* @__PURE__ */ (0,
|
|
24859
|
+
return /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(DocumentScrollLayoutProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime193.jsxs)("div", { ...(0, import_runtime108.mergeProps)(void 0, {
|
|
24812
24860
|
[beamSideNavLayoutWidthVar]: `${railOffsetPx}px`
|
|
24813
24861
|
}, {
|
|
24814
24862
|
display: "df",
|
|
24815
24863
|
flexDirection: "fdr",
|
|
24816
24864
|
width: "w100"
|
|
24817
24865
|
}), ...tid, children: [
|
|
24818
|
-
contrastRail ? /* @__PURE__ */ (0,
|
|
24819
|
-
/* @__PURE__ */ (0,
|
|
24866
|
+
contrastRail ? /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(ContrastScope, { children: rail }) : rail,
|
|
24867
|
+
/* @__PURE__ */ (0, import_jsx_runtime193.jsx)("div", { ...(0, import_runtime108.trussProps)({
|
|
24820
24868
|
display: "df",
|
|
24821
24869
|
flexDirection: "fdc",
|
|
24822
24870
|
flexGrow: "fg1",
|
|
@@ -24833,7 +24881,7 @@ function SideNavLayoutContent(props) {
|
|
|
24833
24881
|
|
|
24834
24882
|
// src/layouts/EnvironmentBannerLayout/EnvironmentBannerLayout.tsx
|
|
24835
24883
|
var import_runtime109 = require("@homebound/truss/runtime");
|
|
24836
|
-
var
|
|
24884
|
+
var import_jsx_runtime194 = require("react/jsx-runtime");
|
|
24837
24885
|
var __maybeInc22 = (inc) => {
|
|
24838
24886
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
24839
24887
|
};
|
|
@@ -24849,18 +24897,18 @@ function EnvironmentBannerLayout(props) {
|
|
|
24849
24897
|
[beamEnvironmentBannerLayoutHeightVar]: `${bannerHeightPx}px`
|
|
24850
24898
|
};
|
|
24851
24899
|
const innerWidth = `var(${beamLayoutViewportWidthVar}, 100vw)`;
|
|
24852
|
-
return /* @__PURE__ */ (0,
|
|
24900
|
+
return /* @__PURE__ */ (0, import_jsx_runtime194.jsx)(DocumentScrollLayoutProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime194.jsx)(EnvironmentBannerLayoutHeightProvider, { value: bannerHeightPx, children: /* @__PURE__ */ (0, import_jsx_runtime194.jsxs)("div", { ...(0, import_runtime109.mergeProps)(void 0, style, {
|
|
24853
24901
|
display: "df",
|
|
24854
24902
|
flexDirection: "fdc",
|
|
24855
24903
|
width: "wfc",
|
|
24856
24904
|
minWidth: "mw100"
|
|
24857
24905
|
}), ...tid, children: [
|
|
24858
|
-
showBanner && environmentBanner && /* @__PURE__ */ (0,
|
|
24906
|
+
showBanner && environmentBanner && /* @__PURE__ */ (0, import_jsx_runtime194.jsx)("div", { ...(0, import_runtime109.mergeProps)(void 0, {
|
|
24859
24907
|
height: environmentBannerSizePx
|
|
24860
24908
|
}, {
|
|
24861
24909
|
flexShrink: "fs0",
|
|
24862
24910
|
width: "w100"
|
|
24863
|
-
}), children: /* @__PURE__ */ (0,
|
|
24911
|
+
}), children: /* @__PURE__ */ (0, import_jsx_runtime194.jsx)("div", { ...(0, import_runtime109.trussProps)({
|
|
24864
24912
|
position: "fixed",
|
|
24865
24913
|
top: "top0",
|
|
24866
24914
|
left: "left0",
|
|
@@ -24870,7 +24918,7 @@ function EnvironmentBannerLayout(props) {
|
|
|
24870
24918
|
width: ["w_var", {
|
|
24871
24919
|
"--width": (0, import_runtime109.maybeCssVar)(__maybeInc22(innerWidth))
|
|
24872
24920
|
}]
|
|
24873
|
-
}), ...tid.bannerSticky, children: /* @__PURE__ */ (0,
|
|
24921
|
+
}), ...tid.bannerSticky, children: /* @__PURE__ */ (0, import_jsx_runtime194.jsx)(EnvironmentBanner, { ...environmentBanner, ...tid.environmentBanner }) }) }),
|
|
24874
24922
|
children
|
|
24875
24923
|
] }) }) });
|
|
24876
24924
|
}
|
|
@@ -24970,7 +25018,7 @@ function useAutoHideOnScroll(spacerRef, enabled, getTopOffset) {
|
|
|
24970
25018
|
}
|
|
24971
25019
|
|
|
24972
25020
|
// src/layouts/useMeasuredHeight.ts
|
|
24973
|
-
var
|
|
25021
|
+
var import_utils161 = require("@react-aria/utils");
|
|
24974
25022
|
var import_react142 = require("react");
|
|
24975
25023
|
function useMeasuredHeight(ref, enabled) {
|
|
24976
25024
|
const [height, setHeight] = (0, import_react142.useState)(0);
|
|
@@ -24979,7 +25027,7 @@ function useMeasuredHeight(ref, enabled) {
|
|
|
24979
25027
|
const next = el ? Math.round(el.getBoundingClientRect().height) : 0;
|
|
24980
25028
|
setHeight((prev) => prev === next ? prev : next);
|
|
24981
25029
|
}, [ref]);
|
|
24982
|
-
(0,
|
|
25030
|
+
(0, import_utils161.useResizeObserver)({ ref, onResize: syncElementHeight });
|
|
24983
25031
|
(0, import_react142.useLayoutEffect)(() => {
|
|
24984
25032
|
syncElementHeight();
|
|
24985
25033
|
}, [enabled, syncElementHeight]);
|
|
@@ -24988,17 +25036,17 @@ function useMeasuredHeight(ref, enabled) {
|
|
|
24988
25036
|
|
|
24989
25037
|
// src/layouts/NavbarLayout/NavbarLayoutHeightContext.tsx
|
|
24990
25038
|
var import_react143 = require("react");
|
|
24991
|
-
var
|
|
25039
|
+
var import_jsx_runtime195 = require("react/jsx-runtime");
|
|
24992
25040
|
var NavbarLayoutHeightContext = (0, import_react143.createContext)(0);
|
|
24993
25041
|
function NavbarLayoutHeightProvider({ value, children }) {
|
|
24994
|
-
return /* @__PURE__ */ (0,
|
|
25042
|
+
return /* @__PURE__ */ (0, import_jsx_runtime195.jsx)(NavbarLayoutHeightContext.Provider, { value, children });
|
|
24995
25043
|
}
|
|
24996
25044
|
function useNavbarLayoutHeight() {
|
|
24997
25045
|
return (0, import_react143.useContext)(NavbarLayoutHeightContext);
|
|
24998
25046
|
}
|
|
24999
25047
|
|
|
25000
25048
|
// src/layouts/NavbarLayout/NavbarLayout.tsx
|
|
25001
|
-
var
|
|
25049
|
+
var import_jsx_runtime196 = require("react/jsx-runtime");
|
|
25002
25050
|
var __maybeInc23 = (inc) => {
|
|
25003
25051
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
25004
25052
|
};
|
|
@@ -25051,20 +25099,20 @@ function NavbarLayout(props) {
|
|
|
25051
25099
|
const innerStyle = autoHideState !== "static" ? {
|
|
25052
25100
|
top: autoHideState === "revealed" ? bannerTop : `calc(${bannerTop} - ${navHeight}px)`
|
|
25053
25101
|
} : void 0;
|
|
25054
|
-
const navbarEl = (0, import_react144.useMemo)(() => /* @__PURE__ */ (0,
|
|
25055
|
-
return /* @__PURE__ */ (0,
|
|
25102
|
+
const navbarEl = (0, import_react144.useMemo)(() => /* @__PURE__ */ (0, import_jsx_runtime196.jsx)(Navbar, { ...navbar }), [navbar]);
|
|
25103
|
+
return /* @__PURE__ */ (0, import_jsx_runtime196.jsx)(DocumentScrollLayoutProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime196.jsx)(NavbarLayoutHeightProvider, { value: navbarOffsetPx, children: /* @__PURE__ */ (0, import_jsx_runtime196.jsxs)("div", { ...(0, import_runtime110.mergeProps)(void 0, cssVars, {
|
|
25056
25104
|
display: "df",
|
|
25057
25105
|
flexDirection: "fdc",
|
|
25058
25106
|
width: "wfc",
|
|
25059
25107
|
minWidth: "mw100"
|
|
25060
25108
|
}), ...tid, children: [
|
|
25061
|
-
/* @__PURE__ */ (0,
|
|
25109
|
+
/* @__PURE__ */ (0, import_jsx_runtime196.jsx)("div", { ref: spacerRef, ...(0, import_runtime110.mergeProps)(void 0, {
|
|
25062
25110
|
height: navHeight
|
|
25063
25111
|
}, {
|
|
25064
25112
|
flexShrink: "fs0",
|
|
25065
25113
|
width: "w100"
|
|
25066
|
-
}), children: /* @__PURE__ */ (0,
|
|
25067
|
-
/* @__PURE__ */ (0,
|
|
25114
|
+
}), children: /* @__PURE__ */ (0, import_jsx_runtime196.jsx)("div", { ref: navMetricsRef, ...(0, import_runtime110.mergeProps)(void 0, innerStyle, innerCss), ...tid.navbar, children: navbarEl }) }),
|
|
25115
|
+
/* @__PURE__ */ (0, import_jsx_runtime196.jsx)("div", { className: "df fdc mh0 mw100 w100", ...tid.body, children })
|
|
25068
25116
|
] }) }) });
|
|
25069
25117
|
}
|
|
25070
25118
|
|
|
@@ -25078,7 +25126,7 @@ function useBannerAndNavbarHeight() {
|
|
|
25078
25126
|
|
|
25079
25127
|
// src/layouts/PageHeaderLayout/PageHeaderLayout.tsx
|
|
25080
25128
|
var import_runtime111 = require("@homebound/truss/runtime");
|
|
25081
|
-
var
|
|
25129
|
+
var import_jsx_runtime197 = require("react/jsx-runtime");
|
|
25082
25130
|
var __maybeInc24 = (inc) => {
|
|
25083
25131
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
25084
25132
|
};
|
|
@@ -25133,19 +25181,19 @@ function PageHeaderLayout(props) {
|
|
|
25133
25181
|
const innerStyle = autoHideState !== "static" ? {
|
|
25134
25182
|
top: autoHideState === "revealed" ? outerTop : `calc(${outerTop} - ${headerHeight}px)`
|
|
25135
25183
|
} : void 0;
|
|
25136
|
-
const pageHeaderEl = (0, import_react145.useMemo)(() => /* @__PURE__ */ (0,
|
|
25137
|
-
return /* @__PURE__ */ (0,
|
|
25184
|
+
const pageHeaderEl = (0, import_react145.useMemo)(() => /* @__PURE__ */ (0, import_jsx_runtime197.jsx)(PageHeader2, { ...pageHeader }), [pageHeader]);
|
|
25185
|
+
return /* @__PURE__ */ (0, import_jsx_runtime197.jsx)(DocumentScrollLayoutProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime197.jsxs)("div", { ...(0, import_runtime111.mergeProps)(void 0, cssVars, {
|
|
25138
25186
|
display: "df",
|
|
25139
25187
|
flexDirection: "fdc",
|
|
25140
25188
|
width: "w100"
|
|
25141
25189
|
}), ...tid, children: [
|
|
25142
|
-
/* @__PURE__ */ (0,
|
|
25190
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)("div", { ref: spacerRef, ...(0, import_runtime111.mergeProps)(void 0, {
|
|
25143
25191
|
height: headerHeight
|
|
25144
25192
|
}, {
|
|
25145
25193
|
flexShrink: "fs0",
|
|
25146
25194
|
width: "w100"
|
|
25147
|
-
}), children: /* @__PURE__ */ (0,
|
|
25148
|
-
/* @__PURE__ */ (0,
|
|
25195
|
+
}), children: /* @__PURE__ */ (0, import_jsx_runtime197.jsx)("div", { ref: headerMetricsRef, ...(0, import_runtime111.mergeProps)(void 0, innerStyle, innerCss), ...tid.pageHeader, children: pageHeaderEl }) }),
|
|
25196
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)("div", { className: "df fdc fg1 mh0 w100", ...tid.body, children })
|
|
25149
25197
|
] }) });
|
|
25150
25198
|
}
|
|
25151
25199
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -25302,6 +25350,7 @@ function PageHeaderLayout(props) {
|
|
|
25302
25350
|
Tabs,
|
|
25303
25351
|
TabsWithContent,
|
|
25304
25352
|
Tag,
|
|
25353
|
+
TagGroup,
|
|
25305
25354
|
TextAreaField,
|
|
25306
25355
|
TextField,
|
|
25307
25356
|
Toast,
|