@mtes-mct/monitor-ui 2.19.0 → 2.19.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [2.19.0](https://github.com/MTES-MCT/monitor-ui/compare/v2.18.1...v2.19.0) (2023-02-17)
2
+
3
+
4
+ ### Features
5
+
6
+ * **fieds:** Update coordinates input style ([90a72f6](https://github.com/MTES-MCT/monitor-ui/commit/90a72f6fd73f635fcc9f284112fcd69fd6467d1b))
7
+
1
8
  ## [2.18.1](https://github.com/MTES-MCT/monitor-ui/compare/v2.18.0...v2.18.1) (2023-02-17)
2
9
 
3
10
 
package/index.js CHANGED
@@ -15672,7 +15672,7 @@ const Box$1 = styled.div `
15672
15672
 
15673
15673
  input {
15674
15674
  background-color: ${p => (p.$isLight ? p.theme.color.white : p.theme.color.gainsboro)};
15675
- border: none;
15675
+ border: ${p => (p.$isLight ? `1px solid ${p.theme.color.lightGray}` : 'none')};
15676
15676
  color: ${p => p.theme.color.gunMetal};
15677
15677
  height: 33px;
15678
15678
  padding: 7px 11px;