@mtes-mct/monitor-ui 17.2.1 → 17.2.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 +7 -0
- package/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [17.2.1](https://github.com/MTES-MCT/monitor-ui/compare/v17.2.0...v17.2.1) (2024-05-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **types:** fix AnyEnum key type ([de3f0cc](https://github.com/MTES-MCT/monitor-ui/commit/de3f0cce9a5228db0e1c48a7d6a7f4ec662b7ab0))
|
|
7
|
+
|
|
1
8
|
## [17.2.0](https://github.com/MTES-MCT/monitor-ui/compare/v17.1.1...v17.2.0) (2024-05-21)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -53373,7 +53373,8 @@ const PADDING$1 = {
|
|
|
53373
53373
|
// We can't use $-prefixed props here for some reason (maybe because the `as` prop exclude them?).
|
|
53374
53374
|
const StyledButton = styled.button`
|
|
53375
53375
|
align-items: center;
|
|
53376
|
-
border: solid
|
|
53376
|
+
border-style: solid;
|
|
53377
|
+
border-width: ${(p)=>p.isCompact ? 0 : 1}px;
|
|
53377
53378
|
display: flex;
|
|
53378
53379
|
justify-content: center;
|
|
53379
53380
|
padding: ${(p)=>p.isCompact ? 0 : PADDING$1[p.size]};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mtes-mct/monitor-ui",
|
|
3
3
|
"description": "Common React components, hooks, utilities and CSS stylesheets for MonitorFish, MonitorEnv and RapportNav.",
|
|
4
|
-
"version": "17.2.
|
|
4
|
+
"version": "17.2.2",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|