|
1 | 1 | /// AppFlowyEditor library
|
2 | 2 | library appflowy_editor;
|
3 | 3 |
|
4 |
| -export 'src/infra/log.dart'; |
5 |
| -export 'src/render/style/editor_style.dart'; |
| 4 | +export 'src/core/document/attributes.dart'; |
| 5 | +export 'src/core/document/deprecated/document.dart'; |
| 6 | +export 'src/core/document/deprecated/node.dart'; |
| 7 | +export 'src/core/document/document.dart'; |
6 | 8 | export 'src/core/document/node.dart';
|
| 9 | +export 'src/core/document/node_iterator.dart'; |
7 | 10 | export 'src/core/document/path.dart';
|
8 |
| -export 'src/core/location/position.dart'; |
9 |
| -export 'src/core/location/selection.dart'; |
10 |
| -export 'src/core/document/document.dart'; |
11 | 11 | export 'src/core/document/text_delta.dart';
|
12 |
| -export 'src/core/document/attributes.dart'; |
13 | 12 | export 'src/core/legacy/built_in_attribute_keys.dart';
|
14 |
| -export 'src/editor_state.dart'; |
| 13 | +export 'src/core/location/position.dart'; |
| 14 | +export 'src/core/location/selection.dart'; |
15 | 15 | export 'src/core/transform/operation.dart';
|
16 | 16 | export 'src/core/transform/transaction.dart';
|
17 |
| -export 'src/render/selection/selectable.dart'; |
18 |
| -export 'src/render/selection_menu/selection_menu_service.dart'; |
19 |
| -export 'src/service/editor_service.dart'; |
20 |
| -export 'src/service/render_plugin_service.dart'; |
21 |
| -export 'src/service/service.dart'; |
22 |
| -export 'src/service/selection_service.dart'; |
23 |
| -export 'src/service/scroll_service.dart'; |
24 |
| -export 'src/service/toolbar_service.dart'; |
25 |
| -export 'src/service/keyboard_service.dart'; |
26 |
| -export 'src/service/input_service.dart'; |
27 |
| -export 'src/service/shortcut_event/key_mapping.dart'; |
28 |
| -export 'src/service/shortcut_event/keybinding.dart'; |
29 |
| -export 'src/service/shortcut_event/shortcut_event.dart'; |
30 |
| -export 'src/service/shortcut_event/shortcut_event_handler.dart'; |
31 |
| -export 'src/render/rich_text/default_selectable.dart'; |
32 |
| -export 'src/render/rich_text/flowy_rich_text.dart'; |
33 |
| -export 'src/render/rich_text/flowy_rich_text_keys.dart'; |
34 |
| -export 'src/render/selection_menu/selection_menu_widget.dart'; |
35 |
| -export 'src/render/selection_menu/selection_menu_item_widget.dart'; |
36 |
| -export 'src/render/selection_menu/selection_menu_icon.dart'; |
| 17 | +export 'src/editor/block_component/block_component.dart'; |
| 18 | +export 'src/editor/command/transform.dart'; |
| 19 | +export 'src/editor/editor_component/editor_component.dart'; |
| 20 | +export 'src/editor/toolbar/toolbar.dart'; |
| 21 | +export 'src/editor/util/util.dart'; |
| 22 | +export 'src/editor_state.dart'; |
| 23 | +export 'src/extensions/extensions.dart'; |
| 24 | +export 'src/extensions/node_extensions.dart'; |
| 25 | +export 'src/infra/flowy_svg.dart'; |
| 26 | +export 'src/infra/html_converter.dart'; |
| 27 | +export 'src/infra/log.dart'; |
| 28 | +export 'src/infra/mobile/mobile.dart'; |
37 | 29 | export 'src/l10n/l10n.dart';
|
38 |
| -export 'src/render/style/plugin_styles.dart'; |
| 30 | +export 'src/plugins/html/html_document.dart'; |
| 31 | +export 'src/plugins/html/html_document_decoder.dart'; |
| 32 | +export 'src/plugins/html/html_document_encoder.dart'; |
| 33 | +export 'src/plugins/markdown/decoder/delta_markdown_decoder.dart'; |
| 34 | +export 'src/plugins/markdown/document_markdown.dart'; |
39 | 35 | export 'src/plugins/markdown/encoder/delta_markdown_encoder.dart';
|
40 | 36 | export 'src/plugins/markdown/encoder/document_markdown_encoder.dart';
|
| 37 | +export 'src/plugins/markdown/encoder/parser/image_node_parser.dart'; |
41 | 38 | export 'src/plugins/markdown/encoder/parser/node_parser.dart';
|
42 | 39 | export 'src/plugins/markdown/encoder/parser/text_node_parser.dart';
|
43 |
| -export 'src/plugins/markdown/encoder/parser/image_node_parser.dart'; |
44 |
| -export 'src/plugins/markdown/decoder/delta_markdown_decoder.dart'; |
45 |
| -export 'src/plugins/markdown/document_markdown.dart'; |
46 |
| -export 'src/plugins/quill_delta/delta_document_encoder.dart'; |
47 |
| -export 'src/render/toolbar/toolbar_item.dart'; |
| 40 | +export 'src/plugins/quill_delta/quill_delta_encoder.dart'; |
48 | 41 | export 'src/render/action_menu/action_menu.dart';
|
49 | 42 | export 'src/render/action_menu/action_menu_item.dart';
|
50 |
| -export 'src/core/document/node_iterator.dart'; |
51 |
| -export 'src/infra/flowy_svg.dart'; |
52 |
| -export 'src/extensions/extensions.dart'; |
| 43 | +export 'src/render/rich_text/default_selectable.dart'; |
| 44 | +export 'src/render/rich_text/flowy_rich_text.dart'; |
| 45 | +export 'src/render/rich_text/flowy_rich_text_keys.dart'; |
| 46 | +export 'src/render/selection/selectable.dart'; |
| 47 | +export 'src/render/selection_menu/selection_menu_icon.dart'; |
| 48 | +export 'src/render/selection_menu/selection_menu_item_widget.dart'; |
| 49 | +export 'src/render/selection_menu/selection_menu_service.dart'; |
| 50 | +export 'src/render/selection_menu/selection_menu_widget.dart'; |
| 51 | +export 'src/render/style/editor_style.dart'; |
| 52 | +export 'src/render/style/plugin_styles.dart'; |
| 53 | +export 'src/render/toolbar/toolbar_item.dart'; |
53 | 54 | export 'src/service/default_text_operations/format_rich_text_style.dart';
|
54 |
| -export 'src/infra/html_converter.dart'; |
| 55 | +export 'src/service/editor_service.dart'; |
| 56 | +export 'src/service/input_service.dart'; |
55 | 57 | export 'src/service/internal_key_event_handlers/copy_paste_handler.dart';
|
56 |
| - |
57 |
| -export 'src/editor/block_component/block_component.dart'; |
58 |
| -export 'src/editor/editor_component/editor_component.dart'; |
59 |
| -export 'src/editor/command/transform.dart'; |
60 |
| -export 'src/editor/util/util.dart'; |
61 |
| -export 'src/editor/toolbar/toolbar.dart'; |
62 |
| -export 'src/extensions/node_extensions.dart'; |
| 58 | +export 'src/service/keyboard_service.dart'; |
| 59 | +export 'src/service/render_plugin_service.dart'; |
| 60 | +export 'src/service/scroll_service.dart'; |
| 61 | +export 'src/service/selection_service.dart'; |
| 62 | +export 'src/service/service.dart'; |
| 63 | +export 'src/service/shortcut_event/key_mapping.dart'; |
| 64 | +export 'src/service/shortcut_event/keybinding.dart'; |
| 65 | +export 'src/service/shortcut_event/shortcut_event.dart'; |
| 66 | +export 'src/service/shortcut_event/shortcut_event_handler.dart'; |
63 | 67 | export 'src/service/standard_block_components.dart';
|
64 |
| - |
65 |
| -export 'src/core/document/deprecated/node.dart'; |
66 |
| -export 'src/core/document/deprecated/document.dart'; |
67 |
| - |
68 |
| -export 'src/plugins/html/html_document_decoder.dart'; |
69 |
| -export 'src/plugins/html/html_document_encoder.dart'; |
70 |
| -export 'src/plugins/html/html_document.dart'; |
71 |
| -export 'src/infra/mobile/mobile.dart'; |
| 68 | +export 'src/service/toolbar_service.dart'; |
0 commit comments