simpo-component-library 3.6.925 → 3.6.927
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/user-profile/user-profile.component.mjs +29 -26
- package/fesm2022/simpo-component-library.mjs +29 -25
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/user-profile/user-profile.component.d.ts +3 -0
- package/lib/sections/banner-carousel/banner-carousel.component.d.ts +1 -1
- package/package.json +1 -1
- package/simpo-component-library-3.6.927.tgz +0 -0
- package/src/lib/styles/global-styles.css +18 -0
- package/simpo-component-library-3.6.925.tgz +0 -0
|
@@ -31,6 +31,7 @@ export declare class UserProfileComponent extends BaseSection implements OnInit
|
|
|
31
31
|
private storage;
|
|
32
32
|
constructor(router: Router, _eventService: EventsService, restService: RestService, storageService: StorageServiceService, cartService: CartService, matDialog: MatDialog, matBottomSheet: MatBottomSheet, cookieService: CookieService, messageService: MessageService, sanitizer: DomSanitizer, route: ActivatedRoute, storage: StorageLike);
|
|
33
33
|
showChargesTemplate: TemplateRef<HTMLDivElement>;
|
|
34
|
+
logoutDialogTemplate: TemplateRef<HTMLDivElement>;
|
|
34
35
|
data?: UserProfileModal;
|
|
35
36
|
index?: number;
|
|
36
37
|
edit?: boolean;
|
|
@@ -56,6 +57,7 @@ export declare class UserProfileComponent extends BaseSection implements OnInit
|
|
|
56
57
|
ngOnInit(): void;
|
|
57
58
|
getTotalAmtPaid(order: any): any;
|
|
58
59
|
checkPassbookApp(): void;
|
|
60
|
+
checkReferralApp(): void;
|
|
59
61
|
closeDialog(): void;
|
|
60
62
|
storeCharges: any;
|
|
61
63
|
payDueLoader: boolean;
|
|
@@ -94,6 +96,7 @@ export declare class UserProfileComponent extends BaseSection implements OnInit
|
|
|
94
96
|
getScreenSize(event?: any): void;
|
|
95
97
|
editProfile(): void;
|
|
96
98
|
logout(): void;
|
|
99
|
+
_doLogout(): void;
|
|
97
100
|
private saveProfile;
|
|
98
101
|
selectTab(tab: Tabs): void;
|
|
99
102
|
toggleSidepanelTab(tab: Tabs): void;
|
|
@@ -32,7 +32,7 @@ export declare class BannerCarouselComponent extends BaseSection implements OnIn
|
|
|
32
32
|
get stylesLayout(): LayOutModel;
|
|
33
33
|
get getBlurValue(): "NONE" | "LIGHT" | "MODERATE" | "STRONG" | "VERY_STRONG" | undefined;
|
|
34
34
|
get getBackgroundColor(): BackgroundModel;
|
|
35
|
-
get getBackgroundOpacity(): "
|
|
35
|
+
get getBackgroundOpacity(): "0" | "1" | "0.7" | "0.5" | "0.6" | "0.8";
|
|
36
36
|
opacityValue(value: OverlayValue): "1" | "0.7" | "0.5" | "0.6" | "0.8";
|
|
37
37
|
editSection(): void;
|
|
38
38
|
getScreenSize(): number;
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -228,6 +228,24 @@
|
|
|
228
228
|
}
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
+
.logout-dialog-backdrop {
|
|
232
|
+
backdrop-filter: blur(10px) !important;
|
|
233
|
+
-webkit-backdrop-filter: blur(10px) !important;
|
|
234
|
+
background-color: rgba(15, 23, 42, 0.45) !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.logout-dialog-panel {
|
|
238
|
+
max-width: 95vw !important;
|
|
239
|
+
|
|
240
|
+
.mat-mdc-dialog-surface {
|
|
241
|
+
background: transparent !important;
|
|
242
|
+
box-shadow: none !important;
|
|
243
|
+
overflow: visible !important;
|
|
244
|
+
border-radius: 28px !important;
|
|
245
|
+
padding: 0 !important;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
231
249
|
@media screen and (max-width:475px) {
|
|
232
250
|
.video-call-dialog {
|
|
233
251
|
width: 100% !important;
|
|
Binary file
|