ctt-babylon 0.9.40 → 0.9.42
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-contact-form-v2/babylon-contact-form-v2.component.mjs +37 -0
- package/esm2022/lib/components/core/babylon-contact-form-v2/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-faq-v2/babylon-faq-v2.component.mjs +4 -8
- package/esm2022/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-gallery-v2/babylon-gallery-v2.component.mjs +9 -5
- package/esm2022/lib/components/core/babylon-info-big-v3/babylon-info-big-v3.component.mjs +2 -2
- package/esm2022/lib/components/core/babylon-info-img-v2/babylon-info-img-v2.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-info-zigzag-v4/babylon-info-zigzag-v4.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.mjs +16 -0
- package/esm2022/lib/components/core/babylon-list-box-info/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.mjs +26 -0
- package/esm2022/lib/components/core/babylon-list-img-v2/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-loyalty-table/babylon-loyalty-table.component.mjs +7 -5
- package/esm2022/lib/components/core/babylon-rooms-list-v2/babylon-rooms-list-v2.component.mjs +5 -3
- package/esm2022/lib/components/core/babylon-simple-img-info/babylon-simple-img-info.component.mjs +24 -0
- package/esm2022/lib/components/core/babylon-simple-img-info/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-social-bar/babylon-social-bar.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-top-simple-img/babylon-top-simple-img.component.mjs +2 -2
- package/esm2022/lib/components/core/babylon-webmap-v2/babylon-webmap-v2.component.mjs +27 -0
- package/esm2022/lib/components/core/babylon-webmap-v2/index.mjs +2 -0
- package/esm2022/lib/components/core/index.mjs +13 -14
- package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
- package/esm2022/lib/services/mapper/mapper.service.mjs +10 -2
- package/fesm2022/ctt-babylon.mjs +905 -785
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-contact-form-v2/babylon-contact-form-v2.component.d.ts +10 -0
- package/lib/components/core/babylon-contact-form-v2/index.d.ts +1 -0
- package/lib/components/core/babylon-faq-v2/babylon-faq-v2.component.d.ts +2 -4
- package/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.d.ts +1 -1
- package/lib/components/core/babylon-gallery-v2/babylon-gallery-v2.component.d.ts +4 -1
- package/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.d.ts +8 -0
- package/lib/components/core/babylon-list-box-info/index.d.ts +1 -0
- package/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.d.ts +12 -0
- package/lib/components/core/babylon-list-img-v2/index.d.ts +1 -0
- package/lib/components/core/babylon-loyalty-table/babylon-loyalty-table.component.d.ts +3 -1
- package/lib/components/core/babylon-simple-img-info/babylon-simple-img-info.component.d.ts +10 -0
- package/lib/components/core/babylon-simple-img-info/index.d.ts +1 -0
- package/lib/components/core/babylon-webmap-v2/babylon-webmap-v2.component.d.ts +12 -0
- package/lib/components/core/babylon-webmap-v2/index.d.ts +1 -0
- package/lib/components/core/index.d.ts +12 -13
- package/lib/interfaces/babylon-text-info.interface.d.ts +17 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonContactFormV2Component {
|
|
4
|
+
private formGroup;
|
|
5
|
+
form: FormGroup;
|
|
6
|
+
constructor(formGroup: FormBuilder);
|
|
7
|
+
onSubmit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonContactFormV2Component, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContactFormV2Component, "lib-babylon-contact-form-v2", never, {}, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-contact-form-v2.component';
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
import { BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
-
import { BabylonMultimediaI } from '../../../interfaces/babylon-multimedia.interface';
|
|
3
2
|
import { BabylonItemI } from '../../../interfaces/babylon-item.interface';
|
|
3
|
+
import { BabylonMultimediaI } from '../../../interfaces/babylon-multimedia.interface';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class BabylonFaqV2Component {
|
|
6
6
|
texts?: BabylonTextInfoI;
|
|
7
7
|
items?: BabylonItemI[];
|
|
8
8
|
multimedia?: BabylonMultimediaI;
|
|
9
9
|
rightSide?: boolean;
|
|
10
|
-
|
|
11
|
-
selectedIndex: import("@angular/core").WritableSignal<number>;
|
|
10
|
+
selectedIndex: import("@angular/core").WritableSignal<number | null>;
|
|
12
11
|
toggle(i: number): void;
|
|
13
|
-
selectItem(index: number): void;
|
|
14
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonFaqV2Component, never>;
|
|
15
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonFaqV2Component, "lib-babylon-faq-v2", never, { "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "rightSide": { "alias": "rightSide"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
14
|
}
|
package/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BabylonIconInfoI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class BabylonFeaturePillsNumberComponent {
|
|
4
4
|
texts?: BabylonTextInfoI;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { BabylonMultimediaI, BabylonTextInfoI } from '../../../interfaces';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BabylonGalleryV2Component implements AfterViewInit, OnDestroy {
|
|
5
6
|
private el;
|
|
6
7
|
private readonly dialog;
|
|
8
|
+
texts?: BabylonTextInfoI;
|
|
9
|
+
multimedia?: BabylonMultimediaI;
|
|
7
10
|
private host;
|
|
8
11
|
private galleryList;
|
|
9
12
|
private filters;
|
|
@@ -18,5 +21,5 @@ export declare class BabylonGalleryV2Component implements AfterViewInit, OnDestr
|
|
|
18
21
|
openFiltersModal(): void;
|
|
19
22
|
openFiltersRoomModal(): void;
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonGalleryV2Component, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonGalleryV2Component, "lib-babylon-gallery-v2", never, {}, {}, never, never, true, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonGalleryV2Component, "lib-babylon-gallery-v2", never, { "texts": { "alias": "texts"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; }, {}, never, never, true, never>;
|
|
22
25
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BabylonOfferItemI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonListBoxInfoComponent {
|
|
4
|
+
texts?: BabylonTextInfoI;
|
|
5
|
+
items?: BabylonOfferItemI[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonListBoxInfoComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonListBoxInfoComponent, "lib-babylon-list-box-info", never, { "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-list-box-info.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BabylonButtonI, BabylonItemI, BabylonMultimediaI, BabylonTexts } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonListImgV2Component {
|
|
4
|
+
rightSide?: boolean;
|
|
5
|
+
texts?: BabylonTexts;
|
|
6
|
+
items?: BabylonItemI[];
|
|
7
|
+
multimedia?: BabylonMultimediaI;
|
|
8
|
+
buttons?: BabylonButtonI[];
|
|
9
|
+
links?: BabylonButtonI[];
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonListImgV2Component, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonListImgV2Component, "lib-babylon-list-img-v2", never, { "rightSide": { "alias": "rightSide"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "links": { "alias": "links"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-list-img-v2.component';
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
|
+
import { BabylonTextInfoI } from '../../../interfaces';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BabylonLoyaltyTableComponent implements AfterViewInit {
|
|
5
|
+
texts?: BabylonTextInfoI;
|
|
4
6
|
tabsRoot: ElementRef<HTMLElement>;
|
|
5
7
|
ngAfterViewInit(): void;
|
|
6
8
|
onTabsClick(event: MouseEvent): void;
|
|
7
9
|
private setMaxHeight;
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonLoyaltyTableComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonLoyaltyTableComponent, "lib-babylon-loyalty-table", never, {}, {}, never, never, true, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonLoyaltyTableComponent, "lib-babylon-loyalty-table", never, { "texts": { "alias": "texts"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
12
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BabylonButtonI, BabylonMultimediaI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonSimpleImgInfoComponent {
|
|
4
|
+
rightSide?: boolean;
|
|
5
|
+
texts?: BabylonTextInfoI;
|
|
6
|
+
buttons?: BabylonButtonI[];
|
|
7
|
+
multimedia?: BabylonMultimediaI;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonSimpleImgInfoComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonSimpleImgInfoComponent, "lib-babylon-simple-img-info", never, { "rightSide": { "alias": "rightSide"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-simple-img-info.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BabylonButtonI, BabylonMultimediaI, BabylonTagsI, BabylonTextInfoI, BabylonTextsColorsI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonWebmapV2Component {
|
|
4
|
+
texts?: BabylonTextInfoI;
|
|
5
|
+
multimedia?: BabylonMultimediaI;
|
|
6
|
+
pages?: BabylonButtonI[];
|
|
7
|
+
tags?: BabylonTagsI;
|
|
8
|
+
textColors?: BabylonTextsColorsI;
|
|
9
|
+
linkClick(e: Event): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonWebmapV2Component, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonWebmapV2Component, "lib-babylon-webmap-v2", never, { "texts": { "alias": "texts"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "pages": { "alias": "pages"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "textColors": { "alias": "textColors"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-webmap-v2.component';
|
|
@@ -13,6 +13,7 @@ export * from './babylon-color-picker';
|
|
|
13
13
|
export * from './babylon-comingsoon';
|
|
14
14
|
export * from './babylon-contact-address';
|
|
15
15
|
export * from './babylon-contact-form';
|
|
16
|
+
export * from './babylon-contact-form-v2';
|
|
16
17
|
export * from './babylon-contact-how';
|
|
17
18
|
export * from './babylon-contact-map';
|
|
18
19
|
export * from './babylon-container-text-l2';
|
|
@@ -30,6 +31,7 @@ export * from './babylon-footer-links';
|
|
|
30
31
|
export * from './babylon-footer-logos';
|
|
31
32
|
export * from './babylon-footer-social';
|
|
32
33
|
export * from './babylon-gallery';
|
|
34
|
+
export * from './babylon-gallery-v2';
|
|
33
35
|
export * from './babylon-global-modal';
|
|
34
36
|
export * from './babylon-grid-gallery';
|
|
35
37
|
export * from './babylon-guests-popup';
|
|
@@ -43,11 +45,14 @@ export * from './babylon-header-menu-show';
|
|
|
43
45
|
export * from './babylon-header-mobile';
|
|
44
46
|
export * from './babylon-hotels-list';
|
|
45
47
|
export * from './babylon-hotels-slider';
|
|
48
|
+
export * from './babylon-img-banner';
|
|
46
49
|
export * from './babylon-info-big';
|
|
47
50
|
export * from './babylon-info-big-v3';
|
|
51
|
+
export * from './babylon-info-circle-imgs';
|
|
48
52
|
export * from './babylon-info-grid';
|
|
49
53
|
export * from './babylon-info-img';
|
|
50
54
|
export * from './babylon-info-img-slider';
|
|
55
|
+
export * from './babylon-info-img-v2';
|
|
51
56
|
export * from './babylon-info-intro';
|
|
52
57
|
export * from './babylon-info-show-img';
|
|
53
58
|
export * from './babylon-info-zig-zag';
|
|
@@ -62,9 +67,12 @@ export * from './babylon-info4img';
|
|
|
62
67
|
export * from './babylon-items-grid';
|
|
63
68
|
export * from './babylon-language-modal';
|
|
64
69
|
export * from './babylon-legal';
|
|
70
|
+
export * from './babylon-list-box-info';
|
|
65
71
|
export * from './babylon-list-c3-img-txt';
|
|
66
72
|
export * from './babylon-list-grid';
|
|
67
73
|
export * from './babylon-list-img';
|
|
74
|
+
export * from './babylon-list-img-v2';
|
|
75
|
+
export * from './babylon-loyalty-table';
|
|
68
76
|
export * from './babylon-modal-multiple-motors';
|
|
69
77
|
export * from './babylon-newsletter';
|
|
70
78
|
export * from './babylon-offer-detail';
|
|
@@ -79,8 +87,10 @@ export * from './babylon-room-details';
|
|
|
79
87
|
export * from './babylon-rooms-cols';
|
|
80
88
|
export * from './babylon-rooms-grid';
|
|
81
89
|
export * from './babylon-rooms-list';
|
|
90
|
+
export * from './babylon-rooms-list-v2';
|
|
82
91
|
export * from './babylon-rooms-slider';
|
|
83
92
|
export * from './babylon-services-slider';
|
|
93
|
+
export * from './babylon-simple-img-info';
|
|
84
94
|
export * from './babylon-sli-c1-img-text';
|
|
85
95
|
export * from './babylon-sli-c5-img-txt';
|
|
86
96
|
export * from './babylon-slider-box';
|
|
@@ -100,22 +110,11 @@ export * from './babylon-static-footer-v2';
|
|
|
100
110
|
export * from './babylon-submenu-hotel';
|
|
101
111
|
export * from './babylon-thanks';
|
|
102
112
|
export * from './babylon-top-simple-banner';
|
|
113
|
+
export * from './babylon-top-simple-img';
|
|
103
114
|
export * from './babylon-top-slider';
|
|
104
115
|
export * from './babylon-top-slider-thumbs';
|
|
105
116
|
export * from './babylon-top-slider-v2';
|
|
106
117
|
export * from './babylon-top-slider-video';
|
|
107
118
|
export * from './babylon-top-slider-video-v2';
|
|
108
119
|
export * from './babylon-webmap';
|
|
109
|
-
export * from './babylon-
|
|
110
|
-
export * from './babylon-feature-pills-number';
|
|
111
|
-
export * from './babylon-info-zigzag-v4';
|
|
112
|
-
export * from './babylon-list-img';
|
|
113
|
-
export * from './babylon-slider3col-v2';
|
|
114
|
-
export * from './babylon-slider-box';
|
|
115
|
-
export * from './babylon-img-banner';
|
|
116
|
-
export * from './babylon-gallery-v2';
|
|
117
|
-
export * from './babylon-info-circle-imgs';
|
|
118
|
-
export * from './babylon-rooms-list-v2';
|
|
119
|
-
export * from './babylon-top-simple-img';
|
|
120
|
-
export * from './babylon-info-img-v2';
|
|
121
|
-
export * from './babylon-loyalty-table';
|
|
120
|
+
export * from './babylon-webmap-v2';
|
|
@@ -19,4 +19,21 @@ export interface BabylonTextInfoI {
|
|
|
19
19
|
pretitleContain?: BabylonDynamicHeadingI;
|
|
20
20
|
titleContain?: BabylonDynamicHeadingI;
|
|
21
21
|
svg?: string;
|
|
22
|
+
featurepillsnumberSvgicon1?: string;
|
|
23
|
+
featurepillsnumberSvgicon2?: string;
|
|
24
|
+
featurepillsnumberSvgicon3?: string;
|
|
25
|
+
featurepillsnumberSvgnumber1?: string;
|
|
26
|
+
featurepillsnumberSvgnumber2?: string;
|
|
27
|
+
featurepillsnumberSvgnumber3?: string;
|
|
28
|
+
featurepillsnumberSvgname1?: string;
|
|
29
|
+
featurepillsnumberSvgname2?: string;
|
|
30
|
+
featurepillsnumberSvgname3?: string;
|
|
31
|
+
featurepillsnumberSvgsubtitle1?: string;
|
|
32
|
+
featurepillsnumberSvgsubtitle2?: string;
|
|
33
|
+
featurepillsnumberSvgsubtitle3?: string;
|
|
34
|
+
advantagestitle?: string;
|
|
35
|
+
advantagessubtitle?: string;
|
|
36
|
+
leve1?: string;
|
|
37
|
+
leve2?: string;
|
|
38
|
+
leve3?: string;
|
|
22
39
|
}
|