You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/api/core.api
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6526,11 +6526,14 @@ public final class org/jetbrains/kotlinx/dataframe/jupyter/DefaultCellRenderer :
6526
6526
}
6527
6527
6528
6528
public final class org/jetbrains/kotlinx/dataframe/jupyter/DisableRowsLimitWrapper {
6529
-
public fun <init> (Lorg/jetbrains/kotlinx/dataframe/DataFrame;)V
6529
+
public fun <init> (Lorg/jetbrains/kotlinx/dataframe/DataFrame;Z)V
6530
+
public synthetic fun <init> (Lorg/jetbrains/kotlinx/dataframe/DataFrame;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
6530
6531
public final fun component1 ()Lorg/jetbrains/kotlinx/dataframe/DataFrame;
6531
-
public final fun copy (Lorg/jetbrains/kotlinx/dataframe/DataFrame;)Lorg/jetbrains/kotlinx/dataframe/jupyter/DisableRowsLimitWrapper;
6532
-
public static synthetic fun copy$default (Lorg/jetbrains/kotlinx/dataframe/jupyter/DisableRowsLimitWrapper;Lorg/jetbrains/kotlinx/dataframe/DataFrame;ILjava/lang/Object;)Lorg/jetbrains/kotlinx/dataframe/jupyter/DisableRowsLimitWrapper;
6532
+
public final fun component2 ()Z
6533
+
public final fun copy (Lorg/jetbrains/kotlinx/dataframe/DataFrame;Z)Lorg/jetbrains/kotlinx/dataframe/jupyter/DisableRowsLimitWrapper;
6534
+
public static synthetic fun copy$default (Lorg/jetbrains/kotlinx/dataframe/jupyter/DisableRowsLimitWrapper;Lorg/jetbrains/kotlinx/dataframe/DataFrame;ZILjava/lang/Object;)Lorg/jetbrains/kotlinx/dataframe/jupyter/DisableRowsLimitWrapper;
6533
6535
public fun equals (Ljava/lang/Object;)Z
6536
+
public final fun getAddHtml ()Z
6534
6537
public final fun getValue ()Lorg/jetbrains/kotlinx/dataframe/DataFrame;
* Allows for disabling the rows limit when generating a DISPLAY output in Jupyter.
8
+
* Used in code that Kotlin Notebook sends to Jupyter Kernel / KotlinNotebookPluginUtils
9
+
* @param [addHtml] needed to avoid sending HTML in these internal requests, because they won't be displayed anyway, only JSON part of these payloads is used to update "live" state of the widget
0 commit comments