ng-easycommerce 0.0.629 → 0.0.631

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.
@@ -2,7 +2,6 @@ import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { Constants } from '../../core.consts';
3
3
  import { ComponentHelper } from '../../classes/component-helper';
4
4
  import { FiltersService } from '../../services/filters.service';
5
- import { PriceRangeFilter } from '../../classes/filters/PriceRangeFilter';
6
5
  /** @dynamic */
7
6
  export declare class FiltersEcComponent extends ComponentHelper implements OnInit, OnChanges {
8
7
  protected consts: Constants;
@@ -14,9 +13,16 @@ export declare class FiltersEcComponent extends ComponentHelper implements OnIni
14
13
  constructor(consts: Constants, document: Document, filtersService: FiltersService);
15
14
  ngOnChanges(changes: SimpleChanges): void;
16
15
  ngOnInit(): void;
17
- updatePriceRange(min: number, max: number, priceFilter: PriceRangeFilter): void;
18
- calculateLeftPercentage(currentMinPrice: number, minPrice: number, maxPrice: number): number;
19
- calculateRightPercentage(currentMaxPrice: number, minPrice: number, maxPrice: number): number;
16
+ updatePriceRange(filter: any): void;
17
+ getSliderStyle(filter: any): {
18
+ [klass: string]: string;
19
+ };
20
+ calculateLeftPercentage(filter: any): number;
21
+ calculateRightPercentage(filter: any): number;
22
+ getMinValue(filter: any): number;
23
+ getMaxValue(filter: any): number;
24
+ getFormattedMinPrice(filter: any): string;
25
+ getFormattedMaxPrice(filter: any): string;
20
26
  close: (accordion_id: any) => boolean;
21
27
  uniqueSelection(filter: any, filterChild: any): void;
22
28
  scrollUp: () => boolean;