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
v5.0.0-rc.7 new features:
ignoreCSS
andemptyCSS
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]