You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many thanks to <a href="https://github.com/cosmonovallc">cosmonovallc</a> for this contributions.
39
-
</li>
40
-
<li>
41
-
Merged <a href="https://github.com/exceljs/exceljs/pull/940">TS: Add types for addTable function #940</a>.
42
-
Many thanks to <a href="https://github.com/egmen">egmen</a> for this contributions.
43
-
</li>
44
-
<li>
45
-
Merged <a href="https://github.com/exceljs/exceljs/pull/926">added explicit return types to the type definitions of Worksheet.protect() and Worksheet.unprotect() #926</a>.
46
-
Many thanks to <a href="https://github.com/drjokepu">Tamas Czinege</a> for this contributions.
47
-
</li>
48
-
<li>
49
-
Dropped dependencies on Promise libraries.
50
-
</li>
51
-
</ul>
28
+
Prior to this release, the transpiled ES5 code was exported as the package main.
29
+
From now on, the package main comes directly from the lib/ folder
30
+
31
+
** ES5 and Browserify are Still Included **
32
+
33
+
In order to support those that still require ES5 ready code (e.g. as dependencies in web apps)
34
+
the source code will still be transpiled and available in dist/es5.
35
+
36
+
The ES5 code is also browserified and available as dist/exceljs.js or dist/exceljs.min.js
37
+
38
+
* See the section <ahref="#importing">Importing</a> for details *
52
39
53
40
# Contributions
54
41
@@ -72,6 +59,7 @@ To be clear, all contributions added to this library will be included in the lib
72
59
# Contents
73
60
74
61
<ul>
62
+
<li><ahref="#importing">Importing</a></li>
75
63
<li>
76
64
<a href="#interface">Interface</a>
77
65
<ul>
@@ -164,6 +152,38 @@ To be clear, all contributions added to this library will be included in the lib
@@ -2323,4 +2343,4 @@ If any splice operation affects a merged cell, the merge group will not be moved
2323
2343
| 1.13.0 | <ul> <li> Merged <ahref="https://github.com/exceljs/exceljs/pull/862">zip: allow tuning compression for performance or size #862</a>. Many thanks to <ahref="https://github.com/myfreeer">myfreeer</a> for this contribution. </li> <li> Merged <ahref="https://github.com/exceljs/exceljs/pull/863">Feat configure headers and footers #863</a>. Many thanks to <ahref="https://github.com/autukill">autukill</a> for this contribution. </li> <li> Fixed an issue with defaultRowHeight where the default value resulted in 'customHeight' property being set. </li> </ul> |
2324
2344
| 1.14.0 | <ul> <li> Merged <ahref="https://github.com/exceljs/exceljs/pull/874">Fix header and footer text format error in README.md #874</a>. Many thanks to <ahref="https://github.com/autukill">autukill</a> for this contribution. </li> <li> Added Tables. See <ahref="#tables">Tables</a> for details. </li> <li> Merged <ahref="https://github.com/exceljs/exceljs/pull/887">fix: #877 and #880</a>. Many thanks to <ahref="https://github.com/aexei">Alexander Heinrich</a> for this contribution. This fixes <ahref="https://github.com/exceljs/exceljs/pull/877">bug: Hyperlink without text crashes write #877</a> and <ahref="https://github.com/exceljs/exceljs/pull/880">bug: malformed comment crashes on write #880</a> </li> </ul> |
2325
2345
| 1.15.0 | <ul> <li> Merged <ahref="https://github.com/exceljs/exceljs/pull/889">Add Compression level option to WorkbookWriterOptions for streaming #889</a>. Many thanks to <ahref="https://github.com/ABenassi87">Alfredo Benassi</a> for this contribution. </li> <li> Merged <ahref="https://github.com/exceljs/exceljs/pull/903">Feature/Cell Protection #903</a> and <ahref="https://github.com/exceljs/exceljs/pull/907">Feature/Sheet Protection #907</a>. Many thanks to <ahref="https://github.com/karabaesh">karabaesh</a> for these contributions. </li> </ul> |
2326
-
2346
+
| 2.0.1 | <h2>Major Version Change</h2> <p>Introducing async/await to ExcelJS!</p> <p>The new async and await features of JavaScript can help a lot to make code more readable and maintainable. To avoid confusion, particularly with returned promises from async functions, we have had to remove the Promise class configuration option and from v2 onwards ExcelJS will use native Promises. Since this is potentially a breaking change we're bumping the major version for this release.</p> <h2>Changes</h2> <ul> <li> Merged <a href="https://github.com/exceljs/exceljs/pull/829">Introduce async/await #829</a>. Many thanks to <a href="https://github.com/alubbe">Andreas Lubbe</a> for this contribution. </li> <li> Merged <a href="https://github.com/exceljs/exceljs/pull/930">Update index.d.ts #930</a>. Many thanks to <a href="https://github.com/cosmonovallc">cosmonovallc</a> for this contributions. </li> <li> Merged <a href="https://github.com/exceljs/exceljs/pull/940">TS: Add types for addTable function #940</a>. Many thanks to <a href="https://github.com/egmen">egmen</a> for this contributions. </li> <li> Merged <a href="https://github.com/exceljs/exceljs/pull/926">added explicit return types to the type definitions of Worksheet.protect() and Worksheet.unprotect() #926</a>. Many thanks to <a href="https://github.com/drjokepu">Tamas Czinege</a> for this contributions. </li> <li> Dropped dependencies on Promise libraries. </li> </ul> |
0 commit comments