Package-level declarations

Types

Link copied to clipboard

A list, either ordered or unordered.

Link copied to clipboard
class ListItem(val variants: List<ListItemVariant> = emptyList(), val children: List<Node>) : NestableNode

An item of a ListBlock. A list item may be enhanced via ListItemVariants.

Link copied to clipboard
interface ListItemVariant

A variant of a ListItem that brings additional functionalities to it.

Link copied to clipboard
Link copied to clipboard
class OrderedList(val startIndex: Int, val isLoose: Boolean, val children: List<Node>) : ListBlock

An ordered list.

Link copied to clipboard
data class TaskListItemVariant(val isChecked: Boolean) : ListItemVariant

A list item variant that adds a checkbox, which can be checked or unchecked, to a ListItem.

Link copied to clipboard
class UnorderedList(val isLoose: Boolean, val children: List<Node>) : ListBlock

An unordered list.