Skip to content

Commit 0464769

Browse files
committed
Replace xlsx with @e965/xlsx
1 parent c3d937b commit 0464769

File tree

3 files changed

+15
-106
lines changed

3 files changed

+15
-106
lines changed

package-lock.json

Lines changed: 13 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"@angular/platform-browser-dynamic": "^19.1.4",
2525
"@angular/platform-server": "^19.1.4",
2626
"@angular/router": "^19.1.4",
27+
"@e965/xlsx": "^0.20.3",
2728
"@types/lodash-es": "^4.17.12",
2829
"eslint-plugin-cypress": "^3.6.0",
2930
"lodash-es": "^4.17.21",
3031
"primeng": "^19.0.5",
3132
"rxjs": "~7.8.1",
3233
"tslib": "^2.8.1",
33-
"xlsx": "^0.18.5",
3434
"zone.js": "^0.15.0"
3535
},
3636
"devDependencies": {

projects/cps-ui-kit/src/lib/components/cps-table/cps-table.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ export class CpsTableComponent implements OnInit, AfterViewChecked, OnChanges {
981981
}
982982

983983
exportXLSX() {
984-
import('xlsx').then((xlsx) => {
984+
import('@e965/xlsx').then((xlsx) => {
985985
const sheetData = [
986986
this.selectedColumns.map(
987987
(c: { [key: string]: any }) => c[this.colHeaderName]

0 commit comments

Comments
 (0)