simpo-component-library 3.6.266 → 3.6.268
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/esm2022/lib/ecommerce/sections/passbook-transactions/passbook-transactions.component.mjs +30 -6
- package/esm2022/lib/ecommerce/sections/returns-calculator/returns-calculator.component.mjs +4 -3
- package/esm2022/lib/ecommerce/sections/scheme-details/scheme-details.component.mjs +7 -3
- package/esm2022/lib/ecommerce/sections/user-profile/user-profile.component.mjs +7 -4
- package/esm2022/lib/ecommerce/sections/verify-payment/verify-payment.component.mjs +2 -2
- package/esm2022/lib/services/rest.service.mjs +8 -1
- package/fesm2022/simpo-component-library.mjs +49 -12
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/passbook-transactions/passbook-transactions.component.d.ts +10 -1
- package/lib/ecommerce/sections/scheme-details/scheme-details.component.d.ts +3 -1
- package/lib/services/rest.service.d.ts +1 -0
- package/package.json +1 -1
- package/simpo-component-library-3.6.268.tgz +0 -0
- package/simpo-component-library-3.6.266.tgz +0 -0
@@ -1,5 +1,14 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import { StorageServiceService } from '../../../services/storage.service';
|
3
|
+
import { RestService } from '../../../services/rest.service';
|
1
4
|
import * as i0 from "@angular/core";
|
2
|
-
export declare class PassbookTransactionsComponent {
|
5
|
+
export declare class PassbookTransactionsComponent implements OnInit {
|
6
|
+
private storageService;
|
7
|
+
private restService;
|
8
|
+
constructor(storageService: StorageServiceService, restService: RestService);
|
9
|
+
ngOnInit(): void;
|
10
|
+
getAllTransactions(): void;
|
11
|
+
allTransactions: any[];
|
3
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<PassbookTransactionsComponent, never>;
|
4
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<PassbookTransactionsComponent, "simpo-passbook-transactions", never, {}, {}, never, never, true, never>;
|
5
14
|
}
|
@@ -10,11 +10,13 @@ export declare class SchemeDetailsComponent implements OnInit {
|
|
10
10
|
private matDialog;
|
11
11
|
private readonly _eventService;
|
12
12
|
schemeDetails: any;
|
13
|
+
data: any;
|
13
14
|
gotoSchemeOverview: EventEmitter<void>;
|
14
15
|
showChargesTemplate: TemplateRef<HTMLDivElement>;
|
15
16
|
slabListTemplate: TemplateRef<HTMLDivElement>;
|
16
17
|
constructor(storageService: StorageServiceService, restService: RestService, matDialog: MatDialog, _eventService: EventsService);
|
17
18
|
ngOnInit(): void;
|
19
|
+
styles: any;
|
18
20
|
screenWidth: any;
|
19
21
|
getScreenSize(event?: any): void;
|
20
22
|
paymentData: any[];
|
@@ -31,5 +33,5 @@ export declare class SchemeDetailsComponent implements OnInit {
|
|
31
33
|
getvalidSlabList(): void;
|
32
34
|
goBack(): void;
|
33
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<SchemeDetailsComponent, never>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SchemeDetailsComponent, "simpo-scheme-details", never, { "schemeDetails": { "alias": "schemeDetails"; "required": false; }; }, { "gotoSchemeOverview": "gotoSchemeOverview"; }, never, never, true, never>;
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SchemeDetailsComponent, "simpo-scheme-details", never, { "schemeDetails": { "alias": "schemeDetails"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "gotoSchemeOverview": "gotoSchemeOverview"; }, never, never, true, never>;
|
35
37
|
}
|
@@ -117,6 +117,7 @@ export declare class RestService implements OnDestroy {
|
|
117
117
|
PassbookAppStatus(bId: any): Observable<Object>;
|
118
118
|
getAllPassbookDues(bId: any, userId: any): Observable<Object>;
|
119
119
|
getToken(): string;
|
120
|
+
getAllTransactions(payload: any): Observable<Object>;
|
120
121
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
121
122
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
122
123
|
}
|
package/package.json
CHANGED
Binary file
|
Binary file
|