simpo-component-library 1.4.210 → 1.4.212

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ export declare class BackgroundDirective implements OnChanges {
11
11
  constructor(el: ElementRef, eventService: EventsService);
12
12
  ngOnDestroy(): void;
13
13
  ngOnChanges(change: SimpleChanges): void;
14
- getTextColor(bgColor: string): "#ffffff" | "#000000" | "#ffffff;";
14
+ getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundDirective, never>;
16
16
  static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundDirective, "[simpoBackground]", never, { "simpoBackground": { "alias": "simpoBackground"; "required": false; }; "scrollValue": { "alias": "scrollValue"; "required": false; }; }, {}, never, never, true, never>;
17
17
  }
@@ -15,7 +15,7 @@ export declare class ButtonDirectiveDirective implements OnChanges {
15
15
  applyButtonStyleChanges(): void;
16
16
  applyButtonType(style: ButtonStyleModel, color: string): void;
17
17
  applyButtonShape(style: ButtonStyleModel): void;
18
- getTextColor(bgColor: string): "#ffffff" | "#000000" | "#ffffff;";
18
+ getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
19
19
  buttonStyleSubscription?: Subscription;
20
20
  buttonStyleChangeCheck(): void;
21
21
  changeButtonStyle(id: any, style: ButtonStyleModel, bgColor: string): void;
@@ -12,7 +12,7 @@ export declare class ColorDirective implements OnChanges {
12
12
  ngOnDestroy(): void;
13
13
  applyColor(): void;
14
14
  bgColorChangeCheck(): void;
15
- getTextColor(): "#ffffff" | "#000000" | "#ffffff;";
15
+ getTextColor(): "#000000" | "#ffffff" | "#ffffff;";
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<ColorDirective, never>;
17
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<ColorDirective, "[simpoColor]", never, { "bgColor": { "alias": "simpoColor"; "required": false; }; }, {}, never, never, true, never>;
18
18
  }
@@ -43,7 +43,7 @@ export declare class FeaturedProductsComponent extends BaseSection implements On
43
43
  getSliceParameters(): number[];
44
44
  getFeatureProduct(): void;
45
45
  addItemToCart(product: Product, type: 'ADD' | 'SUBSTRACT'): void;
46
- toggleItemToFav(product: Product, type: 'ADD' | 'REMOVE'): void;
46
+ toggleItemToFav(event: PointerEvent | MouseEvent, product: Product, type: 'ADD' | 'REMOVE'): void;
47
47
  proceedToProductDesc(product: Product): void;
48
48
  togglePreviewImage(product: Product, idx: number): void;
49
49
  isItemOutOfStock(product: Product): boolean;
@@ -42,6 +42,7 @@ export declare class ProductListComponent extends BaseSection {
42
42
  pricingMin: number;
43
43
  pricingMax: number;
44
44
  sortBy: string | null;
45
+ searchText: string;
45
46
  private USER_CART;
46
47
  private USER_WISHLIST;
47
48
  minProductPrice: number;
@@ -67,8 +68,9 @@ export declare class ProductListComponent extends BaseSection {
67
68
  getProductWidth(): string;
68
69
  proceedToProductDesc(productId: any): void;
69
70
  clearFilter(): void;
70
- toggleItemToFav(product: Product, type: 'ADD' | 'REMOVE'): void;
71
- addItemToCart(product: Product, type: 'ADD' | 'SUBSTRACT'): void;
71
+ toggleItemToFav(event: PointerEvent | MouseEvent, product: Product, type: 'ADD' | 'REMOVE'): void;
72
+ addItemToCart(event: PointerEvent | MouseEvent, product: Product, type: 'ADD' | 'SUBSTRACT'): void;
73
+ searchProduct(): void;
72
74
  categories: BaseModel[];
73
75
  collections: BaseModel[];
74
76
  applyFilter(category?: any, type?: 'SORT' | 'FILTER'): void;
@@ -78,6 +80,8 @@ export declare class ProductListComponent extends BaseSection {
78
80
  openSorting(SortingSection: any): void;
79
81
  paginationChange(page: number): void;
80
82
  closeDialog(): void;
83
+ isItemOutOfStock(product: Product): boolean;
84
+ get isMobile(): boolean;
81
85
  get currency(): string;
82
86
  get minSize(): number;
83
87
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductListComponent, never>;
@@ -29,6 +29,7 @@ export declare class NavbarSectionComponent implements OnInit {
29
29
  searchProducts(): void;
30
30
  goToFav(): void;
31
31
  goToAccount(): void;
32
+ goToWishlist(): void;
32
33
  goToCart(): void;
33
34
  applyFilter(value: any, type: string): void;
34
35
  onScroll(event: any): void;
@@ -15,7 +15,7 @@ export declare class PricingSectionComponent extends BaseSection {
15
15
  style?: PricingSectionStylesModel;
16
16
  constructor(_eventService: EventsService);
17
17
  ngOnInit(): void;
18
- getTextColor(): "#ffffff" | "#000000";
18
+ getTextColor(): "#000000" | "#ffffff";
19
19
  get headingSpace(): SPACING;
20
20
  editSection(): void;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<PricingSectionComponent, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "1.4.210",
3
+ "version": "1.4.212",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",