@homebound/beam 4.0.0 → 4.1.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 +1594 -1347
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +73 -34
- package/dist/index.d.ts +73 -34
- package/dist/index.js +1421 -1180
- package/dist/index.js.map +1 -1
- package/dist/truss.css +6 -0
- package/package.json +1 -1
package/dist/truss.css
CHANGED
|
@@ -679,6 +679,8 @@
|
|
|
679
679
|
.bts_solid { border-top-style: solid; }
|
|
680
680
|
/* @truss p:4000 c:btw_1px */
|
|
681
681
|
.btw_1px { border-top-width: 1px; }
|
|
682
|
+
/* @truss p:4000 c:h1 */
|
|
683
|
+
.h1 { height: calc(var(--t-spacing) * 1); }
|
|
682
684
|
/* @truss p:4000 c:h100 */
|
|
683
685
|
.h100 { height: 100%; }
|
|
684
686
|
/* @truss p:4000 c:h2 */
|
|
@@ -1121,6 +1123,8 @@
|
|
|
1121
1123
|
.h_var { height: var(--height); }
|
|
1122
1124
|
/* @truss p:4000.5 c:left_var */
|
|
1123
1125
|
.left_var { left: var(--left); }
|
|
1126
|
+
/* @truss p:4000.5 c:maxh_var */
|
|
1127
|
+
.maxh_var { max-height: var(--maxHeight); }
|
|
1124
1128
|
/* @truss p:4000.5 c:maxw_var */
|
|
1125
1129
|
.maxw_var { max-width: var(--maxWidth); }
|
|
1126
1130
|
/* @truss p:4000.5 c:mb_var */
|
|
@@ -1264,6 +1268,8 @@
|
|
|
1264
1268
|
/* @truss @property */
|
|
1265
1269
|
@property --left { syntax: "*"; inherits: false; }
|
|
1266
1270
|
/* @truss @property */
|
|
1271
|
+
@property --maxHeight { syntax: "*"; inherits: false; }
|
|
1272
|
+
/* @truss @property */
|
|
1267
1273
|
@property --maxWidth { syntax: "*"; inherits: false; }
|
|
1268
1274
|
/* @truss @property */
|
|
1269
1275
|
@property --marginBottom { syntax: "*"; inherits: false; }
|