@archilogic/editor-plugin-boma
Advanced tools
Comparing version 0.2.1 to 0.2.2
# @archilogic/editor-plugin-boma | ||
## 0.2.2 | ||
### Patch Changes | ||
- b508b56: fix(editor-plugin-boma): clean up boma polygons | ||
- 31a4477: fix: bump space graph core to support boundary walls in boma polygons | ||
- b508b56: fix(editor-plugin-boma): apply theme also to columns and boundary walls | ||
## 0.2.1 | ||
@@ -4,0 +12,0 @@ |
@@ -10,29 +10,14 @@ import { LayoutSpace, SpatialGraphEdge, CustomPolygonLinePosition, CustomPolygonLinePositionsByElementId } from '@archilogic/space-graph-core'; | ||
}[]; | ||
type BomaSpaceRecords = Record<BomaCode, { | ||
type BomaRecord = { | ||
id: string; | ||
polygons: Polygon[]; | ||
area: number; | ||
}[]>; | ||
}; | ||
type BomaSpaceRecords = Record<BomaCode, BomaRecord[]>; | ||
export declare function getBomaSpacePolygons(): BomaSpaceRecords; | ||
export declare function getBomaPolygons(): { | ||
UA: { | ||
id: string; | ||
polygons: Polygon[]; | ||
area: number; | ||
}[]; | ||
FCA: { | ||
id: string; | ||
polygons: Polygon[]; | ||
area: number; | ||
}[]; | ||
BCA: { | ||
id: string; | ||
polygons: Polygon[]; | ||
area: number; | ||
}[]; | ||
MVP: { | ||
id: string; | ||
polygons: Polygon[]; | ||
area: number; | ||
}[]; | ||
UA: BomaRecord[]; | ||
FCA: BomaRecord[]; | ||
BCA: BomaRecord[]; | ||
MVP: BomaRecord[]; | ||
gross: { | ||
@@ -39,0 +24,0 @@ polygons: Polygon[]; |
{ | ||
"name": "@archilogic/editor-plugin-boma", | ||
"description": "generate boma polygons", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"publishConfig": { | ||
@@ -39,3 +39,3 @@ "access": "public" | ||
"@archilogic/editor-connection": "0.10.2", | ||
"@archilogic/space-graph-core": "0.16.3-beta.0", | ||
"@archilogic/space-graph-core": "0.16.3-beta.1", | ||
"@archilogic/toolbox": "^3.11.0" | ||
@@ -42,0 +42,0 @@ }, |
Sorry, the diff of this file is too big to display
1055148
30033