react-excel-renderer icon indicating copy to clipboard operation
react-excel-renderer copied to clipboard

A react library to render and display excel sheets on webpage

Results 32 react-excel-renderer issues
Sort by recently updated
recently updated
newest added

Can you upgrade xlsx to 0.17.0^ to address the following CVEs? Thanks CVE-2021-32014 moderate severity Vulnerable versions: < 0.17.0 Patched version: 0.17.0 SheetJS Pro through 0.16.9 allows attackers to cause...

I am trying to read data from an excel file, but if a col has empty rows, the data from the next column gets moved to the previous column, thus...

Reference issue: #6 I'm trying to load a file with a few rows of data, but the callback gives me an extra 200k rows of nothing, taking a long time...

![image](https://user-images.githubusercontent.com/46352201/168215355-c1b74ea5-a6ff-402a-ab40-577dbb225b13.png) as u can see the column headings aren't where they should be

` fetch(`url.xlsx`).then((response) => { console.log('qsqwdqf', response) response.blob().then((myBlob) => { console.log('wffswrw', myBlob) ExcelRenderer(myBlob, (err, resp) => { if (err) { console.log(err); } else { setExcel({ cols: resp.cols, rows: resp.rows, }); }...

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.7.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of &quot;url&quot; format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

![Screenshot from 2022-02-04 12-02-58](https://user-images.githubusercontent.com/45964187/152483375-038b5139-225c-4a71-82a7-2373fcea5ca2.png) Please see attached image. Issue in npm package. Code works correctly.

To make it consistent with Excel could you please render row indexes starting with 1? ![image](https://user-images.githubusercontent.com/57988716/142384630-e7dd8e9e-fd7f-4d67-a9fe-693ada8cf661.png)

I am trying to use this: ``` ``` to read a file that has 4 column. It shows me my col names/letters till ```D``` including the index but for my...

Your Excel layout looks great! Thanks a lot for your nice library. The only 'nice to have' thing is editable cells. It would be super useful!!!