simpo-component-library 3.6.536 → 3.6.538
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/product-desc/product-desc.component.mjs +4 -4
- package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +28 -7
- package/esm2022/lib/ecommerce/sections/user-profile/user-profile.component.mjs +3 -3
- package/esm2022/lib/sections/appointment-form/appointment-booking/appointment-booking/appointment-booking.component.mjs +5 -10
- package/esm2022/lib/sections/header-section/header-section.component.mjs +10 -3
- package/esm2022/lib/sections/text-section/text-section.component.mjs +3 -3
- package/esm2022/lib/services/rest.service.mjs +3 -1
- package/fesm2022/simpo-component-library.mjs +49 -24
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/product-list/product-list.component.d.ts +3 -2
- package/lib/sections/header-section/header-section.component.d.ts +1 -0
- package/lib/services/rest.service.d.ts +2 -0
- package/package.json +1 -1
- package/simpo-component-library-3.6.538.tgz +0 -0
- package/simpo-component-library-3.6.536.tgz +0 -0
|
@@ -88,10 +88,12 @@ export declare class ProductListComponent extends BaseSection {
|
|
|
88
88
|
max: number;
|
|
89
89
|
selected: boolean;
|
|
90
90
|
}[];
|
|
91
|
-
onPriceRangeChange(): void;
|
|
91
|
+
onPriceRangeChange(index?: number): void;
|
|
92
92
|
applyFilter(category?: any, type?: 'SORT' | 'FILTER'): void;
|
|
93
93
|
raiseLead(): void;
|
|
94
|
+
priceRangeFlag: boolean;
|
|
94
95
|
filterItemList(): void;
|
|
96
|
+
dynamicPriceRange(minPrice: number, maxPrice: number): void;
|
|
95
97
|
selectOption(filter: any, event: MouseEvent): void;
|
|
96
98
|
getSelectedName(): string;
|
|
97
99
|
handleProductListScroll(): void;
|
|
@@ -160,7 +162,6 @@ export declare class ProductListComponent extends BaseSection {
|
|
|
160
162
|
private getVarientQuantity;
|
|
161
163
|
private isVarientPresentInWishtlist;
|
|
162
164
|
navigateFilter(sorting: string): void;
|
|
163
|
-
closeFilter(): void;
|
|
164
165
|
openFilter(FilterSection: any): void;
|
|
165
166
|
openSorting(SortingSection: any): void;
|
|
166
167
|
paginationChange(page: number): void;
|
|
@@ -94,6 +94,7 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
|
94
94
|
selectedCategory: any;
|
|
95
95
|
storeAvaiable: boolean;
|
|
96
96
|
getCategoriesHeader(): void;
|
|
97
|
+
restrictInPages(): boolean;
|
|
97
98
|
schemeAvailable: boolean;
|
|
98
99
|
goToStores(): void;
|
|
99
100
|
Object: ObjectConstructor;
|
|
@@ -36,6 +36,8 @@ export declare class RestService implements OnDestroy {
|
|
|
36
36
|
getAllCollections(): Observable<any>;
|
|
37
37
|
getFilteredProduct(collectionIds: string[], categoryIds: string[], searchText: string, minPrice: number, maxPrice: number, sortBy: string, pageNo: number, size: number): Observable<{
|
|
38
38
|
count: any;
|
|
39
|
+
minPrice: any;
|
|
40
|
+
maxPrice: any;
|
|
39
41
|
data: any;
|
|
40
42
|
}>;
|
|
41
43
|
getProductByCategoryId(categoryId: string): Observable<{
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|