@mtes-mct/monitor-ui 7.4.0 → 7.4.2
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 +4 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/theme.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [7.4.1](https://github.com/MTES-MCT/monitor-ui/compare/v7.4.0...v7.4.1) (2023-06-21)
|
|
2
|
+
|
|
3
|
+
# [7.4.0](https://github.com/MTES-MCT/monitor-ui/compare/v7.3.1...v7.4.0) (2023-06-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **icons:** add PinFilled icon ([dfef008](https://github.com/MTES-MCT/monitor-ui/commit/dfef008403136f2bc3dfeab66a1ea42aa9b8ff70))
|
|
9
|
+
|
|
1
10
|
## [7.3.1](https://github.com/MTES-MCT/monitor-ui/compare/v7.3.0...v7.3.1) (2023-06-13)
|
|
2
11
|
|
|
3
12
|
|
package/index.js
CHANGED
|
@@ -264,6 +264,8 @@ const THEME = {
|
|
|
264
264
|
goldenPoppy: '#FAC11A',
|
|
265
265
|
maximumRed: '#E1000F',
|
|
266
266
|
/** CONTEXTUAL COLORS */
|
|
267
|
+
// Mission status
|
|
268
|
+
yellowGreen: '#8CC800',
|
|
267
269
|
// Risk Factor
|
|
268
270
|
cadetGray: '#8E9A9F',
|
|
269
271
|
grullo: '#B89B8C',
|
|
@@ -2865,6 +2867,7 @@ const MenuButton = styled(IconButton) `
|
|
|
2865
2867
|
border-bottom: solid 0.5px ${p => p.theme.color.slateGray};
|
|
2866
2868
|
color: ${p => (p.$isActive ? p.theme.color.white : p.theme.color.gainsboro)};
|
|
2867
2869
|
padding: 18px;
|
|
2870
|
+
height: 64px;
|
|
2868
2871
|
|
|
2869
2872
|
:hover,
|
|
2870
2873
|
:focus {
|
|
@@ -3089,7 +3092,7 @@ function Minus({ color, size, ...nativeProps }) {
|
|
|
3089
3092
|
}
|
|
3090
3093
|
|
|
3091
3094
|
function MissionAction({ color, size, ...nativeProps }) {
|
|
3092
|
-
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)" })] }) }));
|
|
3093
3096
|
}
|
|
3094
3097
|
|
|
3095
3098
|
function More({ color, size, ...nativeProps }) {
|