Prepare to release 9.2.10

pull/1710/head v9.2.10
Ellet 1 year ago
parent 6bc1f114d9
commit 41403cbe1c
  1. 5
      CHANGELOG.md
  2. 5
      dart_quill_delta/CHANGELOG.md
  3. 2
      dart_quill_delta/pubspec.yaml
  4. 5
      flutter_quill_extensions/CHANGELOG.md
  5. 2
      flutter_quill_extensions/pubspec.yaml
  6. 5
      flutter_quill_test/CHANGELOG.md
  7. 2
      flutter_quill_test/pubspec.yaml
  8. 4
      lib/flutter_quill.dart
  9. 4
      lib/src/models/documents/nodes/block.dart
  10. 13
      lib/src/models/documents/nodes/container.dart
  11. 2
      lib/src/models/documents/nodes/line.dart
  12. 6
      lib/src/models/documents/nodes/node.dart
  13. 8
      lib/src/widgets/editor/editor.dart
  14. 2
      lib/src/widgets/others/box.dart
  15. 2
      lib/src/widgets/quill/text_line.dart
  16. 2
      pubspec.yaml
  17. 5
      quill_html_converter/CHANGELOG.md
  18. 2
      quill_html_converter/pubspec.yaml
  19. 5
      quill_pdf_converter/CHANGELOG.md
  20. 2
      quill_pdf_converter/pubspec.yaml
  21. 2
      version.dart

@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
## 9.2.10
* Update example screenshots
* Refactor `Container` to `QuillContainer` with backward compatibility
* A workaround fix in history feature
## 9.2.9
* Refactor the type of `Delta().toJson()` to be more clear type

@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
## 9.2.10
* Update example screenshots
* Refactor `Container` to `QuillContainer` with backward compatibility
* A workaround fix in history feature
## 9.2.9
* Refactor the type of `Delta().toJson()` to be more clear type

@ -1,6 +1,6 @@
name: dart_quill_delta
description: A port of quill-js-delta from typescript to dart
version: 9.2.9
version: 9.2.10
homepage: https://github.com/singerdmx/flutter-quill/tree/master/dart_quill_delta/
repository: https://github.com/singerdmx/flutter-quill/tree/master/dart_quill_delta/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
## 9.2.10
* Update example screenshots
* Refactor `Container` to `QuillContainer` with backward compatibility
* A workaround fix in history feature
## 9.2.9
* Refactor the type of `Delta().toJson()` to be more clear type

@ -1,6 +1,6 @@
name: flutter_quill_extensions
description: Embed extensions for flutter_quill including image, video, formula and etc.
version: 9.2.9
version: 9.2.10
homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
## 9.2.10
* Update example screenshots
* Refactor `Container` to `QuillContainer` with backward compatibility
* A workaround fix in history feature
## 9.2.9
* Refactor the type of `Delta().toJson()` to be more clear type

@ -1,6 +1,6 @@
name: flutter_quill_test
description: Test utilities for flutter_quill which includes methods to simplify interacting with the editor in test cases.
version: 9.2.9
version: 9.2.10
homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -1,7 +1,5 @@
library flutter_quill;
import 'src/models/documents/nodes/container.dart';
export '/src/widgets/raw_editor/quill_single_child_scroll_view.dart';
export 'src/extensions/quill_configurations_ext.dart';
export 'src/models/config/quill_configurations.dart';
@ -39,5 +37,3 @@ export 'src/widgets/toolbar/buttons/alignment/select_alignment_button.dart';
export 'src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart';
export 'src/widgets/toolbar/simple_toolbar.dart';
export 'src/widgets/utils/provider.dart';
typedef QuillContainer = Container;

