simpo-component-library 3.6.143 → 3.6.146
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/featured-products/featured-products.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +23 -4
- package/esm2022/lib/sections/header-section/header-section.component.mjs +11 -3
- package/esm2022/lib/sections/image-carousel-section/image-carousel-section.component.mjs +3 -3
- package/esm2022/lib/services/rest.service.mjs +4 -1
- package/fesm2022/simpo-component-library.mjs +39 -9
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +6 -0
- package/lib/sections/header-section/header-section.component.d.ts +2 -0
- package/lib/services/rest.service.d.ts +1 -0
- package/package.json +1 -1
- package/simpo-component-library-3.6.146.tgz +0 -0
- package/simpo-component-library-3.6.143.tgz +0 -0
@@ -130,6 +130,12 @@ export declare class ProductDescComponent extends BaseSection {
|
|
130
130
|
opendailogbox(template: TemplateRef<HTMLDivElement>): void;
|
131
131
|
closeDialog(): void;
|
132
132
|
getRatings(noofratings: any): any;
|
133
|
+
reviewsData: any[];
|
134
|
+
ratingCounts: any;
|
135
|
+
pageNumber: number;
|
136
|
+
loadMoreReviews(): void;
|
137
|
+
getReviews(productId: string): void;
|
138
|
+
getPercentage(rating: number): string;
|
133
139
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductDescComponent, never>;
|
134
140
|
static ɵcmp: i0.ɵɵComponentDeclaration<ProductDescComponent, "simpo-product-desc", never, { "data": { "alias": "data"; "required": false; }; "responseData": { "alias": "responseData"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
135
141
|
}
|
@@ -32,6 +32,8 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
32
32
|
HeaderStyling: typeof Header_Type;
|
33
33
|
parentHeight: number;
|
34
34
|
constructor(_eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, matDialog: MatDialog, storageService: StorageServiceService, restService: RestService);
|
35
|
+
searchChangeTimeout: any;
|
36
|
+
waitBeforeSearch(): void;
|
35
37
|
searchProducts(): void;
|
36
38
|
goToFav(): void;
|
37
39
|
get stylesLayout(): LayOutModel;
|
@@ -91,6 +91,7 @@ export declare class RestService implements OnDestroy {
|
|
91
91
|
getCityByStateBypaginated(stateId: any, pageNo: any, size: any): Observable<Object>;
|
92
92
|
getStoreBySlab(data: any): Observable<Object>;
|
93
93
|
createEnrollmentScheme(enrollement: any): Observable<Object>;
|
94
|
+
getReviewsByProductId(productId: string, pageNumber: number): Observable<Object>;
|
94
95
|
getFieldsToDisplay(fieldsList: any[]): any;
|
95
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
96
97
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
package/package.json
CHANGED
Binary file
|
Binary file
|