@homebound/beam 3.84.0 → 3.85.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/README.md +2 -0
- package/dist/Css.json +1 -1
- package/dist/index.cjs +1568 -1384
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -12
- package/dist/index.d.ts +38 -12
- package/dist/index.js +1162 -981
- package/dist/index.js.map +1 -1
- package/dist/truss.css +12 -4
- package/package.json +1 -1
package/dist/truss.css
CHANGED
|
@@ -707,8 +707,8 @@
|
|
|
707
707
|
.height_100dvh { height: 100dvh; }
|
|
708
708
|
/* @truss p:4000 c:l_0 */
|
|
709
709
|
.l_0 { left: 0; }
|
|
710
|
-
/* @truss p:4000 c:
|
|
711
|
-
.
|
|
710
|
+
/* @truss p:4000 c:l_calc_var_beam_side_nav_layout_width_0px_var_beam_layout_content_padding_x_0px */
|
|
711
|
+
.l_calc_var_beam_side_nav_layout_width_0px_var_beam_layout_content_padding_x_0px { left: calc(var(--beam-side-nav-layout-width, 0px) + var(--beam-layout-content-padding-x, 0px)); }
|
|
712
712
|
/* @truss p:4000 c:left0 */
|
|
713
713
|
.left0 { left: calc(var(--t-spacing) * 0); }
|
|
714
714
|
/* @truss p:4000 c:left1 */
|
|
@@ -873,6 +873,8 @@
|
|
|
873
873
|
.pb_4px { padding-bottom: 4px; }
|
|
874
874
|
/* @truss p:4000 c:pb_6px */
|
|
875
875
|
.pb_6px { padding-bottom: 6px; }
|
|
876
|
+
/* @truss p:4000 c:pb_8px */
|
|
877
|
+
.pb_8px { padding-bottom: 8px; }
|
|
876
878
|
/* @truss p:4000 c:pl0 */
|
|
877
879
|
.pl0 { padding-left: calc(var(--t-spacing) * 0); }
|
|
878
880
|
/* @truss p:4000 c:pl1 */
|
|
@@ -943,6 +945,8 @@
|
|
|
943
945
|
.pt_4px { padding-top: 4px; }
|
|
944
946
|
/* @truss p:4000 c:pt_6px */
|
|
945
947
|
.pt_6px { padding-top: 6px; }
|
|
948
|
+
/* @truss p:4000 c:pt_8px */
|
|
949
|
+
.pt_8px { padding-top: 8px; }
|
|
946
950
|
/* @truss p:4000 c:r_0 */
|
|
947
951
|
.r_0 { right: 0; }
|
|
948
952
|
/* @truss p:4000 c:right0 */
|
|
@@ -1029,8 +1033,8 @@
|
|
|
1029
1033
|
.w_calc_100_20px { width: calc(100% - 20px); }
|
|
1030
1034
|
/* @truss p:4000 c:w_max_content */
|
|
1031
1035
|
.w_max_content { width: max-content; }
|
|
1032
|
-
/* @truss p:4000 c:
|
|
1033
|
-
.
|
|
1036
|
+
/* @truss p:4000 c:w_min_100_calc_calc_var_beam_layout_viewport_width_100vw_var_beam_side_nav_layout_width_0px_2_var_beam_layout_content_padding_x_0px */
|
|
1037
|
+
.w_min_100_calc_calc_var_beam_layout_viewport_width_100vw_var_beam_side_nav_layout_width_0px_2_var_beam_layout_content_padding_x_0px { width: min(100%, calc(calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px)) - 2 * var(--beam-layout-content-padding-x, 0px))); }
|
|
1034
1038
|
/* @truss p:4000 c:wa */
|
|
1035
1039
|
.wa { width: auto; }
|
|
1036
1040
|
/* @truss p:4000 c:wfc */
|
|
@@ -1243,4 +1247,8 @@
|
|
|
1243
1247
|
.beam-row-hover:hover > * {
|
|
1244
1248
|
background-color: var(--beam-row-hover-bg);
|
|
1245
1249
|
}
|
|
1250
|
+
|
|
1251
|
+
.beam-row-hover:hover > [data-gridrow] > * {
|
|
1252
|
+
background-color: var(--beam-row-hover-bg);
|
|
1253
|
+
}
|
|
1246
1254
|
/* @truss arbitrary:end */
|