Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Bumps com.github.skydoves:balloon from 1.6.13 to 1.7.0.

Release notes

Sourced from com.github.skydoves:balloon's releases.

1.7.0

Release Notes for Balloon 1.7.0.

New Features

  • Introduce Modifier.balloon() and BalloonState for Jetpack Compose (#904)
    • New modifier-based API for attaching balloon tooltips to composables
    • rememberBalloonState() for managing balloon state
    • Deprecates the Balloon() composable and BalloonWindow interface
  • Support individual properties for BalloonOverlayRoundRect (#903)
    • Allows setting individual corner radii for overlay round rectangles
  • Implement effective arrow sizes (#900)
    • Better arrow size calculations for improved positioning

Now, the Balloon composable function will be deprecated. Migration guides from Balloon composable to Modifier.balloon():

Before (Deprecated)

  var balloonWindow: BalloonWindow? by remember { mutableStateOf(null) }
Balloon(
builder = builder,
onBalloonWindowInitialized = { balloonWindow = it },
onComposedAnchor = { balloonWindow?.showAlignTop() },
balloonContent = {
Text(text = "Tooltip content")
},
) {
Button(onClick = { balloonWindow?.showAlignTop() }) {
Text(text = "Show Balloon")
}
}

After (New API)

  val balloonState = rememberBalloonState(builder)
LaunchedEffect(Unit) {
balloonState.showAlignTop()
}
Button(
modifier = Modifier.balloon(balloonState) {
Text(text = "Tooltip content")
},
onClick = { balloonState.showAlignTop() },
) {
</tr></table>

... (truncated)

Commits
  • 55ec8ca Prepare for release 1.7.0
  • 149d442 Update README file
  • 546cd5b Introduce Modifier.balloon() and BalloonState, deprecate Balloon() composable...
  • 8a1742c Update compatibilities
  • ce73979 Support individual properties for BalloonOverlayRoundRect (#903)
  • 159635c Disable focus to prevent focus highlight on D-pad navigation (#902)
  • 8abd933 Apply stroke/border in non-clipped mode as well (#901)
  • 9217bb1 Implement effective arrow sizes (#900)
  • ec5bb04 Polish the demo screens (#899)
  • 237f480 Migrate to Subcompose layout to measure layout sizes (#898)
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 [com.github.skydoves:balloon](https://github.com/skydoves/balloon) from 1.6.13 to 1.7.0.
- [Release notes](https://github.com/skydoves/balloon/releases)
- [Commits](skydoves/Balloon@1.6.13...1.7.0)

---
updated-dependencies:
- dependency-name: com.github.skydoves:balloon
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file Minor Minor stuff labels Dec 22, 2025
@Williamrai Williamrai merged commit 5881bce into main Dec 22, 2025
2 checks passed
@Williamrai Williamrai deleted the dependabot/gradle/com.github.skydoves-balloon-1.7.0 branch December 22, 2025 20:21
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 Minor Minor stuff

Development

Successfully merging this pull request may close these issues.

1 participant

Morty Proxy This is a proxified and sanitized view of the page, visit original site.