I have a data class that is at presentation layer, that references my `data class Url(val value: String)` that is from a different module ``` data class AttemptsExceededViewModel.State( val eShopOfferUrl: Url? = null ) ``` the compose output is ``` unstable class foo.bar.AttemptsExceededViewModel.State { unstable val eShopOfferUrl: Url? <runtime stability> = Unstable } ``` I assume due to the different module locality yet IDE plugin says it's all stable <img width="405" height="135" alt="Image" src="https://github.com/user-attachments/assets/24cdc646-4973-4f50-9f56-dc64f692368f" />