@james_jayaraj/test-npm 1.2.1 → 1.2.3
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/esm2020/lib/confirm-patient-contact-details/confirm-patient-contact-details.component.mjs +6 -4
- package/esm2020/lib/hola-rx.component.mjs +5 -1
- package/esm2020/lib/rx/rx.component.mjs +63 -3
- package/esm2020/lib/services/common.mjs +5 -1
- package/fesm2015/james_jayaraj-test-npm.mjs +76 -5
- package/fesm2015/james_jayaraj-test-npm.mjs.map +1 -1
- package/fesm2020/james_jayaraj-test-npm.mjs +75 -5
- package/fesm2020/james_jayaraj-test-npm.mjs.map +1 -1
- package/lib/confirm-patient-contact-details/confirm-patient-contact-details.component.d.ts +1 -0
- package/lib/rx/rx.component.d.ts +1 -0
- package/lib/services/common.d.ts +4 -0
- package/package.json +1 -1
- package/_hola-rx.styles.scss +0 -2653
|
@@ -15,6 +15,7 @@ export declare class ConfirmPatientContactDetailsComponent implements OnInit {
|
|
|
15
15
|
Email: any;
|
|
16
16
|
rxEmailFlag: boolean;
|
|
17
17
|
modaldata: any;
|
|
18
|
+
scriptType: any;
|
|
18
19
|
constructor(elementRef: ElementRef, commonServices: CommonServices, changedetect: ChangeDetectorRef);
|
|
19
20
|
ngOnInit(): void;
|
|
20
21
|
close(index: any): any;
|
package/lib/rx/rx.component.d.ts
CHANGED
|
@@ -208,6 +208,7 @@ export declare class RxComponent implements OnInit {
|
|
|
208
208
|
sendToPharmacyChange(): void;
|
|
209
209
|
includeRtpmModal(): void;
|
|
210
210
|
EprescripeSend(flag: any): void;
|
|
211
|
+
PaperprescripeSend(flag: any): void;
|
|
211
212
|
ConfirmPatientPopup(): void;
|
|
212
213
|
prescripePrint(): void;
|
|
213
214
|
indicationAuthority(maxQtyUnits: any, quantityVal: any, repeats: any, repeatsVal: any, index: any, restriction: any): void;
|
package/lib/services/common.d.ts
CHANGED
|
@@ -106,6 +106,10 @@ export declare class CommonServices {
|
|
|
106
106
|
isScriptToPharmacy: number;
|
|
107
107
|
pharmacyEmail: string;
|
|
108
108
|
favouriteEncryptedId: string;
|
|
109
|
+
enablePaperScript: boolean;
|
|
110
|
+
enableSendPaperScriptInMail: boolean;
|
|
111
|
+
enableSendEScriptInMail: boolean;
|
|
112
|
+
enableEScript: boolean;
|
|
109
113
|
clearMedicalPrescriptionData(): void;
|
|
110
114
|
clearMedicalPrescriptionFavouriteData(): void;
|
|
111
115
|
clearMedicalPrescriptionDataOnchangeofMedicine(med: any): void;
|