@luftborn/custom-elements 2.12.2 → 2.12.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/demo/index.min.js CHANGED
@@ -3492,7 +3492,7 @@ var AddressElement = /** @class */ (function (_super) {
3492
3492
  var city = this.city.value ? "," + this.city.value : '';
3493
3493
  var zip = this.zip.value ? "," + this.zip.value : '';
3494
3494
  var country = this.country.value ? "," + this.country.value : '';
3495
- return "" + address + city + zip + country;
3495
+ return "" + address + zip + city + country;
3496
3496
  },
3497
3497
  set: function (value) {
3498
3498
  var values = value.split(',');