@homebound/beam 3.64.0 → 3.65.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.d.cts CHANGED
@@ -4125,6 +4125,18 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
4125
4125
  fontFamily(value: Properties["fontFamily"]): CssBuilder<T & {
4126
4126
  fontFamily: csstype.Property.FontFamily | undefined;
4127
4127
  }, S>;
4128
+ /** 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"`. */
4129
+ get layoutContainer(): CssBuilder<T & {
4130
+ width: csstype.Property.Width<string | 0> | undefined;
4131
+ } & {
4132
+ left: csstype.Property.Left<string | 0> | undefined;
4133
+ } & {
4134
+ position: csstype.Property.Position | undefined;
4135
+ } & {
4136
+ paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
4137
+ } & {
4138
+ paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
4139
+ }, S>;
4128
4140
  /** 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)"`. */
4129
4141
  get transition(): CssBuilder<T & {
4130
4142
  transition: csstype.Property.Transition<string> | undefined;
package/dist/index.d.ts CHANGED
@@ -4125,6 +4125,18 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
4125
4125
  fontFamily(value: Properties["fontFamily"]): CssBuilder<T & {
4126
4126
  fontFamily: csstype.Property.FontFamily | undefined;
4127
4127
  }, S>;
4128
+ /** 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"`. */
4129
+ get layoutContainer(): CssBuilder<T & {
4130
+ width: csstype.Property.Width<string | 0> | undefined;
4131
+ } & {
4132
+ left: csstype.Property.Left<string | 0> | undefined;
4133
+ } & {
4134
+ position: csstype.Property.Position | undefined;
4135
+ } & {
4136
+ paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
4137
+ } & {
4138
+ paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
4139
+ }, S>;
4128
4140
  /** 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)"`. */
4129
4141
  get transition(): CssBuilder<T & {
4130
4142
  transition: csstype.Property.Transition<string> | undefined;