Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 30, 2023

Bumps fluent_ui from 3.10.0 to 4.2.0.

Release notes

Sourced from fluent_ui's releases.

v4.2.0

What's Changed

New Contributors

Full Changelog: bdlukaa/fluent_ui@v4.1.4...v4.2.0

4.1.4

What's Changed

  • FlyoutListTile can be used outside of a flyout (#650)
  • Add uk localization (#647)
  • Add swedish localization (#655)
  • Add key parameter to NavigationPaneItem and all its instances (#656)
  • Ensure fontFamily is inherit in some widgets (654)
  • Add Flyout.navigatorKey (#538)
  • Add Card.borderColor (#643)
  • Avoid overflow in DatePicker and TimePicker popup (#663)
  • Ensure sticky indicator is mounted before updating (#670)
  • Date and Time pickers popup are now positioned correctly in RTL mode (#675)
  • It's now possible to navigate through AutoSuggestBox items by long pressing arrow up and down keys
  • Do not clear focus scope after selecting an item in AutoSuggestBox (#671)
  • AutoSuggestBox's trailingIcon now comes after the close button
  • MINOR BREAK TextBox.clearGlobalKey was remove, since it was not used
  • Add AutoSuggestBox.unfocusedColor and TextFormBox.unfocusedColor
  • Implement displayInfoBar, which shows an info bar as an overlay (#673)
  • Implement ThemeData.extensions (#674)

New Contributors

Full Changelog: bdlukaa/fluent_ui@v4.1.2...v4.1.4

4.1.2

  • PageHeader now gives appropriate bounds to its commandBar (#642)
  • Ensure NavigationView body state is not lost when resizing window
  • Ensure TabView' tabs' state are not lost when changing selected tab (#607)
  • Do not block text field tap (#343)
  • Do not duplicate trailing in FlyoutContent (#487)

... (truncated)

Changelog

Sourced from fluent_ui's changelog.

4.2.0

  • Flyouts rework (#690):

    Flyouts were reworked to match the design and behavior of native WinUI 3

    BREAKING Removed Flyout widget. To replace it, FlyoutTarget and FlyoutController were created. FlyoutTarget works like a target, which the given controller will use to display the flyout


    Migration guide:

    Before:

    final controller = FlyoutController();
    Flyout(
    controller: controller,
    placement: ...,
    position: ...,
    verticalOffset: ...,
    onOpen: ...,
    onClose: ...,
    child: Button(
    onPressed: controller,
    child: Text('Tap me'),
    ),
    ),

    Now:

    final controller = FlyoutController();
    FlyoutTarget(
    controller: controller,
    child: Button(
    onPressed: _showFlyout,
    child: Text('Tap me'),
    ),
    ),
    void _showFlyout() async {
    await controller.showFlyout(
    barrierDismissible: ...,
    dismissWithEsc: ..., // NEW
    dismissOnPointerMoveAway: ..., // NEW
    placementMode: ...,
    autoModeConfiguration: ..., // NEW
    forceAvailableSpace: ..., // NEW

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [fluent_ui](https://github.com/bdlukaa/fluent_ui) from 3.10.0 to 4.2.0.
- [Release notes](https://github.com/bdlukaa/fluent_ui/releases)
- [Changelog](https://github.com/bdlukaa/fluent_ui/blob/master/CHANGELOG.md)
- [Commits](bdlukaa/fluent_ui@v.3.10.0...v4.2.0)

---
updated-dependencies:
- dependency-name: fluent_ui
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 30, 2023
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 14, 2023

Superseded by #538.

@dependabot dependabot bot closed this Feb 14, 2023
@dependabot dependabot bot deleted the dependabot/pub/simplistic_calculator/fluent_ui-4.2.0 branch February 14, 2023 00:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant