mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
init: the first public commit for AFFiNE
This commit is contained in:
27
libs/components/editor-plugins/src/index.ts
Normal file
27
libs/components/editor-plugins/src/index.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { PluginCreator } from '@toeverything/framework/virgo';
|
||||
import {
|
||||
LeftMenuPlugin,
|
||||
InlineMenuPlugin,
|
||||
CommandMenuPlugin,
|
||||
ReferenceMenuPlugin,
|
||||
SelectionGroupPlugin,
|
||||
GroupMenuPlugin,
|
||||
} from './menu';
|
||||
import { TemplatePlugin } from './template';
|
||||
import { FullTextSearchPlugin } from './search';
|
||||
import { AddCommentPlugin } from './comment';
|
||||
// import { PlaceholderPlugin } from './placeholder';
|
||||
|
||||
// import { BlockPropertyPlugin } from './block-property';
|
||||
|
||||
export const plugins: PluginCreator[] = [
|
||||
FullTextSearchPlugin,
|
||||
LeftMenuPlugin,
|
||||
InlineMenuPlugin,
|
||||
CommandMenuPlugin,
|
||||
ReferenceMenuPlugin,
|
||||
TemplatePlugin,
|
||||
SelectionGroupPlugin,
|
||||
AddCommentPlugin,
|
||||
GroupMenuPlugin,
|
||||
];
|
||||
Reference in New Issue
Block a user