chore: bump version (#1943)

This commit is contained in:
Himself65
2023-04-14 01:57:54 -05:00
committed by GitHub
parent ccd2b79d20
commit 70313eb5ee
11 changed files with 131 additions and 153 deletions

View File

@@ -7,7 +7,7 @@ import { StyledMenuWrapper } from './styles';
export type MenuProps = {
width?: CSSProperties['width'];
} & PopperProps &
Omit<TooltipProps, 'title'>;
Omit<TooltipProps, 'title' | 'content'>;
export const Menu = (props: MenuProps) => {
const { width, content, placement = 'bottom-start', children } = props;
return content ? (

View File

@@ -60,4 +60,4 @@ export type PopperProps = {
popperHandlerRef?: Ref<PopperHandler>;
onClickAway?: () => void;
} & Omit<PopperUnstyledProps, 'open'>;
} & Omit<PopperUnstyledProps, 'open' | 'content'>;

View File

@@ -57,7 +57,7 @@ const StyledCircleContainer = styled('div')(({ theme }) => {
});
export const QuickSearchTips = (
props: PopperProps & Omit<TooltipProps, 'title'>
props: PopperProps & Omit<TooltipProps, 'title' | 'content'>
) => {
const { content, placement = 'top', children } = props;
return (