Skip to content

Commit 9fac003

Browse files
committed
Prepare to release 0.13.1
1 parent af3d7cd commit 9fac003

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

forui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.13.1
2+
3+
* Fix `FSelectTile` mixing in `FItemMixin` instead of `FTileMixin`.
4+
* Fix `SelectMenuTile` mixing in `FItemMixin` instead of `FTileMixin`.
5+
6+
17
## 0.13.0
28
This update focuses on polishing & improving the usability of existing widgets.
39

forui/lib/src/widgets/select_menu_tile.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ typedef FSelectMenuTileController<T> = FMultiValueNotifier<T>;
2121
/// * https://forui.dev/docs/tile/select-menu-tile for working examples.
2222
/// * [FSelectTile] for a single select tile.
2323
/// * [FSelectMenuTileStyle] for customizing a select menu tile's appearance.
24-
class FSelectMenuTile<T> extends FormField<Set<T>> with FItemMixin, FFormFieldProperties<Set<T>> {
24+
class FSelectMenuTile<T> extends FormField<Set<T>> with FTileMixin, FFormFieldProperties<Set<T>> {
2525
static Widget _builder<T>(BuildContext _, Set<dynamic>? _, Widget? child) => child ?? const SizedBox();
2626

2727
/// The controller that controls the selected tiles. Defaults to `FSelectMenuTileController.radio`.

forui/lib/src/widgets/select_tile_group/select_tile.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import 'package:forui/forui.dart';
1111
/// * https://forui.dev/docs/tile/select-tile-group for working examples.
1212
/// * [FSelectTileGroup] for grouping tiles together.
1313
/// * [FTileStyle] for customizing a select tile's appearance.
14-
class FSelectTile<T> extends StatelessWidget with FItemMixin {
14+
class FSelectTile<T> extends StatelessWidget with FTileMixin {
1515
/// The style.
1616
///
1717
/// ## CLI

forui/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: forui
22
description: Beautifully designed, minimalistic widgets for desktop & touch devices.
3-
version: 0.13.0
3+
version: 0.13.1
44
homepage: https://forui.dev/
55
documentation: https://forui.dev/docs
66
repository: https://github.com/forus-labs/forui/tree/main/forui

0 commit comments

Comments
 (0)