Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JEWEL] Update IJP to 243.2.2 #2936

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions platform/jewel/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ commonmark = "0.24.0"
composeDesktop = "1.7.1"
detekt = "1.23.6"
dokka = "1.9.20"
idea = "243.21155.17"
intelliJPlatformBuild = "243.21155.17-EAP-SNAPSHOT"
idea = "2024.3.2.2"
intelliJPlatformBuild = "243.23654.189"
ideaPlugin = "2.1.0"
jna = "5.14.0"
kotlin = "2.0.21-RC"
Expand Down
3 changes: 2 additions & 1 deletion platform/jewel/markdown/core/api/core.api
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,8 @@ public abstract class org/jetbrains/jewel/markdown/scrolling/ScrollingSynchroniz
protected abstract fun afterProcessing ()V
protected abstract fun beforeProcessing ()V
public final fun process (Lkotlin/jvm/functions/Function0;)Ljava/lang/Object;
public abstract fun scrollToLine (ILkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun scrollToLine (ILandroidx/compose/animation/core/AnimationSpec;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public static synthetic fun scrollToLine$default (Lorg/jetbrains/jewel/markdown/scrolling/ScrollingSynchronizer;ILandroidx/compose/animation/core/AnimationSpec;Lkotlin/coroutines/Continuation;ILjava/lang/Object;)Ljava/lang/Object;
}

public final class org/jetbrains/jewel/markdown/scrolling/ScrollingSynchronizer$Companion {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public enum class IntUiThemes {
public fun isLightHeader(): Boolean = this == LightWithLightHeader

public companion object {
public fun fromSystemTheme(systemTheme: SystemTheme): IntUiThemes = if (systemTheme == SystemTheme.LIGHT) Light else Dark
public fun fromSystemTheme(systemTheme: SystemTheme): IntUiThemes =
if (systemTheme == SystemTheme.LIGHT) Light else Dark
}
}
1 change: 1 addition & 0 deletions platform/jewel/ui/api/ui.api
Original file line number Diff line number Diff line change
Expand Up @@ -3030,6 +3030,7 @@ public final class org/jetbrains/jewel/ui/icons/AllIconsKeys {
public final class org/jetbrains/jewel/ui/icons/AllIconsKeys$Actions {
public static final field $stable I
public static final field INSTANCE Lorg/jetbrains/jewel/ui/icons/AllIconsKeys$Actions;
public final fun getAddDirectory ()Lorg/jetbrains/jewel/ui/icon/IntelliJIconKey;
public final fun getAddFile ()Lorg/jetbrains/jewel/ui/icon/IntelliJIconKey;
public final fun getAddList ()Lorg/jetbrains/jewel/ui/icon/IntelliJIconKey;
public final fun getAddMulticaret ()Lorg/jetbrains/jewel/ui/icon/IntelliJIconKey;
Expand Down