simpo-component-library 2.0.96 → 2.0.97
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/directive/background-directive.d.ts +1 -1
- package/lib/directive/button-directive.directive.d.ts +1 -1
- package/lib/directive/color.directive.d.ts +1 -1
- package/lib/sections/pricing-section/pricing-section.component.d.ts +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.97.tgz +0 -0
- package/simpo-component-library-2.0.96.tgz +0 -0
@@ -11,7 +11,7 @@ export declare class BackgroundDirective implements OnChanges {
|
|
11
11
|
constructor(el: ElementRef, eventService: EventsService);
|
12
12
|
ngOnDestroy(): void;
|
13
13
|
ngOnChanges(change: SimpleChanges): void;
|
14
|
-
getTextColor(bgColor: string): "#
|
14
|
+
getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundDirective, never>;
|
16
16
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundDirective, "[simpoBackground]", never, { "simpoBackground": { "alias": "simpoBackground"; "required": false; }; "scrollValue": { "alias": "scrollValue"; "required": false; }; }, {}, never, never, true, never>;
|
17
17
|
}
|
@@ -15,7 +15,7 @@ export declare class ButtonDirectiveDirective implements OnChanges {
|
|
15
15
|
applyButtonStyleChanges(): void;
|
16
16
|
applyButtonType(style: ButtonStyleModel, color: string): void;
|
17
17
|
applyButtonShape(style: ButtonStyleModel): void;
|
18
|
-
getTextColor(bgColor: string): "#
|
18
|
+
getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
|
19
19
|
buttonStyleSubscription?: Subscription;
|
20
20
|
buttonStyleChangeCheck(): void;
|
21
21
|
changeButtonStyle(id: any, style: ButtonStyleModel, bgColor: string): void;
|
@@ -12,7 +12,7 @@ export declare class ColorDirective implements OnChanges {
|
|
12
12
|
ngOnDestroy(): void;
|
13
13
|
applyColor(): void;
|
14
14
|
bgColorChangeCheck(): void;
|
15
|
-
getTextColor(): "#
|
15
|
+
getTextColor(): "#000000" | "#ffffff" | "#ffffff;";
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorDirective, never>;
|
17
17
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ColorDirective, "[simpoColor]", never, { "bgColor": { "alias": "simpoColor"; "required": false; }; }, {}, never, never, true, never>;
|
18
18
|
}
|
@@ -17,7 +17,7 @@ export declare class PricingSectionComponent extends BaseSection {
|
|
17
17
|
style?: PricingSectionStylesModel;
|
18
18
|
constructor(_eventService: EventsService);
|
19
19
|
ngOnInit(): void;
|
20
|
-
getTextColor(): "#
|
20
|
+
getTextColor(): "#000000" | "#ffffff";
|
21
21
|
get headingSpace(): SPACING;
|
22
22
|
editSection(): void;
|
23
23
|
redirectTo(): void;
|
@@ -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
|