Step RowFiltering done

This commit is contained in:
Roman Krček
2025-07-17 16:34:02 +02:00
parent c6ea10e1d6
commit 3ea48272b2
4 changed files with 466 additions and 19 deletions

View File

@@ -9,6 +9,9 @@ export const session = writable<{
// Raw sheet data after import
export const rawSheetData = writable<string[][]>([]);
// Filtered sheet data after row selection
export const filteredSheetData = writable<any[]>([]);
// Column mapping configuration
export const columnMapping = writable<{
name?: number;
@@ -16,6 +19,7 @@ export const columnMapping = writable<{
nationality?: number;
birthday?: number;
pictureUrl?: number;
alreadyPrinted?: number;
}>({});
// Processed row data after mapping and validation