@james_jayaraj/test-npm 1.1.7 → 1.1.9
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/_hola-rx.styles.scss +8 -10
- package/esm2020/lib/hola-rx.component.mjs +3 -7
- package/esm2020/lib/password/password.component.mjs +2 -2
- package/esm2020/lib/rx/rx.component.mjs +8 -21
- package/esm2020/lib/services/common.mjs +20 -3
- package/fesm2015/james_jayaraj-test-npm.mjs +30 -29
- package/fesm2015/james_jayaraj-test-npm.mjs.map +1 -1
- package/fesm2020/james_jayaraj-test-npm.mjs +29 -29
- package/fesm2020/james_jayaraj-test-npm.mjs.map +1 -1
- package/lib/hola-rx.component.d.ts +2 -2
- package/lib/rx/rx.component.d.ts +0 -2
- package/lib/services/common.d.ts +1 -1
- package/package.json +1 -1
|
@@ -20,8 +20,8 @@ export declare class HolaRx implements OnInit {
|
|
|
20
20
|
private setLoginterval;
|
|
21
21
|
init(clientid: string, clientsecret: string, sandbox: boolean, flag?: number): Observable<any>;
|
|
22
22
|
private setTimer;
|
|
23
|
-
openNewRx(RxDetails: any
|
|
24
|
-
openEditRx(RxDetails: any
|
|
23
|
+
openNewRx(RxDetails: any): Observable<any>;
|
|
24
|
+
openEditRx(RxDetails: any): Observable<any>;
|
|
25
25
|
openReferral(RxDetails: any): Observable<any>;
|
|
26
26
|
downloadRx(RxID: any): Observable<any>;
|
|
27
27
|
downloadReferral(ReferralID: any): Observable<any>;
|
package/lib/rx/rx.component.d.ts
CHANGED
|
@@ -96,8 +96,6 @@ export declare class RxComponent implements OnInit {
|
|
|
96
96
|
content: TemplateRef<any>;
|
|
97
97
|
myTemplate: TemplateRef<any>;
|
|
98
98
|
tooltip: null;
|
|
99
|
-
popupWidth: string;
|
|
100
|
-
isMobile: boolean;
|
|
101
99
|
constructor(apiService: ApiService, commonServices: CommonServices, elementRef: ElementRef, changedetect: ChangeDetectorRef, datePipe: DatePipe, renderer: Renderer2, elRef: ElementRef, viewRefContainer: ViewContainerRef);
|
|
102
100
|
hideToolTip(): void;
|
|
103
101
|
onclick(event: any): void;
|
package/lib/services/common.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ export declare class CommonServices {
|
|
|
7
7
|
private document;
|
|
8
8
|
datePipe: DatePipe;
|
|
9
9
|
notifications: any;
|
|
10
|
-
subPopupData: any;
|
|
11
10
|
private modalNotifier?;
|
|
12
11
|
private SubPopupOpen?;
|
|
13
12
|
constructor(resolver: ComponentFactoryResolver, injector: Injector, document: Document, datePipe: DatePipe);
|
|
@@ -125,6 +124,7 @@ export declare class CommonServices {
|
|
|
125
124
|
errorResponse(code: any, message: any, successflag?: boolean, data?: any): void;
|
|
126
125
|
setlogvalue(flag: boolean, errormessage: string, stacktrace: string, module: string, functionname: string, requestPayload?: any): void;
|
|
127
126
|
IsNullOrEmpty(value: any): boolean;
|
|
127
|
+
encryptionMethod(value: any): string;
|
|
128
128
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommonServices, never>;
|
|
129
129
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommonServices>;
|
|
130
130
|
}
|