@smplrspace/smplr-loader 2.29.2-beta.9 → 2.30.1-beta.0
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.
|
@@ -308,7 +308,6 @@ export declare interface GeojsonSpace {
|
|
|
308
308
|
sid: string;
|
|
309
309
|
name: string;
|
|
310
310
|
definition?: object | null;
|
|
311
|
-
oldGeoreference?: object | null;
|
|
312
311
|
georeference?: object | null;
|
|
313
312
|
}
|
|
314
313
|
|
|
@@ -1022,6 +1021,8 @@ export declare class Space {
|
|
|
1022
1021
|
showAllLevels(): void;
|
|
1023
1022
|
setMode(mode: CameraMode): void;
|
|
1024
1023
|
updateRenderOptions(options: SpaceRenderOptions): void;
|
|
1024
|
+
resetRenderOptionsToDefault(): void;
|
|
1025
|
+
resetRenderOptionsToInitial(): void;
|
|
1025
1026
|
hideLevelPicker(): void;
|
|
1026
1027
|
showLevelPicker(): void;
|
|
1027
1028
|
hideNavigationButtons(): void;
|
|
@@ -1153,7 +1154,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
1153
1154
|
z: number;
|
|
1154
1155
|
}
|
|
1155
1156
|
|
|
1156
|
-
export declare const version = "2.
|
|
1157
|
+
export declare const version = "2.30.1-beta.0";
|
|
1157
1158
|
|
|
1158
1159
|
declare interface ViewerRendererHandle {
|
|
1159
1160
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
@@ -1168,6 +1169,8 @@ declare interface ViewerRendererHandle {
|
|
|
1168
1169
|
getMode: () => CameraMode
|
|
1169
1170
|
setMode: (mode: CameraMode) => void
|
|
1170
1171
|
updateRenderOptions: (options: SpaceRenderOptions) => void
|
|
1172
|
+
resetRenderOptionsToDefault: () => void
|
|
1173
|
+
resetRenderOptionsToInitial: () => void
|
|
1171
1174
|
setHideLevelPicker: (value: boolean) => void
|
|
1172
1175
|
setHideNavigationButtons: (value: boolean) => void
|
|
1173
1176
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|