Skip to content

Commit 2397afd

Browse files
authored
Merge pull request #588 from jmaister/update-3.7.1
Update 3.7.1
2 parents 7ffff8b + b33a5a8 commit 2397afd

6 files changed

+14
-5
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323

2424
# Revision history:
2525

26+
### 3.7.1
27+
28+
* _Update npm dependencies to fix vulnerabilities_
29+
* Start using Dependabot and get rid of Dependabot-preview
30+
2631
### 3.7.0
2732

2833
* 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.

dist/excellentexport.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* ExcellentExport 3.7.0
2+
* ExcellentExport 3.7.1
33
* A client side Javascript export to Excel.
44
*
55
* @author: Jordi Burgos ([email protected])

dist/excellentexport.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/excellentexport.js.LICENSE.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/*! cpexcel.js (C) 2013-present SheetJS -- http://sheetjs.com */
2+
3+
/*! cputils.js (C) 2013-present SheetJS -- http://sheetjs.com */

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "excellentexport",
3-
"version": "3.7.0",
3+
"version": "3.7.1",
44
"description": "Client side JavaScript export to Excel or CSV",
55
"license": "MIT",
66
"homepage": "http://jordiburgos.com",

src/excellentexport.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* ExcellentExport 3.7.0
2+
* ExcellentExport 3.7.1
33
* A client side Javascript export to Excel.
44
*
55
* @author: Jordi Burgos ([email protected])
@@ -58,7 +58,7 @@ const ExcellentExport = function() {
5858
});
5959
};
6060

61-
const version = "3.7.0";
61+
const version = "3.7.1";
6262
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>'};
6363
let csvDelimiter = ",";
6464
let csvNewLine = "\r\n";

0 commit comments

Comments
 (0)