simpo-component-library 3.6.730 → 3.6.732
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 +4 -6
- package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +2 -2
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +25 -29
- package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +9 -9
- package/esm2022/lib/ecommerce/sections/whislist/whislist.component.mjs +3 -3
- package/esm2022/lib/ecommerce/styles/product.modal.mjs +1 -2
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +3 -3
- package/esm2022/lib/sections/faq-columns-cards/faq-columns-cards.component.mjs +3 -3
- package/esm2022/lib/sections/new-testimonials/new-testimonials.component.mjs +3 -3
- package/esm2022/lib/services/rest.service.mjs +2 -14
- package/fesm2022/simpo-component-library.mjs +187 -206
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +3 -1
- package/lib/ecommerce/sections/product-list/product-list.component.d.ts +1 -1
- package/lib/ecommerce/styles/product.modal.d.ts +0 -1
- package/lib/services/rest.service.d.ts +0 -1
- package/package.json +1 -1
- package/simpo-component-library-3.6.732.tgz +0 -0
- package/simpo-component-library-3.6.730.tgz +0 -0
|
@@ -14,6 +14,7 @@ import { Meta, Title } from '@angular/platform-browser';
|
|
|
14
14
|
import { MatDialog } from '@angular/material/dialog';
|
|
15
15
|
import { MatBottomSheet } from '@angular/material/bottom-sheet';
|
|
16
16
|
import { CustomerReviewComponent } from '../../sections/customer-review/customer-review.component';
|
|
17
|
+
import { AnalyticsService } from '../../../services/analytics.service';
|
|
17
18
|
import * as i0 from "@angular/core";
|
|
18
19
|
export declare class ProductDescComponent extends BaseSection {
|
|
19
20
|
private platformId;
|
|
@@ -29,6 +30,7 @@ export declare class ProductDescComponent extends BaseSection {
|
|
|
29
30
|
private readonly bottomSheet;
|
|
30
31
|
private renderer;
|
|
31
32
|
private matDialog;
|
|
33
|
+
private analyticsService;
|
|
32
34
|
reviewComponent: CustomerReviewComponent;
|
|
33
35
|
aboveHeight: ElementRef<HTMLDivElement>;
|
|
34
36
|
container: ElementRef<HTMLDivElement>;
|
|
@@ -52,7 +54,7 @@ export declare class ProductDescComponent extends BaseSection {
|
|
|
52
54
|
showReview: boolean;
|
|
53
55
|
selectedReview: any;
|
|
54
56
|
currentImageIndex: number;
|
|
55
|
-
constructor(platformId: Object, _eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, restService: RestService, cartService: CartService, storageService: StorageServiceService, messageService: MessageService, metaTagService: Meta, titleService: Title, bottomSheet: MatBottomSheet, renderer: Renderer2, matDialog: MatDialog);
|
|
57
|
+
constructor(platformId: Object, _eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, restService: RestService, cartService: CartService, storageService: StorageServiceService, messageService: MessageService, metaTagService: Meta, titleService: Title, bottomSheet: MatBottomSheet, renderer: Renderer2, matDialog: MatDialog, analyticsService: AnalyticsService);
|
|
56
58
|
buttonId?: string;
|
|
57
59
|
button?: ButtonModel;
|
|
58
60
|
styles?: ProductDescStylesModal;
|
|
@@ -129,7 +129,7 @@ export declare class ProductListComponent extends BaseSection {
|
|
|
129
129
|
removeFilter(filter: any): void;
|
|
130
130
|
applyProductWidth(): boolean;
|
|
131
131
|
getProductWidth(): string;
|
|
132
|
-
proceedToProductDesc(
|
|
132
|
+
proceedToProductDesc(productId: any): void;
|
|
133
133
|
ringSizes: {
|
|
134
134
|
size: string;
|
|
135
135
|
status: boolean;
|
|
@@ -33,7 +33,6 @@ export declare class RestService implements OnDestroy {
|
|
|
33
33
|
getAllRedemptionSchemes(): Observable<Object>;
|
|
34
34
|
getAllProducts(payload: any): Observable<Object>;
|
|
35
35
|
getProductDetails(productId?: string | null): Observable<any>;
|
|
36
|
-
getProductDetailsV2(slugName?: string | null): Observable<any>;
|
|
37
36
|
getCollectionByIds(collectionIds: string[]): Observable<any>;
|
|
38
37
|
getAllCategories(): Observable<any>;
|
|
39
38
|
getAllCollections(): Observable<any>;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|