simpo-component-library 2.1.997 → 2.1.998
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/elements/index.mjs +6 -5
- package/esm2022/lib/elements/my-orders/my-orders.component.mjs +57 -4
- package/esm2022/lib/elements/my-statement/my-statement.component.mjs +19 -4
- package/esm2022/lib/elements/payment-confirmation/payment-confirmation.component.mjs +59 -0
- package/esm2022/lib/elements/portfolio/portfolio.component.mjs +3 -3
- package/esm2022/lib/elements/properties/properties.component.mjs +63 -4
- package/esm2022/lib/elements/property-view/property-view.component.mjs +42 -0
- package/esm2022/lib/sections/kyc-details/kyc-details.component.mjs +27 -7
- package/esm2022/lib/sections/profile-section/profile-section.component.mjs +18 -10
- package/esm2022/lib/sections/property-detail/property-detail.component.mjs +19 -7
- package/esm2022/lib/sections/signup-signin/signup-signin.component.mjs +115 -24
- package/esm2022/lib/services/rest.service.mjs +12 -1
- package/fesm2022/simpo-component-library.mjs +2438 -2098
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +1 -1
- package/lib/elements/index.d.ts +2 -1
- package/lib/elements/my-orders/my-orders.component.d.ts +5 -0
- package/lib/elements/my-statement/my-statement.component.d.ts +3 -0
- package/lib/elements/payment-confirmation/payment-confirmation.component.d.ts +20 -0
- package/lib/elements/properties/properties.component.d.ts +7 -0
- package/lib/elements/property-view/property-view.component.d.ts +8 -0
- package/lib/sections/kyc-details/kyc-details.component.d.ts +9 -0
- package/lib/sections/profile-section/profile-section.component.d.ts +5 -1
- package/lib/sections/property-detail/property-detail.component.d.ts +6 -2
- package/lib/sections/signup-signin/signup-signin.component.d.ts +2 -0
- package/lib/services/rest.service.d.ts +3 -0
- package/package.json +1 -1
- package/simpo-component-library-2.1.998.tgz +0 -0
- package/simpo-component-library-2.1.997.tgz +0 -0
package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts
CHANGED
@@ -45,7 +45,7 @@ export declare class AuthenticationRequiredComponent {
|
|
45
45
|
validateNumber(event: KeyboardEvent): void;
|
46
46
|
validateOTP(event: KeyboardEvent): void;
|
47
47
|
checkStrength(): void;
|
48
|
-
getStrengthColor(index: number): "
|
48
|
+
getStrengthColor(index: number): "tomato" | "#d3d3d3ba" | "orange" | "yellow" | "lightgreen";
|
49
49
|
get isEmailValid(): boolean;
|
50
50
|
get isPasswordValid(): boolean;
|
51
51
|
get isMobile(): boolean;
|
package/lib/elements/index.d.ts
CHANGED
@@ -10,8 +10,9 @@ import * as i8 from "./socia-icons/socia-icons.component";
|
|
10
10
|
import * as i9 from "./card-skeleton-loader/card-skeleton-loader.component";
|
11
11
|
import * as i10 from "./svg-divider/svg-divider.component";
|
12
12
|
import * as i11 from "./portfolio/portfolio.component";
|
13
|
+
import * as i12 from "./payment-confirmation/payment-confirmation.component";
|
13
14
|
export declare class SimpoElementsModule {
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimpoElementsModule, never>;
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SimpoElementsModule, never, [typeof i1.ButtonElementComponent, typeof i2.TextElementComponent, typeof i3.BelowImageCardComponent, typeof i4.TopOfImageCardComponent, typeof i5.CoveringImageCardComponent, typeof i6.HeadingElementComponent, typeof i7.SimpoButtonComponent, typeof i8.SociaIconsComponent, typeof i9.CardSkeletonLoaderComponent, typeof i10.SvgDividerComponent, typeof i11.PortfolioComponent], [typeof i1.ButtonElementComponent, typeof i2.TextElementComponent, typeof i3.BelowImageCardComponent, typeof i4.TopOfImageCardComponent, typeof i5.CoveringImageCardComponent, typeof i6.HeadingElementComponent, typeof i7.SimpoButtonComponent, typeof i8.SociaIconsComponent, typeof i9.CardSkeletonLoaderComponent, typeof i10.SvgDividerComponent, typeof i11.PortfolioComponent]>;
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SimpoElementsModule, never, [typeof i1.ButtonElementComponent, typeof i2.TextElementComponent, typeof i3.BelowImageCardComponent, typeof i4.TopOfImageCardComponent, typeof i5.CoveringImageCardComponent, typeof i6.HeadingElementComponent, typeof i7.SimpoButtonComponent, typeof i8.SociaIconsComponent, typeof i9.CardSkeletonLoaderComponent, typeof i10.SvgDividerComponent, typeof i11.PortfolioComponent, typeof i12.PaymentConfirmationComponent], [typeof i1.ButtonElementComponent, typeof i2.TextElementComponent, typeof i3.BelowImageCardComponent, typeof i4.TopOfImageCardComponent, typeof i5.CoveringImageCardComponent, typeof i6.HeadingElementComponent, typeof i7.SimpoButtonComponent, typeof i8.SociaIconsComponent, typeof i9.CardSkeletonLoaderComponent, typeof i10.SvgDividerComponent, typeof i11.PortfolioComponent, typeof i12.PaymentConfirmationComponent]>;
|
16
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<SimpoElementsModule>;
|
17
18
|
}
|
@@ -1,5 +1,10 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class MyOrdersComponent {
|
3
|
+
constructor();
|
4
|
+
ngOnInit(): void;
|
5
|
+
activeTab: any;
|
6
|
+
tabs: any;
|
7
|
+
properties: any;
|
3
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyOrdersComponent, never>;
|
4
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<MyOrdersComponent, "simpo-my-orders", never, {}, {}, never, never, true, never>;
|
5
10
|
}
|
@@ -1,5 +1,8 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class MyStatementComponent {
|
3
|
+
constructor();
|
4
|
+
tableHeaders: any;
|
5
|
+
tableData: any;
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MyStatementComponent, never>;
|
4
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<MyStatementComponent, "simpo-my-statement", never, {}, {}, never, never, true, never>;
|
5
8
|
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
2
|
+
import { RestService } from '../../services/rest.service';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class PaymentConfirmationComponent {
|
5
|
+
dialogRef: MatDialogRef<PaymentConfirmationComponent>;
|
6
|
+
data: any;
|
7
|
+
private restService;
|
8
|
+
constructor(dialogRef: MatDialogRef<PaymentConfirmationComponent>, data: any, restService: RestService);
|
9
|
+
propertyDetails: any;
|
10
|
+
sqFeetArea: number;
|
11
|
+
payload: any;
|
12
|
+
ngOnInit(): void;
|
13
|
+
close(): void;
|
14
|
+
addOrRemoveProperty(): void;
|
15
|
+
addSqFeet(): void;
|
16
|
+
removeSqFeet(): void;
|
17
|
+
purchaseProperty(): void;
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentConfirmationComponent, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaymentConfirmationComponent, "simpo-payment-confirmation", never, {}, {}, never, never, true, never>;
|
20
|
+
}
|
@@ -1,5 +1,12 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class PropertiesComponent {
|
3
|
+
constructor();
|
4
|
+
ngOnInit(): void;
|
5
|
+
investments: any;
|
6
|
+
activeTab: any;
|
7
|
+
tabs: any;
|
8
|
+
propertyDetails: any;
|
9
|
+
viewTab: boolean;
|
3
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertiesComponent, never>;
|
4
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<PropertiesComponent, "simpo-properties", never, {}, {}, never, never, true, never>;
|
5
12
|
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class PropertyViewComponent {
|
3
|
+
text: string;
|
4
|
+
ngOnInit(): void;
|
5
|
+
propertyDetails: any;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyViewComponent, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyViewComponent, "simpo-property-view", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, true, never>;
|
8
|
+
}
|
@@ -1,5 +1,14 @@
|
|
1
|
+
import { RestService } from '../../services/rest.service';
|
1
2
|
import * as i0 from "@angular/core";
|
2
3
|
export declare class KycDetailsComponent {
|
4
|
+
private restService;
|
5
|
+
constructor(restService: RestService);
|
6
|
+
ngOnInit(): void;
|
7
|
+
panRequest: any;
|
8
|
+
aadharRequest: any;
|
9
|
+
isPanVerified: boolean;
|
10
|
+
isAadharVerified: boolean;
|
11
|
+
verifyPanNumber(): void;
|
3
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<KycDetailsComponent, never>;
|
4
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<KycDetailsComponent, "simpo-kyc-details", never, {}, {}, never, never, true, never>;
|
5
14
|
}
|
@@ -1,11 +1,15 @@
|
|
1
1
|
import { ProfileSectionModel } from './profile-section.modal';
|
2
|
+
import { RestService } from '../../services/rest.service';
|
2
3
|
import * as i0 from "@angular/core";
|
3
4
|
export declare class ProfileSectionComponent {
|
5
|
+
private restService;
|
4
6
|
data?: ProfileSectionModel;
|
5
|
-
constructor();
|
7
|
+
constructor(restService: RestService);
|
6
8
|
ngOnInit(): void;
|
7
9
|
selectedPanel: string;
|
8
10
|
sidePanelTabs: any[];
|
11
|
+
investorDetails: any;
|
12
|
+
getInvestorDetails(): void;
|
9
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileSectionComponent, never>;
|
10
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileSectionComponent, "simpo-profile-section", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
11
15
|
}
|
@@ -1,12 +1,15 @@
|
|
1
1
|
import { PropertyDetailModel } from './property-detail.model';
|
2
2
|
import { RestService } from '../../services/rest.service';
|
3
|
-
import { ActivatedRoute } from '@angular/router';
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
4
|
+
import { MatDialog } from '@angular/material/dialog';
|
4
5
|
import * as i0 from "@angular/core";
|
5
6
|
export declare class PropertyDetailComponent {
|
6
7
|
private restService;
|
7
8
|
private activatedRoute;
|
9
|
+
private router;
|
10
|
+
private matDialog;
|
8
11
|
data?: PropertyDetailModel;
|
9
|
-
constructor(restService: RestService, activatedRoute: ActivatedRoute);
|
12
|
+
constructor(restService: RestService, activatedRoute: ActivatedRoute, router: Router, matDialog: MatDialog);
|
10
13
|
propertyId: string;
|
11
14
|
propertyDetails: any;
|
12
15
|
ngOnInit(): void;
|
@@ -19,6 +22,7 @@ export declare class PropertyDetailComponent {
|
|
19
22
|
pdfCards: any;
|
20
23
|
sqft: number;
|
21
24
|
noOfSqft: number;
|
25
|
+
purchaseProperty(): void;
|
22
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyDetailComponent, never>;
|
23
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyDetailComponent, "simpo-property-detail", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
24
28
|
}
|
@@ -18,6 +18,8 @@ export declare class SignupSigninComponent extends BaseSection {
|
|
18
18
|
edit?: boolean;
|
19
19
|
delete?: boolean;
|
20
20
|
constructor(_eventService: EventsService, restService: RestService, router: Router, activatedRoute: ActivatedRoute, messageService: MessageService, matDialog: MatDialog);
|
21
|
+
propertyId?: number;
|
22
|
+
buttonLoader: boolean;
|
21
23
|
ngOnInit(): void;
|
22
24
|
currentPage: 'LOGIN' | 'SIGN_UP' | 'OTP' | 'FORGOT_PASSWORD' | 'OTP_VERIFY';
|
23
25
|
backgroundImage: any;
|
@@ -87,6 +87,9 @@ export declare class RestService implements OnDestroy {
|
|
87
87
|
login(payload: any): Observable<Object>;
|
88
88
|
verifyOtp(email: string, otp: string): Observable<Object>;
|
89
89
|
logout(): Observable<Object>;
|
90
|
+
verifyPan(request: any): Observable<Object>;
|
91
|
+
getInvesterById(): Observable<Object>;
|
92
|
+
purchaseProperty(payload: any): Observable<Object>;
|
90
93
|
getFieldsToDisplay(fieldsList: any[]): any;
|
91
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
92
95
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
package/package.json
CHANGED
Binary file
|
Binary file
|