chore(components): improve JSDoc

This commit is contained in:
Benjamin Canac
2024-06-11 18:23:56 +02:00
parent 655d9b2c97
commit ee3d2aa30f
27 changed files with 232 additions and 10 deletions

View File

@@ -31,7 +31,12 @@ export interface ContextMenuItem extends Omit<LinkProps, 'type' | 'custom'>, Pic
export interface ContextMenuProps<T> extends Omit<ContextMenuRootProps, 'dir'>, Pick<ContextMenuTriggerProps, 'disabled'> {
items?: T[] | T[][]
/** The content of the menu. */
content?: Omit<ContextMenuContentProps, 'asChild' | 'forceMount'>
/**
* Render the menu in a portal.
* @defaultValue `true`
*/
portal?: boolean
class?: any
ui?: Partial<typeof contextMenu.slots>