This repository has been archived by the owner on Jul 25, 2021. It is now read-only.
Releases: clarketm/TableExport
Releases · clarketm/TableExport
v4.0.0
New Features:
- A complete architecture rewrite/overhaul, to maximize performance and customizability.
- A new
examples
directory with interactive demos for each possible configuration / settings. - Improved, continuously integrated docs using Gitbook.
- Optimal local blob storage using the
LocalStorage API
. - On-demand file download using
getExportData()
andexport2file(data, mimeType, filename, fileExtension)
. - JavaScript-first design will fallback support for jQuery.
- ... and many more! Check out the
examples
.
Migrating from 3.x to 4.x
v4.0.0-rc.5
File | Description |
---|---|
tableexport.js tableexport.min.js |
bug fix: bootstrap and bootstrapConfig settings improperly referenced. |
Download
npm install tableexport@next
OR
npm install [email protected]
v4.0.0-rc.4
File | Description |
---|---|
tableexport.js tableexport.min.js |
fix .xls filetype handler logic when XLSX is not available (dependency: xlsx by SheetJS Community Edition) |
Download
npm install tableexport@next
OR
npm install [email protected]
v4.0.0-rc.3
File | Description |
---|---|
package.js |
change dependency: js-xlsx => xlsx by SheetJS Community Edition |
bower.js |
change dependency: xlsx-js => js-xlsx by SheetJS Community Edition |
tableexport.js tableexport.min.js |
Update module definition (AMD, CJS, UMD) |
v4.0.0-rc.1
v4.0.0-rc.1 new features:
- A complete architecture rewrite/overhaul, to maximize performance and customizability.
- A new
examples
directory with interactive demos for each possible configuration / settings. - Optimal blob storage using the
LocalStorage API
. - On-demand file download using
getExportData()
andexport2file(data, mimeType, filename, fileExtension)
. - JavaScript-first design will fallback support for jQuery.
- ... and many more! Check out the
examples
.
npm install tableexport@next
OR
npm install [email protected]
v4.0.0-alpha.5
File | Description |
---|---|
tableexport.js tableexport.min.js |
Implement efficient fileblob storage via LocalStorage API.Add cell-type support ( string , number , boolean , and date ) and configuration settings (defaultClass , and asset ). |
Thanks to @danielgregorywilson for his PRs (#45, #37)