@mtes-mct/monitor-ui 7.4.1 → 7.4.3
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/CHANGELOG.md +9 -0
- package/index.js +3 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [7.4.2](https://github.com/MTES-MCT/monitor-ui/compare/v7.4.1...v7.4.2) (2023-06-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **icons:** update mission icon ([452140f](https://github.com/MTES-MCT/monitor-ui/commit/452140f2625ee35cde020cddd3e0fd077622ed1e))
|
|
7
|
+
|
|
8
|
+
## [7.4.1](https://github.com/MTES-MCT/monitor-ui/compare/v7.4.0...v7.4.1) (2023-06-21)
|
|
9
|
+
|
|
1
10
|
# [7.4.0](https://github.com/MTES-MCT/monitor-ui/compare/v7.3.1...v7.4.0) (2023-06-15)
|
|
2
11
|
|
|
3
12
|
|
package/index.js
CHANGED
|
@@ -2867,6 +2867,7 @@ const MenuButton = styled(IconButton) `
|
|
|
2867
2867
|
border-bottom: solid 0.5px ${p => p.theme.color.slateGray};
|
|
2868
2868
|
color: ${p => (p.$isActive ? p.theme.color.white : p.theme.color.gainsboro)};
|
|
2869
2869
|
padding: 18px;
|
|
2870
|
+
height: 64px;
|
|
2870
2871
|
|
|
2871
2872
|
:hover,
|
|
2872
2873
|
:focus {
|
|
@@ -3091,7 +3092,7 @@ function Minus({ color, size, ...nativeProps }) {
|
|
|
3091
3092
|
}
|
|
3092
3093
|
|
|
3093
3094
|
function MissionAction({ color, size, ...nativeProps }) {
|
|
3094
|
-
return (jsx(IconBox, { "$color": color, "$size": size, children:
|
|
3095
|
+
return (jsx(IconBox, { "$color": color, "$size": size, children: jsxs("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M214,2V0h-2V2h-4V0h-2V2h-3V18h14V2Zm1,14H205V4h10Z", fill: "currentColor", transform: "translate(-200)" }), jsx("rect", { fill: "currentColor", height: "1.5", transform: "translate(7 6.5)", width: "6" }), jsx("rect", { fill: "currentColor", height: "1.5", transform: "translate(7 9.5)", width: "6" }), jsx("path", { d: "M200,0h20V20H200Z", fill: "none", transform: "translate(-200)" }), jsx("path", { d: "M200,0h20V20H200Z", fill: "none", transform: "translate(-200)" })] }) }));
|
|
3095
3096
|
}
|
|
3096
3097
|
|
|
3097
3098
|
function More({ color, size, ...nativeProps }) {
|
|
@@ -3179,7 +3180,7 @@ function SortingArrows({ color, size, ...nativeProps }) {
|
|
|
3179
3180
|
}
|
|
3180
3181
|
|
|
3181
3182
|
function Summary({ color, size, ...nativeProps }) {
|
|
3182
|
-
return (jsx(IconBox, { "$color": color, "$size": size, children: jsxs("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [
|
|
3183
|
+
return (jsx(IconBox, { "$color": color, "$size": size, children: jsxs("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("defs", { children: jsx("clipPath", { children: jsx("use", {}) }) }), jsx("g", { children: jsx("rect", { fill: "none", height: "20", width: "20" }) }), jsxs("g", { children: [jsx("rect", { fill: "currentColor", height: "1.5", transform: "translate(6 6)", width: "8" }), jsx("rect", { fill: "currentColor", height: "1.5", transform: "translate(6 9.25)", width: "8" }), jsx("rect", { fill: "currentColor", height: "1.5", transform: "translate(6 12.5)", width: "8" }), jsx("path", { d: "M16.5,3.5v13H3.5V3.5h13M18,2H2V18H18V2Z", fill: "currentColor" })] })] }) }));
|
|
3183
3184
|
}
|
|
3184
3185
|
|
|
3185
3186
|
function Tag$1({ color, size, ...nativeProps }) {
|