ctt-babylon 0.13.26 → 0.13.28
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/external/core/lis-c4-txt-des-cta/lis-c4-txt-des-cta.component.mjs +14 -5
- package/esm2022/lib/interfaces/babylon-destination.interface.mjs +1 -1
- package/esm2022/lib/services/mapper/mapper.service.mjs +35 -17
- package/fesm2022/ctt-babylon.mjs +47 -20
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/external/core/lis-c4-txt-des-cta/lis-c4-txt-des-cta.component.d.ts +6 -2
- package/lib/interfaces/babylon-destination.interface.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { BabylonButtonI, BabylonImageI, BabylonTextInfoI } from '../../../../interfaces';
|
|
3
|
+
import { BabylonDestinationI } from '../../../../interfaces/babylon-destination.interface';
|
|
3
4
|
import { BabylonHotelGlobalItem } from '../../../../interfaces/babylon-hotel.interface';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class LisC4TxtDesCtaComponent implements OnInit, OnChanges, OnDestroy {
|
|
6
7
|
texts?: BabylonTextInfoI;
|
|
7
|
-
filters?: any;
|
|
8
8
|
items?: BabylonHotelGlobalItem[];
|
|
9
9
|
links?: BabylonButtonI[];
|
|
10
10
|
additional1LikeMarca?: boolean;
|
|
11
11
|
showCleanFilters: boolean;
|
|
12
|
+
destinations?: BabylonDestinationI[];
|
|
13
|
+
showDestinations?: boolean;
|
|
14
|
+
showFilters?: boolean;
|
|
15
|
+
maxColumns?: number;
|
|
12
16
|
tagName: string;
|
|
13
17
|
selectedHotelType: string;
|
|
14
18
|
selectedDestination: string;
|
|
@@ -50,5 +54,5 @@ export declare class LisC4TxtDesCtaComponent implements OnInit, OnChanges, OnDes
|
|
|
50
54
|
private resolvePendingFromMaps;
|
|
51
55
|
private forceOptionMatch;
|
|
52
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<LisC4TxtDesCtaComponent, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LisC4TxtDesCtaComponent, "lis-c4-txt-des-cta", never, { "texts": { "alias": "texts"; "required": false; }; "
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LisC4TxtDesCtaComponent, "lis-c4-txt-des-cta", never, { "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; "links": { "alias": "links"; "required": false; }; "additional1LikeMarca": { "alias": "additional1LikeMarca"; "required": false; }; "showCleanFilters": { "alias": "showCleanFilters"; "required": false; }; "destinations": { "alias": "destinations"; "required": false; }; "showDestinations": { "alias": "showDestinations"; "required": false; }; "showFilters": { "alias": "showFilters"; "required": false; }; "maxColumns": { "alias": "maxColumns"; "required": false; }; }, {}, never, never, true, never>;
|
|
54
58
|
}
|