@klippa/ngx-enhancy-forms 14.2.0 → 14.2.1

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.
@@ -890,7 +890,10 @@ class SelectComponent extends ValueAccessorBase {
890
890
  return false;
891
891
  }
892
892
  onClose() {
893
- this.onClosed.emit();
893
+ // Give angular a second to render the closed situation before emitting the close event
894
+ setTimeout(() => {
895
+ this.onClosed.emit();
896
+ });
894
897
  }
895
898
  }
896
899
  SelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.8", ngImport: i0, type: SelectComponent, deps: [{ token: FormElementComponent, host: true, optional: true }, { token: i2.ControlContainer, host: true, optional: true }, { token: SELECT_TRANSLATIONS, optional: true }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });