Releases: LyzandeR/tableHTML
Releases · LyzandeR/tableHTML
2.1.0 tableHTML
- Added add_css_rows_in_column which adds individual css to each row within a column
- Added add_column_editable which makes a column editable (won't change the underlying data.frame)
- Added make_hyperlink to construct clickable hyperlinks within the table (and aliases)
- Fixed a bug with integer-indexing on add_css_column that wouldn't work with rownames.
- Added the option to use a logical vector in add_css_conditional_column which enables:
- apply more complex conditions (e.g. conditions using other columns from the table)
- apply a conditional formatting on a complete row
2.0.0 TableHTML
- Breaking Change: Themes are now applied to tableHTML objects using the add_theme() function.
- Added argument round in tableHTML, to round numeric columns.-
- Added argument replace_NA in tableHTML, to replace NA values with another for character and factor columns.
- Added new function tableHTML_to_image to package which converts the table into an image. This can be used for - PDF or MS Word documents through rmarkdown.
- Improved the colour scaling for colour ranks with uneven intervals.
- Added new logo and hex logo for the package
- Minor bug fixes.
- Added more examples.
1.1.0 tableHTML
Main features for this release:
- Conditional Formatting is now supported.
- Color ranking is supported.
- New vignette on how to use conditional formatting.
tableHTML
gained an argumentescape
on escaping characters.- Changed the tags ids to make it easier to change with CSS and more difficult to randomly find in the data set.
- Minor bug fixes.
- Improved documentation and added more examples.
0.2.11 tableHTML
The above release includes:
- A new function
make_css
that creates a CSS file (which can be used in shiny as a file or directly in the ui.R). - A new vignette for
make_css
. - tableHTML now includes its own render and output functions to implement in shiny i.e.
render_tableHTML
andtableHTML_output
respectively. - Improved and more detailed documentation.
- A few code optimizations.
0.2.10 tableHTML
Initial Release of tableHTML on CRAN.
It includes:
tableHTLM()
: This is the main function of the package. It is used to convert a data.frame into an HTML table.- The object resulting from tableHTML can be used in shiny using shiny's
renderUI
andui_Output
functions. add_css_*
family functions: These are used to add inline CSS to the HTML tables.