Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
saket committed Jan 5, 2025
1 parent 99b24b9 commit 8a14941
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions zoomable-peek-overlay/api/api.txt
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
// Signature format: 4.0
package me.saket.telephoto.zoomable {

@androidx.compose.runtime.Stable public fun interface ZoomableOverlaidPeekDecoration {
method @androidx.compose.runtime.Composable public void Decorate(me.saket.telephoto.zoomable.ZoomableOverlaidPeekState state, kotlin.jvm.functions.Function0<kotlin.Unit> innerContent);
field public static final me.saket.telephoto.zoomable.ZoomableOverlaidPeekDecoration.Companion Companion;
@androidx.compose.runtime.Stable public fun interface ZoomablePeekOverlayDecoration {
method @androidx.compose.runtime.Composable public void Decorate(me.saket.telephoto.zoomable.ZoomablePeekOverlayState state, kotlin.jvm.functions.Function0<kotlin.Unit> innerContent);
field public static final me.saket.telephoto.zoomable.ZoomablePeekOverlayDecoration.Companion Companion;
}

public static final class ZoomableOverlaidPeekDecoration.Companion {
method @androidx.compose.runtime.Stable public me.saket.telephoto.zoomable.ZoomableOverlaidPeekDecoration scrim(optional long color);
public static final class ZoomablePeekOverlayDecoration.Companion {
method @androidx.compose.runtime.Stable public me.saket.telephoto.zoomable.ZoomablePeekOverlayDecoration scrim(optional long color);
}

public final class ZoomableOverlaidPeekKt {
method public static androidx.compose.ui.Modifier zoomableOverlaidPeek(androidx.compose.ui.Modifier, me.saket.telephoto.zoomable.ZoomableOverlaidPeekState state, optional me.saket.telephoto.zoomable.ZoomableOverlaidPeekDecoration overlayDecoration);
public final class ZoomablePeekOverlayKt {
method public static androidx.compose.ui.Modifier zoomablePeekOverlay(androidx.compose.ui.Modifier, me.saket.telephoto.zoomable.ZoomablePeekOverlayState state, optional me.saket.telephoto.zoomable.ZoomablePeekOverlayDecoration overlayDecoration);
}

@androidx.compose.runtime.Stable public sealed interface ZoomableOverlaidPeekState {
@androidx.compose.runtime.Stable public sealed interface ZoomablePeekOverlayState {
method public me.saket.telephoto.zoomable.ZoomableState getZoomableState();
method public boolean isZoomedIn();
property public abstract boolean isZoomedIn;
property public abstract me.saket.telephoto.zoomable.ZoomableState zoomableState;
}

public final class ZoomableOverlaidPeekStateKt {
method @androidx.compose.runtime.Composable public static me.saket.telephoto.zoomable.ZoomableOverlaidPeekState rememberZoomableOverlayState();
public final class ZoomablePeekOverlayStateKt {
method @androidx.compose.runtime.Composable public static me.saket.telephoto.zoomable.ZoomablePeekOverlayState rememberZoomablePeekOverlayState();
}

}
Expand Down
2 changes: 1 addition & 1 deletion zoomable-peek-overlay/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

android {
namespace = "me.saket.telephoto.zoomableoverlaidpeek"
namespace = "me.saket.telephoto.zoomablepeekoverlay"
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion zoomable-peek-overlay/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POM_ARTIFACT_ID=zoomable-peek-overlaid
POM_ARTIFACT_ID=zoomable-peek-overlay
POM_NAME=Telephoto: Modifier.zoomablePeekOverlay()
POM_DESCRIPTION=A Modifier for temporarily peeking content by zooming it on an overlay.
POM_PACKAGING=aar
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import java.util.concurrent.Executor
import kotlin.coroutines.resume
import kotlin.coroutines.suspendCoroutine

class ZoomableOverlaidPeekTest {
class ZoomablePeekOverlayTest {
@get:Rule val rule = createAndroidComposeRule<ScreenshotTestActivity>()
@get:Rule val timeout = Timeout.seconds(30)!!
@get:Rule val testName = TestName()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fun interface ZoomablePeekOverlayDecoration {
*
* Box(
* Modifier
* .zoomableOverlaidPeek(state)
* .zoomablePeekOverlay(state)
* .clip(RoundedCornerShape(cornerSize))
* )
* ```
Expand Down

0 comments on commit 8a14941

Please sign in to comment.