Package-level declarations

Types

Link copied to clipboard

Trix rich text editor component.

Link copied to clipboard
open class RichText(value: String? = null, placeholder: String? = null, disabled: Boolean? = null, required: Boolean? = null, locale: Locale = LocaleManager.currentLocale, className: String? = null, id: String? = null, renderConfig: RenderConfig = RenderConfig.Default, withStateFlowDelegate: WithStateFlowDelegate<String?> = WithStateFlowDelegateImpl()) : Tag<HTMLElement> , StringFormControl, WithStateFlow<String?> , IRichText

Trix rich text editor component.

Functions

Link copied to clipboard
@Composable
fun IComponent.richText(value: String? = null, placeholder: String? = null, disabled: Boolean? = null, required: Boolean? = null, locale: Locale = LocaleManager.currentLocale, className: String? = null, id: String? = null, setup: @Composable IRichText.() -> Unit = {})

Creates a RichText component.

Link copied to clipboard
@Composable
fun IComponent.richTextRef(value: String? = null, placeholder: String? = null, disabled: Boolean? = null, required: Boolean? = null, locale: Locale = LocaleManager.currentLocale, className: String? = null, id: String? = null, setup: @Composable IRichText.() -> Unit = {}): RichText

Creates a RichText component, returning a reference.