@3dsource/angular-unreal-module 0.0.2 → 0.0.3
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.
|
@@ -10,14 +10,14 @@ export declare class ShowCaseComponent implements OnInit {
|
|
|
10
10
|
deviceType: import("@angular/core").InputSignal<"deviceTypeAuto" | "deviceTypeMobile" | "deviceTypeDesktop">;
|
|
11
11
|
isLandscapeOrientation: import("@angular/core").InputSignal<boolean>;
|
|
12
12
|
isNarrowScreen: import("@angular/core").InputSignal<boolean>;
|
|
13
|
-
activeProduct: import("@angular/core").InputSignal<
|
|
13
|
+
activeProduct: import("@angular/core").InputSignal<any>;
|
|
14
14
|
activeProductWithSlotIds: import("@angular/core").InputSignal<{
|
|
15
15
|
activeProduct: ProductShowcase | null;
|
|
16
16
|
slotsIds: Record<string, string>;
|
|
17
17
|
} | null>;
|
|
18
18
|
isFullscreen: import("@angular/core").InputSignal<boolean>;
|
|
19
19
|
fullscreenChanged: import("@angular/core").OutputEmitterRef<boolean>;
|
|
20
|
-
activeProduct$: Observable<
|
|
20
|
+
activeProduct$: Observable<any>;
|
|
21
21
|
activeProductWithSlotIds$: Observable<{
|
|
22
22
|
activeProduct: ProductShowcase | null;
|
|
23
23
|
slotsIds: Record<string, string>;
|
|
@@ -5,16 +5,4 @@ export declare const ShowCaseStatus: {
|
|
|
5
5
|
readonly STOP: "stop";
|
|
6
6
|
};
|
|
7
7
|
export type ShowCaseStatusValues = (typeof ShowCaseStatus)[keyof typeof ShowCaseStatus];
|
|
8
|
-
export
|
|
9
|
-
hasShowcase: boolean;
|
|
10
|
-
id: string;
|
|
11
|
-
previewUrl?: string;
|
|
12
|
-
showcase?: {
|
|
13
|
-
duration?: number;
|
|
14
|
-
lowBandwidth: {
|
|
15
|
-
duration: number;
|
|
16
|
-
time: number;
|
|
17
|
-
}[];
|
|
18
|
-
};
|
|
19
|
-
title: string;
|
|
20
|
-
}
|
|
8
|
+
export type ProductShowcase = any;
|