Package-level declarations

Types

Link copied to clipboard
class Control<T>(val name: String, state: MutableState<T>)

A reference to a control for a component

Functions

Link copied to clipboard
fun <T : Any> ManuscriptScope.Control(type: KClass<T>, control: @Composable BoxScope.(control: Control<T>) -> Unit)

Register a custom control for handling a data type that Manuscript doesn't natively handle

Link copied to clipboard
fun <T> ManuscriptScope.control(name: String, defaultValue: T): Control<T>

Register a control for this component