@homebound/truss 2.26.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 +1 -0
- package/build/index.js +12 -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
|
@@ -158,6 +158,7 @@ declare const defaultSections: {
|
|
|
158
158
|
readonly outline: CreateMethodsFn;
|
|
159
159
|
readonly overflow: CreateMethodsFn;
|
|
160
160
|
readonly position: CreateMethodsFn;
|
|
161
|
+
readonly scrollbarWidth: CreateMethodsFn;
|
|
161
162
|
readonly skins: CreateMethodsFn;
|
|
162
163
|
readonly spacing: CreateMethodsFn;
|
|
163
164
|
readonly textAlign: CreateMethodsFn;
|
package/build/index.js
CHANGED
|
@@ -549,6 +549,17 @@ var position = () => newMethodsForProp("position", {
|
|
|
549
549
|
sticky: "sticky"
|
|
550
550
|
});
|
|
551
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
|
+
|
|
552
563
|
// src/utils.ts
|
|
553
564
|
function lowerCaseFirst(s) {
|
|
554
565
|
return s.charAt(0).toLowerCase() + s.substr(1);
|
|
@@ -854,6 +865,7 @@ var defaultSections = {
|
|
|
854
865
|
outline,
|
|
855
866
|
overflow,
|
|
856
867
|
position,
|
|
868
|
+
scrollbarWidth,
|
|
857
869
|
skins,
|
|
858
870
|
spacing,
|
|
859
871
|
textAlign,
|