@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
|
@@ -756,7 +756,7 @@ var ConstantsComponents = /** @class */ (function () {
|
|
|
756
756
|
checked: false,
|
|
757
757
|
iconName: AmenityName.GoodReachableTraffic,
|
|
758
758
|
value: AmenityName.GoodReachableTraffic,
|
|
759
|
-
name: 'Se llega sin
|
|
759
|
+
name: 'Se llega sin tráfico'
|
|
760
760
|
},
|
|
761
761
|
{
|
|
762
762
|
checked: false,
|
|
@@ -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
|
}());
|