ctt-babylon 0.24.21 → 0.24.23
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 +26 -0
- package/esm2022/lib/components/core/babylon-container-text-l2/index.mjs +2 -0
- package/esm2022/lib/components/core/{babylon-sli-c2-img-txt-v2 → babylon-sli-c2-img-txt-v3}/babylon-sli-c2-img-txt-v3.component.mjs +1 -1
- package/esm2022/lib/components/core/{babylon-sli-c2-img-txt-v2 → babylon-sli-c2-img-txt-v3}/index.mjs +1 -1
- package/esm2022/lib/components/core/babylon-sli-slect-img-txt-cta/babylon-sli-slect-img-txt-cta.component.mjs +34 -5
- package/esm2022/lib/components/core/index.mjs +5 -2
- package/esm2022/lib/components/external/core/c2-txt-cta/c2-txt-cta.component.mjs +13 -3
- package/esm2022/lib/services/mapper/mapper.service.mjs +8 -2
- package/fesm2022/ctt-babylon.mjs +71 -7
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-container-text-l2/babylon-container-text-l2.component.d.ts +10 -0
- package/lib/components/core/babylon-container-text-l2/index.d.ts +1 -0
- package/lib/components/core/babylon-sli-slect-img-txt-cta/babylon-sli-slect-img-txt-cta.component.d.ts +10 -1
- package/lib/components/core/index.d.ts +4 -1
- package/lib/components/external/core/c2-txt-cta/c2-txt-cta.component.d.ts +5 -2
- package/package.json +1 -1
- /package/lib/components/core/{babylon-sli-c2-img-txt-v2 → babylon-sli-c2-img-txt-v3}/babylon-sli-c2-img-txt-v3.component.d.ts +0 -0
- /package/lib/components/core/{babylon-sli-c2-img-txt-v2 → babylon-sli-c2-img-txt-v3}/index.d.ts +0 -0
package/lib/components/core/babylon-container-text-l2/babylon-container-text-l2.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonContainerTextL2Component {
|
|
4
|
+
background: boolean;
|
|
5
|
+
leftSide: boolean;
|
|
6
|
+
texts?: BabylonTextInfoI;
|
|
7
|
+
identifier?: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonContainerTextL2Component, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContainerTextL2Component, "lib-babylon-container-text-l2", never, { "background": { "alias": "background"; "required": false; }; "leftSide": { "alias": "leftSide"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-container-text-l2.component';
|
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { BabylonMultimediaI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BabylonSliSlectImgTxtCtaComponent implements AfterViewInit, OnDestroy {
|
|
4
5
|
private platformId;
|
|
6
|
+
texts?: BabylonTextInfoI;
|
|
7
|
+
multimedia?: BabylonMultimediaI;
|
|
8
|
+
lists?: any;
|
|
5
9
|
slider: ElementRef<HTMLDivElement>;
|
|
6
10
|
private autoplayInterval;
|
|
11
|
+
tagName: string;
|
|
12
|
+
activeSlideIndex: number;
|
|
13
|
+
get currentSlide(): any;
|
|
7
14
|
constructor(platformId: Object);
|
|
8
15
|
ngAfterViewInit(): void;
|
|
16
|
+
getImagesByTag(tagName: string): import("../../../interfaces").BabylonImageI[];
|
|
17
|
+
onScroll(event: Event): void;
|
|
9
18
|
scroll(direction: number): void;
|
|
10
19
|
private startAutoplay;
|
|
11
20
|
private resetAutoplay;
|
|
12
21
|
ngOnDestroy(): void;
|
|
13
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonSliSlectImgTxtCtaComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonSliSlectImgTxtCtaComponent, "lib-babylon-sli-slect-img-txt-cta", never, {}, {}, never, never, true, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonSliSlectImgTxtCtaComponent, "lib-babylon-sli-slect-img-txt-cta", never, { "texts": { "alias": "texts"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "lists": { "alias": "lists"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
24
|
}
|
|
@@ -143,13 +143,15 @@ export * from './babylon-services-slider';
|
|
|
143
143
|
export * from './babylon-shedule';
|
|
144
144
|
export * from './babylon-simple-img-info';
|
|
145
145
|
export * from './babylon-sli-c1-img-text';
|
|
146
|
-
export * from './babylon-sli-c2-img-txt-
|
|
146
|
+
export * from './babylon-sli-c2-img-txt-v3';
|
|
147
147
|
export * from './babylon-sli-c3-svg-vid-cta';
|
|
148
148
|
export * from './babylon-sli-c3-txt-img-cta';
|
|
149
149
|
export * from './babylon-sli-c4-img-txt-cta-v2';
|
|
150
150
|
export * from './babylon-sli-c5-img-txt';
|
|
151
151
|
export * from './babylon-sli-slect-img-txt-cta';
|
|
152
152
|
export * from './babylon-sli2-c2-txt-img-lis';
|
|
153
|
+
export * from './babylon-container-text-l2';
|
|
154
|
+
export * from './babylon-sli-c2-img-txt-v3';
|
|
153
155
|
export * from './babylon-slider-box';
|
|
154
156
|
export * from './babylon-slider-img-static';
|
|
155
157
|
export * from './babylon-slider-img-static-v2';
|
|
@@ -161,6 +163,7 @@ export * from './babylon-slider3col';
|
|
|
161
163
|
export * from './babylon-slider3col-clear';
|
|
162
164
|
export * from './babylon-slider3col-v2';
|
|
163
165
|
export * from './babylon-slider3items';
|
|
166
|
+
export * from './babylon-sli-c2-img-txt-v3';
|
|
164
167
|
export * from './babylon-slider4col';
|
|
165
168
|
export * from './babylon-social-bar';
|
|
166
169
|
export * from './babylon-social-bar-v2';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BabylonButtonI, BabylonItemI, BabylonMultimediaI, BabylonRoomDetailI, BabylonTextInfoI
|
|
1
|
+
import { BabylonButtonI, BabylonItemI, BabylonMultimediaI, BabylonOfferItemI, BabylonRoomDetailI, BabylonTextInfoI } from '../../../../interfaces';
|
|
2
2
|
import { BabylonStyleGlobalItem } from '../../../../interfaces/babylon-style.interface';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export type C2TxtCtaStat = string;
|
|
@@ -27,6 +27,9 @@ export declare class C2TxtCtaComponent {
|
|
|
27
27
|
styles?: BabylonStyleGlobalItem;
|
|
28
28
|
multimedia?: BabylonMultimediaI;
|
|
29
29
|
offer?: BabylonOfferItemI;
|
|
30
|
+
identifier?: string;
|
|
31
|
+
tagName: string;
|
|
32
|
+
getImagesByTag(tagName: string, multimedia: BabylonMultimediaI): import("../../../../interfaces").BabylonImageI[];
|
|
30
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<C2TxtCtaComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<C2TxtCtaComponent, "c2-txt-cta", never, { "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; "rooms": { "alias": "rooms"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "offer": { "alias": "offer"; "required": false; }; }, {}, never, never, true, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<C2TxtCtaComponent, "c2-txt-cta", never, { "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; "rooms": { "alias": "rooms"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "offer": { "alias": "offer"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; }, {}, never, never, true, never>;
|
|
32
35
|
}
|
package/package.json
CHANGED
|
File without changes
|
/package/lib/components/core/{babylon-sli-c2-img-txt-v2 → babylon-sli-c2-img-txt-v3}/index.d.ts
RENAMED
|
File without changes
|