Skip to content

Releases: LyzandeR/tableHTML

2.1.0 tableHTML

21 Mar 15:38
Compare
Choose a tag to compare
  • 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

25 Mar 14:54
c79a707
Compare
Choose a tag to compare
  • 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

07 Nov 22:58
d48fff6
Compare
Choose a tag to compare

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 argument escape 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

07 Aug 16:57
Compare
Choose a tag to compare

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 and tableHTML_output respectively.
  • Improved and more detailed documentation.
  • A few code optimizations.

0.2.10 tableHTML

07 Aug 16:53
Compare
Choose a tag to compare

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 and ui_Output functions.
  • add_css_* family functions: These are used to add inline CSS to the HTML tables.