Fix relative path

pull/239/head
Xin Yao 4 years ago
parent f0459ba4d5
commit c0f0ded452
  1. 2
      lib/models/documents/attribute.dart
  2. 2
      lib/models/documents/document.dart
  3. 2
      lib/models/documents/history.dart
  4. 2
      lib/models/documents/style.dart
  5. 2
      lib/models/quill_delta.dart
  6. 2
      lib/models/rules/delete.dart
  7. 2
      lib/models/rules/format.dart
  8. 2
      lib/models/rules/insert.dart
  9. 2
      lib/models/rules/rule.dart
  10. 2
      lib/utils/color.dart
  11. 2
      lib/utils/diff_delta.dart
  12. 2
      lib/widgets/box.dart
  13. 2
      lib/widgets/controller.dart
  14. 2
      lib/widgets/cursor.dart
  15. 2
      lib/widgets/default_styles.dart
  16. 2
      lib/widgets/delegate.dart
  17. 2
      lib/widgets/editor.dart
  18. 2
      lib/widgets/image.dart
  19. 2
      lib/widgets/keyboard_listener.dart
  20. 2
      lib/widgets/proxy.dart
  21. 2
      lib/widgets/raw_editor.dart
  22. 2
      lib/widgets/simple_viewer.dart
  23. 2
      lib/widgets/text_block.dart
  24. 2
      lib/widgets/text_line.dart
  25. 2
      lib/widgets/text_selection.dart
  26. 2
      lib/widgets/toolbar.dart

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/documents/attribute.dart';
export '../../src/models/documents/attribute.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/documents/document.dart';
export '../../src/models/documents/document.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/documents/history.dart';
export '../../src/models/documents/history.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/documents/style.dart';
export '../../src/models/documents/style.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/quill_delta.dart';
export '../src/models/quill_delta.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/rules/delete.dart';
export '../../src/models/rules/delete.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/rules/format.dart';
export '../../src/models/rules/format.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/rules/insert.dart';
export '../../src/models/rules/insert.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/models/rules/rule.dart';
export '../../src/models/rules/rule.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/utils/color.dart';
export '../src/utils/color.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../../src/utils/diff_delta.dart';
export '../src/utils/diff_delta.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/box.dart';
export '../src/widgets/box.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/controller.dart';
export '../src/widgets/controller.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/cursor.dart';
export '../src/widgets/cursor.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/default_styles.dart';
export '../src/widgets/default_styles.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/delegate.dart';
export '../src/widgets/delegate.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/editor.dart';
export '../src/widgets/editor.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/image.dart';
export '../src/widgets/image.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/keyboard_listener.dart';
export '../src/widgets/keyboard_listener.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/proxy.dart';
export '../src/widgets/proxy.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/raw_editor.dart';
export '../src/widgets/raw_editor.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/simple_viewer.dart';
export '../src/widgets/simple_viewer.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/text_block.dart';
export '../src/widgets/text_block.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/text_line.dart';
export '../src/widgets/text_line.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/text_selection.dart';
export '../src/widgets/text_selection.dart';

@ -1,3 +1,3 @@
/// TODO: Remove this file in the next breaking release, because implementation
/// files should be located in the src folder, https://bit.ly/3fA23Yz.
export '../../src/widgets/toolbar.dart';
export '../src/widgets/toolbar.dart';

Loading…
Cancel
Save