Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: gt
Title: Easily Create Presentation-Ready Display Tables
Version: 1.2.0.9001
Version: 1.3.0
Authors@R: c(
person("Richard", "Iannone", , "rich@posit.co", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-3925-190X")),
Expand Down Expand Up @@ -55,6 +55,7 @@ Imports:
vctrs,
xml2 (>= 1.3.6)
Suggests:
bit64,
farver,
fontawesome (>= 0.5.2),
ggplot2,
Expand Down
24 changes: 20 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
# gt (development version)
# gt 1.3.0

* Update how long text that has a line break or is horizontally aligned in a cell (stubs, labels, table body). (@thebioengineer)
## New features

* The new `row_order()` function makes it possible to order rows within groups by one or more columns. This complements the existing `row_group_order()` function, which reorders the groups themselves (#1112). (#2099)

* Added the `info_tf_style()` function, which provides a quick reference table showing all available styles for formatting `TRUE`/`FALSE` values with `fmt_tf()` (#2107). (#2108)

## Minor improvements and bug fixes

* Numeric formatting functions (e.g., `fmt_number()`, `fmt_integer()`, `fmt_currency()`, etc.) now work with `bit64::integer64` columns (#1932). (#2106)

* Several improvements were made to LaTeX output tables: text in cells is now wrapped correctly when the cell has a specified width, and footnotes placed in such cells are now correctly rendered. (@thebioengineer, #2097)

* The new `stub.separate` option in `tab_options()` controls whether vertical lines are displayed at the stub boundary; this works with both HTML and LaTeX output (#2096). (@thebioengineer, #2101)

* The `cells_stub()` location helper now correctly targets all stub columns when using a multi-column stub (#2100). (#2102)

* Improved multi-column stub styling in LaTeX output tables; the `cells_stub()` helper now works properly for adding footnotes and applying styles to stub cells in LaTeX (#2103). (#2104)

* Added `stub.separate` option to control if vertical bars/borders are added for stubs (#2096). (@thebioengineer)
* When using `row_group_as_column = TRUE` for LaTeX output tables, column widths are now correctly computed (#2110). (@thebioengineer, #2112)

* Fixed handling of row_groups_as_column=TRUE for latex columns (#2110). (@thebioengineer)
* Fixed an issue where applying styling to `columns = everything()` could miss columns when a multi-column stub is present (#2094). (#2113)

# gt 1.2.0

Expand Down