@james_jayaraj/test-npm 1.2.0 → 1.2.1
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/environments/config.mjs +3 -3
- package/esm2020/lib/rx/rx.component.mjs +28 -5
- package/esm2020/lib/services/common.mjs +2 -1
- package/fesm2015/james_jayaraj-test-npm.mjs +25 -18
- package/fesm2015/james_jayaraj-test-npm.mjs.map +1 -1
- package/fesm2020/james_jayaraj-test-npm.mjs +30 -6
- package/fesm2020/james_jayaraj-test-npm.mjs.map +1 -1
- package/lib/rx/rx.component.d.ts +1 -0
- package/lib/services/common.d.ts +1 -0
- package/package.json +1 -1
package/lib/rx/rx.component.d.ts
CHANGED
|
@@ -242,6 +242,7 @@ export declare class RxComponent implements OnInit {
|
|
|
242
242
|
favouriteMedicineLoading(rxList: any): void;
|
|
243
243
|
isCurrentMedicineInFavourites(): any;
|
|
244
244
|
isPbsTypeMatch(itemPbsType: any, pbsTypeFilter: any): boolean;
|
|
245
|
+
assignCombinations(med: any): void;
|
|
245
246
|
static ɵfac: i0.ɵɵFactoryDeclaration<RxComponent, never>;
|
|
246
247
|
static ɵcmp: i0.ɵɵComponentDeclaration<RxComponent, "app-rx", never, {}, { "closeEvent": "closeEvent"; "submitEvent": "submitEvent"; }, never, never, false>;
|
|
247
248
|
}
|
package/lib/services/common.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ export declare class CommonServices {
|
|
|
105
105
|
smartSearch: boolean;
|
|
106
106
|
isScriptToPharmacy: number;
|
|
107
107
|
pharmacyEmail: string;
|
|
108
|
+
favouriteEncryptedId: string;
|
|
108
109
|
clearMedicalPrescriptionData(): void;
|
|
109
110
|
clearMedicalPrescriptionFavouriteData(): void;
|
|
110
111
|
clearMedicalPrescriptionDataOnchangeofMedicine(med: any): void;
|