ng-tailwind 5.2.10 → 5.2.11

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.
@@ -1011,6 +1011,7 @@ class NgtDropdownComponent {
1011
1011
  this.changeDetector.detectChanges();
1012
1012
  this.bindContainerXPosition();
1013
1013
  this.bindContainerYPosition();
1014
+ this.onToggle.emit(this.isOpen);
1014
1015
  }
1015
1016
  closeOnSelectOption() {
1016
1017
  if (this.closeOnClick) {
@@ -1021,6 +1022,7 @@ class NgtDropdownComponent {
1021
1022
  this.isOpen = false;
1022
1023
  this.containerXPosition = null;
1023
1024
  this.containerYPosition = null;
1025
+ this.onToggle.emit(this.isOpen);
1024
1026
  }
1025
1027
  toggle() {
1026
1028
  setTimeout(() => {
@@ -1030,7 +1032,6 @@ class NgtDropdownComponent {
1030
1032
  else {
1031
1033
  this.open();
1032
1034
  }
1033
- this.onToggle.emit(this.isOpen);
1034
1035
  });
1035
1036
  }
1036
1037
  onHover(host, container) {