@archilogic/editor-plugin-boma
Advanced tools
Comparing version 0.2.2 to 0.3.0
# @archilogic/editor-plugin-boma | ||
## 0.3.0 | ||
### Minor Changes | ||
- 92459ad: feat(boma): support asset workstations | ||
## 0.2.2 | ||
@@ -4,0 +10,0 @@ |
import { CustomPolygonLinePosition, LayoutSpace } from '@archilogic/space-graph-core'; | ||
export type BomaCode = 'UA' | 'FCA' | 'BCA' | 'MVP'; | ||
export declare const bomaRules: Record<BomaCode, Record<BomaCode, CustomPolygonLinePosition>>; | ||
export declare const bomaData: Record<BomaCode | 'gross', { | ||
export declare const bomaData: Record<BomaCode | 'gross' | 'assets', { | ||
color: string; | ||
@@ -6,0 +6,0 @@ name: string; |
@@ -1,3 +0,3 @@ | ||
import { LayoutSpace, SpatialGraphEdge, CustomPolygonLinePosition, CustomPolygonLinePositionsByElementId } from '@archilogic/space-graph-core'; | ||
import { Polygon } from '@archilogic/clipper'; | ||
import { type LayoutSpace, type LayoutAsset, type SpatialGraphEdge, type CustomPolygonLinePosition, type CustomPolygonLinePositionsByElementId } from '@archilogic/space-graph-core'; | ||
import { type Polygon } from '@archilogic/clipper'; | ||
import { BomaCode } from './boma-code'; | ||
@@ -17,3 +17,8 @@ export declare function getLinePosition(edge: SpatialGraphEdge, currentSpace: LayoutSpace): CustomPolygonLinePosition; | ||
export declare function getBomaSpacePolygons(): BomaSpaceRecords; | ||
export declare function getProductShape(asset: LayoutAsset): Polygon; | ||
export declare function getAssetPolygons(asset: LayoutAsset): import("@archilogic/space-graph-core").Vector2[]; | ||
export declare function getTableSeats(table: LayoutAsset, seats: LayoutAsset[]): LayoutAsset[]; | ||
export declare function getBomaAssetPolygons(): BomaRecord[]; | ||
export declare function getBomaPolygons(): { | ||
assets: BomaRecord[]; | ||
UA: BomaRecord[]; | ||
@@ -20,0 +25,0 @@ FCA: BomaRecord[]; |
{ | ||
"name": "@archilogic/editor-plugin-boma", | ||
"description": "generate boma polygons", | ||
"version": "0.2.2", | ||
"version": "0.3.0", | ||
"publishConfig": { | ||
@@ -6,0 +6,0 @@ "access": "public" |
Sorry, the diff of this file is too big to display
1061558
30209