bumble-tech / appyx

Model-driven navigation + UI components with gesture control for Compose Multiplatform
https://bumble-tech.github.io/appyx/
Apache License 2.0
1.12k stars 61 forks source link

Appyx interactions package reorg #680

Closed zsoltk closed 7 months ago

zsoltk commented 7 months ago

Description

Tidies up packages.

// Moved all classes:
-com.bumble.appyx.interactions.core.gesture.*
-com.bumble.appyx.interactions.ui.gesture.*
+com.bumble.appyx.interactions.gesture.*

// Moved specific classes:
-com.bumble.appyx.interactions.AppyxInteractionContainer
+com.bumble.appyx.interactions.composable.AppyxInteractionContainer

-com.bumble.appyx.interactions.GestureReferencePoint
+com.bumble.appyx.interactions.gesture.GestureReferencePoint

-com.bumble.appyx.interactions.Element
-com.bumble.appyx.interactions.Elements
+com.bumble.appyx.interactions.model.Element
+com.bumble.appyx.interactions.model.Elements

// Moved all remaining packages in core to interactions root:
-com.bumble.appyx.interactions.core.*
+com.bumble.appyx.interactions.*

Added changes to the migration guide.

Checklist