diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e369332..652ae647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -## 1.9.2 - 06-January-2021 +1.9.3 - 10-January-2021 + +-- REVERT : Reverting back to 1.9.1 as 1.9.3. 1.9.2 will become 2.0.0 + +1.9.2 - 06-January-2021 -- #267 : Remove undeeded typecasts and add String types diff --git a/example/.flutter-plugins-dependencies b/example/.flutter-plugins-dependencies index 47ac0d80..521c0167 100644 --- a/example/.flutter-plugins-dependencies +++ b/example/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"flutter_keyboard_visibility","path":"/Users/sjm/Development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_keyboard_visibility-4.0.2/","dependencies":[]}],"android":[{"name":"flutter_keyboard_visibility","path":"/Users/sjm/Development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_keyboard_visibility-4.0.2/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[{"name":"flutter_keyboard_visibility_web","path":"/Users/sjm/Development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_keyboard_visibility_web-1.0.1/","dependencies":[]}]},"dependencyGraph":[{"name":"flutter_keyboard_visibility","dependencies":["flutter_keyboard_visibility_web"]},{"name":"flutter_keyboard_visibility_web","dependencies":[]}],"date_created":"2020-12-03 12:46:43.458090","version":"1.22.4"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"flutter_keyboard_visibility","path":"/Users/sjm/Development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_keyboard_visibility-4.0.2/","dependencies":[]}],"android":[{"name":"flutter_keyboard_visibility","path":"/Users/sjm/Development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_keyboard_visibility-4.0.2/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[{"name":"flutter_keyboard_visibility_web","path":"/Users/sjm/Development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_keyboard_visibility_web-1.0.1/","dependencies":[]}]},"dependencyGraph":[{"name":"flutter_keyboard_visibility","dependencies":["flutter_keyboard_visibility_web"]},{"name":"flutter_keyboard_visibility_web","dependencies":[]}],"date_created":"2021-01-10 13:19:19.450772","version":"1.22.5"} \ No newline at end of file diff --git a/example/pubspec.lock b/example/pubspec.lock index 23dadcea..6d63ab31 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -94,7 +94,7 @@ packages: path: ".." relative: true source: path - version: "1.9.1" + version: "1.9.3" flutter_web_plugins: dependency: transitive description: flutter diff --git a/lib/cupertino_flutter_typeahead.dart b/lib/cupertino_flutter_typeahead.dart index 48f7cd15..d74f7ceb 100644 --- a/lib/cupertino_flutter_typeahead.dart +++ b/lib/cupertino_flutter_typeahead.dart @@ -1142,7 +1142,7 @@ class CupertinoSuggestionsBoxDecoration { /// Supply an instance of this class to the [TypeAhead.textFieldConfiguration] /// property to configure the displayed text field. See [documentation](https://docs.flutter.io/flutter/cupertino/CupertinoTextField-class.html) /// for more information on properties. -class CupertinoTextFieldConfiguration { +class CupertinoTextFieldConfiguration { final TextEditingController controller; final FocusNode focusNode; final BoxDecoration decoration; diff --git a/lib/flutter_typeahead.dart b/lib/flutter_typeahead.dart index 16da0873..326f6677 100644 --- a/lib/flutter_typeahead.dart +++ b/lib/flutter_typeahead.dart @@ -1322,7 +1322,7 @@ class SuggestionsBoxDecoration { /// Supply an instance of this class to the [TypeAhead.textFieldConfiguration] /// property to configure the displayed text field -class TextFieldConfiguration { +class TextFieldConfiguration { /// The decoration to show around the text field. /// /// Same as [TextField.decoration](https://docs.flutter.io/flutter/material/TextField/decoration.html) @@ -1431,13 +1431,13 @@ class TextFieldConfiguration { /// Called when the text being edited changes. /// /// Same as [TextField.onChanged](https://docs.flutter.io/flutter/material/TextField/onChanged.html) - final ValueChanged onChanged; + final ValueChanged onChanged; /// Called when the user indicates that they are done editing the text in the /// field. /// /// Same as [TextField.onSubmitted](https://docs.flutter.io/flutter/material/TextField/onSubmitted.html) - final ValueChanged onSubmitted; + final ValueChanged onSubmitted; /// The color to use when painting the cursor. /// @@ -1525,8 +1525,8 @@ class TextFieldConfiguration { {InputDecoration decoration, TextStyle style, TextEditingController controller, - ValueChanged onChanged, - ValueChanged onSubmitted, + ValueChanged onChanged, + ValueChanged onSubmitted, bool obscureText, bool maxLengthEnforced, int maxLength, diff --git a/pubspec.yaml b/pubspec.yaml index bd95f1b9..4a1514dc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: flutter_typeahead -version: 1.9.2 +version: 1.9.3 description: Ahighly customizable typeahead (autocomplete) text input field for Flutter homepage: https://github.com/AbdulRahmanAlHamali/flutter_typeahead