@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.
@@ -2855,6 +2855,7 @@
2855
2855
  this._converter = _converter;
2856
2856
  this.METERS_TO_SQ = 10.76391042;
2857
2857
  this.filterChange = new core.EventEmitter();
2858
+ this.closeEv = new core.EventEmitter();
2858
2859
  this.isOPI = this._config || false;
2859
2860
  this._subscription = new rxjs.Subscription();
2860
2861
  this.propertyTypeList = ConstantsComponents.PropertyTypeList.map((/**
@@ -2937,6 +2938,7 @@
2937
2938
  * @return {?}
2938
2939
  */
2939
2940
  function () {
2941
+ this.closeEv.emit(true);
2940
2942
  this.openComponent(false);
2941
2943
  };
2942
2944
  /**
@@ -3439,7 +3441,8 @@
3439
3441
  totalProperties: [{ type: core.Input }],
3440
3442
  hideAmenities: [{ type: core.Input }],
3441
3443
  isRV: [{ type: core.Input }],
3442
- filterChange: [{ type: core.Output }]
3444
+ filterChange: [{ type: core.Output }],
3445
+ closeEv: [{ type: core.Output }]
3443
3446
  };
3444
3447
  return FiltersComponent;
3445
3448
  }());