Skip to content

Commit

Permalink
Bump version to 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaister committed Jan 27, 2022
1 parent 73fbdd4 commit e767aa6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@

# Revision history:

### 3.8.0

* Allow RTL options on the whole file or sheet.
* _Update npm dependencies to fix vulnerabilities_

### 3.7.3

* Fix (#591) remove columns parameter. Now it is not affected by repeated column numbers nor its order.
Expand Down Expand Up @@ -212,7 +217,8 @@
{
anchor: String or HTML Element,
format: 'xlsx' or 'xls' or 'csv',
filename: String
filename: String,
rtl: Use Right-to-left characters, boolean (optional)
}

Sheets must be an array of sheet configuration objects. Sheet description:
Expand All @@ -227,6 +233,7 @@
filterRowFn: function(row) {return true}, // Function to decide which rows are returned
fixValue: function(value, row, column) {return fixedValue} // Function to fix values, receiving value, row num, column num
fixArray: function(array) {return array} // Function to manipulate the whole data array
rtl: Use Right-to-left characters, boolean (optional)
...
},
{
Expand Down
2 changes: 1 addition & 1 deletion dist/excellentexport.js

Large diffs are not rendered by default.

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.3",
"version": "3.8.0",
"description": "Client side JavaScript export to Excel or CSV",
"license": "MIT",
"homepage": "http://jordiburgos.com",
Expand Down
2 changes: 1 addition & 1 deletion src/excellentexport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export interface SheetOptions {

const ExcellentExport = function() {

const version = "3.7.3";
const version = "3.8.0";

/*
ExcellentExport.convert(options, sheets);
Expand Down

0 comments on commit e767aa6

Please sign in to comment.