ctt-babylon 0.2.0 → 0.2.1
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-banner-info/babylon-banner-info.component.mjs +3 -7
- package/esm2022/lib/components/core/babylon-faq/babylon-faq.component.mjs +3 -3
- package/esm2022/lib/services/mapper/mapper.service.mjs +100 -22
- package/fesm2022/ctt-babylon.mjs +103 -28
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-banner-info/babylon-banner-info.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { BabylonButtonI } from '../../../interfaces/babylon-button.interface';
|
|
3
3
|
import { BabylonImageI } from '../../../interfaces/babylon-image.interface';
|
|
4
|
-
import { BabylonTagsI } from '../../../interfaces';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class BabylonBannerInfoComponent implements AfterViewInit {
|
|
7
6
|
private cdr;
|
|
@@ -11,7 +10,6 @@ export declare class BabylonBannerInfoComponent implements AfterViewInit {
|
|
|
11
10
|
button?: BabylonButtonI;
|
|
12
11
|
image?: BabylonImageI;
|
|
13
12
|
video?: string;
|
|
14
|
-
tags?: BabylonTagsI;
|
|
15
13
|
private hasPlayerInitialized;
|
|
16
14
|
private observer?;
|
|
17
15
|
private readonly screenSizer;
|
|
@@ -26,5 +24,5 @@ export declare class BabylonBannerInfoComponent implements AfterViewInit {
|
|
|
26
24
|
private waitForJQuery;
|
|
27
25
|
getVideoDataProperty(): any;
|
|
28
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonBannerInfoComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonBannerInfoComponent, "lib-babylon-banner-info", never, { "pretitle": { "alias": "pretitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "button": { "alias": "button"; "required": false; }; "image": { "alias": "image"; "required": false; }; "video": { "alias": "video"; "required": false; };
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonBannerInfoComponent, "lib-babylon-banner-info", never, { "pretitle": { "alias": "pretitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "button": { "alias": "button"; "required": false; }; "image": { "alias": "image"; "required": false; }; "video": { "alias": "video"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
28
|
}
|