@maplander/components 0.21.74 → 0.21.75

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.
@@ -2843,6 +2843,7 @@ var FiltersComponent = /** @class */ (function () {
2843
2843
  this._converter = _converter;
2844
2844
  this.METERS_TO_SQ = 10.76391042;
2845
2845
  this.filterChange = new EventEmitter();
2846
+ this.closeEv = new EventEmitter();
2846
2847
  this.isOPI = this._config || false;
2847
2848
  this._subscription = new Subscription();
2848
2849
  this.propertyTypeList = ConstantsComponents.PropertyTypeList.map((/**
@@ -2925,6 +2926,7 @@ var FiltersComponent = /** @class */ (function () {
2925
2926
  * @return {?}
2926
2927
  */
2927
2928
  function () {
2929
+ this.closeEv.emit(true);
2928
2930
  this.openComponent(false);
2929
2931
  };
2930
2932
  /**
@@ -3427,7 +3429,8 @@ var FiltersComponent = /** @class */ (function () {
3427
3429
  totalProperties: [{ type: Input }],
3428
3430
  hideAmenities: [{ type: Input }],
3429
3431
  isRV: [{ type: Input }],
3430
- filterChange: [{ type: Output }]
3432
+ filterChange: [{ type: Output }],
3433
+ closeEv: [{ type: Output }]
3431
3434
  };
3432
3435
  return FiltersComponent;
3433
3436
  }());