@homebound/beam 3.75.0 → 3.75.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/Css.json CHANGED
@@ -906,7 +906,7 @@
906
906
  "br24": {"kind":"static","defs":{"borderRadius":"24px"}},
907
907
  "brt4": {"kind":"static","defs":{"borderTopRightRadius":"4px","borderTopLeftRadius":"4px"}},
908
908
  "brb4": {"kind":"static","defs":{"borderBottomRightRadius":"4px","borderBottomLeftRadius":"4px"}},
909
- "layoutContainer": {"kind":"static","defs":{"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"}},
909
+ "layoutContainer": {"kind":"static","defs":{"width":"min(100%, calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px)))","left":"var(--beam-side-nav-layout-width, 0px)","position":"sticky"}},
910
910
  "transition": {"kind":"static","defs":{"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)"}},
911
911
  "transitionWidth": {"kind":"static","defs":{"transition":"width 200ms cubic-bezier(0.4, 0, 0.2, 1)"}},
912
912
  "transitionOpacity": {"kind":"static","defs":{"transition":"opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"}},
package/dist/index.cjs CHANGED
@@ -4228,12 +4228,12 @@ var CssBuilder = class _CssBuilder {
4228
4228
  return this.add("fontFamily", value);
4229
4229
  }
4230
4230
  // layoutContainer
4231
- /** 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"`. */
4231
+ /** Sets `width: "min(100%, calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px)))"; left: "var(--beam-side-nav-layout-width, 0px)"; position: "sticky"`. */
4232
4232
  get layoutContainer() {
4233
- 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(
4234
- "paddingRight",
4235
- "24px"
4236
- );
4233
+ return this.add(
4234
+ "width",
4235
+ "min(100%, calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px)))"
4236
+ ).add("left", "var(--beam-side-nav-layout-width, 0px)").add("position", "sticky");
4237
4237
  }
4238
4238
  // animation
4239
4239
  /** 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)"`. */
@@ -24501,11 +24501,9 @@ function ContentHeader(props) {
24501
24501
  display: "df",
24502
24502
  flexDirection: "fdc",
24503
24503
  gap: "gap_12px",
24504
- width: "w_calc_var_beam_layout_viewport_width_100vw_var_beam_side_nav_layout_width_0px",
24504
+ width: "w_min_100_calc_var_beam_layout_viewport_width_100vw_var_beam_side_nav_layout_width_0px",
24505
24505
  left: "l_var_beam_side_nav_layout_width_0px",
24506
24506
  position: "sticky",
24507
- paddingLeft: "pl_24px",
24508
- paddingRight: "pr_24px",
24509
24507
  backgroundColor: ["bgColor_var", {
24510
24508
  "--backgroundColor": "var(--b-surface)"
24511
24509
  }]