@m4l/components 0.0.16 → 0.0.19

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.16",
4
+ "version": "0.0.19",
5
5
  "license": "UNLICENSED",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -15,31 +15,32 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "react": "^17.0.0 || 18.x",
18
- "react-dom": "^18.0.0"
18
+ "react-dom": "^18.0.0",
19
+ "react-draggable": "^4.4.5"
19
20
  },
20
21
  "peerDependencies": {
21
22
  "@hookform/resolvers": "^2.9.5",
22
23
  "@m4l/core": "^0.0.27",
23
- "@m4l/graphics": "^0.0.18",
24
+ "@m4l/graphics": "^0.0.20",
24
25
  "@mui/lab": "^5.0.0-alpha.89",
25
26
  "@mui/material": "^5.8.7",
26
27
  "@mui/x-date-pickers": "^5.0.0-beta.0",
27
28
  "clsx": "^1.2.1",
28
29
  "date-fns": "^2.28.0",
30
+ "lodash": "^4.17.21",
29
31
  "prop-types": "^15.8.1",
30
32
  "react": "^17.0.0 || 18.x",
31
33
  "react-dnd": "^16.0.1",
32
34
  "react-dnd-html5-backend": "^16.0.1",
33
35
  "react-dom": "^18.0.0",
34
36
  "react-hook-form": "^7.33.1",
35
- "lodash": "^4.17.21",
36
37
  "react-router-dom": "^6.3.0"
37
38
  },
38
39
  "devDependencies": {
39
40
  "@emotion/styled": "^11.9.3",
40
41
  "@hookform/resolvers": "^2.9.5",
41
42
  "@m4l/core": "^0.0.27",
42
- "@m4l/graphics": "^0.0.18",
43
+ "@m4l/graphics": "^0.0.20",
43
44
  "@mui/lab": "^5.0.0-alpha.89",
44
45
  "@mui/material": "^5.8.7",
45
46
  "@mui/x-date-pickers": "^5.0.0-beta.0",
@@ -73,7 +74,6 @@
73
74
  "react-data-grid": "^7.0.0-beta.13",
74
75
  "react-dnd": "^16.0.1",
75
76
  "react-dnd-html5-backend": "^16.0.1",
76
- "react-draggable": "^4.4.5",
77
77
  "react-json-view": "^1.21.3",
78
78
  "react-lazy-load-image-component": "^1.5.4",
79
79
  "react-resizable": "^3.0.4",
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}