simpo-component-library 1.6.125 → 1.6.126
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/ecommerce/sections/authenticate-user/authenticate-user.component.mjs +69 -8
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +3 -3
- package/esm2022/lib/services/rest.service.mjs +3 -2
- package/fesm2022/simpo-component-library.mjs +72 -13
- 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/ecommerce/sections/authenticate-user/authenticate-user.component.d.ts +8 -2
- package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
- package/package.json +1 -1
- package/simpo-component-library-1.6.126.tgz +0 -0
- package/simpo-component-library-1.6.121.tgz +0 -0
- package/simpo-component-library-1.6.122.tgz +0 -0
- package/simpo-component-library-1.6.124.tgz +0 -0
- package/simpo-component-library-1.6.125.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
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
2
3
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
3
4
|
import { RestService } from '../../../services/rest.service';
|
4
5
|
import { Router } from '@angular/router';
|
@@ -31,6 +32,7 @@ export declare class AuthenticateUserComponent extends BaseSection implements On
|
|
31
32
|
private readonly bottomsheetRef;
|
32
33
|
private readonly _eventService;
|
33
34
|
private readonly messageService;
|
35
|
+
private fb;
|
34
36
|
data?: AuthenticateSectionModel;
|
35
37
|
index?: number;
|
36
38
|
edit?: boolean;
|
@@ -51,16 +53,20 @@ export declare class AuthenticateUserComponent extends BaseSection implements On
|
|
51
53
|
newPassword: string | null;
|
52
54
|
businessId: string | null;
|
53
55
|
buttonLoading: boolean;
|
54
|
-
constructor(matData: any, bottomsheetData: any, restService: RestService, router: Router, matDialog: MatDialog, storageService: StorageServiceService, dialogRef: MatDialogRef<AuthenticateUserComponent>, bottomsheetRef: MatBottomSheetRef<AuthenticateUserComponent>, _eventService: EventsService, messageService: MessageService);
|
56
|
+
constructor(matData: any, bottomsheetData: any, restService: RestService, router: Router, matDialog: MatDialog, storageService: StorageServiceService, dialogRef: MatDialogRef<AuthenticateUserComponent>, bottomsheetRef: MatBottomSheetRef<AuthenticateUserComponent>, _eventService: EventsService, messageService: MessageService, fb: FormBuilder);
|
57
|
+
get passwordValid(): import("@angular/forms").AbstractControl<any, any> | null;
|
55
58
|
styles: any;
|
56
59
|
ngOnInit(): void;
|
60
|
+
passwordValidation: FormGroup;
|
57
61
|
login: boolean;
|
58
62
|
signup: boolean;
|
59
63
|
openSignup(): void;
|
60
64
|
openLogin(): void;
|
61
65
|
passScreen(): void;
|
62
66
|
emailValid: boolean;
|
67
|
+
confirm: boolean;
|
63
68
|
isEmailValid(email: string | null): void;
|
69
|
+
isConfirmPAsswordValid(confirmpass: string | null): void;
|
64
70
|
move(event: any, idx: number): void;
|
65
71
|
close(): void;
|
66
72
|
goBack(): void;
|
@@ -84,7 +90,7 @@ export declare class AuthenticateUserComponent extends BaseSection implements On
|
|
84
90
|
resendOTP(): void;
|
85
91
|
get isMobileValid(): boolean;
|
86
92
|
get isMobile(): boolean;
|
87
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticateUserComponent, [{ optional: true; }, { optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }, null, null]>;
|
93
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticateUserComponent, [{ optional: true; }, { optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }, null, null, null]>;
|
88
94
|
static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticateUserComponent, "simpo-authenticate-user", 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; }; }, {}, never, never, true, never>;
|
89
95
|
}
|
90
96
|
export {};
|
@@ -16,7 +16,7 @@ export declare class PricingSectionComponent extends BaseSection {
|
|
16
16
|
style?: PricingSectionStylesModel;
|
17
17
|
constructor(_eventService: EventsService);
|
18
18
|
ngOnInit(): void;
|
19
|
-
getTextColor(): "#
|
19
|
+
getTextColor(): "#000000" | "#ffffff";
|
20
20
|
get headingSpace(): SPACING;
|
21
21
|
editSection(): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<PricingSectionComponent, never>;
|
package/package.json
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|