floor-editor-ts 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -18,6 +18,10 @@ export interface FloorEditorConfig {
|
|
|
18
18
|
siteCameras?: SiteCameraOption[];
|
|
19
19
|
cameraThumbnail?: string;
|
|
20
20
|
cameraThumbnailOpacity?: number;
|
|
21
|
+
/** Canvas area outside the floor plan bounds */
|
|
22
|
+
canvasBackground?: string;
|
|
23
|
+
/** Fill under the floor plan (inside wall bounds) */
|
|
24
|
+
floorPlateBackground?: string;
|
|
21
25
|
}
|
|
22
26
|
export declare const DEFAULT_CONFIG: FloorEditorConfig;
|
|
23
27
|
export declare function normalizeConfig(value: Partial<FloorEditorConfig> | null | undefined): FloorEditorConfig;
|