forked from AppFlowy-IO/appflowy-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappflowy_editor.dart
32 lines (31 loc) · 1.42 KB
/
appflowy_editor.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/// AppFlowyEditor library
library appflowy_editor;
// core part, including document, node, selection, etc.
export 'src/core/core.dart';
export 'src/editor/block_component/rich_text/appflowy_rich_text.dart';
export 'src/editor/block_component/rich_text/appflowy_rich_text_keys.dart';
export 'src/editor/block_component/rich_text/default_selectable_mixin.dart';
export 'src/editor/block_component/table_block_component/table.dart';
// editor part, including editor component, block component, etc.
export 'src/editor/editor.dart';
export 'src/editor/find_replace_menu/find_and_replace.dart';
export 'src/editor/l10n/appflowy_editor_l10n.dart';
export 'src/editor/selection_menu/selection_menu.dart';
// editor state
export 'src/editor_state.dart';
// extension
export 'src/extensions/extensions.dart';
export 'src/infra/clipboard.dart';
export 'src/infra/flowy_svg.dart';
export 'src/infra/log.dart';
export 'src/infra/mobile/mobile.dart';
export 'src/l10n/l10n.dart';
// plugins part, including decoder and encoder.
export 'src/plugins/plugins.dart';
export 'src/render/selection/selectable.dart';
export 'src/render/toolbar/toolbar_item.dart';
export 'src/service/context_menu/context_menu.dart';
export 'src/service/default_text_operations/format_rich_text_style.dart';
export 'src/service/internal_key_event_handlers/copy_paste_handler.dart';
export 'src/service/shortcut_event/key_mapping.dart';
export 'src/service/shortcut_event/keybinding.dart';