Skip to content

Commit 670d6b0

Browse files
committed
Update to version 3.4.3
1 parent 22a85f0 commit 670d6b0

5 files changed

+9
-5
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ Check my blog page for testing:
2323

2424
# Revision history:
2525

26+
### 3.4.3
27+
28+
* Update npm dependencies to fix vulnerabilities
29+
2630
### 3.4.2
2731

2832
* Remove ES6 function syntax to support IE11

dist/excellentexport.js

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

excellentexport.js

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

47-
const version = "3.4.2";
47+
const version = "3.4.3";
4848
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>'};
4949
let csvDelimiter = ",";
5050
let csvNewLine = "\r\n";

package-lock.json

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

package.json

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

0 commit comments

Comments
 (0)