cloud-ide-element 1.0.17 → 1.0.18
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.
|
@@ -4484,7 +4484,9 @@ class CideEleDropdownComponent {
|
|
|
4484
4484
|
this.openDropdown();
|
|
4485
4485
|
}
|
|
4486
4486
|
else {
|
|
4487
|
-
|
|
4487
|
+
setTimeout(() => {
|
|
4488
|
+
this.closeDropdown();
|
|
4489
|
+
}, 100);
|
|
4488
4490
|
}
|
|
4489
4491
|
}
|
|
4490
4492
|
openDropdown() {
|
|
@@ -4524,7 +4526,7 @@ class CideEleDropdownComponent {
|
|
|
4524
4526
|
// Close dropdown after a small delay to ensure click is processed
|
|
4525
4527
|
setTimeout(() => {
|
|
4526
4528
|
this.closeDropdown();
|
|
4527
|
-
},
|
|
4529
|
+
}, 50);
|
|
4528
4530
|
}
|
|
4529
4531
|
createPortalDropdown() {
|
|
4530
4532
|
const triggerElement = this.dropdownContainer().nativeElement;
|