@mtes-mct/monitor-ui 12.0.2 → 12.0.3

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,11 @@
1
+ ## [12.0.2](https://github.com/MTES-MCT/monitor-ui/compare/v12.0.1...v12.0.2) (2024-02-27)
2
+
3
+
4
+ ### Styles
5
+
6
+ * **fields:** fix MultiRadio options margin when isInline ([9c7e15b](https://github.com/MTES-MCT/monitor-ui/commit/9c7e15bdc8dac946d16e06cc7336e4cc2802cbb7))
7
+ * **fields:** fix pickers border color when isTransparent ([b10ac28](https://github.com/MTES-MCT/monitor-ui/commit/b10ac286201610cba620291cb525167a01c0d659))
8
+
1
9
  ## [12.0.1](https://github.com/MTES-MCT/monitor-ui/compare/v12.0.0...v12.0.1) (2024-02-27)
2
10
 
3
11
 
package/index.js CHANGED
@@ -68571,13 +68571,9 @@ const ChecboxesBox = styled.div`
68571
68571
  display: flex;
68572
68572
  flex-direction: ${(p)=>p.$isInline ? 'row' : 'column'};
68573
68573
 
68574
- ${(p)=>!p.$isInline && css`
68575
- > div:not(:first-child) {
68576
- > .rs-checkbox {
68577
- margin: 8px 0 0 0;
68578
- }
68579
- }
68580
- `}
68574
+ > .Field-Checkbox:not(:first-child) {
68575
+ margin: ${(p)=>p.$isInline ? '0 0 0 16px' : '8px 0 0 0'};
68576
+ }
68581
68577
  `;
68582
68578
 
68583
68579
  /**