stable
Clone or download
Read-only
This is part of story #23469: export reports with linked artifact in xlsx format This is the first step for a library that will contain all the general types and methods for XLSX generation. For now, it contains only Cell types, and is only used in cross-tracker report file. No functional change expected. Change-Id: I4706df4e6e7451c8033724ab8ae0acd927d2350b
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/document_generation/package.json | +1 | −0 | Go to diff View file |
M | plugins/document_generation/pnpm-lock.yaml | +2 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/.gitignore | +2 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/jest.config.js | +25 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/package.json | +16 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/src/index.ts | +20 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/src/report-cells.test.ts | +62 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/src/report-cells.ts | +64 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/tsconfig.json | +10 | −0 | Go to diff View file |
A | plugins/document_generation/scripts/lib/xlsx/vite.config.ts | +32 | −0 | Go to diff View file |
M | plugins/document_generation/scripts/tracker-cross-report-action/src/Data/data-formator.test.ts | +2 | −1 | Go to diff View file |
M | plugins/document_generation/scripts/tracker-cross-report-action/src/Data/data-formator.ts | +5 | −33 | Go to diff View file |
M | plugins/document_generation/scripts/tracker-cross-report-action/src/Data/transform-field-value-into-formatted-cell.test.ts | +1 | −1 | Go to diff View file |
M | plugins/document_generation/scripts/tracker-cross-report-action/src/Data/transform-field-value-into-formatted-cell.ts | +3 | −3 | Go to diff View file |
M | plugins/document_generation/scripts/tracker-cross-report-action/src/Exporter/XLSX/download-xlsx.ts | +3 | −2 | Go to diff View file |