@maplander/components 0.21.74 → 0.21.76
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.
- package/bundles/maplander-components.umd.js +5 -2
- package/bundles/maplander-components.umd.js.map +1 -1
- package/bundles/maplander-components.umd.min.js +1 -1
- package/bundles/maplander-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/filters/filters.component.js +7 -2
- package/esm2015/lib/constantsComponents.js +2 -2
- package/esm5/lib/components/filters/filters.component.js +7 -2
- package/esm5/lib/constantsComponents.js +2 -2
- package/fesm2015/maplander-components.js +5 -2
- package/fesm2015/maplander-components.js.map +1 -1
- package/fesm5/maplander-components.js +5 -2
- package/fesm5/maplander-components.js.map +1 -1
- package/lib/components/filters/filters.component.d.ts +1 -0
- package/maplander-components.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -768,7 +768,7 @@
|
|
|
768
768
|
checked: false,
|
|
769
769
|
iconName: AmenityName.GoodReachableTraffic,
|
|
770
770
|
value: AmenityName.GoodReachableTraffic,
|
|
771
|
-
name: 'Se llega sin
|
|
771
|
+
name: 'Se llega sin tráfico'
|
|
772
772
|
},
|
|
773
773
|
{
|
|
774
774
|
checked: false,
|
|
@@ -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
|
}());
|