Skip to content

Commit e767aa6

Browse files
committed
Bump version to 3.8.0
1 parent 73fbdd4 commit e767aa6

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

README.md

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

2424
# Revision history:
2525

26+
### 3.8.0
27+
28+
* Allow RTL options on the whole file or sheet.
29+
* _Update npm dependencies to fix vulnerabilities_
30+
2631
### 3.7.3
2732

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

218224
Sheets must be an array of sheet configuration objects. Sheet description:
@@ -227,6 +233,7 @@
227233
filterRowFn: function(row) {return true}, // Function to decide which rows are returned
228234
fixValue: function(value, row, column) {return fixedValue} // Function to fix values, receiving value, row num, column num
229235
fixArray: function(array) {return array} // Function to manipulate the whole data array
236+
rtl: Use Right-to-left characters, boolean (optional)
230237
...
231238
},
232239
{

dist/excellentexport.js

+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.7.3",
3+
"version": "3.8.0",
44
"description": "Client side JavaScript export to Excel or CSV",
55
"license": "MIT",
66
"homepage": "http://jordiburgos.com",

src/excellentexport.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export interface SheetOptions {
3535

3636
const ExcellentExport = function() {
3737

38-
const version = "3.7.3";
38+
const version = "3.8.0";
3939

4040
/*
4141
ExcellentExport.convert(options, sheets);

0 commit comments

Comments
 (0)