@maplander/components 0.21.41 → 0.21.43

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.
@@ -16,10 +16,6 @@ export declare class FiltersComponent implements OnInit, OnChanges, AfterViewIni
16
16
  private _converter;
17
17
  utils: AppUtil;
18
18
  newFilters: boolean;
19
- stateOptions: Array<{
20
- name: string;
21
- total: number;
22
- }>;
23
19
  propertyTotal: number;
24
20
  changeFilter: EventEmitter<{
25
21
  type: 'propertyType' | 'filter' | 'offer' | 'init';
@@ -47,7 +43,6 @@ export declare class FiltersComponent implements OnInit, OnChanges, AfterViewIni
47
43
  filter: Filter;
48
44
  isOPI: boolean;
49
45
  surfaceUnitSelected: number;
50
- private _lastState;
51
46
  constructor(_config: boolean, _render: Renderer2, _ref: ElementRef, _service: FiltersService, _formBuilder: FormBuilder, _converter: CurrencyConverterService);
52
47
  ngOnInit(): void;
53
48
  ngAfterViewInit(): void;
@@ -58,7 +53,6 @@ export declare class FiltersComponent implements OnInit, OnChanges, AfterViewIni
58
53
  changePropertyType(index: number): void;
59
54
  changeOffering(ev: string): void;
60
55
  changeCurrency(ev: string): void;
61
- changeState(ev: string): void;
62
56
  updateAmenity(amenity: AmenityItem): void;
63
57
  saveSearchByFilters(): void;
64
58
  applyFilters(type?: FiltersChangeType): void;
@@ -1,4 +1,4 @@
1
- import { Address, CER, Currency, GeoPt, NewPropertyLite, NewPropertyLiteSuggest, OfferingTypeEnum, PropertyTypeEnum } from '@maplander/types';
1
+ import { Address, CER, Currency, NewPropertyLite, NewPropertyLiteSuggest, OfferingTypeEnum, PropertyTypeEnum } from '@maplander/types';
2
2
  import { Marker } from '../../utils/models/marker';
3
3
  import { OfferingTypePipe } from '../../pipes/offering-type/offering-type.pipe';
4
4
  import { PropertyTypePipe } from '../../pipes/property-type/property-type.pipe';
@@ -24,16 +24,5 @@ export declare class MarkersService {
24
24
  markers: Marker[];
25
25
  polyLines: any[];
26
26
  };
27
- buildNewSpider(list: Array<{
28
- id: string;
29
- location: GeoPt;
30
- price: number;
31
- currency: string;
32
- url: string;
33
- type: PropertyTypeEnum;
34
- }>): {
35
- markers: any[];
36
- polyLines: any[];
37
- };
38
27
  private createPropertyInfoCard;
39
28
  }