@james_jayaraj/test-npm 1.1.6 → 1.1.8
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 +10 -8
- package/esm2020/lib/environments/config.mjs +2 -2
- package/esm2020/lib/hola-rx.component.mjs +9 -3
- package/esm2020/lib/rx/rx.component.mjs +11 -3
- package/esm2020/lib/services/common.mjs +3 -2
- package/fesm2015/james_jayaraj-test-npm.mjs +21 -6
- package/fesm2015/james_jayaraj-test-npm.mjs.map +1 -1
- package/fesm2020/james_jayaraj-test-npm.mjs +21 -6
- package/fesm2020/james_jayaraj-test-npm.mjs.map +1 -1
- package/lib/hola-rx.component.d.ts +2 -0
- package/lib/rx/rx.component.d.ts +2 -0
- package/lib/services/common.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@ export declare class HolaRx implements OnInit {
|
|
|
14
14
|
private tempreferralid;
|
|
15
15
|
private spinnerflag;
|
|
16
16
|
private authenticateBlock;
|
|
17
|
+
private Height;
|
|
18
|
+
private width;
|
|
17
19
|
content: TemplateRef<any>;
|
|
18
20
|
constructor(commonservice: CommonServices, commonLoaderServices: CommonLoaderServices, apiservice: ApiService, Changedetect: ChangeDetectorRef);
|
|
19
21
|
ngOnInit(): void;
|
package/lib/rx/rx.component.d.ts
CHANGED
|
@@ -96,6 +96,8 @@ 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;
|
|
99
101
|
constructor(apiService: ApiService, commonServices: CommonServices, elementRef: ElementRef, changedetect: ChangeDetectorRef, datePipe: DatePipe, renderer: Renderer2, elRef: ElementRef, viewRefContainer: ViewContainerRef);
|
|
100
102
|
hideToolTip(): void;
|
|
101
103
|
onclick(event: any): void;
|
package/lib/services/common.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare class CommonServices {
|
|
|
7
7
|
private document;
|
|
8
8
|
datePipe: DatePipe;
|
|
9
9
|
notifications: any;
|
|
10
|
+
subPopupData: any;
|
|
10
11
|
private modalNotifier?;
|
|
11
12
|
private SubPopupOpen?;
|
|
12
13
|
constructor(resolver: ComponentFactoryResolver, injector: Injector, document: Document, datePipe: DatePipe);
|