@mantine/charts 7.7.1 → 7.8.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 +5 -5
- package/styles.css +7 -3
- package/styles.layer.css +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mantine/charts",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.8.0",
|
|
4
4
|
"description": "Charts components built with recharts and Mantine",
|
|
5
5
|
"homepage": "https://mantine.dev/",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"directory": "packages/@mantine/charts"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@mantine/core": "7.
|
|
39
|
-
"@mantine/hooks": "7.
|
|
38
|
+
"@mantine/core": "7.8.0",
|
|
39
|
+
"@mantine/hooks": "7.8.0",
|
|
40
40
|
"react": "^18.2.0",
|
|
41
41
|
"react-dom": "^18.2.0",
|
|
42
42
|
"recharts": "^2.10.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@mantine-tests/core": "1.1.0",
|
|
46
|
-
"@mantine/core": "7.
|
|
47
|
-
"@mantine/hooks": "7.
|
|
46
|
+
"@mantine/core": "7.8.0",
|
|
47
|
+
"@mantine/hooks": "7.8.0"
|
|
48
48
|
}
|
|
49
49
|
}
|
package/styles.css
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
:where([data-mantine-color-scheme='light']) .m_e4d36c9b {
|
|
9
|
-
border:
|
|
9
|
+
border: 1px solid var(--mantine-color-gray-3);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
:where([data-mantine-color-scheme='dark']) .m_e4d36c9b {
|
|
13
|
-
border:
|
|
13
|
+
border: 1px solid var(--mantine-color-dark-4);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.m_7f4bcb19 {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
display: flex;
|
|
80
80
|
align-items: center;
|
|
81
81
|
gap: calc(0.4375rem * var(--mantine-scale));
|
|
82
|
-
padding:
|
|
82
|
+
padding: 7px var(--mantine-spacing-xs);
|
|
83
83
|
border-radius: var(--mantine-radius-default);
|
|
84
84
|
line-height: 1;
|
|
85
85
|
}
|
|
@@ -115,6 +115,10 @@
|
|
|
115
115
|
width: 100%;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
+
.m_a50f3e58 svg {
|
|
119
|
+
overflow: visible;
|
|
120
|
+
}
|
|
121
|
+
|
|
118
122
|
:where([data-mantine-color-scheme='light']) .m_a50f3e58 {
|
|
119
123
|
--chart-grid-color: rgba(173, 181, 189, 0.6);
|
|
120
124
|
--chart-cursor-fill: rgba(173, 181, 189, 0.15);
|
package/styles.layer.css
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
:where([data-mantine-color-scheme='light']) .m_e4d36c9b {
|
|
9
|
-
border:
|
|
9
|
+
border: 1px solid var(--mantine-color-gray-3);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
:where([data-mantine-color-scheme='dark']) .m_e4d36c9b {
|
|
13
|
-
border:
|
|
13
|
+
border: 1px solid var(--mantine-color-dark-4);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.m_7f4bcb19 {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
display: flex;
|
|
80
80
|
align-items: center;
|
|
81
81
|
gap: calc(0.4375rem * var(--mantine-scale));
|
|
82
|
-
padding:
|
|
82
|
+
padding: 7px var(--mantine-spacing-xs);
|
|
83
83
|
border-radius: var(--mantine-radius-default);
|
|
84
84
|
line-height: 1;
|
|
85
85
|
}
|
|
@@ -115,6 +115,10 @@
|
|
|
115
115
|
width: 100%;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
+
.m_a50f3e58 svg {
|
|
119
|
+
overflow: visible;
|
|
120
|
+
}
|
|
121
|
+
|
|
118
122
|
:where([data-mantine-color-scheme='light']) .m_a50f3e58 {
|
|
119
123
|
--chart-grid-color: rgba(173, 181, 189, 0.6);
|
|
120
124
|
--chart-cursor-fill: rgba(173, 181, 189, 0.15);
|