simpo-component-library 3.6.543 → 3.6.544
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/authentication-required/authentication-required.component.mjs +82 -16
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +46 -15
- package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +3 -3
- package/esm2022/lib/sections/appointment-form/appointment-booking/appointment-booking/appointment-booking.component.mjs +10 -6
- package/esm2022/lib/services/rest.service.mjs +4 -1
- package/fesm2022/simpo-component-library.mjs +140 -36
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +9 -1
- package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +6 -3
- package/lib/ecommerce/sections/schemes/schemes.component.d.ts +1 -1
- package/lib/elements/link-editor/link-editor.component.d.ts +1 -1
- package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
- package/lib/services/rest.service.d.ts +1 -0
- package/package.json +1 -1
- package/simpo-component-library-3.6.544.tgz +0 -0
- package/simpo-component-library-3.6.543.tgz +0 -0
package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts
CHANGED
|
@@ -52,6 +52,14 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
|
|
|
52
52
|
ngOnInit(): void;
|
|
53
53
|
ngAfterViewInit(): void;
|
|
54
54
|
loginType: "PASSWORD" | "OTP";
|
|
55
|
+
generateOtp: boolean;
|
|
56
|
+
loginAuthentication(loginType: "PASSWORD" | "OTP"): void;
|
|
57
|
+
generatedOtp: any;
|
|
58
|
+
oneTimePassword: string;
|
|
59
|
+
otpPayload: any;
|
|
60
|
+
getOTP(): void;
|
|
61
|
+
regenerateOtp(payload: any): void;
|
|
62
|
+
resendOtp(): void;
|
|
55
63
|
close(): void;
|
|
56
64
|
login(): void;
|
|
57
65
|
verifyPassword(): void;
|
|
@@ -64,7 +72,7 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
|
|
|
64
72
|
validateNumber(event: KeyboardEvent): void;
|
|
65
73
|
validateOTP(event: KeyboardEvent): void;
|
|
66
74
|
checkStrength(): void;
|
|
67
|
-
getStrengthColor(index: number): "
|
|
75
|
+
getStrengthColor(index: number): "tomato" | "#d3d3d3ba" | "orange" | "yellow" | "lightgreen";
|
|
68
76
|
emailDebounceTimer: any;
|
|
69
77
|
onEmailChange(): void;
|
|
70
78
|
emailCheck: boolean;
|
|
@@ -30,7 +30,10 @@ export declare class ProductDescComponent extends BaseSection {
|
|
|
30
30
|
private renderer;
|
|
31
31
|
private matDialog;
|
|
32
32
|
reviewComponent: CustomerReviewComponent;
|
|
33
|
-
|
|
33
|
+
aboveHeight: ElementRef<HTMLDivElement>;
|
|
34
|
+
container: ElementRef<HTMLDivElement>;
|
|
35
|
+
imageSection: ElementRef<HTMLDivElement>;
|
|
36
|
+
detailSection: ElementRef<HTMLDivElement>;
|
|
34
37
|
data?: ProductDescModal;
|
|
35
38
|
responseData: Product;
|
|
36
39
|
index?: number;
|
|
@@ -66,6 +69,7 @@ export declare class ProductDescComponent extends BaseSection {
|
|
|
66
69
|
toShowInJewellery: boolean;
|
|
67
70
|
IsEcommerce: boolean;
|
|
68
71
|
ngOnInit(): void;
|
|
72
|
+
ngAfterViewInit(): void;
|
|
69
73
|
varientLoading: boolean;
|
|
70
74
|
recentViewItemList: Product[];
|
|
71
75
|
getRelatedProducts(): void;
|
|
@@ -78,7 +82,6 @@ export declare class ProductDescComponent extends BaseSection {
|
|
|
78
82
|
routeToHome(): void;
|
|
79
83
|
screenWidth: any;
|
|
80
84
|
getScreenSize(): void;
|
|
81
|
-
scroll(e: WheelEvent): void;
|
|
82
85
|
currentImg: any;
|
|
83
86
|
changeImg(url: any): void;
|
|
84
87
|
getKeys(varient: Object): string[];
|
|
@@ -114,7 +117,7 @@ export declare class ProductDescComponent extends BaseSection {
|
|
|
114
117
|
getTextColor(color: any): "#000000" | "#ffffff";
|
|
115
118
|
languages: string[];
|
|
116
119
|
selectedLang: string;
|
|
117
|
-
getClass(map: any): "col-
|
|
120
|
+
getClass(map: any): "col-6" | "col-4" | "col-3" | "width-max";
|
|
118
121
|
onFindInStore(id: string): void;
|
|
119
122
|
onBookAppointment(): void;
|
|
120
123
|
isDetails: boolean;
|
|
@@ -21,7 +21,7 @@ export declare class SchemesComponent extends BaseSection {
|
|
|
21
21
|
get stylesLayout(): LayOutModel;
|
|
22
22
|
get spacingLayout(): SpacingModel;
|
|
23
23
|
getParentClass(): "" | "overflow-scroll flex-nowrap";
|
|
24
|
-
getClass(index: number): "col-
|
|
24
|
+
getClass(index: number): "col-6" | "col-12" | "col-6 mb-2" | "col-12 mb-2";
|
|
25
25
|
showSchemeDetails(scheme: any): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SchemesComponent, never>;
|
|
27
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<SchemesComponent, "simpo-schemes", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "index": { "alias": "index"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -31,7 +31,7 @@ export declare class LinkEditorComponent {
|
|
|
31
31
|
changeButtonStyle(): void;
|
|
32
32
|
getContrastTextColor(backgroundHex: any): void;
|
|
33
33
|
backgroundType: string[];
|
|
34
|
-
setBorderRadius(): "0px" | "
|
|
34
|
+
setBorderRadius(): "0px" | "7px" | "99px";
|
|
35
35
|
setBorder(): string;
|
|
36
36
|
setColor(): any;
|
|
37
37
|
setBackground(): any;
|
|
@@ -23,7 +23,7 @@ export declare class PricingSectionComponent extends BaseSection {
|
|
|
23
23
|
getButtonId(): string;
|
|
24
24
|
editSection(): void;
|
|
25
25
|
redirectTo(): void;
|
|
26
|
-
getClass(): "col-
|
|
26
|
+
getClass(): "col-6" | "col-4" | "col-3" | "col-12";
|
|
27
27
|
getAlignment(): "justify-content-start" | "justify-content-center" | "justify-content-end";
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<PricingSectionComponent, never>;
|
|
29
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<PricingSectionComponent, "simpo-pricing-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -133,6 +133,7 @@ export declare class RestService implements OnDestroy {
|
|
|
133
133
|
getMetalPrice(storeId: any): Observable<Object>;
|
|
134
134
|
createLead(payload: any): Observable<Object>;
|
|
135
135
|
getAppointmentPaymentStatus(orderId: any): Observable<Object>;
|
|
136
|
+
getOtpForLogin(payload: any): Observable<Object>;
|
|
136
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
|
137
138
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
|
138
139
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|