@bbki.ng/components 1.5.44 → 1.5.45
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.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -894,6 +894,7 @@ var Img = (props) => {
|
|
|
894
894
|
height: "initial",
|
|
895
895
|
backgroundSize: "cover",
|
|
896
896
|
backgroundPosition: "0% 0%",
|
|
897
|
+
boxShadow: "inset 1px 1px #f1f1f1, inset -1px -1px #f1f1f1",
|
|
897
898
|
backgroundImage: `url(${thumbnailSrc ? thumbnailSrc : addOssWebpProcessStyle(src, "thumbnail" /* THUMBNAIL */)})`
|
|
898
899
|
};
|
|
899
900
|
const dynamicWrapperStyle = loaded && removeBlurBgAfterLoad ? { backgroundImage: "none" } : {};
|
package/dist/index.mjs
CHANGED
|
@@ -836,6 +836,7 @@ var Img = (props) => {
|
|
|
836
836
|
height: "initial",
|
|
837
837
|
backgroundSize: "cover",
|
|
838
838
|
backgroundPosition: "0% 0%",
|
|
839
|
+
boxShadow: "inset 1px 1px #f1f1f1, inset -1px -1px #f1f1f1",
|
|
839
840
|
backgroundImage: `url(${thumbnailSrc ? thumbnailSrc : addOssWebpProcessStyle(src, "thumbnail" /* THUMBNAIL */)})`
|
|
840
841
|
};
|
|
841
842
|
const dynamicWrapperStyle = loaded && removeBlurBgAfterLoad ? { backgroundImage: "none" } : {};
|