monkey-style-guide-v2 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.
|
@@ -2386,6 +2386,8 @@ class MonkeyAutocompleteComponent {
|
|
|
2386
2386
|
}
|
|
2387
2387
|
onClear() {
|
|
2388
2388
|
this.searchData = '';
|
|
2389
|
+
this._onChange(null);
|
|
2390
|
+
this.onChange.emit(null);
|
|
2389
2391
|
}
|
|
2390
2392
|
_onFocus() {
|
|
2391
2393
|
if (!this.disabled) {
|
|
@@ -2746,6 +2748,8 @@ class MonkeyAutocompleteAddressComponent {
|
|
|
2746
2748
|
}
|
|
2747
2749
|
onClear() {
|
|
2748
2750
|
this.searchData = '';
|
|
2751
|
+
this._onChange(null);
|
|
2752
|
+
this.onChange.emit(null);
|
|
2749
2753
|
}
|
|
2750
2754
|
_onFocus() {
|
|
2751
2755
|
if (!this.disabled) {
|