@homebound/beam 2.222.1 → 2.222.2
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 +2 -2
- package/dist/Css.js +4 -4
- package/package.json +1 -1
package/dist/Css.d.ts
CHANGED
|
@@ -384,11 +384,11 @@ declare class CssBuilder<T extends Properties> {
|
|
|
384
384
|
get bsh0(): CssBuilder<T & {
|
|
385
385
|
boxShadow: import("csstype").Property.BoxShadow | undefined;
|
|
386
386
|
}>;
|
|
387
|
-
/** Sets `boxShadow: "0px
|
|
387
|
+
/** Sets `boxShadow: "0px 4px 8px rgba(53, 53, 53, 0.08), 0px 2px 16px rgba(53, 53, 53, 0.03);"`. */
|
|
388
388
|
get bshBasic(): CssBuilder<T & {
|
|
389
389
|
boxShadow: import("csstype").Property.BoxShadow | undefined;
|
|
390
390
|
}>;
|
|
391
|
-
/** Sets `boxShadow: "0px
|
|
391
|
+
/** Sets `boxShadow: "0px 4px 8px rgba(53, 53, 53, 0.1), 0px 2px 24px rgba(53, 53, 53, 0.08);"`. */
|
|
392
392
|
get bshHover(): CssBuilder<T & {
|
|
393
393
|
boxShadow: import("csstype").Property.BoxShadow | undefined;
|
|
394
394
|
}>;
|
package/dist/Css.js
CHANGED
|
@@ -375,13 +375,13 @@ class CssBuilder {
|
|
|
375
375
|
get bsh0() {
|
|
376
376
|
return this.add("boxShadow", "none");
|
|
377
377
|
}
|
|
378
|
-
/** Sets `boxShadow: "0px
|
|
378
|
+
/** Sets `boxShadow: "0px 4px 8px rgba(53, 53, 53, 0.08), 0px 2px 16px rgba(53, 53, 53, 0.03);"`. */
|
|
379
379
|
get bshBasic() {
|
|
380
|
-
return this.add("boxShadow", "0px
|
|
380
|
+
return this.add("boxShadow", "0px 4px 8px rgba(53, 53, 53, 0.08), 0px 2px 16px rgba(53, 53, 53, 0.03);");
|
|
381
381
|
}
|
|
382
|
-
/** Sets `boxShadow: "0px
|
|
382
|
+
/** Sets `boxShadow: "0px 4px 8px rgba(53, 53, 53, 0.1), 0px 2px 24px rgba(53, 53, 53, 0.08);"`. */
|
|
383
383
|
get bshHover() {
|
|
384
|
-
return this.add("boxShadow", "0px
|
|
384
|
+
return this.add("boxShadow", "0px 4px 8px rgba(53, 53, 53, 0.1), 0px 2px 24px rgba(53, 53, 53, 0.08);");
|
|
385
385
|
}
|
|
386
386
|
/** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(3,105,161,1)"`. */
|
|
387
387
|
get bshFocus() {
|