You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18-2Lines changed: 18 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
13
13
### Changed
14
14
15
-
- Improve changes application from TextInputClient [#2509](https://github.com/singerdmx/flutter-quill/pull/2509).
15
+
- Replace `TextInputClient` with `DeltaTextInputClient`[#2509](https://github.com/singerdmx/flutter-quill/pull/2509).
16
+
17
+
## [11.2.0] - 2025-03-26
18
+
19
+
### Added
20
+
21
+
- Cache for `toPlainText` in `Document` class to avoid unnecessary text computing [#2482](https://github.com/singerdmx/flutter-quill/pull/2482).
22
+
23
+
## [11.1.2] - 2025-03-24
24
+
25
+
### Fixed
26
+
27
+
-**[iOS]**`QuillEditor` doesn't respect the system keyboard brightness by default [#2522](https://github.com/singerdmx/flutter-quill/pull/2522).
28
+
- Add a default empty list for `characterShortcutEvents` and `spaceShortcutEvents` in `QuillRawEditorConfig`[#2522](https://github.com/singerdmx/flutter-quill/pull/2522).
29
+
- Deprecate `QuillEditorState.configurations` in favor of `QuillEditorState.config`[#2522](https://github.com/singerdmx/flutter-quill/pull/2522).
16
30
17
31
## [11.1.1] - 2025-03-19
18
32
@@ -124,7 +138,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
124
138
- Apple-specific font dependency for subscript and superscript functionality from the example.
125
139
-**BREAKING**: The [`super_clipboard`](https://pub.dev/packages/super_clipboard) plugin, To restore legacy behavior for `super_clipboard`, use [`flutter_quill_extensions`](https://pub.dev/packages/flutter_quill_extensions) package and `FlutterQuillExtensions.useSuperClipboardPlugin()`.
/// Defaults to Material/Cupertino App Brightness.
314
314
///
315
-
/// The keyboardd appearance will set using the following:
315
+
/// The keyboard appearance will set using the following:
316
316
///
317
317
/// ```dart
318
-
/// widget.configurations.keyboardAppearance ??
318
+
/// widget.config.keyboardAppearance ??
319
319
/// CupertinoTheme.maybeBrightnessOf(context) ??
320
320
/// Theme.of(context).brightness
321
321
/// ```
322
322
///
323
323
/// See also: https://github.com/flutter/flutter/blob/06b9f7ba0bef2b5b44a643c73f4295a096de1202/packages/flutter/lib/src/services/text_input.dart#L621-L626
324
324
/// and [QuillRawEditorConfig.keyboardAppearance]
325
-
finalBrightness keyboardAppearance;
325
+
finalBrightness? keyboardAppearance;
326
326
327
327
/// The [ScrollPhysics] to use when vertically scrolling the input.
0 commit comments