ctt-babylon 0.24.19 → 0.24.21

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 (20) hide show
  1. package/esm2022/lib/components/core/babylon-banner-info/babylon-banner-info.component.mjs +5 -3
  2. package/esm2022/lib/components/core/babylon-banner-info/babylon-banner-info.interface.mjs +1 -1
  3. package/esm2022/lib/components/core/babylon-contact-address/babylon-contact-address.component.mjs +3 -3
  4. package/esm2022/lib/components/core/babylon-contact-form/babylon-contact-form.component.mjs +4 -4
  5. package/esm2022/lib/components/core/{babylon-container-text-l2/babylon-container-text-l2.component.mjs → babylon-container-text-v2/babylon-container-text-v2.component.mjs} +6 -6
  6. package/esm2022/lib/components/core/{babylon-container-text-l2 → babylon-container-text-v2}/index.mjs +2 -2
  7. package/esm2022/lib/components/core/babylon-feature-pills/babylon-feature-pills.component.mjs +3 -3
  8. package/esm2022/lib/components/core/index.mjs +2 -2
  9. package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
  10. package/esm2022/lib/services/mapper/mapper.service.mjs +5 -1
  11. package/fesm2022/ctt-babylon.mjs +21 -15
  12. package/fesm2022/ctt-babylon.mjs.map +1 -1
  13. package/lib/components/core/babylon-banner-info/babylon-banner-info.component.d.ts +2 -1
  14. package/lib/components/core/babylon-banner-info/babylon-banner-info.interface.d.ts +1 -0
  15. package/lib/components/core/{babylon-container-text-l2/babylon-container-text-l2.component.d.ts → babylon-container-text-v2/babylon-container-text-v2.component.d.ts} +3 -3
  16. package/lib/components/core/babylon-container-text-v2/index.d.ts +1 -0
  17. package/lib/components/core/index.d.ts +1 -1
  18. package/lib/interfaces/babylon-text-info.interface.d.ts +2 -0
  19. package/package.json +1 -1
  20. package/lib/components/core/babylon-container-text-l2/index.d.ts +0 -1
@@ -6,6 +6,7 @@ export declare class BabylonBannerInfoComponent implements AfterViewInit {
6
6
  private cdr;
7
7
  pretitle?: string;
8
8
  title?: string;
9
+ subtitle?: string;
9
10
  description?: string;
10
11
  button?: BabylonButtonI[];
11
12
  image?: BabylonImageI;
@@ -25,5 +26,5 @@ export declare class BabylonBannerInfoComponent implements AfterViewInit {
25
26
  private waitForJQuery;
26
27
  getVideoDataProperty(): any;
27
28
  static ɵfac: i0.ɵɵFactoryDeclaration<BabylonBannerInfoComponent, never>;
28
- 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; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, true, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<BabylonBannerInfoComponent, "lib-babylon-banner-info", never, { "pretitle": { "alias": "pretitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "button": { "alias": "button"; "required": false; }; "image": { "alias": "image"; "required": false; }; "video": { "alias": "video"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, true, never>;
29
30
  }
@@ -3,6 +3,7 @@ import { BabylonImageI } from '../../../interfaces/babylon-image.interface';
3
3
  export interface BabylonBannerInfoI {
4
4
  pretitle?: string;
5
5
  title?: string;
6
+ subtitle?: string;
6
7
  description?: string;
7
8
  button?: BabylonButtonI;
8
9
  image?: BabylonImageI;
@@ -1,10 +1,10 @@
1
1
  import { BabylonTextInfoI } from '../../../interfaces';
2
2
  import * as i0 from "@angular/core";
3
- export declare class BabylonContainerTextL2Component {
3
+ export declare class BabylonContainerTextV2Component {
4
4
  background: boolean;
5
5
  leftSide: boolean;
6
6
  texts?: BabylonTextInfoI;
7
7
  identifier?: string;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<BabylonContainerTextL2Component, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContainerTextL2Component, "lib-babylon-container-text-l2", never, { "background": { "alias": "background"; "required": false; }; "leftSide": { "alias": "leftSide"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; }, {}, never, never, true, never>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BabylonContainerTextV2Component, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContainerTextV2Component, "lib-babylon-container-text-v2", never, { "background": { "alias": "background"; "required": false; }; "leftSide": { "alias": "leftSide"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; }, {}, never, never, true, never>;
10
10
  }
@@ -0,0 +1 @@
1
+ export * from './babylon-container-text-v2.component';
@@ -25,7 +25,7 @@ export * from './babylon-contact-form';
25
25
  export * from './babylon-contact-form-v2';
26
26
  export * from './babylon-contact-how';
27
27
  export * from './babylon-contact-map';
28
- export * from './babylon-container-text-l2';
28
+ export * from './babylon-container-text-v2';
29
29
  export * from './babylon-engine';
30
30
  export * from './babylon-engine-modal';
31
31
  export * from './babylon-engine-modal-v2';
@@ -217,4 +217,6 @@ export interface BabylonTextInfoI {
217
217
  selectAllText?: string;
218
218
  singleSelectText?: string;
219
219
  ndDescription?: string;
220
+ infoButton?: string;
221
+ alwaysopen?: string;
220
222
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ctt-babylon",
3
- "version": "0.24.19",
3
+ "version": "0.24.21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -1 +0,0 @@
1
- export * from './babylon-container-text-l2.component';