Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 21, 2025

This PR contains the following updates:

Package Change Age Confidence
com.github.skydoves:balloon-compose 1.6.131.7.3 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

skydoves/balloon (com.github.skydoves:balloon-compose)

v1.7.3

Compare Source

What's Changed

Full Changelog: skydoves/Balloon@1.7.2...1.7.3

v1.7.2

Compare Source

What's Changed

Full Changelog: skydoves/Balloon@1.7.1...1.7.2

v1.7.1

Compare Source

What's Changed

New Contributors

Full Changelog: skydoves/Balloon@1.7.0...1.7.1

v1.7.0

Compare Source

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() },
  ) {
    Text(text = "Show Balloon")
  }
Bug Fixes and Improvements
  • Disable focus to prevent focus highlight on D-pad navigation (#​902)
  • Apply stroke/border in non-clipped mode as well (#​901)
  • Migrate to Subcompose layout to measure layout sizes (#​898)
    • Fixes black screen issue during SplashScreen (#​786)
  • Correct measuring logic with adjusted padding sequences (#​897)
  • Use EXACTLY mode for fixed heights, AT_MOST for wrap content (#​896)
    • Fixes nested layout measurement issues
  • Fix: Clear any theme-applied background tint (#​893)
Deprecations

The following APIs are now deprecated in favor of the new Modifier.balloon() API:

  • Balloon() composable - Use Modifier.balloon() with rememberBalloonState()
  • BalloonWindow interface - Use BalloonState
  • rememberBalloonWindow() - Use rememberBalloonState()
  • awaitBalloonWindows() and AwaitBalloonWindowsDsl

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/com.github.skydoves-balloon-compose-1.x branch from 516000d to 49bd401 Compare December 28, 2025 17:11
@renovate renovate bot changed the title Update dependency com.github.skydoves:balloon-compose to v1.7.0 Update dependency com.github.skydoves:balloon-compose to v1.7.1 Dec 28, 2025
@renovate renovate bot changed the title Update dependency com.github.skydoves:balloon-compose to v1.7.1 Update dependency com.github.skydoves:balloon-compose to v1.7.2 Jan 4, 2026
@renovate renovate bot force-pushed the renovate/com.github.skydoves-balloon-compose-1.x branch from 49bd401 to f525882 Compare January 4, 2026 09:05
@renovate renovate bot force-pushed the renovate/com.github.skydoves-balloon-compose-1.x branch from f525882 to b2d73a5 Compare January 10, 2026 00:59
@renovate renovate bot changed the title Update dependency com.github.skydoves:balloon-compose to v1.7.2 Update dependency com.github.skydoves:balloon-compose to v1.7.3 Jan 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant