Skip to content

Commit

Permalink
Android: make Compose RTE styles public
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinesp committed Oct 3, 2024
1 parent 29b8b76 commit 7286ae7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.TextUnit
import kotlin.math.roundToInt

data class RichTextEditorStyle internal constructor(
data class RichTextEditorStyle(
val bulletList: BulletListStyle,
val codeBlock: CodeBlockStyle,
val inlineCode: InlineCodeStyle,
Expand All @@ -33,19 +33,19 @@ data class RichTextEditorStyle internal constructor(
val link: LinkStyle,
)

data class BulletListStyle internal constructor(
data class BulletListStyle(
val bulletGapWidth: Dp,
val bulletRadius: Dp,
)

data class CodeBlockStyle internal constructor(
data class CodeBlockStyle(
val leadingMargin: Dp,
val verticalPadding: Dp,
val relativeTextSize: Float,
val background: CodeBackgroundStyle,
)

data class InlineCodeStyle internal constructor(
data class InlineCodeStyle(
val horizontalPadding: Dp,
val verticalPadding: Dp,
val relativeTextSize: Float,
Expand Down

0 comments on commit 7286ae7

Please sign in to comment.