@recursyve/nice-ui-kit.v2 14.0.0-beta.134 → 14.0.0-beta.135

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.
@@ -2941,6 +2941,7 @@ class NiceAsyncTypeaheadComponent extends _BaseAsyncTypeaheadComponent {
2941
2941
  this.panelClass = [];
2942
2942
  this.bindValue = "id";
2943
2943
  this.selected = new EventEmitter();
2944
+ this.isOpened$ = new Subject();
2944
2945
  this._disabled = false;
2945
2946
  this.id = uuid.v4();
2946
2947
  this.describedBy = "";
@@ -3126,6 +3127,7 @@ class NiceAsyncTypeaheadComponent extends _BaseAsyncTypeaheadComponent {
3126
3127
  }
3127
3128
  updateState(open) {
3128
3129
  this.open = open;
3130
+ this.isOpened$.next(open);
3129
3131
  if (!this.open) {
3130
3132
  this.ngZone.run(() => {
3131
3133
  this.focusChanged(false);