@loadsmart/loadsmart-ui 5.6.2 → 5.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loadsmart/loadsmart-ui",
3
- "version": "5.6.2",
3
+ "version": "5.6.3",
4
4
  "description": "Miranda UI, a React UI library",
5
5
  "main": "dist",
6
6
  "files": [
@@ -156,7 +156,7 @@ const StyledTable = styled.table<{ scale?: string }>`
156
156
 
157
157
  border-collapse: collapse;
158
158
 
159
- ${StyledTableBody} ${StyledTableRow},
159
+ ${StyledTableBody} ${StyledTableRow},
160
160
  ${StyledTableBody} ${StyledExpandableTableRow} {
161
161
  height: ${conditional({
162
162
  '24px': whenProps({ scale: 'small' }),
@@ -165,10 +165,8 @@ const StyledTable = styled.table<{ scale?: string }>`
165
165
  })};
166
166
  }
167
167
 
168
- ${StyledTableBody} ${StyledTableRow} ${StyledTableCell},
169
- ${StyledTableHead} ${StyledTableRow} ${StyledTableHeadCell},
170
- ${StyledTableBody} ${StyledExpandableTableRow} ${StyledTableCell},
171
- ${StyledTableHead} ${StyledExpandableTableRow} ${StyledTableHeadCell} {
168
+ ${StyledTableHeadCell},
169
+ ${StyledTableCell} {
172
170
  padding: ${conditional({
173
171
  'space-xs': whenProps({ scale: 'small' }),
174
172
  'space-s': whenProps({ scale: ['default', 'large'] }),