@homebound/truss 2.25.0 → 2.27.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/build/index.d.ts +2 -0
- package/build/index.js +23 -0
- package/build/index.js.map +1 -1
- package/build/plugin/index.js +1 -0
- package/build/plugin/index.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/build/index.d.ts
CHANGED
|
@@ -148,6 +148,7 @@ declare const defaultSections: {
|
|
|
148
148
|
readonly display: CreateMethodsFn;
|
|
149
149
|
readonly flexbox: CreateMethodsFn;
|
|
150
150
|
readonly float: CreateMethodsFn;
|
|
151
|
+
readonly fontStyle: CreateMethodsFn;
|
|
151
152
|
readonly fontWeight: CreateMethodsFn;
|
|
152
153
|
readonly grid: CreateMethodsFn;
|
|
153
154
|
readonly height: CreateMethodsFn;
|
|
@@ -157,6 +158,7 @@ declare const defaultSections: {
|
|
|
157
158
|
readonly outline: CreateMethodsFn;
|
|
158
159
|
readonly overflow: CreateMethodsFn;
|
|
159
160
|
readonly position: CreateMethodsFn;
|
|
161
|
+
readonly scrollbarWidth: CreateMethodsFn;
|
|
160
162
|
readonly skins: CreateMethodsFn;
|
|
161
163
|
readonly spacing: CreateMethodsFn;
|
|
162
164
|
readonly textAlign: CreateMethodsFn;
|
package/build/index.js
CHANGED
|
@@ -380,6 +380,16 @@ var float = () => newMethodsForProp(
|
|
|
380
380
|
"float"
|
|
381
381
|
);
|
|
382
382
|
|
|
383
|
+
// src/sections/tachyons/fontStyle.ts
|
|
384
|
+
var fontStyle = () => newMethodsForProp(
|
|
385
|
+
"fontStyle",
|
|
386
|
+
{
|
|
387
|
+
fsyi: "italic",
|
|
388
|
+
fsynm: "normal"
|
|
389
|
+
},
|
|
390
|
+
"fsy"
|
|
391
|
+
);
|
|
392
|
+
|
|
383
393
|
// src/sections/tachyons/fontWeight.ts
|
|
384
394
|
var fontWeight = () => newMethodsForProp(
|
|
385
395
|
"fontWeight",
|
|
@@ -539,6 +549,17 @@ var position = () => newMethodsForProp("position", {
|
|
|
539
549
|
sticky: "sticky"
|
|
540
550
|
});
|
|
541
551
|
|
|
552
|
+
// src/sections/tachyons/scrollbarWidth.ts
|
|
553
|
+
var scrollbarWidth = () => newMethodsForProp(
|
|
554
|
+
"scrollbarWidth",
|
|
555
|
+
{
|
|
556
|
+
sbwa: "auto",
|
|
557
|
+
sbwt: "thin",
|
|
558
|
+
sbwn: "none"
|
|
559
|
+
},
|
|
560
|
+
"sbw"
|
|
561
|
+
);
|
|
562
|
+
|
|
542
563
|
// src/utils.ts
|
|
543
564
|
function lowerCaseFirst(s) {
|
|
544
565
|
return s.charAt(0).toLowerCase() + s.substr(1);
|
|
@@ -834,6 +855,7 @@ var defaultSections = {
|
|
|
834
855
|
display,
|
|
835
856
|
flexbox,
|
|
836
857
|
float,
|
|
858
|
+
fontStyle,
|
|
837
859
|
fontWeight,
|
|
838
860
|
grid,
|
|
839
861
|
height,
|
|
@@ -843,6 +865,7 @@ var defaultSections = {
|
|
|
843
865
|
outline,
|
|
844
866
|
overflow,
|
|
845
867
|
position,
|
|
868
|
+
scrollbarWidth,
|
|
846
869
|
skins,
|
|
847
870
|
spacing,
|
|
848
871
|
textAlign,
|