@homebound/beam 2.354.4 → 2.354.5
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/Css.d.ts +1 -1
- package/dist/Css.js +2 -2
- package/package.json +1 -1
package/dist/Css.d.ts
CHANGED
|
@@ -4212,7 +4212,7 @@ declare class CssBuilder<T extends Properties> {
|
|
|
4212
4212
|
} & {
|
|
4213
4213
|
listStyle: import("csstype").Property.ListStyle | undefined;
|
|
4214
4214
|
}>;
|
|
4215
|
-
/** Sets `position: "fixed"; top: 0; bottom: 0; left: 0; right: 0; display: "flex"; alignItems: "center"; justifyContent: "center"; backgroundColor: "rgba(36,36,36,0.
|
|
4215
|
+
/** Sets `position: "fixed"; top: 0; bottom: 0; left: 0; right: 0; display: "flex"; alignItems: "center"; justifyContent: "center"; backgroundColor: "rgba(36,36,36,0.6)"`. */
|
|
4216
4216
|
get underlay(): CssBuilder<T & {
|
|
4217
4217
|
position: import("csstype").Property.Position | undefined;
|
|
4218
4218
|
} & {
|
package/dist/Css.js
CHANGED
|
@@ -3761,9 +3761,9 @@ class CssBuilder {
|
|
|
3761
3761
|
return this.add("padding", 0).add("margin", 0).add("listStyle", "none");
|
|
3762
3762
|
}
|
|
3763
3763
|
// underlay
|
|
3764
|
-
/** Sets `position: "fixed"; top: 0; bottom: 0; left: 0; right: 0; display: "flex"; alignItems: "center"; justifyContent: "center"; backgroundColor: "rgba(36,36,36,0.
|
|
3764
|
+
/** Sets `position: "fixed"; top: 0; bottom: 0; left: 0; right: 0; display: "flex"; alignItems: "center"; justifyContent: "center"; backgroundColor: "rgba(36,36,36,0.6)"`. */
|
|
3765
3765
|
get underlay() {
|
|
3766
|
-
return this.add("position", "fixed").add("top", 0).add("bottom", 0).add("left", 0).add("right", 0).add("display", "flex").add("alignItems", "center").add("justifyContent", "center").add("backgroundColor", "rgba(36,36,36,0.
|
|
3766
|
+
return this.add("position", "fixed").add("top", 0).add("bottom", 0).add("left", 0).add("right", 0).add("display", "flex").add("alignItems", "center").add("justifyContent", "center").add("backgroundColor", "rgba(36,36,36,0.6)");
|
|
3767
3767
|
}
|
|
3768
3768
|
// visuallyHidden
|
|
3769
3769
|
/** Sets `position: "absolute"; overflow: "hidden"; clip: "inset(50%)"; clipPath: ""; border: 0; height: "1px"; margin: "-1px"; width: "1px"; padding: 0; whiteSpace: "nowrap"; opacity: 0`. */
|