fix: allow boolean shorthand for `popover` prop

pull/10095/head
surajgoraya 3 years ago
parent 0c58524d23
commit d2c506351a

@ -731,7 +731,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
title?: string | undefined | null;
translate?: 'yes' | 'no' | '' | undefined | null;
inert?: boolean | undefined | null;
popover?: 'auto' | 'manual' | '' | undefined | null;
popover?: boolean | 'auto' | 'manual' | '' | undefined | null;
// Unknown
radiogroup?: string | undefined | null; // <command>, <menuitem>

Loading…
Cancel
Save