@homebound/beam 3.13.0 → 3.13.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.cjs CHANGED
@@ -6166,8 +6166,11 @@ var zIndices = {
6166
6166
  // Side-nav layer. Mobile rail overlays page content when expanded; sits below
6167
6167
  // snackbar so toasts still land on top.
6168
6168
  sideNav: 100,
6169
- // Top of the stack.
6170
- snackbar: 120
6169
+ // Full-page overlays high enough to clear consuming-app nav bars (~999).
6170
+ // Both layouts own their Toast internally so it renders inside the overlay header.
6171
+ pageOverlay: 1e3,
6172
+ // Top of stack
6173
+ snackbar: 1100
6171
6174
  };
6172
6175
 
6173
6176
  // src/components/Table/components/ExpandableHeader.tsx
@@ -18695,7 +18698,21 @@ function FormPageLayoutComponent(props) {
18695
18698
  // since this layout will be replacing most superdrawers/sidebars, we keep the listing mounted below to preserve the users's
18696
18699
  // scroll position & filters
18697
18700
  // Adding "align-items: start" allows "position: sticky" to work within a grid for the sidebars
18698
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "fixed top0 bottom0 left0 right0 z_1000 oya bgWhite df jcc aifs", ...tids, children: /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { ...(0, import_runtime69.trussProps)({
18701
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { ...(0, import_runtime69.trussProps)({
18702
+ position: "fixed",
18703
+ top: "top0",
18704
+ bottom: "bottom0",
18705
+ left: "left0",
18706
+ right: "right0",
18707
+ zIndex: ["z_var", {
18708
+ "--zIndex": (0, import_runtime69.maybeCssVar)(zIndices.pageOverlay)
18709
+ }],
18710
+ overflowY: "oya",
18711
+ backgroundColor: "bgWhite",
18712
+ display: "df",
18713
+ justifyContent: "jcc",
18714
+ alignItems: "aifs"
18715
+ }), ...tids, children: /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { ...(0, import_runtime69.trussProps)({
18699
18716
  width: "w100",
18700
18717
  maxWidth: ["maxw_var", {
18701
18718
  "--maxWidth": `${maxContentWidthPx}px`
@@ -20381,8 +20398,21 @@ function TableReviewLayout(props) {
20381
20398
  bordered: true
20382
20399
  }, stickyHeader: true });
20383
20400
  }
20384
- return /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("div", { className: "fixed top0 bottom0 left0 right0 z_1000 bgWhite df fdc", ...tid, children: [
20401
+ return /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("div", { ...(0, import_runtime78.trussProps)({
20402
+ position: "fixed",
20403
+ top: "top0",
20404
+ bottom: "bottom0",
20405
+ left: "left0",
20406
+ right: "right0",
20407
+ zIndex: ["z_var", {
20408
+ "--zIndex": (0, import_runtime78.maybeCssVar)(zIndices.pageOverlay)
20409
+ }],
20410
+ backgroundColor: "bgWhite",
20411
+ display: "df",
20412
+ flexDirection: "fdc"
20413
+ }), ...tid, children: [
20385
20414
  /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("header", { className: "pl3 pr3 pt3 pb2 fs0", ...tid.header, children: [
20415
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(Toast, {}),
20386
20416
  /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("div", { className: "df jcsb aic", children: [
20387
20417
  /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("div", { children: [
20388
20418
  breadCrumb && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(PageHeaderBreadcrumbs, { breadcrumb: breadCrumb }),