Skip to content

Commit

Permalink
remove link annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
emmayjiang committed Dec 13, 2024
1 parent c814fe6 commit 81b33aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export type DialogProps = ComponentProps<Partial<DialogSlots>> & {
// eslint-disable-next-line @nx/workspace-consistent-callback-type -- can't change type of existing callback
onOpenChange?: DialogOpenChangeEventHandler;
/**
* Can contain two children including {@link DialogTrigger} and {@link DialogSurface}.
* Alternatively can only contain {@link DialogSurface} if using trigger outside dialog, or controlling state.
* Can contain two children including DialogTrigger and DialogSurface.
* Alternatively can only contain DialogSurface if using trigger outside dialog, or controlling state.
*/
children: [JSX.Element, JSX.Element] | JSX.Element;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export type MenuProps = ComponentProps<MenuSlots> &
'checkedValues' | 'defaultCheckedValues' | 'hasCheckmarks' | 'hasIcons' | 'onCheckedValueChange'
> & {
/**
* Can contain two children including {@link MenuTrigger} and {@link MenuPopover}.
* Alternatively can only contain {@link MenuPopover} if using a custom `target`.
* Can contain two children including MenuTrigger and MenuPopover.
* Alternatively can only contain MenuPopover if using a custom `target`.
*/
children: [JSX.Element, JSX.Element] | JSX.Element;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export type PopoverProps = Pick<PortalProps, 'mountNode'> & {
appearance?: 'brand' | 'inverted';

/**
* Can contain two children including {@link PopoverTrigger} and {@link PopoverSurface}.
* Alternatively can only contain {@link PopoverSurface} if using a custom `target`.
* Can contain two children including PopoverTrigger and PopoverSurface.
* Alternatively can only contain PopoverSurface if using a custom `target`.
*/
children: [JSX.Element, JSX.Element] | JSX.Element;

Expand Down

0 comments on commit 81b33aa

Please sign in to comment.