simpo-component-library 2.0.96 → 2.0.98
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/sections/registration-form/registration-form.component.mjs +29 -19
- package/esm2022/lib/sections/view-blog/view-blog.component.mjs +924 -1
- package/esm2022/lib/services/rest.service.mjs +7 -1
- package/fesm2022/simpo-component-library.mjs +945 -7
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/sections/registration-form/registration-form.component.d.ts +3 -1
- package/lib/services/rest.service.d.ts +2 -0
- package/package.json +1 -1
- package/simpo-component-library-2.0.98.tgz +0 -0
- package/simpo-component-library-2.0.96.tgz +0 -0
@@ -6,18 +6,20 @@ import { BackgroundModel, StylesModel } from '../../styles/style.model';
|
|
6
6
|
import { EventsService } from './../../services/events.service';
|
7
7
|
import BaseSection from '../BaseSection';
|
8
8
|
import { TextContentModel, TextSectionModel } from '../text-section/text-section.model';
|
9
|
+
import { ActivatedRoute } from '@angular/router';
|
9
10
|
import * as i0 from "@angular/core";
|
10
11
|
export declare class RegistrationFormComponent extends BaseSection implements OnInit, OnDestroy {
|
11
12
|
private restService;
|
12
13
|
private snackBar;
|
13
14
|
private _eventService;
|
15
|
+
private router;
|
14
16
|
data?: TextSectionModel;
|
15
17
|
index?: number;
|
16
18
|
edit?: boolean;
|
17
19
|
nextComponentColor?: BackgroundModel;
|
18
20
|
content: TextContentModel | undefined;
|
19
21
|
styles: StylesModel | undefined;
|
20
|
-
constructor(restService: RestService, snackBar: MatSnackBar, _eventService: EventsService);
|
22
|
+
constructor(restService: RestService, snackBar: MatSnackBar, _eventService: EventsService, router: ActivatedRoute);
|
21
23
|
Object: ObjectConstructor;
|
22
24
|
payload: any;
|
23
25
|
selectedKey: any;
|
@@ -71,6 +71,8 @@ export declare class RestService implements OnDestroy {
|
|
71
71
|
getSelectedListFields(bId: any, showInErp: any, formName: any): Observable<Object>;
|
72
72
|
createRegistration(payload: any): Observable<Object>;
|
73
73
|
createAdmission(payload: any): Observable<Object>;
|
74
|
+
createPaymentForAdmission(payload: any): Observable<Object>;
|
75
|
+
createRegistrationForPayment(payload: any): Observable<Object>;
|
74
76
|
getSubscriptionForFeeStructure(gradeId: any): Observable<Object>;
|
75
77
|
getFeeStructure(payload: any): Observable<Object>;
|
76
78
|
getFieldsToDisplay(fieldsList: any[]): any;
|
package/package.json
CHANGED
Binary file
|
Binary file
|