@mtes-mct/monitor-ui 10.19.1 → 10.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,10 @@
1
+ ## [10.19.1](https://github.com/MTES-MCT/monitor-ui/compare/v10.19.0...v10.19.1) (2024-01-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **table:** update padding in row and add prop isHighlight ([b129bd1](https://github.com/MTES-MCT/monitor-ui/commit/b129bd1f96a8bee776358d2b6977b284c6e3849f))
7
+
1
8
  ## [10.19.0](https://github.com/MTES-MCT/monitor-ui/compare/v10.18.0...v10.19.0) (2024-01-10)
2
9
 
3
10
 
package/index.js CHANGED
@@ -76517,6 +76517,7 @@ function RowCheckbox({ className = '', disabled = false, isChecked = false, isIn
76517
76517
  const Table = styled(SimpleTable.Table)`
76518
76518
  border-collapse: separate;
76519
76519
  border-spacing: 0 5px;
76520
+ table-layout: fixed;
76520
76521
  `;
76521
76522
  const Head = styled(SimpleTable.Head)`
76522
76523
  th:last-child {
@@ -76533,6 +76534,7 @@ const Th = styled(SimpleTable.Th)`
76533
76534
  border-bottom: 1px solid ${(p)=>p.theme.color.lightGray};
76534
76535
  border-right: none;
76535
76536
  padding: 2px 16px;
76537
+ width: ${(p)=>p.$width}px;
76536
76538
  `;
76537
76539
  const BodyTr = styled(SimpleTable.BodyTr)`
76538
76540
  td:first-child {
@@ -76550,6 +76552,7 @@ const Td = styled(SimpleTable.Td)`
76550
76552
  border-right: none;
76551
76553
  padding: 4px 16px;
76552
76554
  border-right: ${(p)=>p.$hasRightBorder ? `1px solid ${p.theme.color.lightGray}` : ''};
76555
+ width: ${(p)=>p.$width}px;
76553
76556
  `;
76554
76557
  const TableWithSelectableRows = {
76555
76558
  BodyTr,