@luftborn/custom-elements 2.5.4 → 2.5.6

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
@@ -3032,6 +3032,10 @@ var CustomFormatDateFieldElement = /** @class */ (function (_super) {
3032
3032
  this.date.addEventListener('change', function () {
3033
3033
  _this.display.value = _this.formatDate();
3034
3034
  _this.change(null);
3035
+ _this.date.hidden = true;
3036
+ setTimeout(function () {
3037
+ _this.date.hidden = false;
3038
+ }, 0);
3035
3039
  });
3036
3040
  this.datepicker.addEventListener('click', function () {
3037
3041
  _this.showDatePicker();