ctt-babylon 0.9.13 → 0.9.14
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/esm2022/lib/components/core/babylon-engine/babylon-engine.component.mjs +41 -32
- package/esm2022/lib/components/core/babylon-modal-multiple-motors/babylon-modal-multiple-motors.component.mjs +15 -4
- package/esm2022/lib/components/core/babylon-slider-img-video/babylon-slider-img-video.component.mjs +13 -6
- package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
- package/esm2022/lib/services/engine-state.service.mjs +24 -0
- package/fesm2022/ctt-babylon.mjs +82 -36
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-engine/babylon-engine.component.d.ts +2 -0
- package/lib/components/core/babylon-modal-multiple-motors/babylon-modal-multiple-motors.component.d.ts +2 -0
- package/lib/components/core/babylon-slider-img-video/babylon-slider-img-video.component.d.ts +1 -0
- package/lib/interfaces/babylon-text-info.interface.d.ts +1 -0
- package/lib/services/engine-state.service.d.ts +10 -0
- package/package.json +1 -1
|
@@ -50,6 +50,8 @@ export declare class BabylonEngineComponent implements OnInit {
|
|
|
50
50
|
generatedUrl: string;
|
|
51
51
|
private unsubscribe$;
|
|
52
52
|
private platformId;
|
|
53
|
+
private engineState;
|
|
54
|
+
private buildQueryParams;
|
|
53
55
|
constructor(cdr: ChangeDetectorRef);
|
|
54
56
|
ngOnInit(): void;
|
|
55
57
|
toggleHotelsDropdown(): void;
|
|
@@ -8,9 +8,11 @@ export declare class BabylonModalMultipleMotorsComponent {
|
|
|
8
8
|
title?: string;
|
|
9
9
|
buttons?: BabylonButtonI[];
|
|
10
10
|
openEngine: EventEmitter<any>;
|
|
11
|
+
private engineState;
|
|
11
12
|
private readonly dialogRef;
|
|
12
13
|
close(): void;
|
|
13
14
|
openEngineModal(): void;
|
|
15
|
+
getUrlWithParams(baseUrl?: string): string;
|
|
14
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonModalMultipleMotorsComponent, never>;
|
|
15
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonModalMultipleMotorsComponent, "lib-babylon-modal-multiple-motors", never, { "logo": { "alias": "logo"; "required": false; }; "pretitle": { "alias": "pretitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, { "openEngine": "openEngine"; }, never, never, true, never>;
|
|
16
18
|
}
|
package/lib/components/core/babylon-slider-img-video/babylon-slider-img-video.component.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare class BabylonSliderImgVideoComponent implements AfterViewInit {
|
|
|
10
10
|
videoData?: BabylonVideoSourceI;
|
|
11
11
|
private platformId;
|
|
12
12
|
safePlay(video: HTMLVideoElement): void;
|
|
13
|
+
test(): void;
|
|
13
14
|
ngAfterViewInit(): void;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonSliderImgVideoComponent, never>;
|
|
15
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonSliderImgVideoComponent, "lib-babylon-slider-img-video", never, { "texts": { "alias": "texts"; "required": false; }; "rooms": { "alias": "rooms"; "required": false; }; "videoData": { "alias": "videoData"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class BabylonEngineStateService {
|
|
3
|
+
private queryParamsSource;
|
|
4
|
+
currentQueryParams$: import("rxjs").Observable<string>;
|
|
5
|
+
constructor();
|
|
6
|
+
setQueryParams(params: string): void;
|
|
7
|
+
getQueryParamsValue(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonEngineStateService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BabylonEngineStateService>;
|
|
10
|
+
}
|