mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
feat(editor): frame and image extensions (#11849)
Closes: BS-3196 Closes: BS-3197
This commit is contained in:
@@ -115,8 +115,12 @@
|
||||
"./blocks/embed": "./src/blocks/embed/index.ts",
|
||||
"./blocks/embed/store": "./src/blocks/embed/store.ts",
|
||||
"./blocks/embed/view": "./src/blocks/embed/view.ts",
|
||||
"./blocks/frame": "./src/blocks/frame.ts",
|
||||
"./blocks/image": "./src/blocks/image.ts",
|
||||
"./blocks/frame": "./src/blocks/frame/index.ts",
|
||||
"./blocks/frame/store": "./src/blocks/frame/store.ts",
|
||||
"./blocks/frame/view": "./src/blocks/frame/view.ts",
|
||||
"./blocks/image": "./src/blocks/image/index.ts",
|
||||
"./blocks/image/store": "./src/blocks/image/store.ts",
|
||||
"./blocks/image/view": "./src/blocks/image/view.ts",
|
||||
"./blocks/latex": "./src/blocks/latex.ts",
|
||||
"./blocks/list": "./src/blocks/list.ts",
|
||||
"./blocks/note": "./src/blocks/note.ts",
|
||||
|
||||
1
blocksuite/affine/all/src/blocks/frame/store.ts
Normal file
1
blocksuite/affine/all/src/blocks/frame/store.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-frame/store';
|
||||
1
blocksuite/affine/all/src/blocks/frame/view.ts
Normal file
1
blocksuite/affine/all/src/blocks/frame/view.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-frame/view';
|
||||
1
blocksuite/affine/all/src/blocks/image/store.ts
Normal file
1
blocksuite/affine/all/src/blocks/image/store.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-image/store';
|
||||
1
blocksuite/affine/all/src/blocks/image/view.ts
Normal file
1
blocksuite/affine/all/src/blocks/image/view.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-image/view';
|
||||
Reference in New Issue
Block a user