Preserve QExcell frozen panes in XLSX

This commit is contained in:
Курнат Андрей
2026-06-01 12:50:25 +03:00
parent 227915d09d
commit a1ad101729
4 changed files with 169 additions and 6 deletions
+8
View File
@@ -19,6 +19,7 @@ export interface Sheet {
id: string;
name: string;
visibility?: "hidden" | "veryHidden";
frozenPane?: SheetFrozenPane;
cells: Record<string, string>;
mergedCells?: MergedCellRange[];
hyperlinks?: Record<string, string>;
@@ -26,6 +27,13 @@ export interface Sheet {
charts?: SheetChart[];
}
export interface SheetFrozenPane {
columns?: number;
rows?: number;
topLeftCell?: string;
activePane?: "topRight" | "bottomLeft" | "bottomRight";
}
export interface CellFormat {
bold?: boolean;
italics?: boolean;