monkey-style-guide-v2 0.0.67 → 0.0.69

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.
@@ -2661,6 +2661,11 @@ class MonkeyAutocompleteAddressComponent {
2661
2661
  set value(value) {
2662
2662
  if (this._value !== value && value !== undefined) {
2663
2663
  this._value = value;
2664
+ console.log(this._value);
2665
+ console.log(this.searchData);
2666
+ if (!this.searchData) {
2667
+ this.searchData = value;
2668
+ }
2664
2669
  this._onChange(value);
2665
2670
  this._onTouched(value);
2666
2671
  }