@maplander/components 0.21.39 → 0.21.40
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 +7 -1
- 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 +8 -2
- package/esm5/lib/components/filters/filters.component.js +8 -2
- package/fesm2015/maplander-components.js +7 -1
- package/fesm2015/maplander-components.js.map +1 -1
- package/fesm5/maplander-components.js +7 -1
- package/fesm5/maplander-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -3387,7 +3387,6 @@ var FiltersComponent = /** @class */ (function () {
|
|
|
3387
3387
|
*/
|
|
3388
3388
|
function (value) {
|
|
3389
3389
|
if (!value) {
|
|
3390
|
-
_this.filtersForm.controls['maxPrice'].reset(0);
|
|
3391
3390
|
return;
|
|
3392
3391
|
}
|
|
3393
3392
|
_this.setPrices((/** @type {?} */ (value.toString())));
|
|
@@ -3399,6 +3398,9 @@ var FiltersComponent = /** @class */ (function () {
|
|
|
3399
3398
|
function (value) {
|
|
3400
3399
|
if (!value) {
|
|
3401
3400
|
_this.filtersForm.controls['minPrice'].reset(0);
|
|
3401
|
+
_this.filtersForm.patchValue({
|
|
3402
|
+
minPrice: 0
|
|
3403
|
+
});
|
|
3402
3404
|
return;
|
|
3403
3405
|
}
|
|
3404
3406
|
_this.maxPriceList = Object.assign([], _this._tmpMaxPriceList);
|
|
@@ -3414,6 +3416,10 @@ var FiltersComponent = /** @class */ (function () {
|
|
|
3414
3416
|
*/
|
|
3415
3417
|
function (value) {
|
|
3416
3418
|
if (!value) {
|
|
3419
|
+
_this.filtersForm.controls['maxPrice'].reset(0);
|
|
3420
|
+
_this.filtersForm.patchValue({
|
|
3421
|
+
maxPrice: 0
|
|
3422
|
+
});
|
|
3417
3423
|
return;
|
|
3418
3424
|
}
|
|
3419
3425
|
_this.minPriceList = Object.assign([], _this._tmpMinPriceList);
|