ctt-babylon 0.9.39 → 0.9.41
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-contact-form-v2/babylon-contact-form-v2.component.mjs +37 -0
- package/esm2022/lib/components/core/babylon-contact-form-v2/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-external-script/babylon-external-script.component.mjs +1 -2
- package/esm2022/lib/components/core/babylon-faq-v2/babylon-faq-v2.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-gallery-v2/babylon-gallery-v2.component.mjs +9 -5
- package/esm2022/lib/components/core/babylon-info-big-v3/babylon-info-big-v3.component.mjs +2 -2
- package/esm2022/lib/components/core/babylon-info-img-v2/babylon-info-img-v2.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-info-zigzag-v4/babylon-info-zigzag-v4.component.mjs +3 -3
- package/esm2022/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.mjs +16 -0
- package/esm2022/lib/components/core/babylon-list-box-info/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.mjs +26 -0
- package/esm2022/lib/components/core/babylon-list-img-v2/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-rooms-list-v2/babylon-rooms-list-v2.component.mjs +5 -3
- package/esm2022/lib/components/core/babylon-simple-img-info/babylon-simple-img-info.component.mjs +24 -0
- package/esm2022/lib/components/core/babylon-simple-img-info/index.mjs +2 -0
- package/esm2022/lib/components/core/babylon-social-bar/babylon-social-bar.component.mjs +3 -3
- package/esm2022/lib/components/core/index.mjs +5 -1
- package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
- package/esm2022/lib/services/mapper/mapper.service.mjs +2 -2
- package/fesm2022/ctt-babylon.mjs +111 -20
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-contact-form-v2/babylon-contact-form-v2.component.d.ts +10 -0
- package/lib/components/core/babylon-contact-form-v2/index.d.ts +1 -0
- package/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.d.ts +1 -1
- package/lib/components/core/babylon-gallery-v2/babylon-gallery-v2.component.d.ts +4 -1
- package/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.d.ts +8 -0
- package/lib/components/core/babylon-list-box-info/index.d.ts +1 -0
- package/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.d.ts +12 -0
- package/lib/components/core/babylon-list-img-v2/index.d.ts +1 -0
- package/lib/components/core/babylon-simple-img-info/babylon-simple-img-info.component.d.ts +10 -0
- package/lib/components/core/babylon-simple-img-info/index.d.ts +1 -0
- package/lib/components/core/index.d.ts +4 -0
- package/lib/interfaces/babylon-text-info.interface.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonContactFormV2Component {
|
|
4
|
+
private formGroup;
|
|
5
|
+
form: FormGroup;
|
|
6
|
+
constructor(formGroup: FormBuilder);
|
|
7
|
+
onSubmit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonContactFormV2Component, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContactFormV2Component, "lib-babylon-contact-form-v2", never, {}, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-contact-form-v2.component';
|
package/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BabylonIconInfoI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class BabylonFeaturePillsNumberComponent {
|
|
4
4
|
texts?: BabylonTextInfoI;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { BabylonMultimediaI, BabylonTextInfoI } from '../../../interfaces';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BabylonGalleryV2Component implements AfterViewInit, OnDestroy {
|
|
5
6
|
private el;
|
|
6
7
|
private readonly dialog;
|
|
8
|
+
texts?: BabylonTextInfoI;
|
|
9
|
+
multimedia?: BabylonMultimediaI;
|
|
7
10
|
private host;
|
|
8
11
|
private galleryList;
|
|
9
12
|
private filters;
|
|
@@ -18,5 +21,5 @@ export declare class BabylonGalleryV2Component implements AfterViewInit, OnDestr
|
|
|
18
21
|
openFiltersModal(): void;
|
|
19
22
|
openFiltersRoomModal(): void;
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonGalleryV2Component, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonGalleryV2Component, "lib-babylon-gallery-v2", never, {}, {}, never, never, true, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonGalleryV2Component, "lib-babylon-gallery-v2", never, { "texts": { "alias": "texts"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; }, {}, never, never, true, never>;
|
|
22
25
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BabylonOfferItemI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonListBoxInfoComponent {
|
|
4
|
+
texts?: BabylonTextInfoI;
|
|
5
|
+
items?: BabylonOfferItemI[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonListBoxInfoComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonListBoxInfoComponent, "lib-babylon-list-box-info", never, { "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-list-box-info.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BabylonButtonI, BabylonItemI, BabylonMultimediaI, BabylonTexts } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonListImgV2Component {
|
|
4
|
+
rightSide?: boolean;
|
|
5
|
+
texts?: BabylonTexts;
|
|
6
|
+
items?: BabylonItemI[];
|
|
7
|
+
multimedia?: BabylonMultimediaI;
|
|
8
|
+
buttons?: BabylonButtonI[];
|
|
9
|
+
links?: BabylonButtonI[];
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonListImgV2Component, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonListImgV2Component, "lib-babylon-list-img-v2", never, { "rightSide": { "alias": "rightSide"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "items": { "alias": "items"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "links": { "alias": "links"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-list-img-v2.component';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BabylonButtonI, BabylonMultimediaI, BabylonTextInfoI } from '../../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BabylonSimpleImgInfoComponent {
|
|
4
|
+
rightSide?: boolean;
|
|
5
|
+
texts?: BabylonTextInfoI;
|
|
6
|
+
buttons?: BabylonButtonI[];
|
|
7
|
+
multimedia?: BabylonMultimediaI;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonSimpleImgInfoComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonSimpleImgInfoComponent, "lib-babylon-simple-img-info", never, { "rightSide": { "alias": "rightSide"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-simple-img-info.component';
|
|
@@ -119,3 +119,7 @@ export * from './babylon-rooms-list-v2';
|
|
|
119
119
|
export * from './babylon-top-simple-img';
|
|
120
120
|
export * from './babylon-info-img-v2';
|
|
121
121
|
export * from './babylon-loyalty-table';
|
|
122
|
+
export * from './babylon-contact-form-v2';
|
|
123
|
+
export * from './babylon-list-img-v2';
|
|
124
|
+
export * from './babylon-list-box-info';
|
|
125
|
+
export * from './babylon-simple-img-info';
|
|
@@ -19,4 +19,16 @@ export interface BabylonTextInfoI {
|
|
|
19
19
|
pretitleContain?: BabylonDynamicHeadingI;
|
|
20
20
|
titleContain?: BabylonDynamicHeadingI;
|
|
21
21
|
svg?: string;
|
|
22
|
+
featurepillsnumberSvgicon1?: string;
|
|
23
|
+
featurepillsnumberSvgicon2?: string;
|
|
24
|
+
featurepillsnumberSvgicon3?: string;
|
|
25
|
+
featurepillsnumberSvgnumber1?: string;
|
|
26
|
+
featurepillsnumberSvgnumber2?: string;
|
|
27
|
+
featurepillsnumberSvgnumber3?: string;
|
|
28
|
+
featurepillsnumberSvgname1?: string;
|
|
29
|
+
featurepillsnumberSvgname2?: string;
|
|
30
|
+
featurepillsnumberSvgname3?: string;
|
|
31
|
+
featurepillsnumberSvgsubtitle1?: string;
|
|
32
|
+
featurepillsnumberSvgsubtitle2?: string;
|
|
33
|
+
featurepillsnumberSvgsubtitle3?: string;
|
|
22
34
|
}
|