v0.6.3
Released: 2026-05-13
- Column auto-fit (double-click the resize handle) now correctly fits the Module column too. v0.6.2’s fix used
cell.scrollWidth, which equals the cell’s clientWidth when content fits inside the box, causing each double-click to read the column’s current width back and grow it by the padding constant. v0.6.3 replaces every width measurement withRange.getBoundingClientRect()and filters out absolutely-positioned children (the.col-resize-handleon headers and the.expand-iconon HCI-expandable Module cells), so the function measures only the natural inline content.