ctt-babylon 0.9.13 → 0.9.15
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-container-text-l2/babylon-container-text-l2.component.mjs +20 -0
- package/esm2022/lib/components/core/babylon-container-text-l2/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-engine/babylon-engine.component.mjs +41 -32
- package/esm2022/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.mjs +15 -0
- package/esm2022/lib/components/core/babylon-feature-pills-number/index.mjs +2 -0
- 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/components/core/index.mjs +3 -1
- package/esm2022/lib/interfaces/babylon-icon.interface.mjs +2 -0
- package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
- package/esm2022/lib/interfaces/index.mjs +2 -1
- package/esm2022/lib/services/engine-state.service.mjs +24 -0
- package/esm2022/lib/services/mapper/mapper.service.mjs +2 -2
- package/fesm2022/ctt-babylon.mjs +113 -38
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-container-text-l2/babylon-container-text-l2.component.d.ts +8 -0
- package/lib/components/core/babylon-container-text-l2/index.d.ts +1 -0
- package/lib/components/core/babylon-engine/babylon-engine.component.d.ts +2 -0
- package/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.d.ts +8 -0
- package/lib/components/core/babylon-feature-pills-number/index.d.ts +1 -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/components/core/index.d.ts +2 -0
- package/lib/interfaces/babylon-icon.interface.d.ts +6 -0
- package/lib/interfaces/babylon-text-info.interface.d.ts +1 -0
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/services/engine-state.service.d.ts +10 -0
- package/package.json +1 -1
package/lib/components/core/babylon-container-text-l2/babylon-container-text-l2.component.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonContainerTextL2Component {
|
|
4
|
+
background: boolean;
|
|
5
|
+
texts?: BabylonTextInfoI;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonContainerTextL2Component, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContainerTextL2Component, "lib-babylon-container-text-l2", never, { "background": { "alias": "background"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-container-text-l2.component';
|
|
@@ -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;
|
package/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BabylonTextInfoI, BabylonIconInfoI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonFeaturePillsNumberComponent {
|
|
4
|
+
texts?: BabylonTextInfoI;
|
|
5
|
+
svgs?: BabylonIconInfoI[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonFeaturePillsNumberComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonFeaturePillsNumberComponent, "lib-babylon-feature-pills-number", never, { "texts": { "alias": "texts"; "required": false; }; "svgs": { "alias": "svgs"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-feature-pills-number.component';
|
|
@@ -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>;
|
|
@@ -99,3 +99,5 @@ export * from './babylon-top-slider-v2';
|
|
|
99
99
|
export * from './babylon-top-slider-video';
|
|
100
100
|
export * from './babylon-top-slider-video-v2';
|
|
101
101
|
export * from './babylon-webmap';
|
|
102
|
+
export * from './babylon-container-text-l2';
|
|
103
|
+
export * from './babylon-feature-pills-number';
|
|
@@ -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
|
+
}
|