@ -13,7 +13,7 @@ import 'node.dart';
/// - Text Alignment
/// - Text Direction
/// - Code Block
base class Block extends Container<Line?> {
base class Block extends QuillContainer<Line?> {
/// Creates new unmounted [Block].
@override
Node newInstance() => Block();
@ -47,7 +47,7 @@ base class Block extends Container<Line?> {
block.previous is Block &&
prev!.style == block.style) {
block
..moveChildToNewParent(prev as Container<Node?>?)
..moveChildToNewParent(prev as QuillContainer<Node?>?)
..unlink();
block = prev as Block;
}

@ -6,6 +6,11 @@ import 'leaf.dart';
import 'line.dart';
import 'node.dart';
@Deprecated('Please use QuillContainer instead')
/// For backward compatibility
abstract base class Container<T extends Node?> extends QuillContainer<T> {}
/// Container can accommodate other nodes.
///
/// Delegates insert, retain and delete operations to children nodes. For each
@ -14,7 +19,7 @@ import 'node.dart';
///
/// Most of the operation handling logic is implemented by [Line]
/// and [QuillText].
abstract base class Container<T extends Node?> extends Node {
abstract base class QuillContainer<T extends Node?> extends Node {
final LinkedList<Node> _children = LinkedList<Node>();
/// List of children.
@ -64,7 +69,7 @@ abstract base class Container<T extends Node?> extends Node {
}
/// Moves children of this node to [newParent].
void moveChildToNewParent(Container? newParent) {
void moveChildToNewParent(QuillContainer? newParent) {
if (isEmpty) {
return;
}
@ -154,7 +159,7 @@ abstract base class Container<T extends Node?> extends Node {
String toString() => _children.join('\n');
}
/// Result of a child query in a [Container].
/// Result of a child query in a [QuillContainer].
class ChildQuery {
ChildQuery(this.node, this.offset);
@ -163,7 +168,7 @@ class ChildQuery {
/// Starting offset within the child [node] which points at the same
/// character in the document as the original offset passed to
/// [Container.queryChild] method.
/// [QuillContainer.queryChild] method.
final int offset;
/// Returns `true` if there is no child node found, e.g. [node] is `null`.

@ -19,7 +19,7 @@ import 'node.dart';
///
/// When a line contains an embed, it fully occupies the line, no other embeds
/// or text nodes are allowed.
base class Line extends Container<Leaf?> {
base class Line extends QuillContainer<Leaf?> {
@override
Leaf get defaultChild => QuillText();

@ -19,7 +19,7 @@ import 'line.dart';
/// considered [mounted] when the [parent] property is not `null`.
abstract base class Node extends LinkedListEntry<Node> {
/// Current parent of this node. May be null if this node is not mounted.
Container? parent;
QuillContainer? parent;
/// The style attributes
/// Note: This is not the same as style attribute of css
@ -141,12 +141,12 @@ abstract base class Node extends LinkedListEntry<Node> {
}
/// Root node of document tree.
base class Root extends Container<Container<Node?>> {
base class Root extends QuillContainer<QuillContainer<Node?>> {
@override
Node newInstance() => Root();
@override
Container<Node?> get defaultChild => Line();
QuillContainer<Node?> get defaultChild => Line();
@override
Delta toDelta() => children

@ -1503,7 +1503,7 @@ class RenderEditableContainerBox extends RenderBox
RenderBoxContainerDefaultsMixin<RenderEditableBox,
EditableContainerParentData> {
RenderEditableContainerBox({
required container_node.Container container,
required container_node.QuillContainer container,
required this.textDirection,
required this.scrollBottomInset,
required EdgeInsetsGeometry padding,
@ -1514,15 +1514,15 @@ class RenderEditableContainerBox extends RenderBox
addAll(children);
}
container_node.Container _container;
container_node.QuillContainer _container;
TextDirection textDirection;
EdgeInsetsGeometry _padding;
double scrollBottomInset;
EdgeInsets? _resolvedPadding;
container_node.Container get container => _container;
container_node.QuillContainer get container => _container;
void setContainer(container_node.Container c) {
void setContainer(container_node.QuillContainer c) {
if (_container == c) {
return;
}

@ -38,7 +38,7 @@ abstract class RenderContentProxyBox implements RenderBox {
/// [RenderContentProxyBox].
abstract class RenderEditableBox extends RenderBox {
/// The document node represented by this render box.
Container get container;
QuillContainer get container;
/// Returns preferred line height at specified `position` in text.
///

@ -895,7 +895,7 @@ class RenderEditableTextLine extends RenderEditableBox {
}
@override
container_node.Container get container => line;
container_node.QuillContainer get container => line;
double get cursorWidth => cursorCont.style.width;

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.
version: 9.2.9
version: 9.2.10
homepage: https://1o24bbs.com/c/bulletjournal/108/
repository: https://github.com/singerdmx/flutter-quill/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
## 9.2.10
* Update example screenshots
* Refactor `Container` to `QuillContainer` with backward compatibility
* A workaround fix in history feature
## 9.2.9
* Refactor the type of `Delta().toJson()` to be more clear type

@ -1,6 +1,6 @@
name: quill_html_converter
description: A extension for flutter_quill package to add support for dealing with conversion to/from html
version: 9.2.9
version: 9.2.10
homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
## 9.2.10
* Update example screenshots
* Refactor `Container` to `QuillContainer` with backward compatibility
* A workaround fix in history feature
## 9.2.9
* Refactor the type of `Delta().toJson()` to be more clear type

@ -1,6 +1,6 @@
name: quill_pdf_converter
description: A extension for flutter_quill package to add support for dealing with conversion to pdf
version: 9.2.9
version: 9.2.10
homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_pdf_converter/
repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_pdf_converter/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -1 +1 @@
const version = '9.2.9';
const version = '9.2.10';

Loading…
Cancel
Save