-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: sync the latest code from AppFlowy (#41)
* chore: sync latest code from appflowy * chore: sync latest tests from appflowy
- Loading branch information
Showing
32 changed files
with
723 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,51 @@ | ||
/// AppFlowyEditor library | ||
library appflowy_editor; | ||
|
||
export 'src/commands/command_extension.dart'; | ||
export 'src/commands/text/text_commands.dart'; | ||
export 'src/core/document/attributes.dart'; | ||
export 'src/core/document/document.dart'; | ||
export 'src/infra/log.dart'; | ||
export 'src/render/style/editor_style.dart'; | ||
export 'src/core/document/node.dart'; | ||
export 'src/core/document/node_iterator.dart'; | ||
export 'src/core/document/path.dart'; | ||
export 'src/core/document/text_delta.dart'; | ||
export 'src/core/legacy/built_in_attribute_keys.dart'; | ||
export 'src/core/location/position.dart'; | ||
export 'src/core/location/selection.dart'; | ||
export 'src/core/document/document.dart'; | ||
export 'src/core/document/text_delta.dart'; | ||
export 'src/core/document/attributes.dart'; | ||
export 'src/core/legacy/built_in_attribute_keys.dart'; | ||
export 'src/editor_state.dart'; | ||
export 'src/core/transform/operation.dart'; | ||
export 'src/core/transform/transaction.dart'; | ||
export 'src/editor_state.dart'; | ||
export 'src/render/selection/selectable.dart'; | ||
export 'src/render/selection_menu/selection_menu_service.dart'; | ||
export 'src/service/editor_service.dart'; | ||
export 'src/service/render_plugin_service.dart'; | ||
export 'src/service/service.dart'; | ||
export 'src/service/selection_service.dart'; | ||
export 'src/service/scroll_service.dart'; | ||
export 'src/service/toolbar_service.dart'; | ||
export 'src/service/keyboard_service.dart'; | ||
export 'src/service/input_service.dart'; | ||
export 'src/service/shortcut_event/keybinding.dart'; | ||
export 'src/service/shortcut_event/shortcut_event.dart'; | ||
export 'src/service/shortcut_event/shortcut_event_handler.dart'; | ||
export 'src/extensions/attributes_extension.dart'; | ||
export 'src/extensions/node_extensions.dart'; | ||
export 'src/infra/log.dart'; | ||
export 'src/render/rich_text/default_selectable.dart'; | ||
export 'src/render/rich_text/flowy_rich_text.dart'; | ||
export 'src/render/selection_menu/selection_menu_widget.dart'; | ||
export 'src/render/selection_menu/selection_menu_item_widget.dart'; | ||
export 'src/l10n/l10n.dart'; | ||
export 'src/plugins/markdown/decoder/delta_markdown_decoder.dart'; | ||
export 'src/plugins/markdown/document_markdown.dart'; | ||
export 'src/render/style/plugin_styles.dart'; | ||
export 'src/plugins/markdown/encoder/delta_markdown_encoder.dart'; | ||
export 'src/plugins/markdown/encoder/document_markdown_encoder.dart'; | ||
export 'src/plugins/markdown/encoder/parser/image_node_parser.dart'; | ||
export 'src/plugins/markdown/encoder/parser/node_parser.dart'; | ||
export 'src/plugins/markdown/encoder/parser/text_node_parser.dart'; | ||
export 'src/plugins/markdown/encoder/parser/image_node_parser.dart'; | ||
export 'src/plugins/markdown/decoder/delta_markdown_decoder.dart'; | ||
export 'src/plugins/markdown/document_markdown.dart'; | ||
export 'src/plugins/quill_delta/delta_document_encoder.dart'; | ||
export 'src/commands/text/text_commands.dart'; | ||
export 'src/commands/command_extension.dart'; | ||
export 'src/render/toolbar/toolbar_item.dart'; | ||
export 'src/extensions/node_extensions.dart'; | ||
export 'src/render/action_menu/action_menu.dart'; | ||
export 'src/render/action_menu/action_menu_item.dart'; | ||
export 'src/render/rich_text/default_selectable.dart'; | ||
export 'src/render/rich_text/flowy_rich_text.dart'; | ||
export 'src/render/selection/selectable.dart'; | ||
export 'src/render/selection_menu/selection_menu_item_widget.dart'; | ||
export 'src/render/selection_menu/selection_menu_service.dart'; | ||
export 'src/render/selection_menu/selection_menu_widget.dart'; | ||
export 'src/render/style/editor_style.dart'; | ||
export 'src/render/style/plugin_styles.dart'; | ||
export 'src/render/toolbar/toolbar_item.dart'; | ||
export 'src/service/editor_service.dart'; | ||
export 'src/service/input_service.dart'; | ||
export 'src/service/keyboard_service.dart'; | ||
export 'src/service/render_plugin_service.dart'; | ||
export 'src/service/scroll_service.dart'; | ||
export 'src/service/selection_service.dart'; | ||
export 'src/service/service.dart'; | ||
export 'src/service/shortcut_event/keybinding.dart'; | ||
export 'src/service/shortcut_event/shortcut_event.dart'; | ||
export 'src/service/shortcut_event/shortcut_event_handler.dart'; | ||
export 'src/service/toolbar_service.dart'; | ||
export 'src/core/document/node_iterator.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.