feat: add WALL_CABLE electrical type and room outlet/switch count stats

Add wall cable item — a bare cable exit from the wall for direct
consumer connection without an outlet. Includes 2D symbol (circle +
cable stub), 3D mesh (round plate + protruding cable), and palette entry.

Also add outlet and switch count metrics to the room info section in
the properties panel.
This commit is contained in:
2026-04-13 11:16:54 +03:00
parent 521ea5e85b
commit 5929ba6bbb
7 changed files with 59 additions and 2 deletions
+1
View File
@@ -221,6 +221,7 @@ export const ELECTRICAL_TYPES = [
'LIGHT_CEILING',
'LIGHT_WALL',
'CABLE_ROUTE',
'WALL_CABLE',
] as const;
export type ElectricalType = (typeof ELECTRICAL_TYPES)[number];