@m4l/components 0.0.15 → 0.0.18
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.
|
@@ -16,6 +16,20 @@ const WrapperLazyLoadImage = styled("div")(({
|
|
|
16
16
|
width,
|
|
17
17
|
height
|
|
18
18
|
}) => ({
|
|
19
|
+
".lazy-load-image-background.blur": {
|
|
20
|
+
filter: "blur(15px)"
|
|
21
|
+
},
|
|
22
|
+
".lazy-load-image-background.blur.lazy-load-image-loaded": {
|
|
23
|
+
filter: "blur(0)",
|
|
24
|
+
transition: "filter .3s;"
|
|
25
|
+
},
|
|
26
|
+
".lazy-load-image-background.blur > img": {
|
|
27
|
+
opacity: "0"
|
|
28
|
+
},
|
|
29
|
+
".lazy-load-image-background.blur.lazy-load-image-loaded > img": {
|
|
30
|
+
opacity: 1,
|
|
31
|
+
transition: "opacity .3s"
|
|
32
|
+
},
|
|
19
33
|
width,
|
|
20
34
|
height,
|
|
21
35
|
lineHeight: 0,
|
|
@@ -765,5 +765,4 @@ var build = { exports: {} };
|
|
|
765
765
|
const ie = ne;
|
|
766
766
|
})(), build.exports = o;
|
|
767
767
|
})();
|
|
768
|
-
const blur = /* @__PURE__ */ (() => ".lazy-load-image-background.blur{filter:blur(15px)}.lazy-load-image-background.blur.lazy-load-image-loaded{filter:blur(0);transition:filter .3s}.lazy-load-image-background.blur>img{opacity:0}.lazy-load-image-background.blur.lazy-load-image-loaded>img{opacity:1;transition:opacity .3s}\n")();
|
|
769
768
|
export { build as b };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.18",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite",
|
|
@@ -20,26 +20,26 @@
|
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@hookform/resolvers": "^2.9.5",
|
|
22
22
|
"@m4l/core": "^0.0.27",
|
|
23
|
-
"@m4l/graphics": "^0.0.
|
|
23
|
+
"@m4l/graphics": "^0.0.20",
|
|
24
24
|
"@mui/lab": "^5.0.0-alpha.89",
|
|
25
25
|
"@mui/material": "^5.8.7",
|
|
26
26
|
"@mui/x-date-pickers": "^5.0.0-beta.0",
|
|
27
27
|
"clsx": "^1.2.1",
|
|
28
28
|
"date-fns": "^2.28.0",
|
|
29
|
+
"lodash": "^4.17.21",
|
|
29
30
|
"prop-types": "^15.8.1",
|
|
30
31
|
"react": "^17.0.0 || 18.x",
|
|
31
32
|
"react-dnd": "^16.0.1",
|
|
32
33
|
"react-dnd-html5-backend": "^16.0.1",
|
|
33
34
|
"react-dom": "^18.0.0",
|
|
34
35
|
"react-hook-form": "^7.33.1",
|
|
35
|
-
"lodash": "^4.17.21",
|
|
36
36
|
"react-router-dom": "^6.3.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@emotion/styled": "^11.9.3",
|
|
40
40
|
"@hookform/resolvers": "^2.9.5",
|
|
41
41
|
"@m4l/core": "^0.0.27",
|
|
42
|
-
"@m4l/graphics": "^0.0.
|
|
42
|
+
"@m4l/graphics": "^0.0.20",
|
|
43
43
|
"@mui/lab": "^5.0.0-alpha.89",
|
|
44
44
|
"@mui/material": "^5.8.7",
|
|
45
45
|
"@mui/x-date-pickers": "^5.0.0-beta.0",
|
package/dist/style.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.lazy-load-image-background.blur{filter:blur(15px)}.lazy-load-image-background.blur.lazy-load-image-loaded{filter:blur(0);transition:filter .3s}.lazy-load-image-background.blur>img{opacity:0}.lazy-load-image-background.blur.lazy-load-image-loaded>img{opacity:1;transition:opacity .3s}
|