ctt-babylon 0.10.26 → 0.10.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/core/babylon-fo-addr-cont-img/babylon-fo-addr-cont-img.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-fo-addr-cont-img/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-fo-sli-img/babylon-fo-sli-img.component.mjs +80 -0
- package/esm2022/lib/components/core/babylon-fo-sli-img/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-he-svg-list/babylon-he-svg-list.component.mjs +3 -3
- package/esm2022/lib/components/core/index.mjs +4 -2
- package/esm2022/lib/components/external/core/c4-lis-c2-img-txt-c/list-rooms.component.mjs +3 -3
- package/fesm2022/ctt-babylon.mjs +103 -20
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-fo-addr-cont-img/babylon-fo-addr-cont-img.component.d.ts +5 -0
- package/lib/components/core/babylon-fo-addr-cont-img/index.d.ts +1 -0
- package/lib/components/core/babylon-fo-sli-img/babylon-fo-sli-img.component.d.ts +15 -0
- package/lib/components/core/babylon-fo-sli-img/index.d.ts +1 -0
- package/lib/components/core/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class BabylonFoAddrContImgComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonFoAddrContImgComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonFoAddrContImgComponent, "lib-babylon-fo-addr-cont-img", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-fo-addr-cont-img.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonFoSliImgComponent implements AfterViewInit, OnDestroy {
|
|
4
|
+
private platformId;
|
|
5
|
+
swiperContainer: ElementRef<HTMLElement>;
|
|
6
|
+
prevBtn: ElementRef<HTMLElement>;
|
|
7
|
+
nextBtn: ElementRef<HTMLElement>;
|
|
8
|
+
private swiper?;
|
|
9
|
+
constructor(platformId: object);
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
private initSwiper;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonFoSliImgComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonFoSliImgComponent, "lib-babylon-fo-sli-img", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-fo-sli-img.component';
|
|
@@ -31,8 +31,10 @@ export * from './babylon-feature-pills-number';
|
|
|
31
31
|
export * from './babylon-features-slider';
|
|
32
32
|
export * from './babylon-filter-modal';
|
|
33
33
|
export * from './babylon-floating-buttons';
|
|
34
|
+
export * from './babylon-fo-addr-cont-img';
|
|
34
35
|
export * from './babylon-fo-c3-img-txt';
|
|
35
36
|
export * from './babylon-fo-lis-c4-txt';
|
|
37
|
+
export * from './babylon-fo-sli-img';
|
|
36
38
|
export * from './babylon-footer-contact';
|
|
37
39
|
export * from './babylon-footer-links';
|
|
38
40
|
export * from './babylon-footer-logos';
|
|
@@ -92,6 +94,7 @@ export * from './babylon-modal-multiple-motors';
|
|
|
92
94
|
export * from './babylon-newsletter';
|
|
93
95
|
export * from './babylon-newsletter-modal-v2';
|
|
94
96
|
export * from './babylon-offer-detail';
|
|
97
|
+
export * from './babylon-offer-detail-v2';
|
|
95
98
|
export * from './babylon-offer-popup';
|
|
96
99
|
export * from './babylon-offer-popup-v3';
|
|
97
100
|
export * from './babylon-offer-popupV2';
|
|
@@ -139,4 +142,3 @@ export * from './babylon-top-slider-video-v2';
|
|
|
139
142
|
export * from './babylon-variant-selector';
|
|
140
143
|
export * from './babylon-webmap';
|
|
141
144
|
export * from './babylon-webmap-v2';
|
|
142
|
-
export * from './babylon-offer-detail-v2';
|