master-control 0.2.95 → 0.2.97
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/discount-v2/discount-v2.component.mjs +3 -3
- package/esm2022/lib/dob/dob.component.mjs +69 -4
- package/esm2022/lib/master-control.component.mjs +2 -2
- package/esm2022/lib/master.service.mjs +52 -0
- package/esm2022/lib/medial-questions/medial-questions.component.mjs +160 -9
- package/esm2022/lib/select/select.component.mjs +2 -2
- package/esm2022/lib/toggle-button/toggle-button.component.mjs +3 -3
- package/esm2022/lib/upload/upload.component.mjs +3 -3
- package/fesm2022/master-control.mjs +287 -22
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/dob/dob.component.d.ts +6 -1
- package/lib/master.service.d.ts +11 -0
- package/lib/medial-questions/medial-questions.component.d.ts +6 -1
- package/master-control-0.2.97.tgz +0 -0
- package/package.json +2 -2
- package/master-control-0.2.95.tgz +0 -0
|
@@ -19,6 +19,9 @@ export declare class DobComponent implements ControlValueAccessor {
|
|
|
19
19
|
inputValue: any;
|
|
20
20
|
reactiveFormControlobject: any;
|
|
21
21
|
blur: EventEmitter<any>;
|
|
22
|
+
valueChange: EventEmitter<any>;
|
|
23
|
+
dateSelected: EventEmitter<any>;
|
|
24
|
+
invalidDate: EventEmitter<any>;
|
|
22
25
|
constructor(service: MasterControlService);
|
|
23
26
|
dateDivisionFormat(event: any): void;
|
|
24
27
|
_onChange: any;
|
|
@@ -28,7 +31,9 @@ export declare class DobComponent implements ControlValueAccessor {
|
|
|
28
31
|
registerOnTouched(fn: any): void;
|
|
29
32
|
setDisabledState?(isDisabled: boolean): void;
|
|
30
33
|
onInputChange(event: any): void;
|
|
34
|
+
onInputBlurForReactiveForms(event?: any): void;
|
|
31
35
|
onInputBlur(event?: any): void;
|
|
36
|
+
onDateChange(event: any): void;
|
|
32
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<DobComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DobComponent, "lib-dob", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "blur": "blur"; }, never, never, true, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DobComponent, "lib-dob", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "reactiveFormControlobject": { "alias": "reactiveFormControlobject"; "required": false; "isSignal": true; }; }, { "blur": "blur"; "valueChange": "valueChange"; "dateSelected": "dateSelected"; "invalidDate": "invalidDate"; }, never, never, true, never>;
|
|
34
39
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MasterService {
|
|
4
|
+
private http;
|
|
5
|
+
constructor(http: HttpClient);
|
|
6
|
+
getCookieValue(name: string): string;
|
|
7
|
+
getCommonHeaders(configData: any): any;
|
|
8
|
+
getSubQuestions(configData: any, subquestionType: any, personUWID: any): import("rxjs").Observable<Object>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MasterService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MasterService>;
|
|
11
|
+
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { ElementRef, OnInit, NgZone, AfterViewInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MasterService } from '../master.service';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
4
5
|
ngZone: NgZone;
|
|
6
|
+
masterService: MasterService;
|
|
5
7
|
medialQuestionResponse: import("@angular/core").InputSignal<any>;
|
|
8
|
+
personUwId: any;
|
|
9
|
+
medicalSubQuestionsResponse: any;
|
|
6
10
|
addressInput: ElementRef<HTMLInputElement>;
|
|
7
11
|
private autocomplete;
|
|
8
12
|
saveQuestionRequestLa: any;
|
|
@@ -27,7 +31,7 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
|
27
31
|
addressSuggestions: any[];
|
|
28
32
|
hoveredIndex: number;
|
|
29
33
|
searchTimeout: any;
|
|
30
|
-
constructor(ngZone: NgZone);
|
|
34
|
+
constructor(ngZone: NgZone, masterService: MasterService);
|
|
31
35
|
ngOnInit(): void;
|
|
32
36
|
ngOnChanges(changes: SimpleChanges): void;
|
|
33
37
|
ngAfterViewInit(): void;
|
|
@@ -67,6 +71,7 @@ export declare class MedialQuestionsComponent implements OnInit, AfterViewInit {
|
|
|
67
71
|
saveQuestionDetails(): void;
|
|
68
72
|
getCookieValue(name: string): string;
|
|
69
73
|
validateMedicalQuestions(): void;
|
|
74
|
+
valueChangeForMultiselect(question: any): void;
|
|
70
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<MedialQuestionsComponent, never>;
|
|
71
76
|
static ɵcmp: i0.ɵɵComponentDeclaration<MedialQuestionsComponent, "lib-medial-questions", never, { "medialQuestionResponse": { "alias": "medialQuestionResponse"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
72
77
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|