feat : plan du site (WIP)

This commit is contained in:
2026-02-23 09:26:19 +01:00
parent 30b065b69f
commit 3e05c68c54
3 changed files with 205 additions and 274 deletions

View File

@@ -7,3 +7,14 @@ export interface BuildingLayoutData {
rows: number | null
casePositions?: BuildingCasePositionData[] | null
}
export type LayoutCell = {
key: string
isEmpty: boolean
caseId: number | null
display: string
caseStatusId: number | null
caseStatusLabel: string | null
caseStyle?: Record<string, string>
spanStyle: Record<string, string>
baseClass: string
}