Merge branch 'master' into fix/old-feel-and-look

pull/1621/head
Ellet Hnewa 1 year ago committed by GitHub
commit 4fd9ac745c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 3
      example/lib/presentation/quill/my_quill_toolbar.dart
  3. 4
      flutter_quill_extensions/CHANGELOG.md
  4. 2
      flutter_quill_extensions/pubspec.yaml
  5. 4
      flutter_quill_test/CHANGELOG.md
  6. 2
      flutter_quill_test/pubspec.yaml
  7. 2
      lib/flutter_quill.dart
  8. 7
      lib/src/models/themes/quill_icon_theme.dart
  9. 4
      lib/src/widgets/toolbar/buttons/quill_icon_button.dart
  10. 2
      pubspec.yaml
  11. 4
      quill_html_converter/CHANGELOG.md
  12. 2
      quill_html_converter/pubspec.yaml
  13. 2
      version.dart

@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets
## 9.0.3
* Flutter Quill Extensions:

@ -201,11 +201,12 @@ class MyQuillToolbar extends StatelessWidget {
configurations: QuillSimpleToolbarConfigurations(
controller: controller,
showAlignmentButtons: true,
headerStyleType: HeaderStyleType.dropdown,
buttonOptions: QuillSimpleToolbarButtonOptions(
base: QuillToolbarBaseButtonOptions(
// Request editor focus when any button is pressed
afterButtonPressed: focusNode.requestFocus,
globalIconSize: 18,
// globalIconSize: 18,
),
selectHeaderStyleDropdownButton:
const QuillToolbarSelectHeaderStyleDropdownButtonOptions(

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets
## 9.0.3
* Flutter Quill Extensions:
* Fix file image support for web image emebed builder

@ -1,6 +1,6 @@
name: flutter_quill_extensions
description: Embed extensions for flutter_quill including image, video, formula and etc.
version: 9.0.3
version: 9.0.4
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,10 @@
All notable changes to this project will be documented in this file.
## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets
## 9.0.3
* Flutter Quill Extensions:
* Fix file image support for web image emebed builder

@ -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.0.3
version: 9.0.4
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/

@ -33,5 +33,7 @@ export 'src/widgets/raw_editor/raw_editor.dart';
export 'src/widgets/raw_editor/raw_editor_state.dart';
export 'src/widgets/style_widgets/style_widgets.dart';
export 'src/widgets/toolbar/base_toolbar.dart';
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';

@ -2,15 +2,16 @@ import 'package:flutter/material.dart';
@immutable
class QuillIconTheme {
const QuillIconTheme(
{this.iconSelectedColor,
const QuillIconTheme({
this.iconSelectedColor,
this.iconUnselectedColor,
this.iconSelectedFillColor,
this.iconUnselectedFillColor,
this.disabledIconColor,
this.disabledIconFillColor,
this.borderRadius,
this.padding});
this.padding,
});
///The color to use for selected icons in the toolbar
final Color? iconSelectedColor;

@ -14,6 +14,8 @@ class QuillToolbarIconButton extends StatelessWidget {
this.borderRadius = 2,
this.tooltip,
super.key,
this.iconFilledStyle,
this.iconStyle,
});
final VoidCallback? onPressed;
@ -27,6 +29,8 @@ class QuillToolbarIconButton extends StatelessWidget {
final double borderRadius;
final String? tooltip;
final ButtonStyle? iconStyle;
final ButtonStyle? iconFilledStyle;
@override
Widget build(BuildContext context) {
return ConstrainedBox(

@ -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.0.3
version: 9.0.4
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,10 @@
All notable changes to this project will be documented in this file.
## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets
## 9.0.3
* Flutter Quill Extensions:
* Fix file image support for web image emebed builder

@ -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.0.3
version: 9.0.4
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/

@ -1 +1 @@
const version = '9.0.3';
const version = '9.0.4';

Loading…
Cancel
Save