Fix close command menu button (#12282)

Fixes #12280 

The `dataClickOutsideId` and `dataGloballyPreventClickOutside` props
weren't passed to the button components.

This PR fixes this and introduces the type `ClickOutsideAttributes`.



https://github.com/user-attachments/assets/38b1a6f9-8f3a-43d2-aa7b-aaa259ac6737
This commit is contained in:
Raphaël Bosi
2025-05-26 15:37:46 +02:00
committed by GitHub
parent ec4e4740d2
commit a15451dab2
4 changed files with 18 additions and 4 deletions

View File

@ -0,0 +1,4 @@
export type ClickOutsideAttributes = {
dataClickOutsideId?: string;
dataGloballyPreventClickOutside?: boolean;
};