@homebound/beam 3.84.0 → 3.85.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.cjs +1502 -1364
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -3
- package/dist/index.d.ts +20 -3
- package/dist/index.js +1106 -968
- package/dist/index.js.map +1 -1
- package/dist/truss.css +8 -0
- package/package.json +1 -1
package/dist/truss.css
CHANGED
|
@@ -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 */
|
|
@@ -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 */
|