monkey-style-guide-v2 0.0.69 → 0.0.71

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