@citizenplane/pimp 9.15.3 → 9.15.4
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/pimp.es.js +2030 -2030
- package/dist/pimp.umd.js +41 -41
- package/package.json +1 -1
- package/src/components/CpTable.vue +2 -0
package/package.json
CHANGED
|
@@ -503,6 +503,8 @@ const getColumnStyle = (column: CpTableColumnObject, idx: number) => {
|
|
|
503
503
|
|
|
504
504
|
if (!hasAFullWidthColumnVisible.value && isLastColumn(idx)) {
|
|
505
505
|
width = `${FULL_WIDTH_SIZE}px`
|
|
506
|
+
} else if (column.isFull) {
|
|
507
|
+
width = `${FULL_WIDTH_SIZE}px`
|
|
506
508
|
} else if (column.width) {
|
|
507
509
|
width = `${column.width}px`
|
|
508
510
|
}
|