@mtes-mct/monitor-ui 7.3.0 → 7.3.1
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 +8 -0
- package/index.js +5 -5
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# [7.3.0](https://github.com/MTES-MCT/monitor-ui/compare/v7.2.1...v7.3.0) (2023-06-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **components:** clean naming for export ([83f3b1b](https://github.com/MTES-MCT/monitor-ui/commit/83f3b1bb3eec48b01abdea7444b6c8e2ca0f9c56))
|
|
7
|
+
* **components:** create SideMenu component ([1ba4358](https://github.com/MTES-MCT/monitor-ui/commit/1ba435820145634ce8449612d2f4e7ff63d894da))
|
|
8
|
+
|
|
1
9
|
## [7.2.1](https://github.com/MTES-MCT/monitor-ui/compare/v7.2.0...v7.2.1) (2023-06-08)
|
|
2
10
|
|
|
3
11
|
|
package/index.js
CHANGED
|
@@ -2862,7 +2862,7 @@ const MenuButton = styled(IconButton) `
|
|
|
2862
2862
|
animation: none;
|
|
2863
2863
|
background: ${p => (p.$isActive ? p.theme.color.blueGray[100] : 'none')};
|
|
2864
2864
|
border: 0;
|
|
2865
|
-
border-bottom: solid
|
|
2865
|
+
border-bottom: solid 0.5px ${p => p.theme.color.slateGray};
|
|
2866
2866
|
color: ${p => (p.$isActive ? p.theme.color.white : p.theme.color.gainsboro)};
|
|
2867
2867
|
padding: 18px;
|
|
2868
2868
|
|
|
@@ -2870,15 +2870,15 @@ const MenuButton = styled(IconButton) `
|
|
|
2870
2870
|
:focus {
|
|
2871
2871
|
background: ${p => (p.$isActive ? p.theme.color.blueGray[100] : 'rgba(255, 255, 255, 0.125)')};
|
|
2872
2872
|
border: 0;
|
|
2873
|
-
border
|
|
2873
|
+
border: none;
|
|
2874
2874
|
color: ${p => p.theme.color.white};
|
|
2875
2875
|
}
|
|
2876
2876
|
|
|
2877
2877
|
:first-child {
|
|
2878
|
-
border-top: solid
|
|
2878
|
+
border-top: solid 0.5px ${p => p.theme.color.slateGray};
|
|
2879
2879
|
|
|
2880
2880
|
:hover {
|
|
2881
|
-
border
|
|
2881
|
+
border: none;
|
|
2882
2882
|
}
|
|
2883
2883
|
}
|
|
2884
2884
|
`;
|
|
@@ -2890,7 +2890,7 @@ const Wrapper = styled.div `
|
|
|
2890
2890
|
background-color: ${p => p.theme.color.charcoal};
|
|
2891
2891
|
box-sizing: border-box;
|
|
2892
2892
|
display: flex;
|
|
2893
|
-
height:
|
|
2893
|
+
height: 100vh;
|
|
2894
2894
|
flex-direction: column;
|
|
2895
2895
|
width: 64px;
|
|
2896
2896
|
padding: 64px 0 0;
|