Skip to content
This repository has been archived by the owner on Jul 25, 2021. It is now read-only.

v5.0.0-rc.7

Pre-release
Pre-release
Compare
Choose a tag to compare
@clarketm clarketm released this 08 Jun 02:39
· 107 commits to master since this release

v5.0.0-rc.7 new features:

  • ignoreCSS and emptyCSS values can now be configured with a custom CSS selector or an array of custom CSS selectors.
// example
TableExport.prototype.ignoreCSS = '.tableexport-ignore'  // default
TableExport.prototype.ignoreCSS = '.myIgnoredCells'  // custom selector
TableExport.prototype.ignoreCSS = [ '.tableexport-ignore', '[data-hide]' ]  // custom selector[]

the default selector values (.tableexport-ignore and .tableexport-empty) remain unchanged.

  • General code cleanup: replace "magic strings" with configurable TableExport.prototype properties.

Start using today!

npm install [email protected]