mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-07 01:09:54 +08:00
feat(editor): scaffolding store and view manager in affine (#11840)
Closes: BS-3254
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
"@blocksuite/affine-block-surface-ref": "workspace:*",
|
||||
"@blocksuite/affine-block-table": "workspace:*",
|
||||
"@blocksuite/affine-components": "workspace:*",
|
||||
"@blocksuite/affine-ext-loader": "workspace:*",
|
||||
"@blocksuite/affine-fragment-doc-title": "workspace:*",
|
||||
"@blocksuite/affine-fragment-frame-panel": "workspace:*",
|
||||
"@blocksuite/affine-fragment-outline": "workspace:*",
|
||||
@@ -71,6 +72,7 @@
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./effects": "./src/effects.ts",
|
||||
"./ext-loader": "./src/ext-loader/index.ts",
|
||||
"./std": "./src/std/index.ts",
|
||||
"./std/gfx": "./src/std/gfx.ts",
|
||||
"./std/inline": "./src/std/inline.ts",
|
||||
@@ -86,12 +88,24 @@
|
||||
"./global/lit": "./src/global/lit.ts",
|
||||
"./store": "./src/store/index.ts",
|
||||
"./store/test": "./src/store/test.ts",
|
||||
"./blocks/attachment": "./src/blocks/attachment.ts",
|
||||
"./blocks/bookmark": "./src/blocks/bookmark.ts",
|
||||
"./blocks/callout": "./src/blocks/callout.ts",
|
||||
"./blocks/code": "./src/blocks/code.ts",
|
||||
"./blocks/data-view": "./src/blocks/data-view.ts",
|
||||
"./blocks/database": "./src/blocks/database.ts",
|
||||
"./blocks/attachment": "./src/blocks/attachment/index.ts",
|
||||
"./blocks/attachment/store": "./src/blocks/attachment/store.ts",
|
||||
"./blocks/attachment/view": "./src/blocks/attachment/view.ts",
|
||||
"./blocks/bookmark": "./src/blocks/bookmark/index.ts",
|
||||
"./blocks/bookmark/store": "./src/blocks/bookmark/store.ts",
|
||||
"./blocks/bookmark/view": "./src/blocks/bookmark/view.ts",
|
||||
"./blocks/callout": "./src/blocks/callout/index.ts",
|
||||
"./blocks/callout/store": "./src/blocks/callout/store.ts",
|
||||
"./blocks/callout/view": "./src/blocks/callout/view.ts",
|
||||
"./blocks/code": "./src/blocks/code/index.ts",
|
||||
"./blocks/code/store": "./src/blocks/code/store.ts",
|
||||
"./blocks/code/view": "./src/blocks/code/view.ts",
|
||||
"./blocks/data-view": "./src/blocks/data-view/index.ts",
|
||||
"./blocks/data-view/store": "./src/blocks/data-view/store.ts",
|
||||
"./blocks/data-view/view": "./src/blocks/data-view/view.ts",
|
||||
"./blocks/database": "./src/blocks/database/index.ts",
|
||||
"./blocks/database/store": "./src/blocks/database/store.ts",
|
||||
"./blocks/database/view": "./src/blocks/database/view.ts",
|
||||
"./blocks/divider": "./src/blocks/divider.ts",
|
||||
"./blocks/edgeless-text": "./src/blocks/edgeless-text.ts",
|
||||
"./blocks/embed": "./src/blocks/embed.ts",
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-attachment/store';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-attachment/view';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-bookmark/store';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-bookmark/view';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-callout/store';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-callout/view';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-code';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-code/store';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-code/view';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-data-view';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-data-view/store';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-data-view/view';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-database';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-database/store';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-block-database/view';
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@blocksuite/affine-ext-loader';
|
||||
@@ -27,6 +27,7 @@
|
||||
{ "path": "../blocks/surface-ref" },
|
||||
{ "path": "../blocks/table" },
|
||||
{ "path": "../components" },
|
||||
{ "path": "../ext-loader" },
|
||||
{ "path": "../fragments/doc-title" },
|
||||
{ "path": "../fragments/frame-panel" },
|
||||
{ "path": "../fragments/outline" },
|
||||
|
||||
Reference in New Issue
Block a user