Skip to content

Commit 77741f2

Browse files
committed
Prepare to release 0.14.0
1 parent b9f38a6 commit 77741f2

File tree

8 files changed

+40
-9
lines changed

8 files changed

+40
-9
lines changed

docs/app/docs/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ flutter pub add forui
2121

2222
Flutter does not automatically upgrade minor versions of packages prior to `1.0.0`.
2323

24-
This means that that following entry in your `pubspec.yaml` file will **not** automatically upgrade to `0.13.0`:
24+
This means that that following entry in your `pubspec.yaml` file will **not** automatically upgrade to `0.14.0`:
2525

2626
```yaml filename="pubspec.yaml"
2727
dependencies:
28-
forui: ^0.12.0 // ❌ will not upgrade to 0.13.0
28+
forui: ^0.13.0 // ❌ will not upgrade to 0.14.0
2929
```
3030
3131
To upgrade to the latest version of Forui, run the following command:

docs/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata = {
1515
},
1616
};
1717

18-
const banner = <Banner storageKey="some-key">Forui 0.13.0 is released 🎉</Banner>;
18+
const banner = <Banner storageKey="some-key">Forui 0.14.0 is released 🎉</Banner>;
1919
const navbar = (
2020
<Navbar logo={<Logo />} projectLink="https://github.com/forus-labs/forui" chatLink="https://discord.gg/jrw3qHksjE" />
2121
);

forui/example/lib/sandbox.dart

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,26 @@ class _SandboxState extends State<Sandbox> with SingleTickerProviderStateMixin {
2727

2828
@override
2929
Widget build(BuildContext context) {
30-
return Material(child: Column(spacing: 10, children: const [TextField(), FTimeField.picker(), TextField()]));
30+
return Center(child: FSelect<String>(
31+
divider: FItemDivider.full,
32+
format: (s) => s,
33+
children: [
34+
FSelectSection.fromMap(
35+
label: const Text('Group 1'),
36+
divider: FItemDivider.indented,
37+
items: {
38+
for (final item in ['1A', '1B']) item: item,
39+
},
40+
),
41+
FSelectSection.fromMap(
42+
label: const Text('Group 2'),
43+
items: {
44+
for (final item in ['2A', '2B']) item: item,
45+
},
46+
),
47+
FSelectItem('Item 3', 'Item 3'),
48+
FSelectItem('Item 4', 'Item 4'),
49+
],
50+
));
3151
}
3252
}

forui/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.1
3+
version: 0.14.0
44
homepage: https://forui.dev/
55
documentation: https://forui.dev/docs
66
repository: https://github.com/forus-labs/forui/tree/main/forui
@@ -26,7 +26,7 @@ dependencies:
2626
sdk: flutter
2727
flutter_localizations:
2828
sdk: flutter
29-
forui_assets: ^0.13.0
29+
forui_assets: ^0.14.0
3030
google_fonts: ^6.2.0
3131
intl: any
3232
meta: ^1.11.0

forui_assets/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.14.0
2+
3+
Bump to remain consistent with the `forui` package.
4+
5+
6+
17
## 0.13.0
28

39
* Update icons to Lucide 0.525.0.

forui_assets/pubspec.yaml

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

forui_hooks/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.14.0
2+
3+
Bump Forui dependency from `0.13.0` to `0.14.0`.
4+
5+
16
## 0.13.0
27

38
Bump Forui dependency from `0.12.0` to `0.13.0`.

forui_hooks/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: forui_hooks
22
description: "Companion hooks for Forui, a set of beautifully designed, minimalistic widgets for desktop & touch devices."
3-
version: 0.13.0
3+
version: 0.14.0
44
homepage: https://forui.dev/
55
documentation: https://forui.dev/docs
66
repository: https://github.com/forus-labs/forui/tree/main/forui_hooks
@@ -15,7 +15,7 @@ dependencies:
1515
flutter:
1616
sdk: flutter
1717
flutter_hooks: ^0.21.0
18-
forui: ^0.13.0
18+
forui: ^0.14.0
1919

2020
dev_dependencies:
2121
flutter_test:

0 commit comments

Comments
 (0)