ctt-puro 0.49.1 → 0.49.2
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/puro-engine-modal/puro-engine-modal.component.mjs +8 -3
- package/esm2022/lib/components/puro-engine-modal/puro-engine-modal.interface.mjs +1 -1
- package/esm2022/lib/directives/puro-script/puro-modal-scripts.directive.mjs +15 -4
- package/fesm2022/ctt-puro.mjs +21 -5
- package/fesm2022/ctt-puro.mjs.map +1 -1
- package/lib/components/puro-engine-modal/puro-engine-modal.component.d.ts +3 -1
- package/lib/components/puro-engine-modal/puro-engine-modal.interface.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export declare class PuroEngineModalComponent {
|
|
|
8
8
|
private readonly ngZone;
|
|
9
9
|
private readonly modal;
|
|
10
10
|
isHotel?: boolean;
|
|
11
|
+
isGroup?: boolean;
|
|
11
12
|
isOpen: import("@angular/core").Signal<boolean>;
|
|
12
13
|
data: import("@angular/core").Signal<PuroEngineModalI | undefined>;
|
|
13
14
|
form?: FormGroup;
|
|
@@ -17,6 +18,7 @@ export declare class PuroEngineModalComponent {
|
|
|
17
18
|
kids: number;
|
|
18
19
|
};
|
|
19
20
|
private currentEngineId?;
|
|
21
|
+
protected showBlock: import("@angular/core").Signal<boolean>;
|
|
20
22
|
constructor();
|
|
21
23
|
ngOnInit(): void;
|
|
22
24
|
private initializeForm;
|
|
@@ -35,5 +37,5 @@ export declare class PuroEngineModalComponent {
|
|
|
35
37
|
onSubmit(e: Event): void;
|
|
36
38
|
close(): void;
|
|
37
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<PuroEngineModalComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PuroEngineModalComponent, "lib-puro-engine-modal", never, { "isHotel": { "alias": "isHotel"; "required": false; }; }, {}, never, never, true, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PuroEngineModalComponent, "lib-puro-engine-modal", never, { "isHotel": { "alias": "isHotel"; "required": false; }; "isGroup": { "alias": "isGroup"; "required": false; }; }, {}, never, never, true, never>;
|
|
39
41
|
}
|