simpo-component-library 1.4.86 → 1.4.87

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.
@@ -17,6 +17,7 @@ export declare class OrderDetailsComponent implements OnInit {
17
17
  ngOnInit(): void;
18
18
  get getCardBGColor(): string;
19
19
  get isMobile(): boolean;
20
+ getSupportingColor(bgColor: string): string;
20
21
  private getComplementColor;
21
22
  private convertHEX;
22
23
  static ɵfac: i0.ɵɵFactoryDeclaration<OrderDetailsComponent, never>;
@@ -34,6 +34,7 @@ export declare class UserProfileComponent extends BaseSection implements OnInit
34
34
  ngOnInit(): void;
35
35
  getUserOrderDetails(): void;
36
36
  get getProductWidth(): string;
37
+ getSupportingColor(bgColor: string): string;
37
38
  getUserInfo(): void;
38
39
  goToPanel(panel: any): void;
39
40
  goBack(): void;
@@ -20,6 +20,7 @@ export declare class WhislistComponent extends BaseSection implements OnInit {
20
20
  constructor(cartService: CartService, _eventService: EventsService, storageService: StorageServiceService, restService: RestService);
21
21
  private userDetails;
22
22
  private USER_WISHLIST_ITEMS;
23
+ wishlistInfo: any;
23
24
  ngOnInit(): void;
24
25
  moveToCart(item: any): void;
25
26
  deleteFromWhislist(item: any): void;
@@ -26,6 +26,7 @@ export declare class StorageServiceService {
26
26
  updateAllData(): void;
27
27
  getUserCart(): Promise<IDBRequest<OrderedItems[]>>;
28
28
  addProductToCart(product: OrderedItems): IDBRequest<IDBValidKey>;
29
+ addAllProductToWishlist(products: OrderedItems[]): IDBTransaction;
29
30
  addAllProductsToCart(products: OrderedItems[]): IDBTransaction;
30
31
  removeProductFromCart(productId: string): IDBRequest<undefined>;
31
32
  getProductFromCart(productId: string): Promise<IDBRequest<any>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "1.4.86",
3
+ "version": "1.4.87",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",