monkey-style-guide-v2 0.0.71 → 0.0.73

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.
@@ -2659,12 +2659,8 @@ class MonkeyAutocompleteAddressComponent {
2659
2659
  this.stateChanges.next();
2660
2660
  }
2661
2661
  set value(value) {
2662
- console.log('@@@@@@');
2663
- console.log(value);
2664
2662
  if (this._value !== value && value !== undefined) {
2665
2663
  this._value = value;
2666
- console.log(this._value);
2667
- console.log(this.searchData);
2668
2664
  if (!this.searchData) {
2669
2665
  this.searchData = value;
2670
2666
  }
@@ -2788,7 +2784,7 @@ class MonkeyAutocompleteAddressComponent {
2788
2784
  this.disabled = isDisabled;
2789
2785
  }
2790
2786
  writeValue(value) {
2791
- this._value = value;
2787
+ this.value = value;
2792
2788
  }
2793
2789
  openPopOver() {
2794
2790
  this.showPopOver = true;