ctt-babylon 0.13.45 → 0.13.46
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-c3-txt-svg-cta/babylon-fo-c3-txt-svg-cta.component.mjs +13 -0
- package/esm2022/lib/components/core/babylon-fo-c3-txt-svg-cta/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-sli-c3-svg-vid-cta/babylon-sli-c3-svg-vid-cta.component.mjs +51 -30
- package/esm2022/lib/components/core/index.mjs +2 -1
- package/esm2022/lib/components/external/core/lis-c2-txt-img/lis-c2-txt-img.component.mjs +10 -3
- package/esm2022/lib/directives/sliders/swiper-init.directive.mjs +1 -13
- package/fesm2022/ctt-babylon.mjs +307 -282
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-fo-c3-txt-svg-cta/babylon-fo-c3-txt-svg-cta.component.d.ts +5 -0
- package/lib/components/core/babylon-fo-c3-txt-svg-cta/index.d.ts +1 -0
- package/lib/components/core/babylon-sli-c3-svg-vid-cta/babylon-sli-c3-svg-vid-cta.component.d.ts +2 -0
- package/lib/components/core/index.d.ts +1 -0
- package/lib/components/external/core/lis-c2-txt-img/lis-c2-txt-img.component.d.ts +2 -1
- package/package.json +1 -1
package/lib/components/core/babylon-fo-c3-txt-svg-cta/babylon-fo-c3-txt-svg-cta.component.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class BabylonFoC3TxtSvgCtaComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonFoC3TxtSvgCtaComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonFoC3TxtSvgCtaComponent, "lib-babylon-fo-c3-txt-svg-cta", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-fo-c3-txt-svg-cta.component';
|
package/lib/components/core/babylon-sli-c3-svg-vid-cta/babylon-sli-c3-svg-vid-cta.component.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export declare class BabylonSliC3SvgVidCtaComponent {
|
|
|
9
9
|
constructor(host: ElementRef<HTMLElement>, platformId: object);
|
|
10
10
|
onMouseOver(event: MouseEvent): void;
|
|
11
11
|
onMouseOut(event: MouseEvent): void;
|
|
12
|
+
onVideoEnter(container: HTMLElement): void;
|
|
13
|
+
onVideoLeave(container: HTMLElement): void;
|
|
12
14
|
private activateVideo;
|
|
13
15
|
private getVideoId;
|
|
14
16
|
private extractYoutubeId;
|
|
@@ -38,6 +38,7 @@ export * from './babylon-filter-modal';
|
|
|
38
38
|
export * from './babylon-floating-buttons';
|
|
39
39
|
export * from './babylon-fo-addr-cont-img';
|
|
40
40
|
export * from './babylon-fo-c3-img-txt';
|
|
41
|
+
export * from './babylon-fo-c3-txt-svg-cta';
|
|
41
42
|
export * from './babylon-fo-lis-c4-txt';
|
|
42
43
|
export * from './babylon-fo-sli-img';
|
|
43
44
|
export * from './babylon-footer-contact';
|
|
@@ -31,6 +31,7 @@ export declare class LisC2TxtImgComponent implements AfterViewInit, OnChanges, O
|
|
|
31
31
|
filters?: BabylonGloablsGalleryFilter;
|
|
32
32
|
texts?: BabylonTextInfoI;
|
|
33
33
|
styles?: BabylonStyleGlobalItem;
|
|
34
|
+
nofiters?: boolean;
|
|
34
35
|
categoriesModal?: ElementRef<HTMLElement>;
|
|
35
36
|
roomsModal?: ElementRef<HTMLElement>;
|
|
36
37
|
/** null => Todas */
|
|
@@ -76,5 +77,5 @@ export declare class LisC2TxtImgComponent implements AfterViewInit, OnChanges, O
|
|
|
76
77
|
get categoryOptions(): GalleryFilterItem[];
|
|
77
78
|
get desktopFilterOptions(): GalleryFilterItem[];
|
|
78
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<LisC2TxtImgComponent, never>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LisC2TxtImgComponent, "lis-c2-txt-img", never, { "content": { "alias": "content"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; }, {}, never, never, true, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LisC2TxtImgComponent, "lis-c2-txt-img", never, { "content": { "alias": "content"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "nofiters": { "alias": "nofiters"; "required": false; }; }, {}, never, never, true, never>;
|
|
80
81
|
}
|