nullable

fun nullable(    value: String?,     onChange: (String?) -> Unit,     builder: UiInputFieldComponent.Options<String?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<String?, UiInputFieldComponent.Props<String?>>>

Renders the field for a nullable String


fun nullable(    value: Int?,     onChange: (Int?) -> Unit,     builder: UiInputFieldComponent.Options<Int?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Int?, UiInputFieldComponent.Props<Int?>>>

Renders the field for a nullable Int


fun nullable(    value: Float?,     onChange: (Float?) -> Unit,     builder: UiInputFieldComponent.Options<Float?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Float?, UiInputFieldComponent.Props<Float?>>>

Renders the field for a nullable Float


fun nullable(    value: Double?,     onChange: (Double?) -> Unit,     builder: UiInputFieldComponent.Options<Double?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Double?, UiInputFieldComponent.Props<Double?>>>

Renders the field for a nullable Double