Package de. peekandpoke. kraft. addons. semanticui. forms. old. input
Types
Link copied to clipboard
open class InputFieldComponent<T>(ctx: Ctx<InputFieldComponent.Props<T>>) : FormFieldComponent<T, InputFieldComponent.Props<T>>
Content copied to clipboard
Functions
Link copied to clipboard
fun Tag.InputField(prop: KMutableProperty0<Double>, configure: InputFieldComponent.Config<Double>.() -> Unit = {}): ComponentRef<InputFieldComponent<Double>>
Content copied to clipboard
fun Tag.InputField(prop: KMutableProperty0<Float>, configure: InputFieldComponent.Config<Float>.() -> Unit = {}): ComponentRef<InputFieldComponent<Float>>
Content copied to clipboard
fun Tag.InputField(prop: KMutableProperty0<Int>, configure: InputFieldComponent.Config<Int>.() -> Unit = {}): ComponentRef<InputFieldComponent<Int>>
Content copied to clipboard
fun Tag.InputField(prop: KMutableProperty0<String>, configure: InputFieldComponent.Config<String>.() -> Unit = {}): ComponentRef<InputFieldComponent<String>>
Content copied to clipboard
fun Tag.InputField( value: Double, onChange: (Double) -> Unit, configure: InputFieldComponent.Config<Double>.() -> Unit = {}): ComponentRef<InputFieldComponent<Double>>
Content copied to clipboard
fun Tag.InputField( value: Float, onChange: (Float) -> Unit, configure: InputFieldComponent.Config<Float>.() -> Unit = {}): ComponentRef<InputFieldComponent<Float>>
Content copied to clipboard
fun Tag.InputField( value: Int, onChange: (Int) -> Unit, configure: InputFieldComponent.Config<Int>.() -> Unit = {}): ComponentRef<InputFieldComponent<Int>>
Content copied to clipboard
fun Tag.InputField( value: String, onChange: (String) -> Unit, configure: InputFieldComponent.Config<String>.() -> Unit = {}): ComponentRef<InputFieldComponent<String>>
Content copied to clipboard
Link copied to clipboard
fun Tag.PasswordField(prop: KMutableProperty0<String>, configure: InputFieldComponent.Config<String>.() -> Unit = {}): ComponentRef<InputFieldComponent<String>>
Content copied to clipboard
fun Tag.PasswordField( value: String, onChange: (String) -> Unit, configure: InputFieldComponent.Config<String>.() -> Unit = {}): ComponentRef<InputFieldComponent<String>>
Content copied to clipboard
Link copied to clipboard
fun Tag.TagsInputField(prop: KMutableProperty0<List<String>>, configure: InputFieldComponent.Config<List<String>>.() -> Unit = {}): ComponentRef<InputFieldComponent<List<String>>>
Content copied to clipboard
fun Tag.TagsInputField( value: List<String>, onChange: (List<String>) -> Unit, configure: InputFieldComponent.Config<List<String>>.() -> Unit = {}): ComponentRef<InputFieldComponent<List<String>>>
Content copied to clipboard