ctt-babylon 0.9.10 → 0.9.13
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-av-c4-img-text/babylon-av-c4-img-text.component.mjs +13 -5
- package/esm2022/lib/components/core/babylon-info-big-v3/babylon-info-big-v3.component.mjs +15 -0
- package/esm2022/lib/components/core/babylon-info-big-v3/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-offer-popup/babylon-offer-popup.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-top-simple-banner/babylon-top-simple-banner.component.mjs +10 -4
- package/esm2022/lib/components/core/index.mjs +2 -1
- package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
- package/esm2022/lib/services/mapper/mapper.service.mjs +3 -2
- package/fesm2022/ctt-babylon.mjs +35 -10
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-av-c4-img-text/babylon-av-c4-img-text.component.d.ts +5 -1
- package/lib/components/core/babylon-info-big-v3/babylon-info-big-v3.component.d.ts +9 -0
- package/lib/components/core/babylon-info-big-v3/index.d.ts +1 -0
- package/lib/components/core/babylon-top-simple-banner/babylon-top-simple-banner.component.d.ts +6 -2
- package/lib/components/core/index.d.ts +1 -0
- package/lib/interfaces/babylon-text-info.interface.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import { BabylonButtonI, BabylonImageI, BabylonTextInfoI } from "../../../interfaces";
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class BabylonAvC4ImgTextComponent {
|
|
4
|
+
texts?: BabylonTextInfoI;
|
|
5
|
+
buttons?: BabylonButtonI[];
|
|
6
|
+
multimedia?: BabylonImageI[];
|
|
3
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonAvC4ImgTextComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonAvC4ImgTextComponent, "lib-babylon-av-c4-img-text", never, {}, {}, never, never, true, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonAvC4ImgTextComponent, "lib-babylon-av-c4-img-text", never, { "texts": { "alias": "texts"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; }, {}, never, never, true, never>;
|
|
5
9
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import { BabylonMultimediaI } from '../../../interfaces/babylon-multimedia.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BabylonInfoBigV3Component {
|
|
5
|
+
texts?: BabylonTextInfoI;
|
|
6
|
+
multimedia?: BabylonMultimediaI;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonInfoBigV3Component, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonInfoBigV3Component, "lib-babylon-info-big-v3", never, { "texts": { "alias": "texts"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-info-big-v3.component';
|
package/lib/components/core/babylon-top-simple-banner/babylon-top-simple-banner.component.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
import { BabylonButtonI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import { BabylonMultimediaI } from '../../../interfaces/babylon-multimedia.interface';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
export declare class BabylonTopSimpleBannerComponent {
|
|
3
|
-
|
|
5
|
+
texts?: BabylonTextInfoI;
|
|
6
|
+
multimedia?: BabylonMultimediaI;
|
|
7
|
+
buttons?: BabylonButtonI[];
|
|
4
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonTopSimpleBannerComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonTopSimpleBannerComponent, "lib-babylon-top-simple-banner", never, { "
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonTopSimpleBannerComponent, "lib-babylon-top-simple-banner", never, { "texts": { "alias": "texts"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
10
|
}
|
|
@@ -41,6 +41,7 @@ export * from './babylon-header-mobile';
|
|
|
41
41
|
export * from './babylon-hotels-list';
|
|
42
42
|
export * from './babylon-hotels-slider';
|
|
43
43
|
export * from './babylon-info-big';
|
|
44
|
+
export * from './babylon-info-big-v3';
|
|
44
45
|
export * from './babylon-info-grid';
|
|
45
46
|
export * from './babylon-info-img';
|
|
46
47
|
export * from './babylon-info-img-slider';
|