floor-editor-ts 1.3.0 → 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.
@@ -17,6 +17,11 @@ export interface FloorEditorConfig {
17
17
  cameraHeatmapMatrix?: number[][];
18
18
  siteCameras?: SiteCameraOption[];
19
19
  cameraThumbnail?: string;
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;
20
25
  }
21
26
  export declare const DEFAULT_CONFIG: FloorEditorConfig;
22
27
  export declare function normalizeConfig(value: Partial<FloorEditorConfig> | null | undefined): FloorEditorConfig;
@@ -55,6 +55,8 @@ export declare function removeStair(id: string): void;
55
55
  export declare function moveStair(id: string, position: Point): void;
56
56
  export declare function setBackgroundImage(bg: BackgroundImage | undefined): void;
57
57
  export declare function updateBackgroundImage(updates: Partial<BackgroundImage>): void;
58
+ export declare const cameraThumbnailOpacity: import('svelte/store').Writable<number>;
59
+ export declare function updateCameraThumbnailOpacity(opacity: number): void;
58
60
  export declare function addColumn(position: Point, shape?: 'round' | 'square'): string;
59
61
  export declare function updateColumn(id: string, updates: Partial<Column>): void;
60
62
  export declare function removeColumn(id: string): void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "floor-editor-ts",
3
3
  "private": false,
4
- "version": "1.3.0",
4
+ "version": "1.3.2",
5
5
  "type": "module",
6
6
  "main": "./dist/floor-editor.es.js",
7
7
  "module": "./dist/floor-editor.es.js",