@homebound/beam 3.64.0 → 3.66.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/Css.json +1 -0
- package/dist/index.cjs +382 -365
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -5
- package/dist/index.d.ts +31 -5
- package/dist/index.js +157 -140
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3849,6 +3849,14 @@ var CssBuilder = class _CssBuilder {
|
|
|
3849
3849
|
fontFamily(value) {
|
|
3850
3850
|
return this.add("fontFamily", value);
|
|
3851
3851
|
}
|
|
3852
|
+
// layoutContainer
|
|
3853
|
+
/** Sets `width: "calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px))"; left: "var(--beam-side-nav-layout-width, 0px)"; position: "sticky"; paddingLeft: "24px"; paddingRight: "24px"`. */
|
|
3854
|
+
get layoutContainer() {
|
|
3855
|
+
return this.add("width", "calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px))").add("left", "var(--beam-side-nav-layout-width, 0px)").add("position", "sticky").add("paddingLeft", "24px").add(
|
|
3856
|
+
"paddingRight",
|
|
3857
|
+
"24px"
|
|
3858
|
+
);
|
|
3859
|
+
}
|
|
3852
3860
|
// animation
|
|
3853
3861
|
/** Sets `transition: "background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), left 200ms cubic-bezier(0.4, 0, 0.2, 1), right 200ms cubic-bezier(0.4, 0, 0.2, 1), margin 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
|
|
3854
3862
|
get transition() {
|
|
@@ -6039,6 +6047,7 @@ function stickyTableHeaderOffset(basePx = 0) {
|
|
|
6039
6047
|
function getFloatingBottomOffset(basePx = 0) {
|
|
6040
6048
|
return `calc(${basePx}px + var(${beamWorkflowLayoutFooterHeightVar}, 0px))`;
|
|
6041
6049
|
}
|
|
6050
|
+
var pageContentPaddingXValue = "24px";
|
|
6042
6051
|
|
|
6043
6052
|
// src/utils/zIndices.ts
|
|
6044
6053
|
var zIndices = {
|
|
@@ -15842,10 +15851,18 @@ function SelectToggle({ id, disabled }) {
|
|
|
15842
15851
|
}
|
|
15843
15852
|
|
|
15844
15853
|
// src/layouts/layoutSpacing.ts
|
|
15854
|
+
import { maybeCssVar as maybeCssVar27 } from "@homebound/truss/runtime";
|
|
15855
|
+
var __maybeInc10 = (inc) => {
|
|
15856
|
+
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
15857
|
+
};
|
|
15845
15858
|
var pageContentGutterPx = 12;
|
|
15846
15859
|
var pageContentPaddingX = {
|
|
15847
|
-
paddingLeft: "
|
|
15848
|
-
|
|
15860
|
+
paddingLeft: ["px_var", {
|
|
15861
|
+
"--paddingLeft": maybeCssVar27(__maybeInc10(pageContentPaddingXValue))
|
|
15862
|
+
}],
|
|
15863
|
+
paddingRight: ["px_var", {
|
|
15864
|
+
"--paddingRight": maybeCssVar27(__maybeInc10(pageContentPaddingXValue))
|
|
15865
|
+
}]
|
|
15849
15866
|
};
|
|
15850
15867
|
function headerContentPaddingX(compact = false) {
|
|
15851
15868
|
return compact ? {
|
|
@@ -16750,9 +16767,9 @@ import { createContext as createContext6, useCallback as useCallback20, useConte
|
|
|
16750
16767
|
|
|
16751
16768
|
// src/layouts/DocumentScrollToTopButton.tsx
|
|
16752
16769
|
import { useCallback as useCallback19, useEffect as useEffect19, useState as useState30 } from "react";
|
|
16753
|
-
import { trussProps as trussProps59, maybeCssVar as
|
|
16770
|
+
import { trussProps as trussProps59, maybeCssVar as maybeCssVar28 } from "@homebound/truss/runtime";
|
|
16754
16771
|
import { jsx as jsx91 } from "react/jsx-runtime";
|
|
16755
|
-
var
|
|
16772
|
+
var __maybeInc11 = (inc) => {
|
|
16756
16773
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
16757
16774
|
};
|
|
16758
16775
|
function DocumentScrollToTopButton({
|
|
@@ -16783,13 +16800,13 @@ function DocumentScrollToTopButton({
|
|
|
16783
16800
|
...{
|
|
16784
16801
|
position: "fixed",
|
|
16785
16802
|
bottom: ["bottom_var", {
|
|
16786
|
-
"--bottom":
|
|
16803
|
+
"--bottom": maybeCssVar28(__maybeInc11(getFloatingBottomOffset(scrollToTopOffsetPx)))
|
|
16787
16804
|
}],
|
|
16788
16805
|
right: ["right_var", {
|
|
16789
16806
|
"--right": `${scrollToTopOffsetPx}px`
|
|
16790
16807
|
}],
|
|
16791
16808
|
zIndex: ["z_var", {
|
|
16792
|
-
"--zIndex":
|
|
16809
|
+
"--zIndex": maybeCssVar28(zIndices.scrollToTop)
|
|
16793
16810
|
}],
|
|
16794
16811
|
display: "df",
|
|
16795
16812
|
justifyContent: "jcfe",
|
|
@@ -16799,7 +16816,7 @@ function DocumentScrollToTopButton({
|
|
|
16799
16816
|
transform: "transform_translateY_0"
|
|
16800
16817
|
} : {
|
|
16801
16818
|
transform: ["transform_var", {
|
|
16802
|
-
"--transform":
|
|
16819
|
+
"--transform": maybeCssVar28(`translateY(calc(100% + ${scrollToTopOffsetPx}px))`)
|
|
16803
16820
|
}],
|
|
16804
16821
|
pointerEvents: "pointerEvents_none"
|
|
16805
16822
|
}
|
|
@@ -16873,9 +16890,9 @@ function DocumentScrollLayoutViewportRoot({
|
|
|
16873
16890
|
// src/components/Table/components/TableCard.tsx
|
|
16874
16891
|
import { useMemo as useMemo27 } from "react";
|
|
16875
16892
|
import { Link as Link4 } from "react-router-dom";
|
|
16876
|
-
import { trussProps as trussProps60, mergeProps as mergeProps20, maybeCssVar as
|
|
16893
|
+
import { trussProps as trussProps60, mergeProps as mergeProps20, maybeCssVar as maybeCssVar29 } from "@homebound/truss/runtime";
|
|
16877
16894
|
import { jsx as jsx93, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
16878
|
-
var
|
|
16895
|
+
var __maybeInc12 = (inc) => {
|
|
16879
16896
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
16880
16897
|
};
|
|
16881
16898
|
function TableCard(props) {
|
|
@@ -17013,7 +17030,7 @@ function TableCardView(props) {
|
|
|
17013
17030
|
borderRadius: "br4",
|
|
17014
17031
|
backgroundColor: "bgBlue500",
|
|
17015
17032
|
width: ["w_var", {
|
|
17016
|
-
"--width":
|
|
17033
|
+
"--width": maybeCssVar29(__maybeInc12(`${progressValue}%`))
|
|
17017
17034
|
}]
|
|
17018
17035
|
}) }) }),
|
|
17019
17036
|
/* @__PURE__ */ jsxs49("span", { ...tid.progressValue, children: [
|
|
@@ -17057,10 +17074,10 @@ function GridTableEmptyState(props) {
|
|
|
17057
17074
|
}
|
|
17058
17075
|
|
|
17059
17076
|
// src/components/Table/GridTable.tsx
|
|
17060
|
-
import { trussProps as trussProps62, mergeProps as mergeProps21, maybeCssVar as
|
|
17077
|
+
import { trussProps as trussProps62, mergeProps as mergeProps21, maybeCssVar as maybeCssVar30 } from "@homebound/truss/runtime";
|
|
17061
17078
|
import { jsx as jsx95, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
17062
17079
|
import { createElement as createElement3 } from "react";
|
|
17063
|
-
var
|
|
17080
|
+
var __maybeInc13 = (inc) => {
|
|
17064
17081
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
17065
17082
|
};
|
|
17066
17083
|
var runningInJest = false;
|
|
@@ -17390,10 +17407,10 @@ function renderDiv(style, id, columns, visibleDataRows, keptSelectedRows, pinned
|
|
|
17390
17407
|
position: "sticky",
|
|
17391
17408
|
transition: "transitionTop",
|
|
17392
17409
|
top: ["top_var", {
|
|
17393
|
-
"--top":
|
|
17410
|
+
"--top": maybeCssVar30(__maybeInc13(stickyTableHeaderOffset(stickyOffset)))
|
|
17394
17411
|
}],
|
|
17395
17412
|
zIndex: ["z_var", {
|
|
17396
|
-
"--zIndex":
|
|
17413
|
+
"--zIndex": maybeCssVar30(zIndices.tableStickyHeader)
|
|
17397
17414
|
}]
|
|
17398
17415
|
} : {}
|
|
17399
17416
|
}), children: [
|
|
@@ -17434,10 +17451,10 @@ function renderTable(style, id, columns, visibleDataRows, keptSelectedRows, pinn
|
|
|
17434
17451
|
position: "sticky",
|
|
17435
17452
|
transition: "transitionTop",
|
|
17436
17453
|
top: ["top_var", {
|
|
17437
|
-
"--top":
|
|
17454
|
+
"--top": maybeCssVar30(__maybeInc13(stickyTableHeaderOffset(stickyOffset)))
|
|
17438
17455
|
}],
|
|
17439
17456
|
zIndex: ["z_var", {
|
|
17440
|
-
"--zIndex":
|
|
17457
|
+
"--zIndex": maybeCssVar30(zIndices.tableStickyHeader)
|
|
17441
17458
|
}]
|
|
17442
17459
|
} : {}
|
|
17443
17460
|
}), children: [
|
|
@@ -17608,7 +17625,7 @@ function CardView({
|
|
|
17608
17625
|
return /* @__PURE__ */ jsx95("div", { className: "pt2 pb2", children: /* @__PURE__ */ jsx95("div", { ...trussProps62({
|
|
17609
17626
|
display: "dg",
|
|
17610
17627
|
gridTemplateColumns: ["gtc_var", {
|
|
17611
|
-
"--gridTemplateColumns":
|
|
17628
|
+
"--gridTemplateColumns": maybeCssVar30(`repeat(auto-fill, minmax(${CARD_MIN_WIDTH_PX}px, 1fr))`)
|
|
17612
17629
|
}],
|
|
17613
17630
|
justifyContent: "jcc",
|
|
17614
17631
|
gap: "gap3",
|
|
@@ -17630,7 +17647,7 @@ function CardView({
|
|
|
17630
17647
|
return /* @__PURE__ */ jsx95("div", { ref, ...mergeProps21(void 0, style, {
|
|
17631
17648
|
display: "dg",
|
|
17632
17649
|
gridTemplateColumns: ["gtc_var", {
|
|
17633
|
-
"--gridTemplateColumns":
|
|
17650
|
+
"--gridTemplateColumns": maybeCssVar30(`repeat(auto-fill, minmax(${CARD_MIN_WIDTH_PX}px, 1fr))`)
|
|
17634
17651
|
}],
|
|
17635
17652
|
justifyContent: "jcc",
|
|
17636
17653
|
gap: "gap3",
|
|
@@ -17776,9 +17793,9 @@ function ToggleChips(props) {
|
|
|
17776
17793
|
import { useId, useResizeObserver as useResizeObserver3 } from "@react-aria/utils";
|
|
17777
17794
|
import { useCallback as useCallback21, useEffect as useEffect21, useMemo as useMemo29, useState as useState33 } from "react";
|
|
17778
17795
|
import { useFocusRing as useFocusRing11 } from "react-aria";
|
|
17779
|
-
import { trussProps as trussProps65, maybeCssVar as
|
|
17796
|
+
import { trussProps as trussProps65, maybeCssVar as maybeCssVar31 } from "@homebound/truss/runtime";
|
|
17780
17797
|
import { jsx as jsx98, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
17781
|
-
var
|
|
17798
|
+
var __maybeInc14 = (inc) => {
|
|
17782
17799
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
17783
17800
|
};
|
|
17784
17801
|
function Accordion(props) {
|
|
@@ -17878,7 +17895,7 @@ function Accordion(props) {
|
|
|
17878
17895
|
},
|
|
17879
17896
|
...isFocusVisible && {
|
|
17880
17897
|
boxShadow: ["boxShadow_var", {
|
|
17881
|
-
"--boxShadow":
|
|
17898
|
+
"--boxShadow": maybeCssVar31(`inset 0 0 0 2px var(${"--b-focus-ring-inset" /* FocusRingInset */})`)
|
|
17882
17899
|
}]
|
|
17883
17900
|
},
|
|
17884
17901
|
...xss
|
|
@@ -17934,7 +17951,7 @@ function Accordion(props) {
|
|
|
17934
17951
|
/* @__PURE__ */ jsx98("div", { ...tid.details, id, "aria-hidden": !expanded, ...trussProps65({
|
|
17935
17952
|
overflow: "oh",
|
|
17936
17953
|
height: ["h_var", {
|
|
17937
|
-
"--height":
|
|
17954
|
+
"--height": maybeCssVar31(__maybeInc14(contentHeight))
|
|
17938
17955
|
}],
|
|
17939
17956
|
transition: "transition_height_250ms_ease_in_out"
|
|
17940
17957
|
}), children: expanded && /* @__PURE__ */ jsx98("div", { ...trussProps65({
|
|
@@ -17956,7 +17973,7 @@ function RotatingChevronIcon(props) {
|
|
|
17956
17973
|
flexShrink: "fs0",
|
|
17957
17974
|
transition: "transition_transform_250ms_linear",
|
|
17958
17975
|
transform: ["transform_var", {
|
|
17959
|
-
"--transform":
|
|
17976
|
+
"--transform": maybeCssVar31(props.expanded ? "rotate(180deg)" : "rotate(0deg)")
|
|
17960
17977
|
}]
|
|
17961
17978
|
}), children: /* @__PURE__ */ jsx98(Icon, { icon: "chevronDown" }) });
|
|
17962
17979
|
}
|
|
@@ -18198,7 +18215,7 @@ function useModal() {
|
|
|
18198
18215
|
}
|
|
18199
18216
|
|
|
18200
18217
|
// src/components/Modal/Modal.tsx
|
|
18201
|
-
import { trussProps as trussProps68, maybeCssVar as
|
|
18218
|
+
import { trussProps as trussProps68, maybeCssVar as maybeCssVar32 } from "@homebound/truss/runtime";
|
|
18202
18219
|
import { Fragment as Fragment23, jsx as jsx103, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
18203
18220
|
function Modal(props) {
|
|
18204
18221
|
const {
|
|
@@ -18290,7 +18307,7 @@ function Modal(props) {
|
|
|
18290
18307
|
justifyContent: "jcc",
|
|
18291
18308
|
backgroundColor: "bgc_rgba_36_36_36_0_6",
|
|
18292
18309
|
zIndex: ["z_var", {
|
|
18293
|
-
"--zIndex":
|
|
18310
|
+
"--zIndex": maybeCssVar32(zIndices.modalUnderlay)
|
|
18294
18311
|
}]
|
|
18295
18312
|
}), ...underlayProps, ...testId.underlay, children: /* @__PURE__ */ jsx103(FocusScope4, { contain: true, restoreFocus: true, autoFocus: true, children: /* @__PURE__ */ jsxs56("div", { ...trussProps68({
|
|
18296
18313
|
borderRadius: "br24",
|
|
@@ -18529,7 +18546,7 @@ var typeToIcon2 = {
|
|
|
18529
18546
|
};
|
|
18530
18547
|
|
|
18531
18548
|
// src/components/Snackbar/Snackbar.tsx
|
|
18532
|
-
import { trussProps as trussProps70, maybeCssVar as
|
|
18549
|
+
import { trussProps as trussProps70, maybeCssVar as maybeCssVar33 } from "@homebound/truss/runtime";
|
|
18533
18550
|
import { jsx as jsx105 } from "react/jsx-runtime";
|
|
18534
18551
|
function Snackbar({
|
|
18535
18552
|
notices,
|
|
@@ -18539,7 +18556,7 @@ function Snackbar({
|
|
|
18539
18556
|
return /* @__PURE__ */ jsx105("div", { ...tid.snackbarWrapper, ...trussProps70({
|
|
18540
18557
|
position: "fixed",
|
|
18541
18558
|
zIndex: ["z_var", {
|
|
18542
|
-
"--zIndex":
|
|
18559
|
+
"--zIndex": maybeCssVar33(zIndices.snackbar)
|
|
18543
18560
|
}],
|
|
18544
18561
|
bottom: ["bottom_var", {
|
|
18545
18562
|
"--bottom": `${offset.bottom ?? defaultOffset.bottom}px`
|
|
@@ -18586,7 +18603,7 @@ var SuperDrawerWidth = /* @__PURE__ */ ((SuperDrawerWidth2) => {
|
|
|
18586
18603
|
})(SuperDrawerWidth || {});
|
|
18587
18604
|
|
|
18588
18605
|
// src/components/SuperDrawer/SuperDrawer.tsx
|
|
18589
|
-
import { trussProps as trussProps71, maybeCssVar as
|
|
18606
|
+
import { trussProps as trussProps71, maybeCssVar as maybeCssVar34 } from "@homebound/truss/runtime";
|
|
18590
18607
|
import { Fragment as Fragment24, jsx as jsx107, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
18591
18608
|
import { createElement as createElement4 } from "react";
|
|
18592
18609
|
function SuperDrawer() {
|
|
@@ -18642,7 +18659,7 @@ function SuperDrawer() {
|
|
|
18642
18659
|
bottom: "bottom0",
|
|
18643
18660
|
left: "left0",
|
|
18644
18661
|
zIndex: ["z_var", {
|
|
18645
|
-
"--zIndex":
|
|
18662
|
+
"--zIndex": maybeCssVar34(zIndices.superDrawerScrim)
|
|
18646
18663
|
}]
|
|
18647
18664
|
}),
|
|
18648
18665
|
initial: {
|
|
@@ -18668,7 +18685,7 @@ function SuperDrawer() {
|
|
|
18668
18685
|
}],
|
|
18669
18686
|
height: "h100",
|
|
18670
18687
|
maxWidth: ["maxw_var", {
|
|
18671
|
-
"--maxWidth":
|
|
18688
|
+
"--maxWidth": maybeCssVar34(px(width2))
|
|
18672
18689
|
}],
|
|
18673
18690
|
width: "w100",
|
|
18674
18691
|
display: "df",
|
|
@@ -19506,9 +19523,9 @@ function BoundTreeSelectField(props) {
|
|
|
19506
19523
|
|
|
19507
19524
|
// src/forms/FormLines.tsx
|
|
19508
19525
|
import { Children, cloneElement } from "react";
|
|
19509
|
-
import { trussProps as trussProps72, maybeCssVar as
|
|
19526
|
+
import { trussProps as trussProps72, maybeCssVar as maybeCssVar35 } from "@homebound/truss/runtime";
|
|
19510
19527
|
import { jsx as jsx127 } from "react/jsx-runtime";
|
|
19511
|
-
var
|
|
19528
|
+
var __maybeInc15 = (inc) => {
|
|
19512
19529
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
19513
19530
|
};
|
|
19514
19531
|
function FormLines(props) {
|
|
@@ -19546,13 +19563,13 @@ function FormLines(props) {
|
|
|
19546
19563
|
display: "df",
|
|
19547
19564
|
flexDirection: "fdc",
|
|
19548
19565
|
gap: ["gap_var", {
|
|
19549
|
-
"--gap":
|
|
19566
|
+
"--gap": maybeCssVar35(__maybeInc15(gap))
|
|
19550
19567
|
}],
|
|
19551
19568
|
paddingBottom: ["pb_var", {
|
|
19552
|
-
"--paddingBottom":
|
|
19569
|
+
"--paddingBottom": maybeCssVar35(__maybeInc15(gap))
|
|
19553
19570
|
}],
|
|
19554
19571
|
width: ["w_var", {
|
|
19555
|
-
"--width":
|
|
19572
|
+
"--width": maybeCssVar35(__maybeInc15(sizes[width2]))
|
|
19556
19573
|
}]
|
|
19557
19574
|
}), children: Children.map(children, (child) => {
|
|
19558
19575
|
if (child && typeof child === "object" && "type" in child && child.type.isFormHeading) {
|
|
@@ -19587,7 +19604,7 @@ function FieldGroup(props) {
|
|
|
19587
19604
|
display: "dg",
|
|
19588
19605
|
gap: "gap2",
|
|
19589
19606
|
gridTemplateColumns: ["gtc_var", {
|
|
19590
|
-
"--gridTemplateColumns":
|
|
19607
|
+
"--gridTemplateColumns": maybeCssVar35(gtc)
|
|
19591
19608
|
}]
|
|
19592
19609
|
}), children });
|
|
19593
19610
|
}
|
|
@@ -19599,7 +19616,7 @@ var sizes = {
|
|
|
19599
19616
|
};
|
|
19600
19617
|
|
|
19601
19618
|
// src/forms/BoundForm.tsx
|
|
19602
|
-
import { trussProps as trussProps73, maybeCssVar as
|
|
19619
|
+
import { trussProps as trussProps73, maybeCssVar as maybeCssVar36 } from "@homebound/truss/runtime";
|
|
19603
19620
|
import { jsx as jsx128 } from "react/jsx-runtime";
|
|
19604
19621
|
import { createElement as createElement5 } from "react";
|
|
19605
19622
|
var reactNodePrefix = "reactNode";
|
|
@@ -19656,10 +19673,10 @@ function FormRow({
|
|
|
19656
19673
|
minWidth
|
|
19657
19674
|
}) => /* @__PURE__ */ createElement5("div", { ...trussProps73({
|
|
19658
19675
|
minWidth: ["mw_var", {
|
|
19659
|
-
"--minWidth":
|
|
19676
|
+
"--minWidth": maybeCssVar36(minWidth)
|
|
19660
19677
|
}],
|
|
19661
19678
|
flexBasis: ["fb_var", {
|
|
19662
|
-
"--flexBasis":
|
|
19679
|
+
"--flexBasis": maybeCssVar36(`${itemFlexBasis}%`)
|
|
19663
19680
|
}],
|
|
19664
19681
|
flexGrow: "fg1"
|
|
19665
19682
|
}), key: key.toString() }, isLoading ? /* @__PURE__ */ jsx128(LoadingSkeleton, { size: "lg" }) : component)) });
|
|
@@ -19935,7 +19952,7 @@ function FormSection(props) {
|
|
|
19935
19952
|
}]
|
|
19936
19953
|
}), ...tid.description, children: description })
|
|
19937
19954
|
] }),
|
|
19938
|
-
actions && /* @__PURE__ */ jsx132("div", { className: "df gap1 fs0", ...tid.actions, children: actions.map((action) => /* @__PURE__ */ jsx132(Button, { ...action }, `${action.label}`)) })
|
|
19955
|
+
actions && /* @__PURE__ */ jsx132("div", { className: "df gap1 fs0", ...tid.actions, children: actions.map((action) => action.kind === "icon" ? /* @__PURE__ */ jsx132(IconButton, { ...action, variant: "outline" }, action.icon) : /* @__PURE__ */ jsx132(Button, { ...action }, `${action.label}`)) })
|
|
19939
19956
|
] }),
|
|
19940
19957
|
fields,
|
|
19941
19958
|
childSections && /* @__PURE__ */ jsx132("div", { className: "df fdc gap3", children: childSections.map((child, i) => /* @__PURE__ */ jsx132("div", { ...trussProps76({
|
|
@@ -20040,7 +20057,7 @@ import { useDebouncedCallback as useDebouncedCallback5 } from "use-debounce";
|
|
|
20040
20057
|
// src/components/RightSidebar.tsx
|
|
20041
20058
|
import { AnimatePresence as AnimatePresence2, motion as motion2 } from "framer-motion";
|
|
20042
20059
|
import { useState as useState38 } from "react";
|
|
20043
|
-
import { trussProps as trussProps78, maybeCssVar as
|
|
20060
|
+
import { trussProps as trussProps78, maybeCssVar as maybeCssVar37 } from "@homebound/truss/runtime";
|
|
20044
20061
|
import { Fragment as Fragment26, jsx as jsx135, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
20045
20062
|
var RIGHT_SIDEBAR_MIN_WIDTH = "250px";
|
|
20046
20063
|
function RightSidebar({
|
|
@@ -20083,11 +20100,11 @@ function RightSidebar({
|
|
|
20083
20100
|
}, ...trussProps78({
|
|
20084
20101
|
width: "w100",
|
|
20085
20102
|
minWidth: ["mw_var", {
|
|
20086
|
-
"--minWidth":
|
|
20103
|
+
"--minWidth": maybeCssVar37(RIGHT_SIDEBAR_MIN_WIDTH)
|
|
20087
20104
|
}],
|
|
20088
20105
|
zIndex: "z0",
|
|
20089
20106
|
maxHeight: ["maxh_var", {
|
|
20090
|
-
"--maxHeight":
|
|
20107
|
+
"--maxHeight": maybeCssVar37(`calc(100vh - ${headerHeightPx2}px)`)
|
|
20091
20108
|
}],
|
|
20092
20109
|
overflowY: "oya",
|
|
20093
20110
|
paddingLeft: "pl4",
|
|
@@ -20231,7 +20248,7 @@ function PageHeaderBreadcrumbs({
|
|
|
20231
20248
|
}
|
|
20232
20249
|
|
|
20233
20250
|
// src/components/Layout/FormPageLayout.tsx
|
|
20234
|
-
import { trussProps as trussProps80, maybeCssVar as
|
|
20251
|
+
import { trussProps as trussProps80, maybeCssVar as maybeCssVar38 } from "@homebound/truss/runtime";
|
|
20235
20252
|
import { jsx as jsx139, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
20236
20253
|
var headerHeightPx = 120;
|
|
20237
20254
|
var maxContentWidthPx = 1600;
|
|
@@ -20261,7 +20278,7 @@ function FormPageLayoutComponent(props) {
|
|
|
20261
20278
|
left: "left0",
|
|
20262
20279
|
right: "right0",
|
|
20263
20280
|
zIndex: ["z_var", {
|
|
20264
|
-
"--zIndex":
|
|
20281
|
+
"--zIndex": maybeCssVar38(zIndices.pageOverlay)
|
|
20265
20282
|
}],
|
|
20266
20283
|
overflowY: "oya",
|
|
20267
20284
|
backgroundColor: ["bgColor_var", {
|
|
@@ -20277,7 +20294,7 @@ function FormPageLayoutComponent(props) {
|
|
|
20277
20294
|
}],
|
|
20278
20295
|
display: "dg",
|
|
20279
20296
|
gridTemplateColumns: ["gtc_var", {
|
|
20280
|
-
"--gridTemplateColumns":
|
|
20297
|
+
"--gridTemplateColumns": maybeCssVar38(gridColumns)
|
|
20281
20298
|
}],
|
|
20282
20299
|
gridTemplateRows: "gtr_auto_1fr",
|
|
20283
20300
|
columnGap: "cg3",
|
|
@@ -20320,7 +20337,7 @@ function PageHeader(props) {
|
|
|
20320
20337
|
"--backgroundColor": "var(--b-surface)"
|
|
20321
20338
|
}],
|
|
20322
20339
|
zIndex: ["z_var", {
|
|
20323
|
-
"--zIndex":
|
|
20340
|
+
"--zIndex": maybeCssVar38(zIndices.pageStickyHeader)
|
|
20324
20341
|
}],
|
|
20325
20342
|
...!notice ? {
|
|
20326
20343
|
height: ["h_var", {
|
|
@@ -20373,7 +20390,7 @@ function FormSections(props) {
|
|
|
20373
20390
|
gridTemplateRows: "gtr_auto",
|
|
20374
20391
|
marginBottom: "mb_72px",
|
|
20375
20392
|
scrollMarginTop: ["scrollMarginTop_var", {
|
|
20376
|
-
"--scrollMarginTop":
|
|
20393
|
+
"--scrollMarginTop": maybeCssVar38(`${headerHeightPx}px`)
|
|
20377
20394
|
}]
|
|
20378
20395
|
}),
|
|
20379
20396
|
...tids.formSection,
|
|
@@ -20417,7 +20434,7 @@ var activeStyles = {
|
|
|
20417
20434
|
fontSize: "fz_14px",
|
|
20418
20435
|
lineHeight: "lh_20px",
|
|
20419
20436
|
boxShadow: ["boxShadow_var", {
|
|
20420
|
-
"--boxShadow":
|
|
20437
|
+
"--boxShadow": maybeCssVar38(`inset 3px 0px 0 0px var(${"--b-primary" /* Primary */})`)
|
|
20421
20438
|
}]
|
|
20422
20439
|
};
|
|
20423
20440
|
var hoverStyles2 = {
|
|
@@ -20427,7 +20444,7 @@ var hoverStyles2 = {
|
|
|
20427
20444
|
lineHeight: "lh_20px",
|
|
20428
20445
|
color: "blue900",
|
|
20429
20446
|
boxShadow: ["boxShadow_var", {
|
|
20430
|
-
"--boxShadow":
|
|
20447
|
+
"--boxShadow": maybeCssVar38(`inset 3px 0px 0 0px var(${"--b-primary" /* Primary */})`)
|
|
20431
20448
|
}]
|
|
20432
20449
|
};
|
|
20433
20450
|
var defaultFocusRingStyles = {
|
|
@@ -20544,9 +20561,9 @@ function useActiveSection(sectionsWithRefs) {
|
|
|
20544
20561
|
}
|
|
20545
20562
|
|
|
20546
20563
|
// src/components/Layout/FullBleed.tsx
|
|
20547
|
-
import { mergeProps as mergeProps23, maybeCssVar as
|
|
20564
|
+
import { mergeProps as mergeProps23, maybeCssVar as maybeCssVar39 } from "@homebound/truss/runtime";
|
|
20548
20565
|
import { cloneElement as cloneElement3 } from "react";
|
|
20549
|
-
var
|
|
20566
|
+
var __maybeInc16 = (inc) => {
|
|
20550
20567
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
20551
20568
|
};
|
|
20552
20569
|
function FullBleed({
|
|
@@ -20577,17 +20594,17 @@ function FullBleed({
|
|
|
20577
20594
|
// inverts that padding with negative margins before re-applying it to the child.
|
|
20578
20595
|
{
|
|
20579
20596
|
marginLeft: ["ml_var", {
|
|
20580
|
-
"--marginLeft":
|
|
20597
|
+
"--marginLeft": maybeCssVar39(__maybeInc16(invertSpacing(paddingLeft)))
|
|
20581
20598
|
}],
|
|
20582
20599
|
marginRight: ["mr_var", {
|
|
20583
|
-
"--marginRight":
|
|
20600
|
+
"--marginRight": maybeCssVar39(__maybeInc16(invertSpacing(paddingRight)))
|
|
20584
20601
|
}],
|
|
20585
20602
|
...!omitPadding ? {
|
|
20586
20603
|
paddingLeft: ["pl_var", {
|
|
20587
|
-
"--paddingLeft":
|
|
20604
|
+
"--paddingLeft": maybeCssVar39(__maybeInc16(paddingLeft))
|
|
20588
20605
|
}],
|
|
20589
20606
|
paddingRight: ["pr_var", {
|
|
20590
|
-
"--paddingRight":
|
|
20607
|
+
"--paddingRight": maybeCssVar39(__maybeInc16(paddingRight))
|
|
20591
20608
|
}]
|
|
20592
20609
|
} : {}
|
|
20593
20610
|
}
|
|
@@ -20663,7 +20680,7 @@ function isSelectionButtonMenuProps(props) {
|
|
|
20663
20680
|
}
|
|
20664
20681
|
|
|
20665
20682
|
// src/components/CountBadge.tsx
|
|
20666
|
-
import { trussProps as trussProps81, maybeCssVar as
|
|
20683
|
+
import { trussProps as trussProps81, maybeCssVar as maybeCssVar40 } from "@homebound/truss/runtime";
|
|
20667
20684
|
import { jsx as jsx141 } from "react/jsx-runtime";
|
|
20668
20685
|
function CountBadge(props) {
|
|
20669
20686
|
const {
|
|
@@ -20695,12 +20712,12 @@ function CountBadge(props) {
|
|
|
20695
20712
|
alignItems: "aic",
|
|
20696
20713
|
justifyContent: "jcc",
|
|
20697
20714
|
backgroundColor: ["bgColor_var", {
|
|
20698
|
-
"--backgroundColor":
|
|
20715
|
+
"--backgroundColor": maybeCssVar40(bgColor)
|
|
20699
20716
|
}]
|
|
20700
20717
|
},
|
|
20701
20718
|
...{
|
|
20702
20719
|
color: ["color_var", {
|
|
20703
|
-
"--color":
|
|
20720
|
+
"--color": maybeCssVar40(color)
|
|
20704
20721
|
}]
|
|
20705
20722
|
}
|
|
20706
20723
|
}), children: count });
|
|
@@ -21643,7 +21660,7 @@ var _GridTableLayoutActions = memo2(GridTableLayoutActionsComponent);
|
|
|
21643
21660
|
import { useMemo as useMemo40 } from "react";
|
|
21644
21661
|
|
|
21645
21662
|
// src/components/LoadingSkeleton.tsx
|
|
21646
|
-
import { trussProps as trussProps87, maybeCssVar as
|
|
21663
|
+
import { trussProps as trussProps87, maybeCssVar as maybeCssVar41 } from "@homebound/truss/runtime";
|
|
21647
21664
|
import { jsx as jsx159 } from "react/jsx-runtime";
|
|
21648
21665
|
function LoadingSkeleton({
|
|
21649
21666
|
rows = 1,
|
|
@@ -21660,7 +21677,7 @@ function LoadingSkeleton({
|
|
|
21660
21677
|
borderRadius: "br4",
|
|
21661
21678
|
animation: "animation_pulse_2s_cubic_bezier_0_4_0_0_6_1_infinite",
|
|
21662
21679
|
flexGrow: ["flexGrow_var", {
|
|
21663
|
-
"--flexGrow":
|
|
21680
|
+
"--flexGrow": maybeCssVar41(flexGrowForCell)
|
|
21664
21681
|
}],
|
|
21665
21682
|
backgroundColor: ["bgColor_var", {
|
|
21666
21683
|
"--backgroundColor": "var(--b-loader-fill)"
|
|
@@ -21752,9 +21769,9 @@ function parseStoredTableView(raw) {
|
|
|
21752
21769
|
}
|
|
21753
21770
|
|
|
21754
21771
|
// src/components/Layout/GridTableLayout/GridTableLayout.tsx
|
|
21755
|
-
import { trussProps as trussProps88, maybeCssVar as
|
|
21772
|
+
import { trussProps as trussProps88, maybeCssVar as maybeCssVar42 } from "@homebound/truss/runtime";
|
|
21756
21773
|
import { Fragment as Fragment36, jsx as jsx161, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
21757
|
-
var
|
|
21774
|
+
var __maybeInc17 = (inc) => {
|
|
21758
21775
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
21759
21776
|
};
|
|
21760
21777
|
function GridTableLayoutComponent(props) {
|
|
@@ -21813,16 +21830,16 @@ function GridTableLayoutComponent(props) {
|
|
|
21813
21830
|
transition: "transitionTop",
|
|
21814
21831
|
position: "sticky",
|
|
21815
21832
|
top: ["top_var", {
|
|
21816
|
-
"--top":
|
|
21833
|
+
"--top": maybeCssVar42(__maybeInc17(stickyNavAndHeaderOffset()))
|
|
21817
21834
|
}],
|
|
21818
21835
|
left: ["left_var", {
|
|
21819
|
-
"--left":
|
|
21836
|
+
"--left": maybeCssVar42(__maybeInc17(documentScrollChromeLeft()))
|
|
21820
21837
|
}],
|
|
21821
21838
|
width: ["w_var", {
|
|
21822
|
-
"--width":
|
|
21839
|
+
"--width": maybeCssVar42(__maybeInc17(`min(100%, ${documentScrollChromeWidth()})`))
|
|
21823
21840
|
}],
|
|
21824
21841
|
zIndex: ["z_var", {
|
|
21825
|
-
"--zIndex":
|
|
21842
|
+
"--zIndex": maybeCssVar42(zIndices.tableActions)
|
|
21826
21843
|
}],
|
|
21827
21844
|
backgroundColor: ["bgColor_var", {
|
|
21828
21845
|
"--backgroundColor": "var(--b-surface)"
|
|
@@ -21990,9 +22007,9 @@ function useRightPaneContext() {
|
|
|
21990
22007
|
// src/components/Layout/RightPaneLayout/RightPaneLayout.tsx
|
|
21991
22008
|
import { AnimatePresence as AnimatePresence3, motion as motion3 } from "framer-motion";
|
|
21992
22009
|
import { useEffect as useEffect29 } from "react";
|
|
21993
|
-
import { trussProps as trussProps89, maybeCssVar as
|
|
22010
|
+
import { trussProps as trussProps89, maybeCssVar as maybeCssVar43 } from "@homebound/truss/runtime";
|
|
21994
22011
|
import { Fragment as Fragment37, jsx as jsx164, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
21995
|
-
var
|
|
22012
|
+
var __maybeInc18 = (inc) => {
|
|
21996
22013
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
21997
22014
|
};
|
|
21998
22015
|
function RightPaneLayout(props) {
|
|
@@ -22013,7 +22030,7 @@ function RightPaneLayout(props) {
|
|
|
22013
22030
|
/* @__PURE__ */ jsx164("div", { ...trussProps89({
|
|
22014
22031
|
...{
|
|
22015
22032
|
width: ["w_var", {
|
|
22016
|
-
"--width":
|
|
22033
|
+
"--width": maybeCssVar43(__maybeInc18(`calc(100% - ${paneWidth + 24}px)`))
|
|
22017
22034
|
}],
|
|
22018
22035
|
transition: "transition_width_2s_linear",
|
|
22019
22036
|
height: "h100",
|
|
@@ -22029,7 +22046,7 @@ function RightPaneLayout(props) {
|
|
|
22029
22046
|
...{
|
|
22030
22047
|
...!!defaultPaneContent ? {
|
|
22031
22048
|
width: ["w_var", {
|
|
22032
|
-
"--width":
|
|
22049
|
+
"--width": maybeCssVar43(__maybeInc18(`calc(100% - ${paneWidth + 24}px)`))
|
|
22033
22050
|
}],
|
|
22034
22051
|
marginRight: "mr3"
|
|
22035
22052
|
} : {}
|
|
@@ -22063,7 +22080,7 @@ function RightPaneLayout(props) {
|
|
|
22063
22080
|
"data-testid": "rightPaneContent",
|
|
22064
22081
|
...trussProps89({
|
|
22065
22082
|
backgroundColor: ["bgColor_var", {
|
|
22066
|
-
"--backgroundColor":
|
|
22083
|
+
"--backgroundColor": maybeCssVar43(paneBgColor)
|
|
22067
22084
|
}],
|
|
22068
22085
|
height: "h100",
|
|
22069
22086
|
width: ["w_var", {
|
|
@@ -22144,7 +22161,7 @@ function SidePanel(props) {
|
|
|
22144
22161
|
}
|
|
22145
22162
|
|
|
22146
22163
|
// src/components/Layout/TableReviewLayout/TableReviewLayout.tsx
|
|
22147
|
-
import { trussProps as trussProps90, maybeCssVar as
|
|
22164
|
+
import { trussProps as trussProps90, maybeCssVar as maybeCssVar44 } from "@homebound/truss/runtime";
|
|
22148
22165
|
import { jsx as jsx167, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
22149
22166
|
var defaultRightPaneWidth = 450;
|
|
22150
22167
|
function TableReviewLayout(props) {
|
|
@@ -22193,7 +22210,7 @@ function TableReviewLayout(props) {
|
|
|
22193
22210
|
left: "left0",
|
|
22194
22211
|
right: "right0",
|
|
22195
22212
|
zIndex: ["z_var", {
|
|
22196
|
-
"--zIndex":
|
|
22213
|
+
"--zIndex": maybeCssVar44(zIndices.pageOverlay)
|
|
22197
22214
|
}],
|
|
22198
22215
|
backgroundColor: ["bgColor_var", {
|
|
22199
22216
|
"--backgroundColor": "var(--b-surface)"
|
|
@@ -22749,7 +22766,7 @@ function getPrimaryStyles(type) {
|
|
|
22749
22766
|
}
|
|
22750
22767
|
|
|
22751
22768
|
// src/components/Card.tsx
|
|
22752
|
-
import { trussProps as trussProps94, maybeCssVar as
|
|
22769
|
+
import { trussProps as trussProps94, maybeCssVar as maybeCssVar45 } from "@homebound/truss/runtime";
|
|
22753
22770
|
import { jsx as jsx173, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
22754
22771
|
function Card(props) {
|
|
22755
22772
|
const {
|
|
@@ -22810,7 +22827,7 @@ function Card(props) {
|
|
|
22810
22827
|
width: "w100",
|
|
22811
22828
|
height: "h100",
|
|
22812
22829
|
objectFit: ["objectFit_var", {
|
|
22813
|
-
"--objectFit":
|
|
22830
|
+
"--objectFit": maybeCssVar45(imageFit)
|
|
22814
22831
|
}]
|
|
22815
22832
|
}), src: imgSrc, alt: title, ...tid.img }) }),
|
|
22816
22833
|
isHovered && buttonMenuItems && /* @__PURE__ */ jsx173("div", { ...trussProps94({
|
|
@@ -23470,8 +23487,8 @@ function ResponsiveGridItem(props) {
|
|
|
23470
23487
|
|
|
23471
23488
|
// src/components/Grid/useResponsiveGrid.ts
|
|
23472
23489
|
import { useMemo as useMemo47 } from "react";
|
|
23473
|
-
import { maybeCssVar as
|
|
23474
|
-
var
|
|
23490
|
+
import { maybeCssVar as maybeCssVar46 } from "@homebound/truss/runtime";
|
|
23491
|
+
var __maybeInc19 = (inc) => {
|
|
23475
23492
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
23476
23493
|
};
|
|
23477
23494
|
function useResponsiveGrid(props) {
|
|
@@ -23489,11 +23506,11 @@ function useResponsiveGrid(props) {
|
|
|
23489
23506
|
return {
|
|
23490
23507
|
display: "dg",
|
|
23491
23508
|
gridTemplateColumns: ["gtc_var", {
|
|
23492
|
-
"--gridTemplateColumns":
|
|
23509
|
+
"--gridTemplateColumns": maybeCssVar46(gridTemplateColumns)
|
|
23493
23510
|
}],
|
|
23494
23511
|
containerType: "ctis",
|
|
23495
23512
|
gap: ["gap_var", {
|
|
23496
|
-
"--gap":
|
|
23513
|
+
"--gap": maybeCssVar46(__maybeInc19(gridGap))
|
|
23497
23514
|
}]
|
|
23498
23515
|
};
|
|
23499
23516
|
}, [minColumnWidth, gap, columns]);
|
|
@@ -23616,9 +23633,9 @@ function HbSpinnerProvider({
|
|
|
23616
23633
|
}
|
|
23617
23634
|
|
|
23618
23635
|
// src/components/HomeboundLogo.tsx
|
|
23619
|
-
import { trussProps as trussProps100, maybeCssVar as
|
|
23636
|
+
import { trussProps as trussProps100, maybeCssVar as maybeCssVar47 } from "@homebound/truss/runtime";
|
|
23620
23637
|
import { jsx as jsx181 } from "react/jsx-runtime";
|
|
23621
|
-
var
|
|
23638
|
+
var __maybeInc20 = (inc) => {
|
|
23622
23639
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
23623
23640
|
};
|
|
23624
23641
|
function HomeboundLogo(props) {
|
|
@@ -23629,13 +23646,13 @@ function HomeboundLogo(props) {
|
|
|
23629
23646
|
} = props;
|
|
23630
23647
|
return /* @__PURE__ */ jsx181("svg", { viewBox: "0 0 158.1 97.6", xmlns: "http://www.w3.org/2000/svg", ...trussProps100({
|
|
23631
23648
|
fill: ["fill_var", {
|
|
23632
|
-
"--fill":
|
|
23649
|
+
"--fill": maybeCssVar47(fill)
|
|
23633
23650
|
}],
|
|
23634
23651
|
width: ["w_var", {
|
|
23635
|
-
"--width":
|
|
23652
|
+
"--width": maybeCssVar47(__maybeInc20(width2))
|
|
23636
23653
|
}],
|
|
23637
23654
|
height: ["h_var", {
|
|
23638
|
-
"--height":
|
|
23655
|
+
"--height": maybeCssVar47(__maybeInc20(height))
|
|
23639
23656
|
}]
|
|
23640
23657
|
}), children: /* @__PURE__ */ jsx181("path", { d: "M158.1,97.6H0.2L0,39.7L76.8,0l68,38.7l-3.1,5.3l-65-37L6.2,43.4l0.2,48h151.7V97.6z" }) });
|
|
23641
23658
|
}
|
|
@@ -23743,7 +23760,7 @@ var jumpLinkStyles = {
|
|
|
23743
23760
|
// src/components/MaxLines.tsx
|
|
23744
23761
|
import { useLayoutEffect as useLayoutEffect7, useResizeObserver as useResizeObserver7 } from "@react-aria/utils";
|
|
23745
23762
|
import { useCallback as useCallback31, useEffect as useEffect32, useRef as useRef57, useState as useState50 } from "react";
|
|
23746
|
-
import { trussProps as trussProps102, maybeCssVar as
|
|
23763
|
+
import { trussProps as trussProps102, maybeCssVar as maybeCssVar48 } from "@homebound/truss/runtime";
|
|
23747
23764
|
import { jsx as jsx183, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
23748
23765
|
function MaxLines({
|
|
23749
23766
|
maxLines,
|
|
@@ -23771,7 +23788,7 @@ function MaxLines({
|
|
|
23771
23788
|
/* @__PURE__ */ jsx183("div", { ref: elRef, ...trussProps102({
|
|
23772
23789
|
...!expanded ? {
|
|
23773
23790
|
WebkitLineClamp: ["lineClamp_var", {
|
|
23774
|
-
"--WebkitLineClamp":
|
|
23791
|
+
"--WebkitLineClamp": maybeCssVar48(maxLines)
|
|
23775
23792
|
}],
|
|
23776
23793
|
overflow: "oh",
|
|
23777
23794
|
display: "d_negwebkit_box",
|
|
@@ -23998,9 +24015,9 @@ function useAppNavGroupExpanded(linkGroup) {
|
|
|
23998
24015
|
}
|
|
23999
24016
|
|
|
24000
24017
|
// src/components/AppNav/AppNavGroup.tsx
|
|
24001
|
-
import { trussProps as trussProps104, maybeCssVar as
|
|
24018
|
+
import { trussProps as trussProps104, maybeCssVar as maybeCssVar49 } from "@homebound/truss/runtime";
|
|
24002
24019
|
import { Fragment as Fragment41, jsx as jsx185, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
24003
|
-
var
|
|
24020
|
+
var __maybeInc21 = (inc) => {
|
|
24004
24021
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
24005
24022
|
};
|
|
24006
24023
|
function AppNavGroupView(props) {
|
|
@@ -24047,7 +24064,7 @@ function AppNavGroupDisclosure(props) {
|
|
|
24047
24064
|
overflow: "oh",
|
|
24048
24065
|
transition: "transitionHeight",
|
|
24049
24066
|
height: ["h_var", {
|
|
24050
|
-
"--height":
|
|
24067
|
+
"--height": maybeCssVar49(__maybeInc21(contentHeight))
|
|
24051
24068
|
}]
|
|
24052
24069
|
}), ...tid.panel, ...!expanded ? {
|
|
24053
24070
|
inert: "true"
|
|
@@ -24196,7 +24213,7 @@ function useEnvironmentBannerLayoutHeight() {
|
|
|
24196
24213
|
}
|
|
24197
24214
|
|
|
24198
24215
|
// src/components/Navbar/NavbarMobileMenu.tsx
|
|
24199
|
-
import { trussProps as trussProps106, mergeProps as mergeProps29, maybeCssVar as
|
|
24216
|
+
import { trussProps as trussProps106, mergeProps as mergeProps29, maybeCssVar as maybeCssVar50 } from "@homebound/truss/runtime";
|
|
24200
24217
|
import { Fragment as Fragment43, jsx as jsx190, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
24201
24218
|
function NavbarMobileMenu(props) {
|
|
24202
24219
|
const {
|
|
@@ -24240,7 +24257,7 @@ function NavbarMobileDrawer({
|
|
|
24240
24257
|
bottom: "bottom0",
|
|
24241
24258
|
left: "left0",
|
|
24242
24259
|
zIndex: ["z_var", {
|
|
24243
|
-
"--zIndex":
|
|
24260
|
+
"--zIndex": maybeCssVar50(zIndices.navbarMobileMenuScrim)
|
|
24244
24261
|
}],
|
|
24245
24262
|
backgroundColor: ["bgColor_var", {
|
|
24246
24263
|
"--backgroundColor": "var(--b-scrim)"
|
|
@@ -24265,7 +24282,7 @@ function NavbarMobileDrawer({
|
|
|
24265
24282
|
width: "w_260px",
|
|
24266
24283
|
overflow: "oh",
|
|
24267
24284
|
zIndex: ["z_var", {
|
|
24268
|
-
"--zIndex":
|
|
24285
|
+
"--zIndex": maybeCssVar50(zIndices.navbarMobileMenu)
|
|
24269
24286
|
}],
|
|
24270
24287
|
backgroundColor: ["bgColor_var", {
|
|
24271
24288
|
"--backgroundColor": "var(--b-surface)"
|
|
@@ -24494,7 +24511,7 @@ function toPageNumberSize(page) {
|
|
|
24494
24511
|
// src/components/ScrollShadows.tsx
|
|
24495
24512
|
import { useResizeObserver as useResizeObserver9 } from "@react-aria/utils";
|
|
24496
24513
|
import { useCallback as useCallback34, useMemo as useMemo52, useRef as useRef59, useState as useState54 } from "react";
|
|
24497
|
-
import { trussProps as trussProps109, maybeCssVar as
|
|
24514
|
+
import { trussProps as trussProps109, maybeCssVar as maybeCssVar51 } from "@homebound/truss/runtime";
|
|
24498
24515
|
import { jsx as jsx193, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
24499
24516
|
function ScrollShadows(props) {
|
|
24500
24517
|
const {
|
|
@@ -24519,7 +24536,7 @@ function ScrollShadows(props) {
|
|
|
24519
24536
|
const commonStyles = {
|
|
24520
24537
|
position: "absolute",
|
|
24521
24538
|
zIndex: ["z_var", {
|
|
24522
|
-
"--zIndex":
|
|
24539
|
+
"--zIndex": maybeCssVar51(zIndices.scrollShadow)
|
|
24523
24540
|
}],
|
|
24524
24541
|
pointerEvents: "pointerEvents_none"
|
|
24525
24542
|
};
|
|
@@ -24552,7 +24569,7 @@ function ScrollShadows(props) {
|
|
|
24552
24569
|
...startShadowStyles2,
|
|
24553
24570
|
...{
|
|
24554
24571
|
background: ["background_var", {
|
|
24555
|
-
"--background":
|
|
24572
|
+
"--background": maybeCssVar51(startGradient)
|
|
24556
24573
|
}]
|
|
24557
24574
|
}
|
|
24558
24575
|
}, {
|
|
@@ -24560,7 +24577,7 @@ function ScrollShadows(props) {
|
|
|
24560
24577
|
...endShadowStyles2,
|
|
24561
24578
|
...{
|
|
24562
24579
|
background: ["background_var", {
|
|
24563
|
-
"--background":
|
|
24580
|
+
"--background": maybeCssVar51(endGradient)
|
|
24564
24581
|
}]
|
|
24565
24582
|
}
|
|
24566
24583
|
}];
|
|
@@ -24588,7 +24605,7 @@ function ScrollShadows(props) {
|
|
|
24588
24605
|
return /* @__PURE__ */ jsxs95("div", { ...trussProps109({
|
|
24589
24606
|
display: "df",
|
|
24590
24607
|
flexDirection: ["fd_var", {
|
|
24591
|
-
"--flexDirection":
|
|
24608
|
+
"--flexDirection": maybeCssVar51(!horizontal ? "column" : "row")
|
|
24592
24609
|
}],
|
|
24593
24610
|
position: "relative",
|
|
24594
24611
|
overflow: "oh",
|
|
@@ -24605,7 +24622,7 @@ function ScrollShadows(props) {
|
|
|
24605
24622
|
...startShadowStyles,
|
|
24606
24623
|
...{
|
|
24607
24624
|
opacity: ["o_var", {
|
|
24608
|
-
"--opacity":
|
|
24625
|
+
"--opacity": maybeCssVar51(showStartShadow ? 1 : 0)
|
|
24609
24626
|
}]
|
|
24610
24627
|
}
|
|
24611
24628
|
}), "data-chromatic": "ignore" }),
|
|
@@ -24613,7 +24630,7 @@ function ScrollShadows(props) {
|
|
|
24613
24630
|
...endShadowStyles,
|
|
24614
24631
|
...{
|
|
24615
24632
|
opacity: ["o_var", {
|
|
24616
|
-
"--opacity":
|
|
24633
|
+
"--opacity": maybeCssVar51(showEndShadow ? 1 : 0)
|
|
24617
24634
|
}]
|
|
24618
24635
|
}
|
|
24619
24636
|
}), "data-chromatic": "ignore" }),
|
|
@@ -24813,10 +24830,10 @@ var snackbarId = 1;
|
|
|
24813
24830
|
// src/components/Stepper.tsx
|
|
24814
24831
|
import { useRef as useRef61 } from "react";
|
|
24815
24832
|
import { useButton as useButton12, useFocusRing as useFocusRing17, useHover as useHover21 } from "react-aria";
|
|
24816
|
-
import { trussProps as trussProps111, maybeCssVar as
|
|
24833
|
+
import { trussProps as trussProps111, maybeCssVar as maybeCssVar52 } from "@homebound/truss/runtime";
|
|
24817
24834
|
import { jsx as jsx196, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
24818
24835
|
import { createElement as createElement6 } from "react";
|
|
24819
|
-
var
|
|
24836
|
+
var __maybeInc22 = (inc) => {
|
|
24820
24837
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
24821
24838
|
};
|
|
24822
24839
|
function Stepper(props) {
|
|
@@ -24876,7 +24893,7 @@ function Stepper(props) {
|
|
|
24876
24893
|
transition: "transition_width_200ms",
|
|
24877
24894
|
height: "h100",
|
|
24878
24895
|
width: ["w_var", {
|
|
24879
|
-
"--width":
|
|
24896
|
+
"--width": maybeCssVar52(__maybeInc22(`${(lastCompletedStep + 1) / steps.length * 100}%`))
|
|
24880
24897
|
}]
|
|
24881
24898
|
}) }) })
|
|
24882
24899
|
] });
|
|
@@ -25005,7 +25022,7 @@ function StepIcon({
|
|
|
25005
25022
|
// src/components/StepperTabs/StepperTab.tsx
|
|
25006
25023
|
import { useRef as useRef62 } from "react";
|
|
25007
25024
|
import { mergeProps as mergeProps30, useButton as useButton13, useFocusRing as useFocusRing18, useHover as useHover22, VisuallyHidden as VisuallyHidden10 } from "react-aria";
|
|
25008
|
-
import { trussProps as trussProps112, maybeCssVar as
|
|
25025
|
+
import { trussProps as trussProps112, maybeCssVar as maybeCssVar53 } from "@homebound/truss/runtime";
|
|
25009
25026
|
import { jsx as jsx197, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
25010
25027
|
function StepperTab(props) {
|
|
25011
25028
|
const {
|
|
@@ -25055,7 +25072,7 @@ function withBorderBottom(color) {
|
|
|
25055
25072
|
...{
|
|
25056
25073
|
borderBottomStyle: "bbs_solid",
|
|
25057
25074
|
borderBottomWidth: ["borderBottomWidth_var", {
|
|
25058
|
-
"--borderBottomWidth":
|
|
25075
|
+
"--borderBottomWidth": maybeCssVar53(`3px`)
|
|
25059
25076
|
}]
|
|
25060
25077
|
},
|
|
25061
25078
|
...color
|
|
@@ -25508,7 +25525,7 @@ import { useEffect as useEffect37, useMemo as useMemo55, useRef as useRef63, use
|
|
|
25508
25525
|
import { mergeProps as mergeProps32, useFocusRing as useFocusRing19, useHover as useHover23 } from "react-aria";
|
|
25509
25526
|
import { matchPath } from "react-router";
|
|
25510
25527
|
import { Link as Link7, useLocation as useLocation2 } from "react-router-dom";
|
|
25511
|
-
import { trussProps as trussProps116, maybeCssVar as
|
|
25528
|
+
import { trussProps as trussProps116, maybeCssVar as maybeCssVar54 } from "@homebound/truss/runtime";
|
|
25512
25529
|
import { Fragment as Fragment46, jsx as jsx203, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
25513
25530
|
function TabsWithContent(props) {
|
|
25514
25531
|
const styles = hideTabs(props) ? {} : {
|
|
@@ -25686,7 +25703,7 @@ function getTabStyles() {
|
|
|
25686
25703
|
const borderBottomStyles = {
|
|
25687
25704
|
borderBottomStyle: "bbs_solid",
|
|
25688
25705
|
borderBottomWidth: ["borderBottomWidth_var", {
|
|
25689
|
-
"--borderBottomWidth":
|
|
25706
|
+
"--borderBottomWidth": maybeCssVar54(`${borderBottomWidthPx}px`)
|
|
25690
25707
|
}],
|
|
25691
25708
|
paddingBottom: ["pb_var", {
|
|
25692
25709
|
"--paddingBottom": `${verticalPaddingPx - borderBottomWidthPx}px`
|
|
@@ -25806,9 +25823,9 @@ function useToast() {
|
|
|
25806
25823
|
}
|
|
25807
25824
|
|
|
25808
25825
|
// src/layouts/SideNavLayout/SideNavLayout.tsx
|
|
25809
|
-
import { trussProps as trussProps117, mergeProps as mergeProps33, maybeCssVar as
|
|
25826
|
+
import { trussProps as trussProps117, mergeProps as mergeProps33, maybeCssVar as maybeCssVar55 } from "@homebound/truss/runtime";
|
|
25810
25827
|
import { jsx as jsx205, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
25811
|
-
var
|
|
25828
|
+
var __maybeInc23 = (inc) => {
|
|
25812
25829
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
25813
25830
|
};
|
|
25814
25831
|
function SideNavLayout(props) {
|
|
@@ -25860,14 +25877,14 @@ function SideNavLayoutContent(props) {
|
|
|
25860
25877
|
position: "sticky",
|
|
25861
25878
|
left: "left0",
|
|
25862
25879
|
zIndex: ["z_var", {
|
|
25863
|
-
"--zIndex":
|
|
25880
|
+
"--zIndex": maybeCssVar55(zIndices.sideNav)
|
|
25864
25881
|
}],
|
|
25865
25882
|
top: ["top_var", {
|
|
25866
|
-
"--top":
|
|
25883
|
+
"--top": maybeCssVar55(__maybeInc23(navTop))
|
|
25867
25884
|
}],
|
|
25868
25885
|
alignSelf: "asfs",
|
|
25869
25886
|
height: ["h_var", {
|
|
25870
|
-
"--height":
|
|
25887
|
+
"--height": maybeCssVar55(__maybeInc23(railViewportHeight))
|
|
25871
25888
|
}],
|
|
25872
25889
|
width: ["w_var", {
|
|
25873
25890
|
"--width": `${collapsed ? railCollapsedWidthPx : railWidthPx}px`
|
|
@@ -25877,11 +25894,11 @@ function SideNavLayoutContent(props) {
|
|
|
25877
25894
|
position: "fixed",
|
|
25878
25895
|
left: "left0",
|
|
25879
25896
|
top: ["top_var", {
|
|
25880
|
-
"--top":
|
|
25897
|
+
"--top": maybeCssVar55(__maybeInc23(navTop))
|
|
25881
25898
|
}],
|
|
25882
25899
|
bottom: "bottom0",
|
|
25883
25900
|
zIndex: ["z_var", {
|
|
25884
|
-
"--zIndex":
|
|
25901
|
+
"--zIndex": maybeCssVar55(zIndices.sideNav)
|
|
25885
25902
|
}]
|
|
25886
25903
|
},
|
|
25887
25904
|
...collapsed ? {
|
|
@@ -25920,9 +25937,9 @@ function SideNavLayoutContent(props) {
|
|
|
25920
25937
|
}
|
|
25921
25938
|
|
|
25922
25939
|
// src/layouts/EnvironmentBannerLayout/EnvironmentBannerLayout.tsx
|
|
25923
|
-
import { trussProps as trussProps118, mergeProps as mergeProps34, maybeCssVar as
|
|
25940
|
+
import { trussProps as trussProps118, mergeProps as mergeProps34, maybeCssVar as maybeCssVar56 } from "@homebound/truss/runtime";
|
|
25924
25941
|
import { jsx as jsx206, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
25925
|
-
var
|
|
25942
|
+
var __maybeInc24 = (inc) => {
|
|
25926
25943
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
25927
25944
|
};
|
|
25928
25945
|
function EnvironmentBannerLayout(props) {
|
|
@@ -25953,10 +25970,10 @@ function EnvironmentBannerLayout(props) {
|
|
|
25953
25970
|
top: "top0",
|
|
25954
25971
|
left: "left0",
|
|
25955
25972
|
zIndex: ["z_var", {
|
|
25956
|
-
"--zIndex":
|
|
25973
|
+
"--zIndex": maybeCssVar56(zIndices.environmentBanner)
|
|
25957
25974
|
}],
|
|
25958
25975
|
width: ["w_var", {
|
|
25959
|
-
"--width":
|
|
25976
|
+
"--width": maybeCssVar56(__maybeInc24(innerWidth))
|
|
25960
25977
|
}]
|
|
25961
25978
|
}), ...tid.bannerSticky, children: /* @__PURE__ */ jsx206(EnvironmentBanner, { ...environmentBanner, ...tid.environmentBanner }) }) }),
|
|
25962
25979
|
children
|
|
@@ -25988,7 +26005,7 @@ function FormSectionLayout(props) {
|
|
|
25988
26005
|
}]
|
|
25989
26006
|
}), ...tid.description, children: description })
|
|
25990
26007
|
] }),
|
|
25991
|
-
actions && /* @__PURE__ */ jsx207("div", { className: "df gap1 fs0", ...tid.actions, children: actions.map((action) => /* @__PURE__ */ jsx207(Button, { ...action }, `${action.label}`)) })
|
|
26008
|
+
actions && /* @__PURE__ */ jsx207("div", { className: "df gap1 fs0", ...tid.actions, children: actions.map((action) => action.kind === "icon" ? /* @__PURE__ */ jsx207(IconButton, { ...action, variant: "outline" }, action.icon) : /* @__PURE__ */ jsx207(Button, { ...action }, `${action.label}`)) })
|
|
25992
26009
|
] }),
|
|
25993
26010
|
initialFields,
|
|
25994
26011
|
/* @__PURE__ */ jsx207("div", { className: "df fdc gap6", children: sections.map((section, i) => /* @__PURE__ */ jsx207(FormSection, { ...section }, defaultTestId(section.title) || i)) })
|
|
@@ -25997,7 +26014,7 @@ function FormSectionLayout(props) {
|
|
|
25997
26014
|
|
|
25998
26015
|
// src/layouts/NavbarLayout/NavbarLayout.tsx
|
|
25999
26016
|
import { useMemo as useMemo56, useRef as useRef65 } from "react";
|
|
26000
|
-
import { mergeProps as mergeProps35, maybeCssVar as
|
|
26017
|
+
import { mergeProps as mergeProps35, maybeCssVar as maybeCssVar57 } from "@homebound/truss/runtime";
|
|
26001
26018
|
|
|
26002
26019
|
// src/layouts/useAutoHideOnScroll.ts
|
|
26003
26020
|
import { useLayoutEffect as useLayoutEffect8, useRef as useRef64, useState as useState57 } from "react";
|
|
@@ -26119,7 +26136,7 @@ function useNavbarLayoutHeight() {
|
|
|
26119
26136
|
|
|
26120
26137
|
// src/layouts/NavbarLayout/NavbarLayout.tsx
|
|
26121
26138
|
import { jsx as jsx209, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
26122
|
-
var
|
|
26139
|
+
var __maybeInc25 = (inc) => {
|
|
26123
26140
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
26124
26141
|
};
|
|
26125
26142
|
function NavbarLayout(props) {
|
|
@@ -26147,10 +26164,10 @@ function NavbarLayout(props) {
|
|
|
26147
26164
|
position: "sticky",
|
|
26148
26165
|
left: "left0",
|
|
26149
26166
|
zIndex: ["z_var", {
|
|
26150
|
-
"--zIndex":
|
|
26167
|
+
"--zIndex": maybeCssVar57(zIndices.navbar)
|
|
26151
26168
|
}],
|
|
26152
26169
|
width: ["w_var", {
|
|
26153
|
-
"--width":
|
|
26170
|
+
"--width": maybeCssVar57(__maybeInc25(innerWidth))
|
|
26154
26171
|
}]
|
|
26155
26172
|
}
|
|
26156
26173
|
) : (
|
|
@@ -26159,10 +26176,10 @@ function NavbarLayout(props) {
|
|
|
26159
26176
|
position: "fixed",
|
|
26160
26177
|
left: "left0",
|
|
26161
26178
|
zIndex: ["z_var", {
|
|
26162
|
-
"--zIndex":
|
|
26179
|
+
"--zIndex": maybeCssVar57(zIndices.navbar)
|
|
26163
26180
|
}],
|
|
26164
26181
|
width: ["w_var", {
|
|
26165
|
-
"--width":
|
|
26182
|
+
"--width": maybeCssVar57(__maybeInc25(innerWidth))
|
|
26166
26183
|
}],
|
|
26167
26184
|
transition: "transitionTop"
|
|
26168
26185
|
}
|
|
@@ -26268,9 +26285,9 @@ function useBannerAndNavbarHeight() {
|
|
|
26268
26285
|
}
|
|
26269
26286
|
|
|
26270
26287
|
// src/layouts/PageHeaderLayout/PageHeaderLayout.tsx
|
|
26271
|
-
import { mergeProps as mergeProps36, maybeCssVar as
|
|
26288
|
+
import { mergeProps as mergeProps36, maybeCssVar as maybeCssVar58 } from "@homebound/truss/runtime";
|
|
26272
26289
|
import { jsx as jsx212, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
26273
|
-
var
|
|
26290
|
+
var __maybeInc26 = (inc) => {
|
|
26274
26291
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
26275
26292
|
};
|
|
26276
26293
|
function PageHeaderLayout(props) {
|
|
@@ -26300,24 +26317,24 @@ function PageHeaderLayout(props) {
|
|
|
26300
26317
|
const innerCss = autoHideState === "static" ? {
|
|
26301
26318
|
position: "sticky",
|
|
26302
26319
|
left: ["left_var", {
|
|
26303
|
-
"--left":
|
|
26320
|
+
"--left": maybeCssVar58(__maybeInc26(headerLeft))
|
|
26304
26321
|
}],
|
|
26305
26322
|
width: ["w_var", {
|
|
26306
|
-
"--width":
|
|
26323
|
+
"--width": maybeCssVar58(__maybeInc26(headerWidth))
|
|
26307
26324
|
}],
|
|
26308
26325
|
zIndex: ["z_var", {
|
|
26309
|
-
"--zIndex":
|
|
26326
|
+
"--zIndex": maybeCssVar58(zIndices.pageStickyHeader)
|
|
26310
26327
|
}]
|
|
26311
26328
|
} : {
|
|
26312
26329
|
position: "fixed",
|
|
26313
26330
|
left: ["left_var", {
|
|
26314
|
-
"--left":
|
|
26331
|
+
"--left": maybeCssVar58(__maybeInc26(headerLeft))
|
|
26315
26332
|
}],
|
|
26316
26333
|
width: ["w_var", {
|
|
26317
|
-
"--width":
|
|
26334
|
+
"--width": maybeCssVar58(__maybeInc26(headerWidth))
|
|
26318
26335
|
}],
|
|
26319
26336
|
zIndex: ["z_var", {
|
|
26320
|
-
"--zIndex":
|
|
26337
|
+
"--zIndex": maybeCssVar58(zIndices.pageStickyHeader)
|
|
26321
26338
|
}],
|
|
26322
26339
|
transition: "transitionTop"
|
|
26323
26340
|
};
|
|
@@ -26377,9 +26394,9 @@ function WorkflowActions(props) {
|
|
|
26377
26394
|
}
|
|
26378
26395
|
|
|
26379
26396
|
// src/layouts/WorkflowLayout/WorkflowLayout.tsx
|
|
26380
|
-
import { trussProps as trussProps122, mergeProps as mergeProps37, maybeCssVar as
|
|
26397
|
+
import { trussProps as trussProps122, mergeProps as mergeProps37, maybeCssVar as maybeCssVar59 } from "@homebound/truss/runtime";
|
|
26381
26398
|
import { jsx as jsx215, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
26382
|
-
var
|
|
26399
|
+
var __maybeInc27 = (inc) => {
|
|
26383
26400
|
return typeof inc === "string" ? inc : `calc(var(--t-spacing) * ${inc})`;
|
|
26384
26401
|
};
|
|
26385
26402
|
function WorkflowLayout(props) {
|
|
@@ -26454,13 +26471,13 @@ function WorkflowLayout(props) {
|
|
|
26454
26471
|
}), ...tid.spacer, children: /* @__PURE__ */ jsx215("div", { ref: headerMetricsRef, ...trussProps122({
|
|
26455
26472
|
position: "fixed",
|
|
26456
26473
|
width: ["w_var", {
|
|
26457
|
-
"--width":
|
|
26474
|
+
"--width": maybeCssVar59(__maybeInc27(headerWidth))
|
|
26458
26475
|
}],
|
|
26459
26476
|
zIndex: ["z_var", {
|
|
26460
|
-
"--zIndex":
|
|
26477
|
+
"--zIndex": maybeCssVar59(zIndices.pageStickyHeader)
|
|
26461
26478
|
}],
|
|
26462
26479
|
top: ["top_var", {
|
|
26463
|
-
"--top":
|
|
26480
|
+
"--top": maybeCssVar59(__maybeInc27(outerTop))
|
|
26464
26481
|
}]
|
|
26465
26482
|
}), ...tid.header, children: headerEl }) }),
|
|
26466
26483
|
/* @__PURE__ */ jsx215("div", { className: "df fdc fg1 mh0 w100", ...tid.body, children: activeStep?.content }),
|
|
@@ -26476,13 +26493,13 @@ function WorkflowLayout(props) {
|
|
|
26476
26493
|
position: "fixed",
|
|
26477
26494
|
bottom: "bottom0",
|
|
26478
26495
|
width: ["w_var", {
|
|
26479
|
-
"--width":
|
|
26496
|
+
"--width": maybeCssVar59(__maybeInc27(headerWidth))
|
|
26480
26497
|
}],
|
|
26481
26498
|
height: ["h_var", {
|
|
26482
26499
|
"--height": `${mobileFooterHeightPx}px`
|
|
26483
26500
|
}],
|
|
26484
26501
|
zIndex: ["z_var", {
|
|
26485
|
-
"--zIndex":
|
|
26502
|
+
"--zIndex": maybeCssVar59(zIndices.pageStickyFooter)
|
|
26486
26503
|
}],
|
|
26487
26504
|
display: "df",
|
|
26488
26505
|
alignItems: "aic",
|