@james_jayaraj/test-npm 1.2.0 → 1.2.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/esm2020/lib/confirm-patient-contact-details/confirm-patient-contact-details.component.mjs +6 -4
- package/esm2020/lib/environments/config.mjs +3 -3
- package/esm2020/lib/hola-rx.component.mjs +5 -1
- package/esm2020/lib/rx/rx.component.mjs +84 -7
- package/esm2020/lib/services/common.mjs +6 -1
- package/fesm2015/james_jayaraj-test-npm.mjs +95 -23
- package/fesm2015/james_jayaraj-test-npm.mjs.map +1 -1
- package/fesm2020/james_jayaraj-test-npm.mjs +99 -11
- 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 +2 -0
- package/lib/services/common.d.ts +5 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -242,6 +243,7 @@ export declare class RxComponent implements OnInit {
|
|
|
242
243
|
favouriteMedicineLoading(rxList: any): void;
|
|
243
244
|
isCurrentMedicineInFavourites(): any;
|
|
244
245
|
isPbsTypeMatch(itemPbsType: any, pbsTypeFilter: any): boolean;
|
|
246
|
+
assignCombinations(med: any): void;
|
|
245
247
|
static ɵfac: i0.ɵɵFactoryDeclaration<RxComponent, never>;
|
|
246
248
|
static ɵcmp: i0.ɵɵComponentDeclaration<RxComponent, "app-rx", never, {}, { "closeEvent": "closeEvent"; "submitEvent": "submitEvent"; }, never, never, false>;
|
|
247
249
|
}
|
package/lib/services/common.d.ts
CHANGED
|
@@ -105,6 +105,11 @@ export declare class CommonServices {
|
|
|
105
105
|
smartSearch: boolean;
|
|
106
106
|
isScriptToPharmacy: number;
|
|
107
107
|
pharmacyEmail: string;
|
|
108
|
+
favouriteEncryptedId: string;
|
|
109
|
+
enablePaperScript: boolean;
|
|
110
|
+
enableSendPaperScriptInMail: boolean;
|
|
111
|
+
enableSendEScriptInMail: boolean;
|
|
112
|
+
enableEScript: boolean;
|
|
108
113
|
clearMedicalPrescriptionData(): void;
|
|
109
114
|
clearMedicalPrescriptionFavouriteData(): void;
|
|
110
115
|
clearMedicalPrescriptionDataOnchangeofMedicine(med: any): void;
|