Skip to content

Commit d260631

Browse files
docs: update changes
1 parent 33ae936 commit d260631

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# 10.0.0
2+
3+
## BREAKING CHANGES
4+
5+
* refactor: #1456 remove deprecated code by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1465
6+
* Solve issue #1456
7+
* Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead.
8+
* [FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead.
9+
* Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead.
10+
* Easy way! Only need execute `dart fix --apply` on your project to fix the following changes:
11+
* Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
12+
* Rename FormBuilderFilterChip to FormBuilderFilterChips.
13+
* [FormBuilderFilterChip] Remove maxChips property.
14+
* [FormBuilderDateTimePicker] Remove resetIcon property.
15+
* [FormBuilder] Remove onPopInvoked property.
16+
17+
## Features
18+
19+
* feat: #1455 improve input decoration enabled property by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1464
20+
* Solve issue #1455
21+
* feat: #1458 improve autovalidate modes by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1460
22+
* Solves issues #1364 and #1457
23+
* feat: #1297 Improve focus behavior by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1453
24+
* Solves issues #1296, #1290, #1301, #1304 and #1292
25+
126
# 10.0.0-dev.3
227

328
## BREAKING CHANGES
@@ -7,7 +32,7 @@
732
* Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead.
833
* [FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead.
934
* Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead.
10-
* Easy way! Only need execute `dart fix --apply` on your project.
35+
* Easy way! Only need execute `dart fix --apply` on your project to fix the following changes:
1136
* Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
1237
* Rename FormBuilderFilterChip to FormBuilderFilterChips.
1338
* [FormBuilderFilterChip] Remove maxChips property.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ class _ClearFormBuilderTextFieldState
414414
- Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead
415415
- [FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead
416416
- Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead
417-
- Easy way! Only need execute `dart fix --apply` on your project.
417+
- Easy way! Only need execute `dart fix --apply` on your project to fix the following changes:
418418
- Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
419419
- Rename FormBuilderFilterChip to FormBuilderFilterChips.
420420
- [FormBuilderFilterChip] Remove maxChips property.

0 commit comments

Comments
 (0)