ctt-puro 0.50.0 → 0.50.2
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/puro-faqs/puro-faqs.component.mjs +3 -3
- package/esm2022/lib/components/puro-faqs-img/puro-faqs-img.component.mjs +3 -3
- package/esm2022/lib/components/puro-header-mobile-submenu/puro-header-mobile-submenu.component.mjs +5 -3
- package/esm2022/lib/services/mapper/mapper.service.mjs +21 -7
- package/fesm2022/ctt-puro.mjs +28 -12
- package/fesm2022/ctt-puro.mjs.map +1 -1
- package/lib/components/puro-header-mobile-submenu/puro-header-mobile-submenu.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare class PuroHeaderMobileSubmenuComponent implements OnInit, OnDestr
|
|
|
16
16
|
logoHotel?: string;
|
|
17
17
|
logoHotelWhite?: string;
|
|
18
18
|
siteId?: typeof this.SITE_GROUP | typeof this.SITE_BEACH | typeof this.SITE_HOTELS;
|
|
19
|
+
currentHotelId?: number;
|
|
19
20
|
btnClick: EventEmitter<any>;
|
|
20
21
|
btnClickCheckin: EventEmitter<any>;
|
|
21
22
|
private readonly SITE_GROUP;
|
|
@@ -33,5 +34,5 @@ export declare class PuroHeaderMobileSubmenuComponent implements OnInit, OnDestr
|
|
|
33
34
|
private checkStickyClasses;
|
|
34
35
|
clickBtnBook(): void;
|
|
35
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<PuroHeaderMobileSubmenuComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PuroHeaderMobileSubmenuComponent, "lib-puro-header-mobile-submenu", never, { "titleMenu": { "alias": "titleMenu"; "required": false; }; "titleLang": { "alias": "titleLang"; "required": false; }; "btnBook": { "alias": "btnBook"; "required": false; }; "btnCheckin": { "alias": "btnCheckin"; "required": false; }; "navLinks": { "alias": "navLinks"; "required": false; }; "bottomLinks": { "alias": "bottomLinks"; "required": false; }; "isDynamic": { "alias": "isDynamic"; "required": false; }; "logoHotel": { "alias": "logoHotel"; "required": false; }; "logoHotelWhite": { "alias": "logoHotelWhite"; "required": false; }; "siteId": { "alias": "siteId"; "required": false; }; }, { "btnClick": "btnClick"; "btnClickCheckin": "btnClickCheckin"; }, never, never, true, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PuroHeaderMobileSubmenuComponent, "lib-puro-header-mobile-submenu", never, { "titleMenu": { "alias": "titleMenu"; "required": false; }; "titleLang": { "alias": "titleLang"; "required": false; }; "btnBook": { "alias": "btnBook"; "required": false; }; "btnCheckin": { "alias": "btnCheckin"; "required": false; }; "navLinks": { "alias": "navLinks"; "required": false; }; "bottomLinks": { "alias": "bottomLinks"; "required": false; }; "isDynamic": { "alias": "isDynamic"; "required": false; }; "logoHotel": { "alias": "logoHotel"; "required": false; }; "logoHotelWhite": { "alias": "logoHotelWhite"; "required": false; }; "siteId": { "alias": "siteId"; "required": false; }; "currentHotelId": { "alias": "currentHotelId"; "required": false; }; }, { "btnClick": "btnClick"; "btnClickCheckin": "btnClickCheckin"; }, never, never, true, never>;
|
|
37
38
|
}
|