Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 22, 2025

This PR contains the following updates:

Package Change Age Confidence
com.github.skydoves:balloon-compose 1.6.13 -> 1.7.0 age confidence

Release Notes

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

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 - "after 9am every weekday" in timezone Asia/Seoul, 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 requested a review from a team as a code owner December 22, 2025 01:51
@renovate renovate bot requested review from Daljyeong, Hyobeen-Park, angryPodo and nahy-512 and removed request for a team December 22, 2025 01:51
@angryPodo angryPodo merged commit 1cc83ac into develop Dec 22, 2025
2 checks passed
@angryPodo angryPodo deleted the renovate/ballooncompose branch December 22, 2025 16:47
@renovate renovate bot changed the title fix(deps): update dependency com.github.skydoves:balloon-compose to v1.7.0 fix(deps): update dependency com.github.skydoves:balloon-compose to v1.7.0 - autoclosed Dec 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants