v0.0.8
What's Changed
- Added
fit-spans
option totablex
andcellx
(#111)- Accepts
(x: bool, y: bool)
. When set to(x: true)
, colspans won't affect the sizes ofauto
columns. When set to(y: true)
, rowspans won't affect the sizes ofauto
rows. - Defaults to
false
, equivalent to(x: false, y: false)
, that is, colspans and rowspans affect the sizes ofauto
tracks (columns and rows) by default (expanding the last spanned track if the colspan/rowspan is too large). - Useful when you want merged cells (or a specific merged cell) to "fit" within their spanned columns and rows. May help when adding a colspan or rowspan causes an
auto
-sized track to inadvertently expand.
- Accepts
auto
column sizing received multiple improvements and bug fixes. Tables should now have more natural column widths. (#109, #116)- Several performance optimizations and other internal code improvements were made (#113, #114, #115).
- Documents with lots of
tablex
tables might now become up to 20% faster to cold compile. Give it a shot!
- Documents with lots of
- Fixed extra fixed-height rows appearing to have
auto
height (#108). - Fixed rows without any visible cells being drawn with zero height (#107).
New Contributors
Full Changelog: v0.0.7...v0.0.8