Skip to content

Commit

Permalink
Merge pull request #588 from jmaister/update-3.7.1
Browse files Browse the repository at this point in the history
Update 3.7.1
  • Loading branch information
jmaister committed Sep 22, 2021
2 parents 7ffff8b + b33a5a8 commit 2397afd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@

# Revision history:

### 3.7.1

* _Update npm dependencies to fix vulnerabilities_
* Start using Dependabot and get rid of Dependabot-preview

### 3.7.0

* Added option `openAsDownload: boolean`. Use this option to download as a file without using an anchor tag. So download can be triggered from a button.
Expand Down
2 changes: 1 addition & 1 deletion dist/excellentexport.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ExcellentExport 3.7.0
* ExcellentExport 3.7.1
* A client side Javascript export to Excel.
*
* @author: Jordi Burgos ([email protected])
Expand Down
3 changes: 2 additions & 1 deletion dist/excellentexport.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/excellentexport.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/*! cpexcel.js (C) 2013-present SheetJS -- http://sheetjs.com */

/*! cputils.js (C) 2013-present SheetJS -- http://sheetjs.com */
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "excellentexport",
"version": "3.7.0",
"version": "3.7.1",
"description": "Client side JavaScript export to Excel or CSV",
"license": "MIT",
"homepage": "http://jordiburgos.com",
Expand Down
4 changes: 2 additions & 2 deletions src/excellentexport.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ExcellentExport 3.7.0
* ExcellentExport 3.7.1
* A client side Javascript export to Excel.
*
* @author: Jordi Burgos ([email protected])
Expand Down Expand Up @@ -58,7 +58,7 @@ const ExcellentExport = function() {
});
};

const version = "3.7.0";
const version = "3.7.1";
const template = {excel: '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><meta name=ProgId content=Excel.Sheet> <meta name=Generator content="Microsoft Excel 11"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>'};
let csvDelimiter = ",";
let csvNewLine = "\r\n";
Expand Down

0 comments on commit 2397afd

Please sign in to comment.