@nice2dev/ui-buildings 1.0.20 → 1.0.22
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.
- package/dist/index.cjs +4 -4
- package/dist/index.d.ts +9 -0
- package/dist/index.mjs +2903 -2859
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { CSSProperties } from 'react';
|
|
|
6
6
|
import { default as default_2 } from 'react';
|
|
7
7
|
import { FloorPlanDocument } from '@nice2dev/spatial-core';
|
|
8
8
|
import { LengthUnit } from '@nice2dev/spatial-core';
|
|
9
|
+
import { NiceComponentTutorial } from '@nice2dev/ui';
|
|
9
10
|
import { Point2D as Point2D_2 } from '@nice2dev/spatial-core';
|
|
10
11
|
import { SnapMode } from '@nice2dev/spatial-core';
|
|
11
12
|
import { SpatialObject } from '@nice2dev/spatial-core';
|
|
@@ -536,6 +537,8 @@ export declare interface NiceAutomationEditorProps {
|
|
|
536
537
|
className?: string;
|
|
537
538
|
style?: CSSProperties;
|
|
538
539
|
theme?: 'light' | 'dark';
|
|
540
|
+
/** Optional "?" guided tour. Off by default; `true` uses the built-in tour. */
|
|
541
|
+
tutorial?: NiceComponentTutorial;
|
|
539
542
|
}
|
|
540
543
|
|
|
541
544
|
export declare const NiceBuildingDashboard: default_2.FC<NiceBuildingDashboardProps>;
|
|
@@ -602,6 +605,8 @@ export declare interface NiceFloorPlanEditorProps {
|
|
|
602
605
|
className?: string;
|
|
603
606
|
style?: CSSProperties;
|
|
604
607
|
theme?: 'light' | 'dark';
|
|
608
|
+
/** Optional "?" guided tour. Off by default; `true` uses the built-in tour. */
|
|
609
|
+
tutorial?: NiceComponentTutorial;
|
|
605
610
|
}
|
|
606
611
|
|
|
607
612
|
export declare const NiceLightControl: default_2.FC<NiceLightControlProps>;
|
|
@@ -635,6 +640,8 @@ export declare interface NiceSceneEditorProps {
|
|
|
635
640
|
className?: string;
|
|
636
641
|
style?: CSSProperties;
|
|
637
642
|
theme?: 'light' | 'dark';
|
|
643
|
+
/** Optional "?" guided tour. Off by default; `true` uses the built-in tour. */
|
|
644
|
+
tutorial?: NiceComponentTutorial;
|
|
638
645
|
}
|
|
639
646
|
|
|
640
647
|
export declare const NiceSpatialEditor: default_2.FC<NiceSpatialEditorProps>;
|
|
@@ -687,6 +694,8 @@ export declare interface NiceSpatialEditorProps extends TracelessStorageProps {
|
|
|
687
694
|
style?: React.CSSProperties;
|
|
688
695
|
/** Persist editor preferences (zoom, pan, grid, layer visibility) */
|
|
689
696
|
persistPreferences?: boolean;
|
|
697
|
+
/** Optional "?" guided tour. Off by default; `true` uses the built-in tour. */
|
|
698
|
+
tutorial?: NiceComponentTutorial;
|
|
690
699
|
}
|
|
691
700
|
|
|
692
701
|
export declare const NiceSpatialViewer: default_2.FC<NiceSpatialViewerProps>;
|