chore: bump blocksuite (#1298)

Co-authored-by: Himself65 <himself65@outlook.com>
This commit is contained in:
Yifeng Wang 2023-03-04 04:17:06 +08:00 committed by GitHub
parent 50ff9b0c5c
commit 205092180b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 95 additions and 95 deletions

View File

@ -14,10 +14,10 @@
"build:app": "tauri build" "build:app": "tauri build"
}, },
"dependencies": { "dependencies": {
"@blocksuite/blocks": "0.5.0-20230302205056-4385b7a", "@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/editor": "0.5.0-20230302205056-4385b7a", "@blocksuite/editor": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/icons": "2.0.17", "@blocksuite/icons": "2.0.17",
"@blocksuite/store": "0.5.0-20230302205056-4385b7a", "@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
"@emotion/react": "^11.10.6", "@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6", "@emotion/styled": "^11.10.6",
"@tauri-apps/api": "^1.2.0", "@tauri-apps/api": "^1.2.0",

View File

@ -14,11 +14,11 @@
"@affine/debug": "workspace:*", "@affine/debug": "workspace:*",
"@affine/env": "workspace:*", "@affine/env": "workspace:*",
"@affine/i18n": "workspace:*", "@affine/i18n": "workspace:*",
"@blocksuite/blocks": "0.5.0-20230302205056-4385b7a", "@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/editor": "0.5.0-20230302205056-4385b7a", "@blocksuite/editor": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/icons": "2.0.17", "@blocksuite/icons": "2.0.17",
"@blocksuite/react": "0.5.0-20230302205056-4385b7a", "@blocksuite/react": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/store": "0.5.0-20230302205056-4385b7a", "@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
"@emotion/cache": "^11.10.5", "@emotion/cache": "^11.10.5",
"@emotion/css": "^11.10.6", "@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6", "@emotion/react": "^11.10.6",

View File

@ -41,7 +41,7 @@ beforeEach(async () => {
}) })
.register(builtInSchemas) .register(builtInSchemas)
.register(__unstableSchemas); .register(__unstableSchemas);
blockSuiteWorkspace.signals.pageAdded.on(pageId => { blockSuiteWorkspace.slots.pageAdded.on(pageId => {
setTimeout(() => { setTimeout(() => {
const page = blockSuiteWorkspace.getPage(pageId); const page = blockSuiteWorkspace.getPage(pageId);
expect(page).not.toBeNull(); expect(page).not.toBeNull();

View File

@ -22,7 +22,7 @@ beforeEach(() => {
}) })
.register(builtInSchemas) .register(builtInSchemas)
.register(__unstableSchemas); .register(__unstableSchemas);
blockSuiteWorkspace.signals.pageAdded.on(pageId => { blockSuiteWorkspace.slots.pageAdded.on(pageId => {
const page = blockSuiteWorkspace.getPage(pageId) as Page; const page = blockSuiteWorkspace.getPage(pageId) as Page;
const pageBlockId = page.addBlockByFlavour('affine:page', { title: '' }); const pageBlockId = page.addBlockByFlavour('affine:page', { title: '' });
const frameId = page.addBlockByFlavour('affine:frame', {}, pageBlockId); const frameId = page.addBlockByFlavour('affine:frame', {}, pageBlockId);

View File

@ -11,7 +11,7 @@ export function useBlockSuiteWorkspaceHelper(
createPage: (pageId: string, title?: string): Promise<string> => { createPage: (pageId: string, title?: string): Promise<string> => {
return new Promise(resolve => { return new Promise(resolve => {
assertExists(blockSuiteWorkspace); assertExists(blockSuiteWorkspace);
const dispose = blockSuiteWorkspace.signals.pageAdded.on(id => { const dispose = blockSuiteWorkspace.slots.pageAdded.on(id => {
if (id === pageId) { if (id === pageId) {
dispose.dispose(); dispose.dispose();
// Fixme: https://github.com/toeverything/blocksuite/issues/1350 // Fixme: https://github.com/toeverything/blocksuite/issues/1350

View File

@ -33,7 +33,7 @@ const PreviewPage: NextPage<PreviewPageProps> = ({
'preview', 'preview',
(_: string) => undefined (_: string) => undefined
); );
blockSuiteWorkspace.signals.pageAdded.once(() => { blockSuiteWorkspace.slots.pageAdded.once(() => {
setBlockSuiteWorkspace(blockSuiteWorkspace); setBlockSuiteWorkspace(blockSuiteWorkspace);
}); });
blockSuiteWorkspace.createPage('preview'); blockSuiteWorkspace.createPage('preview');

View File

@ -30,7 +30,7 @@ const WorkspaceDetail: React.FC = () => {
const [, rerender] = useState(false); const [, rerender] = useState(false);
// fixme(himself65): this is a hack // fixme(himself65): this is a hack
useEffect(() => { useEffect(() => {
const dispose = currentWorkspace?.blockSuiteWorkspace.signals.pageAdded.on( const dispose = currentWorkspace?.blockSuiteWorkspace.slots.pageAdded.on(
id => { id => {
if (pageId === id) { if (pageId === id) {
rerender(prev => !prev); rerender(prev => !prev);
@ -40,7 +40,7 @@ const WorkspaceDetail: React.FC = () => {
return () => { return () => {
dispose?.dispose(); dispose?.dispose();
}; };
}, [currentWorkspace?.blockSuiteWorkspace.signals.pageAdded, pageId]); }, [currentWorkspace?.blockSuiteWorkspace.slots.pageAdded, pageId]);
useEffect(() => { useEffect(() => {
if (currentWorkspace) { if (currentWorkspace) {
enableFullFlags(currentWorkspace.blockSuiteWorkspace); enableFullFlags(currentWorkspace.blockSuiteWorkspace);

View File

@ -10,12 +10,12 @@
"dependencies": { "dependencies": {
"@affine/debug": "workspace:*", "@affine/debug": "workspace:*",
"@affine/i18n": "workspace:*", "@affine/i18n": "workspace:*",
"@blocksuite/blocks": "0.5.0-20230302205056-4385b7a", "@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/editor": "0.5.0-20230302205056-4385b7a", "@blocksuite/editor": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/global": "0.5.0-20230302205056-4385b7a", "@blocksuite/global": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/icons": "2.0.17", "@blocksuite/icons": "2.0.17",
"@blocksuite/react": "0.5.0-20230302205056-4385b7a", "@blocksuite/react": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/store": "0.5.0-20230302205056-4385b7a", "@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
"@emotion/react": "^11.10.6", "@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6", "@emotion/styled": "^11.10.6",
"@mui/base": "5.0.0-alpha.119", "@mui/base": "5.0.0-alpha.119",

View File

@ -39,7 +39,7 @@ As a pro tip, you can combine multiple providers! For example, feel free to open
For any feedback, please visit [BlockSuite issues](https://github.com/toeverything/blocksuite/issues) 📍`; For any feedback, please visit [BlockSuite issues](https://github.com/toeverything/blocksuite/issues) 📍`;
const pagePromise = new Promise<Page>(resolve => { const pagePromise = new Promise<Page>(resolve => {
workspace.signals.pageAdded.once(pageId => { workspace.slots.pageAdded.once(pageId => {
const page = workspace.getPage(pageId) as Page; const page = workspace.getPage(pageId) as Page;
pageOrPagePromise = page; pageOrPagePromise = page;
resolve(page); resolve(page);

View File

@ -14,8 +14,8 @@
}, },
"dependencies": { "dependencies": {
"@affine/debug": "workspace:*", "@affine/debug": "workspace:*",
"@blocksuite/blocks": "0.5.0-20230302205056-4385b7a", "@blocksuite/blocks": "0.5.0-20230303192351-13b0dd7",
"@blocksuite/store": "0.5.0-20230302205056-4385b7a", "@blocksuite/store": "0.5.0-20230303192351-13b0dd7",
"@tauri-apps/api": "^1.2.0", "@tauri-apps/api": "^1.2.0",
"encoding": "^0.1.13", "encoding": "^0.1.13",
"firebase": "^9.17.1", "firebase": "^9.17.1",

View File

@ -40,7 +40,7 @@
// this._ws.once('lost-connection', () => resolve()); // this._ws.once('lost-connection', () => resolve());
// this._ws.once('connection-error', () => reject()); // this._ws.once('connection-error', () => reject());
// }); // });
// this._signals.listAdd.emit({ // this._slots.listAdd.emit({
// workspace: workspace.room, // workspace: workspace.room,
// provider: this.id, // provider: this.id,
// locally: true, // locally: true,

View File

@ -1,5 +1,5 @@
import { BlobSyncState } from '@blocksuite/store'; import { BlobSyncState } from '@blocksuite/store';
import { Signal } from '@blocksuite/store'; import { Slot } from '@blocksuite/store';
// eslint-disable-next-line @typescript-eslint/no-restricted-imports // eslint-disable-next-line @typescript-eslint/no-restricted-imports
import type { import type {
BlobId, BlobId,
@ -15,8 +15,8 @@ export class IPCBlobProvider implements BlobProvider {
#workspace: string; #workspace: string;
readonly signals = { readonly slots = {
onBlobSyncStateChange: new Signal<BlobSyncStateChangeEvent>(), onBlobSyncStateChange: new Slot<BlobSyncStateChangeEvent>(),
}; };
private constructor(workspace: string) { private constructor(workspace: string) {
@ -43,7 +43,7 @@ export class IPCBlobProvider implements BlobProvider {
}); });
// Make a Blob from the bytes // Make a Blob from the bytes
const blob = new Blob([new Uint8Array(blobArray)], { type: 'image/bmp' }); const blob = new Blob([new Uint8Array(blobArray)], { type: 'image/bmp' });
this.signals.onBlobSyncStateChange.emit({ this.slots.onBlobSyncStateChange.emit({
id, id,
state: BlobSyncState.Success, state: BlobSyncState.Success,
}); });
@ -55,7 +55,7 @@ export class IPCBlobProvider implements BlobProvider {
const blobID = await this.#ipc.putBlob({ const blobID = await this.#ipc.putBlob({
blob: Array.from(new Uint8Array(await blob.arrayBuffer())), blob: Array.from(new Uint8Array(await blob.arrayBuffer())),
}); });
this.signals.onBlobSyncStateChange.emit({ this.slots.onBlobSyncStateChange.emit({
id: blobID, id: blobID,
state: BlobSyncState.Success, state: BlobSyncState.Success,
}); });

View File

@ -9,6 +9,6 @@
"zod": "^3.20.6" "zod": "^3.20.6"
}, },
"dependencies": { "dependencies": {
"@blocksuite/global": "0.5.0-20230302205056-4385b7a" "@blocksuite/global": "0.5.0-20230303192351-13b0dd7"
} }
} }

View File

@ -75,10 +75,10 @@ importers:
apps/desktop: apps/desktop:
specifiers: specifiers:
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7
'@blocksuite/icons': 2.0.17 '@blocksuite/icons': 2.0.17
'@blocksuite/store': 0.5.0-20230302205056-4385b7a '@blocksuite/store': 0.5.0-20230303192351-13b0dd7
'@emotion/react': ^11.10.6 '@emotion/react': ^11.10.6
'@emotion/styled': ^11.10.6 '@emotion/styled': ^11.10.6
'@tauri-apps/api': ^1.2.0 '@tauri-apps/api': ^1.2.0
@ -104,10 +104,10 @@ importers:
yjs: ^13.5.48 yjs: ^13.5.48
zx: ^7.2.0 zx: ^7.2.0
dependencies: dependencies:
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a_nalemmmyvzosi3fq3whv32jtge '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7_5xsxaxbhbu5ctd3lp3pkuuenhi
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a_vp7m7btldpwmiqelfagjfjt2ti '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7_7znjiaiopi2d4jmc57x372ojda
'@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34 '@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34
'@blocksuite/store': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/store': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34
'@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia
'@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu '@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu
@ -141,11 +141,11 @@ importers:
'@affine/debug': workspace:* '@affine/debug': workspace:*
'@affine/env': workspace:* '@affine/env': workspace:*
'@affine/i18n': workspace:* '@affine/i18n': workspace:*
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7
'@blocksuite/icons': 2.0.17 '@blocksuite/icons': 2.0.17
'@blocksuite/react': 0.5.0-20230302205056-4385b7a '@blocksuite/react': 0.5.0-20230303192351-13b0dd7
'@blocksuite/store': 0.5.0-20230302205056-4385b7a '@blocksuite/store': 0.5.0-20230303192351-13b0dd7
'@emotion/cache': ^11.10.5 '@emotion/cache': ^11.10.5
'@emotion/css': ^11.10.6 '@emotion/css': ^11.10.6
'@emotion/react': ^11.10.6 '@emotion/react': ^11.10.6
@ -185,11 +185,11 @@ importers:
'@affine/debug': link:../../packages/debug '@affine/debug': link:../../packages/debug
'@affine/env': link:../../packages/env '@affine/env': link:../../packages/env
'@affine/i18n': link:../../packages/i18n '@affine/i18n': link:../../packages/i18n
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a_nalemmmyvzosi3fq3whv32jtge '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7_5xsxaxbhbu5ctd3lp3pkuuenhi
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a_vp7m7btldpwmiqelfagjfjt2ti '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7_7znjiaiopi2d4jmc57x372ojda
'@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34 '@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34
'@blocksuite/react': 0.5.0-20230302205056-4385b7a_vx7b46zya3jkie62raxsx7tbvm '@blocksuite/react': 0.5.0-20230303192351-13b0dd7_qlfb2yy7nxtfdwqrqhb63y6k6i
'@blocksuite/store': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/store': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@emotion/cache': 11.10.5 '@emotion/cache': 11.10.5
'@emotion/css': 11.10.6 '@emotion/css': 11.10.6
'@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34
@ -229,12 +229,12 @@ importers:
specifiers: specifiers:
'@affine/debug': workspace:* '@affine/debug': workspace:*
'@affine/i18n': workspace:* '@affine/i18n': workspace:*
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7
'@blocksuite/global': 0.5.0-20230302205056-4385b7a '@blocksuite/global': 0.5.0-20230303192351-13b0dd7
'@blocksuite/icons': 2.0.17 '@blocksuite/icons': 2.0.17
'@blocksuite/react': 0.5.0-20230302205056-4385b7a '@blocksuite/react': 0.5.0-20230303192351-13b0dd7
'@blocksuite/store': 0.5.0-20230302205056-4385b7a '@blocksuite/store': 0.5.0-20230303192351-13b0dd7
'@emotion/react': ^11.10.6 '@emotion/react': ^11.10.6
'@emotion/styled': ^11.10.6 '@emotion/styled': ^11.10.6
'@mui/base': 5.0.0-alpha.119 '@mui/base': 5.0.0-alpha.119
@ -263,12 +263,12 @@ importers:
dependencies: dependencies:
'@affine/debug': link:../debug '@affine/debug': link:../debug
'@affine/i18n': link:../i18n '@affine/i18n': link:../i18n
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a_nalemmmyvzosi3fq3whv32jtge '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7_5xsxaxbhbu5ctd3lp3pkuuenhi
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a_vp7m7btldpwmiqelfagjfjt2ti '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7_7znjiaiopi2d4jmc57x372ojda
'@blocksuite/global': 0.5.0-20230302205056-4385b7a_lit@2.6.1 '@blocksuite/global': 0.5.0-20230303192351-13b0dd7_lit@2.6.1
'@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34 '@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34
'@blocksuite/react': 0.5.0-20230302205056-4385b7a_vx7b46zya3jkie62raxsx7tbvm '@blocksuite/react': 0.5.0-20230303192351-13b0dd7_qlfb2yy7nxtfdwqrqhb63y6k6i
'@blocksuite/store': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/store': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34
'@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia
'@mui/base': 5.0.0-alpha.119_zula6vjvt3wdocc4mwcxqa6nzi '@mui/base': 5.0.0-alpha.119_zula6vjvt3wdocc4mwcxqa6nzi
@ -299,8 +299,8 @@ importers:
packages/data-center: packages/data-center:
specifiers: specifiers:
'@affine/debug': workspace:* '@affine/debug': workspace:*
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7
'@blocksuite/store': 0.5.0-20230302205056-4385b7a '@blocksuite/store': 0.5.0-20230303192351-13b0dd7
'@tauri-apps/api': ^1.2.0 '@tauri-apps/api': ^1.2.0
encoding: ^0.1.13 encoding: ^0.1.13
fake-indexeddb: 4.0.1 fake-indexeddb: 4.0.1
@ -316,8 +316,8 @@ importers:
yjs: ^13.5.48 yjs: ^13.5.48
dependencies: dependencies:
'@affine/debug': link:../debug '@affine/debug': link:../debug
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a_nalemmmyvzosi3fq3whv32jtge '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7_5xsxaxbhbu5ctd3lp3pkuuenhi
'@blocksuite/store': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/store': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu '@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu
encoding: 0.1.13 encoding: 0.1.13
firebase: 9.17.1_encoding@0.1.13 firebase: 9.17.1_encoding@0.1.13
@ -346,13 +346,13 @@ importers:
packages/env: packages/env:
specifiers: specifiers:
'@blocksuite/global': 0.5.0-20230302205056-4385b7a '@blocksuite/global': 0.5.0-20230303192351-13b0dd7
next: ^13.2.3 next: ^13.2.3
react: ^18.2.0 react: ^18.2.0
react-dom: ^18.2.0 react-dom: ^18.2.0
zod: ^3.20.6 zod: ^3.20.6
dependencies: dependencies:
'@blocksuite/global': 0.5.0-20230302205056-4385b7a '@blocksuite/global': 0.5.0-20230303192351-13b0dd7
devDependencies: devDependencies:
next: 13.2.3_biqbaboplfbrettd7655fr4n2y next: 13.2.3_biqbaboplfbrettd7655fr4n2y
react: 18.2.0 react: 18.2.0
@ -1797,15 +1797,15 @@ packages:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true dev: true
/@blocksuite/blocks/0.5.0-20230302205056-4385b7a_nalemmmyvzosi3fq3whv32jtge: /@blocksuite/blocks/0.5.0-20230303192351-13b0dd7_5xsxaxbhbu5ctd3lp3pkuuenhi:
resolution: {integrity: sha512-Le9WTvYdIQV2K/3ls443JwmuiYM5CG4UNcfCKB77jIuiRQOmBbsBIjM+fjzCKJ/Fp7YHgl8AfIiblyQyO6UURg==} resolution: {integrity: sha512-GRrO221M9QfIxOtzBfoTFkTq9CtRGL6EWe0SEP1MSyMOF+hoJYKGiCjWcEpm50hAK60gqE0EHCno8HTyPxgrfw==}
peerDependencies: peerDependencies:
'@blocksuite/store': 0.5.0-20230302205056-4385b7a '@blocksuite/store': 0.5.0-20230303192351-13b0dd7
dependencies: dependencies:
'@blocksuite/global': 0.5.0-20230302205056-4385b7a_lit@2.6.1 '@blocksuite/global': 0.5.0-20230303192351-13b0dd7_lit@2.6.1
'@blocksuite/phasor': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/phasor': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@blocksuite/store': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/store': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@blocksuite/virgo': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/virgo': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@popperjs/core': 2.11.6 '@popperjs/core': 2.11.6
highlight.js: 11.7.0 highlight.js: 11.7.0
hotkeys-js: 3.10.1 hotkeys-js: 3.10.1
@ -1816,22 +1816,22 @@ packages:
- yjs - yjs
dev: false dev: false
/@blocksuite/editor/0.5.0-20230302205056-4385b7a_vp7m7btldpwmiqelfagjfjt2ti: /@blocksuite/editor/0.5.0-20230303192351-13b0dd7_7znjiaiopi2d4jmc57x372ojda:
resolution: {integrity: sha512-Q28kKRXkOHHhTto6b1z3zouajcEjv34ejQh0XQe2HCJUnDLxReu+LHsUUkGzel94e445PQ2g8oL8KmNCQroPHA==} resolution: {integrity: sha512-3V2vAxBaZmgaaENJd5yySCuiM7nkc9E28jV68BATuJpSBFYcZqgBg6J73WiWassS/Yo+WBdPg99n8BOzWTDRgQ==}
peerDependencies: peerDependencies:
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7
'@blocksuite/store': 0.5.0-20230302205056-4385b7a '@blocksuite/store': 0.5.0-20230303192351-13b0dd7
dependencies: dependencies:
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a_nalemmmyvzosi3fq3whv32jtge '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7_5xsxaxbhbu5ctd3lp3pkuuenhi
'@blocksuite/global': 0.5.0-20230302205056-4385b7a_lit@2.6.1 '@blocksuite/global': 0.5.0-20230303192351-13b0dd7_lit@2.6.1
'@blocksuite/store': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/store': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
lit: 2.6.1 lit: 2.6.1
marked: 4.2.12 marked: 4.2.12
turndown: 7.1.1 turndown: 7.1.1
dev: false dev: false
/@blocksuite/global/0.5.0-20230302205056-4385b7a: /@blocksuite/global/0.5.0-20230303192351-13b0dd7:
resolution: {integrity: sha512-F7NRizuEkcWCLTH1lbM9vRCVTKSJYnq0ruJpoxpMyKoWrE6FoVoIDLn/7S2SVoKfPAKV5G3hoCje0cf1FrsSTw==} resolution: {integrity: sha512-+p2sRKHF2D8UETh+Rl+5CK0HC4RbR8evytban57fZIathmHThwVes4AH/8lJpSUJ/6y8w4A7nr4wXMGDGisttw==}
peerDependencies: peerDependencies:
lit: ^2.6 lit: ^2.6
peerDependenciesMeta: peerDependenciesMeta:
@ -1842,8 +1842,8 @@ packages:
zod: 3.20.6 zod: 3.20.6
dev: false dev: false
/@blocksuite/global/0.5.0-20230302205056-4385b7a_lit@2.6.1: /@blocksuite/global/0.5.0-20230303192351-13b0dd7_lit@2.6.1:
resolution: {integrity: sha512-F7NRizuEkcWCLTH1lbM9vRCVTKSJYnq0ruJpoxpMyKoWrE6FoVoIDLn/7S2SVoKfPAKV5G3hoCje0cf1FrsSTw==} resolution: {integrity: sha512-+p2sRKHF2D8UETh+Rl+5CK0HC4RbR8evytban57fZIathmHThwVes4AH/8lJpSUJ/6y8w4A7nr4wXMGDGisttw==}
peerDependencies: peerDependencies:
lit: ^2.6 lit: ^2.6
peerDependenciesMeta: peerDependenciesMeta:
@ -1865,12 +1865,12 @@ packages:
react: 18.2.0 react: 18.2.0
dev: false dev: false
/@blocksuite/phasor/0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48: /@blocksuite/phasor/0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48:
resolution: {integrity: sha512-D0oXG7+dFKlLU2LjL2gTVdwBmpQ4tgx1gv8pNbAARLeKMOI4VRwPrXb30p3e+LwGhZjhC3wlfhT6c3Cc5+Udcg==} resolution: {integrity: sha512-KPPkzyXsIiwVpEeoe95XAXZW75a/WujEIjcXsb9XnmRIfAUHKC5ll5z3a6+DvvLHSkm96enfhsh6951dh8IGag==}
peerDependencies: peerDependencies:
yjs: ^13 yjs: ^13
dependencies: dependencies:
'@blocksuite/global': 0.5.0-20230302205056-4385b7a_lit@2.6.1 '@blocksuite/global': 0.5.0-20230303192351-13b0dd7_lit@2.6.1
fractional-indexing: 3.2.0 fractional-indexing: 3.2.0
nanoid: 4.0.1 nanoid: 4.0.1
perfect-freehand: 1.2.0 perfect-freehand: 1.2.0
@ -1879,19 +1879,19 @@ packages:
- lit - lit
dev: false dev: false
/@blocksuite/react/0.5.0-20230302205056-4385b7a_vx7b46zya3jkie62raxsx7tbvm: /@blocksuite/react/0.5.0-20230303192351-13b0dd7_qlfb2yy7nxtfdwqrqhb63y6k6i:
resolution: {integrity: sha512-tJv/UYMpcc1GN670lLrHOrPizbgPSYbISAEi0+bBj9FztZu4aA0uZSnYqMSFhARdZlGQahh2fe8x23zToHky4w==} resolution: {integrity: sha512-kU3M1YiUhXrfe0xi7aNWVb//VbV73lnaCqipb1VBk1G38y0OcwVcJCL8JPmFiRFM/B32X2CkhWnaSxpme0GSSg==}
peerDependencies: peerDependencies:
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7
'@blocksuite/store': 0.5.0-20230302205056-4385b7a '@blocksuite/store': 0.5.0-20230303192351-13b0dd7
react: '>=18.0.0' react: '>=18.0.0'
react-dom: '>=18.0.0' react-dom: '>=18.0.0'
dependencies: dependencies:
'@blocksuite/blocks': 0.5.0-20230302205056-4385b7a_nalemmmyvzosi3fq3whv32jtge '@blocksuite/blocks': 0.5.0-20230303192351-13b0dd7_5xsxaxbhbu5ctd3lp3pkuuenhi
'@blocksuite/editor': 0.5.0-20230302205056-4385b7a_vp7m7btldpwmiqelfagjfjt2ti '@blocksuite/editor': 0.5.0-20230303192351-13b0dd7_7znjiaiopi2d4jmc57x372ojda
'@blocksuite/global': 0.5.0-20230302205056-4385b7a_lit@2.6.1 '@blocksuite/global': 0.5.0-20230303192351-13b0dd7_lit@2.6.1
'@blocksuite/store': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/store': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
react: 18.2.0 react: 18.2.0
react-dom: 18.2.0_react@18.2.0 react-dom: 18.2.0_react@18.2.0
zustand: 4.3.5_react@18.2.0 zustand: 4.3.5_react@18.2.0
@ -1900,13 +1900,13 @@ packages:
- lit - lit
dev: false dev: false
/@blocksuite/store/0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48: /@blocksuite/store/0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48:
resolution: {integrity: sha512-CYGRvwom1pHEsMkewvBOl+YFyg35J2Kj0wG3+Jouq9o8A+VpW56InHKlearK9Ny/u8SzXo+WSHrcDX4t0iID4Q==} resolution: {integrity: sha512-lyFayQC8WWUykvvjzBt7yie7584KDs0wXd5icUt9aCASXLFcI4+fu7O0HDLkztM+2JAJElWemR8vHLtV1r3Bsg==}
peerDependencies: peerDependencies:
yjs: ^13 yjs: ^13
dependencies: dependencies:
'@blocksuite/global': 0.5.0-20230302205056-4385b7a_lit@2.6.1 '@blocksuite/global': 0.5.0-20230303192351-13b0dd7_lit@2.6.1
'@blocksuite/virgo': 0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48 '@blocksuite/virgo': 0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48
'@types/flexsearch': 0.7.3 '@types/flexsearch': 0.7.3
buffer: 6.0.3 buffer: 6.0.3
flexsearch: 0.7.21 flexsearch: 0.7.21
@ -1926,13 +1926,13 @@ packages:
- utf-8-validate - utf-8-validate
dev: false dev: false
/@blocksuite/virgo/0.5.0-20230302205056-4385b7a_lit@2.6.1+yjs@13.5.48: /@blocksuite/virgo/0.5.0-20230303192351-13b0dd7_lit@2.6.1+yjs@13.5.48:
resolution: {integrity: sha512-21OIhm2wJBExethNu4GF7eX10fcRAZFffx7t621kLEfyKAEryuISOKjv1V80EAQy44unCljKbQo1Lxw0erKFqw==} resolution: {integrity: sha512-5852CfyDOIpaWHdDEUNDiqdISNnG8ggwRR7F7J1ZblkhjYs1sqO/EPhgLXnIRMO2GizP4MqqOZtOb9Jx9EnajQ==}
peerDependencies: peerDependencies:
lit: ^2 lit: ^2
yjs: ^13 yjs: ^13
dependencies: dependencies:
'@blocksuite/global': 0.5.0-20230302205056-4385b7a_lit@2.6.1 '@blocksuite/global': 0.5.0-20230303192351-13b0dd7_lit@2.6.1
lit: 2.6.1 lit: 2.6.1
yjs: 13.5.48 yjs: 13.5.48
zod: 3.20.6 zod: 3.20.6