@mtes-mct/monitor-ui 10.15.0 → 10.15.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 +15 -0
- package/index.js +23 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/theme.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [10.15.1](https://github.com/MTES-MCT/monitor-ui/compare/v10.15.0...v10.15.1) (2023-12-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **theme:** dummy commit to release ([9312c7e](https://github.com/MTES-MCT/monitor-ui/commit/9312c7e6e106d9ce831d66805534be06576ea3cf))
|
|
7
|
+
|
|
8
|
+
## [10.14.2](https://github.com/MTES-MCT/monitor-ui/compare/v10.14.1...v10.14.2) (2023-12-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **CoordinatesInput:** fix light mode ([643d22c](https://github.com/MTES-MCT/monitor-ui/commit/643d22c1632d863e6777b9e7c8f97137a69787dd))
|
|
14
|
+
* **Multiradio:** rework sizing and centering ([46c9325](https://github.com/MTES-MCT/monitor-ui/commit/46c932564a0109f0eb2a66a902de6457231b52ea))
|
|
15
|
+
|
|
1
16
|
## [10.14.1](https://github.com/MTES-MCT/monitor-ui/compare/v10.14.0...v10.14.1) (2023-12-04)
|
|
2
17
|
|
|
3
18
|
## [10.14.0](https://github.com/MTES-MCT/monitor-ui/compare/v10.13.0...v10.14.0) (2023-11-22)
|
package/index.js
CHANGED
|
@@ -55863,6 +55863,28 @@ const StyledCheckbox = styled(Checkbox$1)`
|
|
|
55863
55863
|
top: 2px !important;
|
|
55864
55864
|
}
|
|
55865
55865
|
}
|
|
55866
|
+
|
|
55867
|
+
// in readOnly, override hover effects and change cursor
|
|
55868
|
+
${(props)=>props.readOnly && `
|
|
55869
|
+
> .rs-checkbox-checker:hover {
|
|
55870
|
+
label {
|
|
55871
|
+
cursor: not-allowed;
|
|
55872
|
+
}
|
|
55873
|
+
.rs-checkbox-wrapper .rs-checkbox-inner::before {
|
|
55874
|
+
border-color: ${props.theme.color.lightGray};
|
|
55875
|
+
background-color: ${props.theme.color.gainsboro};
|
|
55876
|
+
}
|
|
55877
|
+
}
|
|
55878
|
+
|
|
55879
|
+
&.rs-checkbox-checked {
|
|
55880
|
+
> .rs-checkbox-checker:hover {
|
|
55881
|
+
.rs-checkbox-wrapper .rs-checkbox-inner::before {
|
|
55882
|
+
border-color: ${props.theme.color.charcoal};
|
|
55883
|
+
background-color: ${props.theme.color.charcoal};
|
|
55884
|
+
}
|
|
55885
|
+
}
|
|
55886
|
+
}
|
|
55887
|
+
`}
|
|
55866
55888
|
`;
|
|
55867
55889
|
|
|
55868
55890
|
function getRsuiteValuesFromOptionValues(optionValues, optionValueKey) {
|
|
@@ -58378,7 +58400,7 @@ const Box$5 = styled.div`
|
|
|
58378
58400
|
> .rs-picker-check-menu {
|
|
58379
58401
|
margin: 0;
|
|
58380
58402
|
|
|
58381
|
-
|
|
58403
|
+
div[role='option'] {
|
|
58382
58404
|
> .rs-check-item {
|
|
58383
58405
|
> .rs-checkbox-checker {
|
|
58384
58406
|
> label {
|