@mtes-mct/monitor-ui 2.19.0 → 2.19.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 CHANGED
@@ -1,3 +1,12 @@
1
+ ## [2.19.1](https://github.com/MTES-MCT/monitor-ui/compare/v2.19.0...v2.19.1) (2023-02-20)
2
+
3
+ # [2.19.0](https://github.com/MTES-MCT/monitor-ui/compare/v2.18.1...v2.19.0) (2023-02-17)
4
+
5
+
6
+ ### Features
7
+
8
+ * **fieds:** Update coordinates input style ([90a72f6](https://github.com/MTES-MCT/monitor-ui/commit/90a72f6fd73f635fcc9f284112fcd69fd6467d1b))
9
+
1
10
  ## [2.18.1](https://github.com/MTES-MCT/monitor-ui/compare/v2.18.0...v2.18.1) (2023-02-17)
2
11
 
3
12
 
package/index.js CHANGED
@@ -5321,6 +5321,7 @@ const Box$5 = styled.div `
5321
5321
  width: 100%;
5322
5322
 
5323
5323
  > .rs-picker-input {
5324
+ background-color: ${p => (p.$isLight ? p.theme.color.white : p.theme.color.gainsboro)} !important;
5324
5325
  border: solid 1px ${p => (p.$isActive ? p.theme.color.blueGray[100] : p.theme.color.gainsboro)} !important;
5325
5326
  cursor: pointer;
5326
5327
  width: 100%;
@@ -5357,6 +5358,9 @@ const Box$5 = styled.div `
5357
5358
  }
5358
5359
 
5359
5360
  > .rs-picker-tag-wrapper {
5361
+ > .rs-tag {
5362
+ background-color: ${p => (p.$isLight ? p.theme.color.gainsboro : p.theme.color.white)};
5363
+ }
5360
5364
  .rs-picker-search {
5361
5365
  .rs-picker-search-input {
5362
5366
  padding: 0 8px !important;
@@ -15672,7 +15676,7 @@ const Box$1 = styled.div `
15672
15676
 
15673
15677
  input {
15674
15678
  background-color: ${p => (p.$isLight ? p.theme.color.white : p.theme.color.gainsboro)};
15675
- border: none;
15679
+ border: ${p => (p.$isLight ? `1px solid ${p.theme.color.lightGray}` : 'none')};
15676
15680
  color: ${p => p.theme.color.gunMetal};
15677
15681
  height: 33px;
15678
15682
  padding: 7px 11px;