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
@@ -16,6 +16,33 @@ Reverse engineered from Excel spreadsheet files as a project.
16
16
npm install @zurmokeeper/exceljs
17
17
```
18
18
19
+
# V4.4.2 New Features!
20
+
21
+
Change Log:
22
+
23
+
* 1: Fixbug: [Internal hyperlink does not work on wps office](https://github.com/zurmokeeper/excelize/issues/4). (Break change) and support new internal hyperlink methods。
24
+
* 2:Add type definition for WorksheetModel.merges, Thank you <ahref="https://github.com/ytjmt">ytjmt</a>, Merged <ahref="https://github.com/exceljs/exceljs/pull/2281"> PR2281</a>.
25
+
* 3:Add type definition for WorksheetProtection.spinCount,Thank you <ahref="https://github.com/damingerdai">damingerdai</a>, Merged <ahref="https://github.com/exceljs/exceljs/pull/2284"> PR2284</a>.
26
+
27
+
PS: Since V4.4.2 @zurmokeeper/exceljs new cell insertion internal hyperlink support `Sheet2!A1:B1` and `A1:B1` and other forms, the original only supports `Sheet2!A1`, use the following way::
28
+
29
+
30
+
```
31
+
const wb = new ExcelJS.Workbook();
32
+
const ws1 = wb.addWorksheet('Sheet1');
33
+
const ws2 = wb.addWorksheet('Sheet2');
34
+
35
+
'#' is required, @zurmokeeper/exceljs is to distinguish internal hyperlink by '#', the default will be considered non-internal hyperlink, older versions also need to manually add '#' , how not to add if
* 1: Fixbug: [Internal hyperlink does not work on wps office](https://github.com/zurmokeeper/excelize/issues/4). (Break change) 和支持新的内部链接方式。
22
+
* 2:Add type definition for WorksheetModel.merges, Thank you <ahref="https://github.com/ytjmt">ytjmt</a>, Merged <ahref="https://github.com/exceljs/exceljs/pull/2281"> PR2281</a>.
23
+
* 3:Add type definition for WorksheetProtection.spinCount,Thank you <ahref="https://github.com/damingerdai">damingerdai</a>, Merged <ahref="https://github.com/exceljs/exceljs/pull/2284"> PR2284</a>.
0 commit comments