excelize icon indicating copy to clipboard operation
excelize copied to clipboard

Excel Workbook Manager

Results 15 excelize issues
Sort by recently updated
recently updated
newest added

## 🐛 Bug Report Insert_rows did not update the corresponding cells style information in a timely manner, resulting in errors caused by deferred information in steps such as merge_cells. -...

## 💬 Existing Header image is not supported Header images are currently being removed in Microsoft Excel when using ExcelJS. The feature to handle this issue is addressed in https://github.com/exceljs/exceljs/pull/2563;...

enhancement

## Summary 当前 ExcelJS 在读取 Excel 文件时,无法正确解析单元格内的内部超链接(如跳转到同一工作簿中其他单元格的超链接)。这导致用户在使用 ExcelJS 处理含有内部导航链接的 Excel 文件时,丢失了这部分信息,影响了功能完整性。 本 PR 旨在修复该问题,通过更新解析逻辑,确保 ExcelJS 能够正确识别并还原 Excel 文件中的内部超链接。这一改动提升了库对 Excel 功能的支持完整性,使开发者能够更准确地读取和处理复杂 Excel 文件中的内容。 ## Test plan 为验证此更改的有效性,我进行了以下测试步骤: 准备一个包含多种类型超链接的 Excel 文件(包括外部 URL、内部锚点、邮件链接等)。...

I ran `snyk test` and received this error. And need to upgrade old deps ✗ Regular Expression Denial of Service (ReDoS) [Low Severity][https://security.snyk.io/vuln/SNYK-JS-BRACEEXPANSION-9789073] in [email protected] introduced by @zurmokeeper/[email protected] > [email protected]...

dep-update

## 🐛 Bug Report 我有一个表格,它有内联超链接。 await workbook.xlsx.readFile(sourceFile); console.log('workbook:', workbook); 在workbook,以及cell.value 中都未找到有这个超链接。仅外部链接是正常被解析到。 Lib version: 4.4.9 ## Steps To Reproduce ```javascript const wb = new ExcelJS.Workbook(); const ws = wb.addWorksheet('XYZ'); ws.getCell('A1').value =...