ctt-babylon 0.23.2 → 0.23.4

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.
@@ -14,6 +14,7 @@ export declare class BabylonContactFormComponent implements OnInit {
14
14
  private readonly cdr;
15
15
  captchaRef: RecaptchaComponent;
16
16
  captchaToken: string | null;
17
+ identifier?: string;
17
18
  siteKey?: string;
18
19
  title?: string;
19
20
  pretitle?: string;
@@ -59,5 +60,5 @@ export declare class BabylonContactFormComponent implements OnInit {
59
60
  executeCaptcha(): void;
60
61
  onCaptchaResolved(token: string | null): void;
61
62
  static ɵfac: i0.ɵɵFactoryDeclaration<BabylonContactFormComponent, never>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContactFormComponent, "lib-babylon-contact-form", never, { "siteKey": { "alias": "siteKey"; "required": false; }; "title": { "alias": "title"; "required": false; }; "pretitle": { "alias": "pretitle"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "inputs": { "alias": "inputs"; "required": false; }; "textarea": { "alias": "textarea"; "required": false; }; "conditions": { "alias": "conditions"; "required": false; }; "conditions2": { "alias": "conditions2"; "required": false; }; "button": { "alias": "button"; "required": false; }; "image": { "alias": "image"; "required": false; }; "dropdown": { "alias": "dropdown"; "required": false; }; "hotelDrop": { "alias": "hotelDrop"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "textColors": { "alias": "textColors"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "idCv": { "alias": "idCv"; "required": false; }; }, { "submit": "submit"; }, never, never, true, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<BabylonContactFormComponent, "lib-babylon-contact-form", never, { "identifier": { "alias": "identifier"; "required": false; }; "siteKey": { "alias": "siteKey"; "required": false; }; "title": { "alias": "title"; "required": false; }; "pretitle": { "alias": "pretitle"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "inputs": { "alias": "inputs"; "required": false; }; "textarea": { "alias": "textarea"; "required": false; }; "conditions": { "alias": "conditions"; "required": false; }; "conditions2": { "alias": "conditions2"; "required": false; }; "button": { "alias": "button"; "required": false; }; "image": { "alias": "image"; "required": false; }; "dropdown": { "alias": "dropdown"; "required": false; }; "hotelDrop": { "alias": "hotelDrop"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "textColors": { "alias": "textColors"; "required": false; }; "texts": { "alias": "texts"; "required": false; }; "idCv": { "alias": "idCv"; "required": false; }; }, { "submit": "submit"; }, never, never, true, never>;
63
64
  }
@@ -2,6 +2,7 @@ import { BabylonButtonI } from '../../../interfaces/babylon-button.interface';
2
2
  import { BabylonDropdownI } from '../../../interfaces/babylon-dropdown.interface';
3
3
  import { BabylonInputI } from '../../../interfaces/babylon-input.interface';
4
4
  export interface BabylonContactFormI {
5
+ identifier?: string;
5
6
  title?: string;
6
7
  pretitle?: string;
7
8
  description?: string;
@@ -91,7 +91,7 @@ export declare class MapperService {
91
91
  mapRoomsSlider(props: any | undefined): BabylonRoomsSliderI | undefined;
92
92
  mapOfferSlider(props: any | undefined): BabylonOfferSliderI | undefined;
93
93
  mapThanks(props: any | undefined): BabylonThanksI;
94
- mapContactForm(props: any | undefined, ndProps: any | undefined, ndPropsConsult: any | undefined): BabylonContactFormI | undefined;
94
+ mapContactForm(props: any | undefined, ndProps: any | undefined, ndPropsConsult: any | undefined, identifier: string | undefined): BabylonContactFormI | undefined;
95
95
  mapContactAddress(props: any | undefined): BabylonContactAddressI | undefined;
96
96
  mapContactMap(props: any | undefined): BabylonContactMapaI | undefined;
97
97
  mapContactHow(props: any | undefined): BabylonContactHowI | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ctt-babylon",
3
- "version": "0.23.2",
3
+ "version": "0.23.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",