Input Field
fun Tag.InputField(prop: KMutableProperty0<Int>, configure: InputFieldComponent.Config<Int>.() -> Unit = {}): ComponentRef<InputFieldComponent<Int>>
fun Tag.InputField(value: Int, onChange: (Int) -> Unit, configure: InputFieldComponent.Config<Int>.() -> Unit = {}): ComponentRef<InputFieldComponent<Int>>
fun Tag.InputField(prop: KMutableProperty0<Float>, configure: InputFieldComponent.Config<Float>.() -> Unit = {}): ComponentRef<InputFieldComponent<Float>>
fun Tag.InputField(value: Float, onChange: (Float) -> Unit, configure: InputFieldComponent.Config<Float>.() -> Unit = {}): ComponentRef<InputFieldComponent<Float>>
fun Tag.InputField(prop: KMutableProperty0<Double>, configure: InputFieldComponent.Config<Double>.() -> Unit = {}): ComponentRef<InputFieldComponent<Double>>
fun Tag.InputField(value: Double, onChange: (Double) -> Unit, configure: InputFieldComponent.Config<Double>.() -> Unit = {}): ComponentRef<InputFieldComponent<Double>>
fun Tag.InputField(prop: KMutableProperty0<String>, configure: InputFieldComponent.Config<String>.() -> Unit = {}): ComponentRef<InputFieldComponent<String>>
fun Tag.InputField(value: String, onChange: (String) -> Unit, configure: InputFieldComponent.Config<String>.() -> Unit = {}): ComponentRef<InputFieldComponent<String>>