rd-outer-component 0.0.45 → 0.0.46

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.
@@ -1487,6 +1487,7 @@ class RdFilterComponent {
1487
1487
  constructor(cdf) {
1488
1488
  this.cdf = cdf;
1489
1489
  this.filterArr = [];
1490
+ // @Output() filterArrChange = new EventEmitter<ICustomFilter[]>();
1490
1491
  this.defSearchChange = new EventEmitter();
1491
1492
  this.clearFilter = new EventEmitter();
1492
1493
  this.statusDisplayConfigs = [];
@@ -1497,6 +1498,7 @@ class RdFilterComponent {
1497
1498
  this.defSearchChange.emit();
1498
1499
  }
1499
1500
  clear() {
1501
+ this.filterArr.forEach((item) => (item.value = ''));
1500
1502
  this.clearFilter.emit();
1501
1503
  }
1502
1504
  }