Skip to content

Commit

Permalink
dump API
Browse files Browse the repository at this point in the history
  • Loading branch information
altavir committed May 30, 2021
1 parent 3c72310 commit 0f14699
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
2 changes: 2 additions & 0 deletions plotlykt-core/api/plotlykt-core.api
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ public final class space/kscience/plotly/models/Axis : space/kscience/dataforge/
public static final field Companion Lspace/kscience/plotly/models/Axis$Companion;
public fun <init> ()V
public final fun getAnchor ()Ljava/lang/String;
public final fun getAutomargin ()Ljava/lang/Boolean;
public final fun getAutorange ()Z
public final fun getAutotick ()Ljava/lang/Boolean;
public final fun getColor ()Lspace/kscience/plotly/models/Color;
Expand Down Expand Up @@ -273,6 +274,7 @@ public final class space/kscience/plotly/models/Axis : space/kscience/dataforge/
public final fun getZerolinecolor ()Lspace/kscience/plotly/models/Color;
public final fun getZerolinewidth ()Ljava/lang/Number;
public final fun setAnchor (Ljava/lang/String;)V
public final fun setAutomargin (Ljava/lang/Boolean;)V
public final fun setAutorange (Z)V
public final fun setAutotick (Ljava/lang/Boolean;)V
public final fun setDtick (Lspace/kscience/dataforge/values/Value;)V
Expand Down
17 changes: 17 additions & 0 deletions plotlykt-jupyter/api/plotlykt-jupyter.api
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
public final class space/kscience/plotly/PlotlyIntegration : org/jetbrains/kotlinx/jupyter/api/libraries/JupyterIntegration, space/kscience/plotly/PlotlyRenderer {
public fun <init> ()V
public fun onLoaded (Lorg/jetbrains/kotlinx/jupyter/api/libraries/JupyterIntegration$Builder;)V
public fun renderPlot (Lkotlinx/html/FlowContent;Lspace/kscience/plotly/Plot;Ljava/lang/String;Lspace/kscience/plotly/PlotlyConfig;)Lspace/kscience/plotly/Plot;
}

public final class space/kscience/plotly/PlotlyIntegrationKt {
public static final fun getJupyter (Lspace/kscience/plotly/Plotly;)Lspace/kscience/plotly/PlotlyJupyterConfiguration;
}

public final class space/kscience/plotly/PlotlyJupyterConfiguration {
public static final field INSTANCE Lspace/kscience/plotly/PlotlyJupyterConfiguration;
public final fun getLegacyMode ()Z
public final fun notebook ()Lspace/kscience/plotly/PlotlyHtmlFragment;
public final fun setLegacyMode (Z)V
}

11 changes: 9 additions & 2 deletions plotlykt-server/api/plotlykt-server.api
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,21 @@ public final class space/kscience/plotly/server/PlotlyServer$Companion {
public final fun getUPDATE_MODE_KEY ()Lspace/kscience/dataforge/names/Name;
}

public final class space/kscience/plotly/server/PlotlyServerConfig : space/kscience/dataforge/meta/Scheme {
public fun <init> ()V
public final class space/kscience/plotly/server/PlotlyServerConfiguration : space/kscience/dataforge/meta/Scheme {
public static final field INSTANCE Lspace/kscience/plotly/server/PlotlyServerConfiguration;
public final fun getLegacyMode ()Z
public final fun getPort ()I
public final fun getUpdateInterval ()I
public final fun notebook ()Lspace/kscience/plotly/PlotlyHtmlFragment;
public final fun setLegacyMode (Z)V
public final fun setPort (I)V
public final fun setUpdateInterval (I)V
}

public final class space/kscience/plotly/server/PlotlyServerIntegrationKt {
public static final fun getJupyter (Lspace/kscience/plotly/Plotly;)Lspace/kscience/plotly/server/PlotlyServerConfiguration;
}

public final class space/kscience/plotly/server/PlotlyServerKt {
public static final fun close (Lio/ktor/server/engine/ApplicationEngine;)V
public static final fun plotlyModule (Lio/ktor/application/Application;Ljava/lang/String;)Lspace/kscience/plotly/server/PlotlyServer;
Expand Down

0 comments on commit 0f14699

Please sign in to comment.