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

@@ -47,11 +47,11 @@
"react-is": "^18.2.0"
},
"devDependencies": {
"@blocksuite/blocks": "0.0.0-20230413112150-e058f87e-nightly",
"@blocksuite/editor": "0.0.0-20230413112150-e058f87e-nightly",
"@blocksuite/global": "0.0.0-20230413112150-e058f87e-nightly",
"@blocksuite/blocks": "0.0.0-20230413190748-4d32b79a-nightly",
"@blocksuite/editor": "0.0.0-20230413190748-4d32b79a-nightly",
"@blocksuite/global": "0.0.0-20230413190748-4d32b79a-nightly",
"@blocksuite/icons": "^2.1.10",
"@blocksuite/store": "0.0.0-20230413112150-e058f87e-nightly",
"@blocksuite/store": "0.0.0-20230413190748-4d32b79a-nightly",
"@storybook/addon-actions": "^7.0.4",
"@storybook/addon-coverage": "^0.0.8",
"@storybook/addon-essentials": "^7.0.4",
@@ -65,7 +65,7 @@
"@storybook/react-vite": "^7.0.4",
"@storybook/test-runner": "^0.10.0",
"@storybook/testing-library": "^0.1.0",
"@types/react": "=18.0.31",
"@types/react": "^18.0.35",
"@types/react-dnd": "^3.0.2",
"@types/react-dom": "18.0.11",
"@vanilla-extract/css": "^1.11.0",

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 (

View File

@@ -4,7 +4,7 @@
"main": "./src/index.ts",
"module": "./src/index.ts",
"devDependencies": {
"@blocksuite/global": "0.0.0-20230413112150-e058f87e-nightly",
"@blocksuite/global": "0.0.0-20230413190748-4d32b79a-nightly",
"next": "=13.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",

View File

@@ -26,8 +26,8 @@
"idb": "^7.1.1"
},
"devDependencies": {
"@blocksuite/blocks": "0.0.0-20230413112150-e058f87e-nightly",
"@blocksuite/store": "0.0.0-20230413112150-e058f87e-nightly",
"@blocksuite/blocks": "0.0.0-20230413190748-4d32b79a-nightly",
"@blocksuite/store": "0.0.0-20230413190748-4d32b79a-nightly",
"vite": "^4.2.1",
"vite-plugin-dts": "^2.2.0",
"y-indexeddb": "^9.0.10"