Package de. peekandpoke. kraft. addons. semanticui. forms
Types
Link copied to clipboard
Link copied to clipboard
class UiCheckBoxComponent<T, P : UiCheckBoxComponent.Props<T>>(ctx: Ctx<P>) : GenericFormField<T, UiCheckBoxComponent.Options<T>, P>
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class UiInputFieldComponent<T, P : UiInputFieldComponent.Props<T>>(ctx: Ctx<P>) : GenericFormField<T, UiInputFieldComponent.Options<T>, P>
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class UiTextAreaComponent(ctx: Ctx<UiTextAreaComponent.Props>) : GenericFormField<String, UiTextAreaComponent.Options, UiTextAreaComponent.Props>
Content copied to clipboard
Link copied to clipboard
Functions
Link copied to clipboard
fun VDom.formController(): FunctionalComponentStateProperty<FormController>
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T> Tag.UiCheckboxField( value: T, onChange: (T) -> Unit, off: T, on: T, builder: UiCheckBoxComponent.Options<T>.() -> Unit = {}): ComponentRef<UiCheckBoxComponent<T, UiCheckBoxComponent.Props<T>>>
Content copied to clipboard
Link copied to clipboard
fun <T> Tag.UiInputField( value: T, onChange: (T) -> Unit, toStr: (T) -> String, fromStr: (String) -> T, builder: UiInputFieldComponent.Options<T>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<T, UiInputFieldComponent.Props<T>>>
Content copied to clipboard
Link copied to clipboard
fun Tag.UiTextArea( value: String, onChange: (String) -> Unit, builder: UiTextAreaComponent.Options.() -> Unit = {}): ComponentRef<UiTextAreaComponent>
Content copied to clipboard