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

Releases: clarketm/TableExport

v4.0.0-alpha.1

21 Nov 06:09
Compare
Choose a tag to compare
v4.0.0-alpha.1 Pre-release
Pre-release

jQuery dependency is now optional. TableExport can now be invoked with the TableExport constructor.

e.g.

var tables = document.querySelectorAll('table');

new TableExport({
    "formats": ["xlsx", "xls", "csv", "txt"]
});

v3.3.1

21 Nov 04:27
Compare
Choose a tag to compare
File Description
tableexport.js
tableexport.min.js
1) fix #25 : doesn't work on IE and Safari. startsWith replaced with substr.
2) change default MIME type for csv from application/csv to text/csv

v3.3.0

20 Nov 10:56
Compare
Choose a tag to compare

major-version npm and bower dependency upgrades.

v3.2.15

20 Nov 07:15
Compare
Choose a tag to compare
File Description
tableexport.d.ts fix TS definition syntax by removing module wrapper.

v3.2.14

09 Oct 05:55
Compare
Choose a tag to compare
File Description
tableexport.js
tableexport.min.js
fix #25 : doesn't work on IE and Safari. startsWith replaced with substr.

v3.2.13

04 Oct 07:32
Compare
Choose a tag to compare
File Description
tableexport.js
tableexport.min.js
added TypeScript (ts) definition support

v3.2.12

01 Oct 04:42
Compare
Choose a tag to compare
File Description
tableexport.js
tableexport.min.js
add new emptyCSS property to ignore cells <td> by CSS selector(s) – replacing cells values with an empty string in the exported file.

v3.2.11

01 Oct 03:23
Compare
Choose a tag to compare
File Description
tableexport.js
tableexport.min.js
fix issue #20 : escape HTML not working for forward slashes.

v3.2.10

09 Sep 00:17
Compare
Choose a tag to compare
File Description
tableexport.js
tableexport.min.js
fix issue regarding consecutive rowspan/colspan declarations being ignored by the parser (xlsx and xls file formats).

v3.2.9

05 Sep 08:43
Compare
Choose a tag to compare
File Description
tableexport.js
tableexport.min.js
fix UMD factory syntax for AMD and CJS module formats