monkey-style-guide-v2 0.0.72 → 0.0.74
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
|
}
|
|
@@ -5796,7 +5792,7 @@ class MonkeyInputPhoneComponent {
|
|
|
5796
5792
|
type="tel"
|
|
5797
5793
|
class="mecx-input"
|
|
5798
5794
|
[disabled]="disabled"
|
|
5799
|
-
placeholder="
|
|
5795
|
+
[placeholder]="placeholder"
|
|
5800
5796
|
(input)="onInputChange($event)"
|
|
5801
5797
|
[ngModel]="phoneFormatted"
|
|
5802
5798
|
[maxlength]="getMaxLength()"
|
|
@@ -5836,7 +5832,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
5836
5832
|
type="tel"
|
|
5837
5833
|
class="mecx-input"
|
|
5838
5834
|
[disabled]="disabled"
|
|
5839
|
-
placeholder="
|
|
5835
|
+
[placeholder]="placeholder"
|
|
5840
5836
|
(input)="onInputChange($event)"
|
|
5841
5837
|
[ngModel]="phoneFormatted"
|
|
5842
5838
|
[maxlength]="getMaxLength()"
|