@m4l/components 3.0.2 → 3.1.0
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/package.json +10 -10
- package/style.css +65 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"lint-staged": {
|
|
6
6
|
"src/**/*.{js,ts,jsx,tsx}": "eslint --max-warnings=0 --fix",
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"@mui/lab": "5.0.0-alpha.89",
|
|
17
17
|
"@mui/material": "5.15.19",
|
|
18
18
|
"@mui/x-date-pickers": "6.11.1",
|
|
19
|
-
"@storybook/addon-essentials": "8.
|
|
20
|
-
"@storybook/addon-interactions": "8.
|
|
21
|
-
"@storybook/addon-links": "8.
|
|
22
|
-
"@storybook/addon-onboarding": "8.
|
|
23
|
-
"@storybook/blocks": "8.
|
|
24
|
-
"@storybook/react": "8.
|
|
25
|
-
"@storybook/react-vite": "8.
|
|
26
|
-
"@storybook/test": "8.
|
|
19
|
+
"@storybook/addon-essentials": "8.2.5",
|
|
20
|
+
"@storybook/addon-interactions": "8.2.5",
|
|
21
|
+
"@storybook/addon-links": "8.2.5",
|
|
22
|
+
"@storybook/addon-onboarding": "8.2.5",
|
|
23
|
+
"@storybook/blocks": "8.2.5",
|
|
24
|
+
"@storybook/react": "8.2.5",
|
|
25
|
+
"@storybook/react-vite": "8.2.5",
|
|
26
|
+
"@storybook/test": "8.2.5",
|
|
27
27
|
"chart.js": "^4.4.0",
|
|
28
28
|
"chartjs-chart-error-bars": "^4.3.3",
|
|
29
29
|
"esbuild": "^0.20.1",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"react-toastify": "10.0.5",
|
|
55
55
|
"react-transition-group": "^4.4.5",
|
|
56
56
|
"simplebar-react": "2.4.1",
|
|
57
|
-
"storybook": "8.
|
|
57
|
+
"storybook": "8.2.5",
|
|
58
58
|
"yup": "^0.32.11",
|
|
59
59
|
"zustand": "4.3.6"
|
|
60
60
|
},
|
package/style.css
CHANGED
|
@@ -1 +1,65 @@
|
|
|
1
|
-
|
|
1
|
+
.react-resizable {
|
|
2
|
+
position: relative;
|
|
3
|
+
}
|
|
4
|
+
.react-resizable-handle {
|
|
5
|
+
position: absolute;
|
|
6
|
+
width: 20px;
|
|
7
|
+
height: 20px;
|
|
8
|
+
background-repeat: no-repeat;
|
|
9
|
+
background-origin: content-box;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
|
|
12
|
+
background-position: bottom right;
|
|
13
|
+
padding: 0 3px 3px 0;
|
|
14
|
+
}
|
|
15
|
+
.react-resizable-handle-sw {
|
|
16
|
+
bottom: 0;
|
|
17
|
+
left: 0;
|
|
18
|
+
cursor: sw-resize;
|
|
19
|
+
transform: rotate(90deg);
|
|
20
|
+
}
|
|
21
|
+
.react-resizable-handle-se {
|
|
22
|
+
bottom: 0;
|
|
23
|
+
right: 0;
|
|
24
|
+
cursor: se-resize;
|
|
25
|
+
}
|
|
26
|
+
.react-resizable-handle-nw {
|
|
27
|
+
top: 0;
|
|
28
|
+
left: 0;
|
|
29
|
+
cursor: nw-resize;
|
|
30
|
+
transform: rotate(180deg);
|
|
31
|
+
}
|
|
32
|
+
.react-resizable-handle-ne {
|
|
33
|
+
top: 0;
|
|
34
|
+
right: 0;
|
|
35
|
+
cursor: ne-resize;
|
|
36
|
+
transform: rotate(270deg);
|
|
37
|
+
}
|
|
38
|
+
.react-resizable-handle-w,
|
|
39
|
+
.react-resizable-handle-e {
|
|
40
|
+
top: 50%;
|
|
41
|
+
margin-top: -10px;
|
|
42
|
+
cursor: ew-resize;
|
|
43
|
+
}
|
|
44
|
+
.react-resizable-handle-w {
|
|
45
|
+
left: 0;
|
|
46
|
+
transform: rotate(135deg);
|
|
47
|
+
}
|
|
48
|
+
.react-resizable-handle-e {
|
|
49
|
+
right: 0;
|
|
50
|
+
transform: rotate(315deg);
|
|
51
|
+
}
|
|
52
|
+
.react-resizable-handle-n,
|
|
53
|
+
.react-resizable-handle-s {
|
|
54
|
+
left: 50%;
|
|
55
|
+
margin-left: -10px;
|
|
56
|
+
cursor: ns-resize;
|
|
57
|
+
}
|
|
58
|
+
.react-resizable-handle-n {
|
|
59
|
+
top: 0;
|
|
60
|
+
transform: rotate(225deg);
|
|
61
|
+
}
|
|
62
|
+
.react-resizable-handle-s {
|
|
63
|
+
bottom: 0;
|
|
64
|
+
transform: rotate(45deg);
|
|
65
|
+
}
|