simpo-component-library 2.0.94 → 2.0.96
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/components/index.mjs +6 -5
- package/esm2022/lib/components/payment-details/payment-details.component.mjs +151 -0
- package/esm2022/lib/sections/registration-form/registration-form.component.mjs +83 -8
- package/esm2022/lib/services/rest.service.mjs +8 -1
- package/fesm2022/simpo-component-library.mjs +232 -6
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/components/index.d.ts +2 -1
- package/lib/components/payment-details/payment-details.component.d.ts +18 -0
- 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/banner-carousel/banner-carousel.component.d.ts +2 -2
- package/lib/sections/carousel-banner/carousel-banner.component.d.ts +1 -1
- package/lib/sections/image-section/image-section.component.d.ts +2 -2
- package/lib/sections/logo-showcase/logo-showcase.component.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 +9 -0
- package/lib/services/rest.service.d.ts +2 -0
- package/package.json +1 -1
- package/simpo-component-library-2.0.96.tgz +0 -0
- package/simpo-component-library-2.0.94.tgz +0 -0
@@ -3,8 +3,9 @@ import * as i1 from "./hover-elements/hover-elements.component";
|
|
3
3
|
import * as i2 from "./delete-hover-element/delete-hover-element.component";
|
4
4
|
import * as i3 from "./input-fields/input-fields.component";
|
5
5
|
import * as i4 from "ngx-skeleton-loader";
|
6
|
+
import * as i5 from "./payment-details/payment-details.component";
|
6
7
|
export declare class SimpoComponentModule {
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimpoComponentModule, never>;
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SimpoComponentModule, never, [typeof i1.HoverElementsComponent, typeof i2.DeleteHoverElementComponent, typeof i3.InputFieldsComponent, typeof i4.NgxSkeletonLoaderModule], [typeof i1.HoverElementsComponent, typeof i2.DeleteHoverElementComponent, typeof i3.InputFieldsComponent, typeof i4.NgxSkeletonLoaderModule]>;
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SimpoComponentModule, never, [typeof i1.HoverElementsComponent, typeof i2.DeleteHoverElementComponent, typeof i3.InputFieldsComponent, typeof i4.NgxSkeletonLoaderModule, typeof i5.PaymentDetailsComponent], [typeof i1.HoverElementsComponent, typeof i2.DeleteHoverElementComponent, typeof i3.InputFieldsComponent, typeof i4.NgxSkeletonLoaderModule, typeof i5.PaymentDetailsComponent]>;
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<SimpoComponentModule>;
|
10
11
|
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class PaymentDetailsComponent {
|
3
|
+
admissionData: any;
|
4
|
+
subscriptionsData: any[];
|
5
|
+
Object: ObjectConstructor;
|
6
|
+
constructor();
|
7
|
+
feeStructure: any;
|
8
|
+
feeConfig: any;
|
9
|
+
ngOnInit(): void;
|
10
|
+
defaultImage: string;
|
11
|
+
subscriptions: any;
|
12
|
+
toggleSelection(subscription: any, frequency: string): void;
|
13
|
+
calculateTotalAmount(): void;
|
14
|
+
arrangeSubscriptionForAdmission(subscriptionList: any[]): any;
|
15
|
+
arrangeFeeConfig(feeConfigList: any[]): any;
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentDetailsComponent, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaymentDetailsComponent, "simpo-payment-details", never, { "admissionData": { "alias": "admissionData"; "required": false; }; "subscriptionsData": { "alias": "subscriptionsData"; "required": false; }; }, {}, never, never, true, never>;
|
18
|
+
}
|
@@ -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): "#ffffff" | "#000000" | "#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): "#ffffff" | "#000000" | "#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(): "#ffffff" | "#000000" | "#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
|
}
|
@@ -25,8 +25,8 @@ export declare class BannerCarouselComponent extends BaseSection implements OnIn
|
|
25
25
|
get stylesLayout(): LayOutModel;
|
26
26
|
get getBlurValue(): "NONE" | "LIGHT" | "MODERATE" | "STRONG" | "VERY_STRONG" | undefined;
|
27
27
|
get getBackgroundColor(): BackgroundModel;
|
28
|
-
get getBackgroundOpacity(): "0" | "0.
|
29
|
-
opacityValue(value: OverlayValue): "0" | "0.
|
28
|
+
get getBackgroundOpacity(): "0" | "0.7" | "0.5" | "0.3" | "0.2";
|
29
|
+
opacityValue(value: OverlayValue): "0" | "0.7" | "0.5" | "0.3" | "0.2";
|
30
30
|
editSection(): void;
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<BannerCarouselComponent, never>;
|
32
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<BannerCarouselComponent, "simpo-banner-carousel", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
@@ -25,7 +25,7 @@ export declare class CarouselBannerComponent extends BaseSection implements OnIn
|
|
25
25
|
get canMergeNavbar(): boolean | undefined;
|
26
26
|
get isBorderlessImage(): boolean | undefined;
|
27
27
|
get getPositionLayout(): PositionLayoutModal;
|
28
|
-
opacityValue(value: OverlayValue): "0" | "0.
|
28
|
+
opacityValue(value: OverlayValue): "0" | "0.7" | "0.5" | "0.3" | "0.2";
|
29
29
|
editSection(): void;
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselBannerComponent, never>;
|
31
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<CarouselBannerComponent, "simpo-carousel-banner", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
@@ -19,8 +19,8 @@ export declare class ImageSectionComponent extends BaseSection {
|
|
19
19
|
constructor(_eventService: EventsService);
|
20
20
|
ngOnInit(): void;
|
21
21
|
get canMergeNavbar(): boolean | undefined;
|
22
|
-
get getBackgroundOpacity(): "
|
23
|
-
opacityValue(value: OverlayValue): "
|
22
|
+
get getBackgroundOpacity(): "1" | "0.7" | "0.5" | "0.3" | "0.2";
|
23
|
+
opacityValue(value: OverlayValue): "1" | "0.7" | "0.5" | "0.3" | "0.2";
|
24
24
|
editSection(): void;
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageSectionComponent, never>;
|
26
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImageSectionComponent, "simpo-image-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
@@ -23,7 +23,7 @@ export declare class LogoShowcaseComponent extends BaseSection implements OnInit
|
|
23
23
|
constructor(_eventService: EventsService);
|
24
24
|
ngOnInit(): void;
|
25
25
|
get animationDuration(): logoSpeed;
|
26
|
-
get animationDirection(): "reverse" | "normal"
|
26
|
+
get animationDirection(): logoDirection.Left | "reverse" | "normal";
|
27
27
|
screenWidth: number;
|
28
28
|
getScreenSize(event?: number): void;
|
29
29
|
editSection(): void;
|
@@ -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(): "#ffffff" | "#000000";
|
21
21
|
get headingSpace(): SPACING;
|
22
22
|
editSection(): void;
|
23
23
|
redirectTo(): void;
|
@@ -23,6 +23,8 @@ export declare class RegistrationFormComponent extends BaseSection implements On
|
|
23
23
|
selectedKey: any;
|
24
24
|
fieldData: any;
|
25
25
|
businessId: any;
|
26
|
+
selectedGradeId: any;
|
27
|
+
selectedAcademicYear: any;
|
26
28
|
ngOnInit(): void;
|
27
29
|
ngOnDestroy(): void;
|
28
30
|
getAllFields(): void;
|
@@ -34,6 +36,13 @@ export declare class RegistrationFormComponent extends BaseSection implements On
|
|
34
36
|
createAdmission(): void;
|
35
37
|
convertToListOfFields(): any[];
|
36
38
|
updateAdmissionImage(ev: any): void;
|
39
|
+
redirectToPayment(): void;
|
40
|
+
continueAdmission(): void;
|
41
|
+
subscriptionsData: any[];
|
42
|
+
getFeeStructure(): void;
|
43
|
+
inputFieldChange(item: any, field: any): void;
|
44
|
+
arrangeSubscriptionForAdmission(subscriptionList: any[]): any;
|
45
|
+
arrangeFeeConfig(feeConfigList: any[]): any;
|
37
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<RegistrationFormComponent, never>;
|
38
47
|
static ɵcmp: i0.ɵɵComponentDeclaration<RegistrationFormComponent, "simpo-registration-form", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
39
48
|
}
|
@@ -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
|
+
getSubscriptionForFeeStructure(gradeId: any): Observable<Object>;
|
75
|
+
getFeeStructure(payload: any): Observable<Object>;
|
74
76
|
getFieldsToDisplay(fieldsList: any[]): any;
|
75
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
76
78
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
package/package.json
CHANGED
Binary file
|
Binary file
|