master-control 0.5.9 → 0.5.10
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/annuity-premium-calculator/annuity-premium-calculator.component.mjs +3 -3
- package/esm2022/lib/master-control.component.mjs +2 -2
- package/esm2022/lib/medial-questions/medial-questions.component.mjs +84 -22
- package/esm2022/lib/pay-get-card/pay-get-card.component.mjs +3 -3
- package/fesm2022/master-control.mjs +88 -26
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/medial-questions/medial-questions.component.d.ts +9 -1
- package/master-control-0.5.10.tgz +0 -0
- package/package.json +1 -1
- package/master-control-0.5.09.tgz +0 -0
|
@@ -8,6 +8,8 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
|
8
8
|
questionsValueChange: EventEmitter<any>;
|
|
9
9
|
clusterId: any;
|
|
10
10
|
triggerValidation?: Subject<void>;
|
|
11
|
+
locationDetails: any;
|
|
12
|
+
locationDetailsChange: EventEmitter<any>;
|
|
11
13
|
medialQuestionResponse: import("@angular/core").InputSignal<any>;
|
|
12
14
|
personUWOpenQuoteResponse: any;
|
|
13
15
|
defaultValues: any;
|
|
@@ -17,6 +19,7 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
|
17
19
|
medicalSubQuestionsResponse: any;
|
|
18
20
|
addressInput: ElementRef<HTMLInputElement>;
|
|
19
21
|
private autocomplete;
|
|
22
|
+
currentAddress: string;
|
|
20
23
|
saveQuestionRequestLa: any;
|
|
21
24
|
saveQuestionRequestPh: any;
|
|
22
25
|
field: any;
|
|
@@ -51,6 +54,7 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
|
51
54
|
};
|
|
52
55
|
constructor(ngZone: NgZone, masterService: MasterService);
|
|
53
56
|
ngOnInit(): void;
|
|
57
|
+
private fetchCurrentLocation;
|
|
54
58
|
ngOnChanges(changes: SimpleChanges): void;
|
|
55
59
|
ngAfterViewInit(): void;
|
|
56
60
|
private resolveHeightQuestionIds;
|
|
@@ -62,6 +66,10 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
|
62
66
|
searchAddresses(query: string): void;
|
|
63
67
|
selectAddress(suggestion: any): void;
|
|
64
68
|
onInputBlur(): void;
|
|
69
|
+
private reverseGeocode;
|
|
70
|
+
onMarkerDragEnd(event: google.maps.MapMouseEvent): void;
|
|
71
|
+
onMarkerClick(event: google.maps.MapMouseEvent): void;
|
|
72
|
+
onMapClick(event: google.maps.MapMouseEvent): void;
|
|
65
73
|
findMedicalQuestionsInOpenQuote(arrayOfObj: any): void;
|
|
66
74
|
mapAnswersForOpenQuote(): void;
|
|
67
75
|
preparePersonUwQuestionsObj(): void;
|
|
@@ -108,5 +116,5 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
|
108
116
|
private getScrollableParent;
|
|
109
117
|
handleQuestionChange(): void;
|
|
110
118
|
static ɵfac: i0.ɵɵFactoryDeclaration<MedialQuestionsComponent, never>;
|
|
111
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MedialQuestionsComponent, "lib-medial-questions", never, { "clusterId": { "alias": "clusterId"; "required": false; "isSignal": true; }; "triggerValidation": { "alias": "triggerValidation"; "required": false; }; "medialQuestionResponse": { "alias": "medialQuestionResponse"; "required": false; "isSignal": true; }; "personUWOpenQuoteResponse": { "alias": "personUWOpenQuoteResponse"; "required": false; "isSignal": true; }; "defaultValues": { "alias": "defaultValues"; "required": false; "isSignal": true; }; "personType": { "alias": "personType"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, { "questionsValueChange": "questionsValueChange"; }, never, never, true, never>;
|
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MedialQuestionsComponent, "lib-medial-questions", never, { "clusterId": { "alias": "clusterId"; "required": false; "isSignal": true; }; "triggerValidation": { "alias": "triggerValidation"; "required": false; }; "locationDetails": { "alias": "locationDetails"; "required": false; }; "medialQuestionResponse": { "alias": "medialQuestionResponse"; "required": false; "isSignal": true; }; "personUWOpenQuoteResponse": { "alias": "personUWOpenQuoteResponse"; "required": false; "isSignal": true; }; "defaultValues": { "alias": "defaultValues"; "required": false; "isSignal": true; }; "personType": { "alias": "personType"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, { "questionsValueChange": "questionsValueChange"; "locationDetailsChange": "locationDetailsChange"; }, never, never, true, never>;
|
|
112
120
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|