ngx-wapp-components 1.7.2 → 1.7.3
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.
- package/esm2020/lib/maps/w-maps/w-maps.component.mjs +5 -3
- package/esm2020/lib/shared/models/customer-address.model.mjs +1 -1
- package/fesm2015/ngx-wapp-components.mjs +8 -5
- package/fesm2015/ngx-wapp-components.mjs.map +1 -1
- package/fesm2020/ngx-wapp-components.mjs +4 -2
- package/fesm2020/ngx-wapp-components.mjs.map +1 -1
- package/lib/maps/w-maps/w-maps.component.d.ts +1 -1
- package/lib/shared/models/customer-address.model.d.ts +6 -0
- package/package.json +1 -1
|
@@ -4724,9 +4724,11 @@ class WMapsComponent {
|
|
|
4724
4724
|
this.addressVerbose = new EventEmitter();
|
|
4725
4725
|
this.addressFinal = {};
|
|
4726
4726
|
}
|
|
4727
|
-
ngOnInit() {
|
|
4728
|
-
}
|
|
4727
|
+
ngOnInit() { }
|
|
4729
4728
|
async ngAfterViewInit() {
|
|
4729
|
+
if (typeof this.streetAddress !== "string") {
|
|
4730
|
+
this.streetAddress = (this.streetAddress?.route || '') + " " + (this.streetAddress?.streetNumber || '') + " " + (this.streetAddress?.areaLevel2 || '') + " " + (this.streetAddress?.postalCode || '') + " " + (this.streetAddress?.locality || '') + " " + (this.streetAddress?.country || '');
|
|
4731
|
+
}
|
|
4730
4732
|
if (this.isEdit)
|
|
4731
4733
|
this.loadAutoComplete();
|
|
4732
4734
|
if (this.showMap || this.showMapButton) {
|