ctt-babylon 0.9.40 → 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.
Files changed (34) hide show
  1. package/esm2022/lib/components/core/babylon-contact-form-v2/babylon-contact-form-v2.component.mjs +37 -0
  2. package/esm2022/lib/components/core/babylon-contact-form-v2/index.mjs +2 -0
  3. package/esm2022/lib/components/core/babylon-faq-v2/babylon-faq-v2.component.mjs +3 -3
  4. package/esm2022/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.mjs +3 -3
  5. package/esm2022/lib/components/core/babylon-gallery-v2/babylon-gallery-v2.component.mjs +9 -5
  6. package/esm2022/lib/components/core/babylon-info-big-v3/babylon-info-big-v3.component.mjs +2 -2
  7. package/esm2022/lib/components/core/babylon-info-img-v2/babylon-info-img-v2.component.mjs +3 -3
  8. package/esm2022/lib/components/core/babylon-info-zigzag-v4/babylon-info-zigzag-v4.component.mjs +3 -3
  9. package/esm2022/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.mjs +16 -0
  10. package/esm2022/lib/components/core/babylon-list-box-info/index.mjs +2 -0
  11. package/esm2022/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.mjs +26 -0
  12. package/esm2022/lib/components/core/babylon-list-img-v2/index.mjs +2 -0
  13. package/esm2022/lib/components/core/babylon-rooms-list-v2/babylon-rooms-list-v2.component.mjs +5 -3
  14. package/esm2022/lib/components/core/babylon-simple-img-info/babylon-simple-img-info.component.mjs +24 -0
  15. package/esm2022/lib/components/core/babylon-simple-img-info/index.mjs +2 -0
  16. package/esm2022/lib/components/core/babylon-social-bar/babylon-social-bar.component.mjs +3 -3
  17. package/esm2022/lib/components/core/index.mjs +5 -1
  18. package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
  19. package/esm2022/lib/services/mapper/mapper.service.mjs +2 -2
  20. package/fesm2022/ctt-babylon.mjs +111 -19
  21. package/fesm2022/ctt-babylon.mjs.map +1 -1
  22. package/lib/components/core/babylon-contact-form-v2/babylon-contact-form-v2.component.d.ts +10 -0
  23. package/lib/components/core/babylon-contact-form-v2/index.d.ts +1 -0
  24. package/lib/components/core/babylon-feature-pills-number/babylon-feature-pills-number.component.d.ts +1 -1
  25. package/lib/components/core/babylon-gallery-v2/babylon-gallery-v2.component.d.ts +4 -1
  26. package/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.d.ts +8 -0
  27. package/lib/components/core/babylon-list-box-info/index.d.ts +1 -0
  28. package/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.d.ts +12 -0
  29. package/lib/components/core/babylon-list-img-v2/index.d.ts +1 -0
  30. package/lib/components/core/babylon-simple-img-info/babylon-simple-img-info.component.d.ts +10 -0
  31. package/lib/components/core/babylon-simple-img-info/index.d.ts +1 -0
  32. package/lib/components/core/index.d.ts +4 -0
  33. package/lib/interfaces/babylon-text-info.interface.d.ts +12 -0
  34. 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';
@@ -1,4 +1,4 @@
1
- import { BabylonTextInfoI, BabylonIconInfoI } from '../../../interfaces';
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ctt-babylon",
3
- "version": "0.9.40",
3
+ "version": "0.9.41",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",