@castlabs/ui 5.5.0 → 5.5.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/dist/castlabs-ui.common.js +2 -2
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.core.js +1 -1
- package/dist/castlabs-ui.css +2 -2
- package/dist/castlabs-ui.module.js +1 -1
- package/dist/castlabs-ui.umd.js +6 -6
- package/dist/castlabs-ui.umd.js.map +1 -1
- package/package.json +8 -8
- package/src/components/table/ClTable/style.scss +5 -0
- package/src/components/table/ClTable/style.variables.scss +2 -2
- package/src/components/table/ClTableCel/Links/style.scss +1 -1
- package/src/styles/layout/helper.scss +6 -0
|
@@ -265,7 +265,7 @@ function clTableSetResizeListeners (resizer, id) {
|
|
|
265
265
|
// in nowrap mode we only adjust the first col
|
|
266
266
|
document
|
|
267
267
|
.querySelectorAll(
|
|
268
|
-
`#${id} tr th:nth-child(${colIndex - 1}), #${id} tr td:nth-child(${colIndex - 1})
|
|
268
|
+
`#${id} tr th:nth-child(${colIndex - 1})` // , #${id} tr td:nth-child(${colIndex - 1})
|
|
269
269
|
)
|
|
270
270
|
.forEach(cel => {
|
|
271
271
|
const width =
|