integer
inline fun Fields.integer(name: String, label: String = name, hint: String? = label, value: Int? = null, isReadonly: Boolean = false, isRequired: Boolean = false, formatter: NumberFormatter? = NumberFormatter(), max: Int? = null, min: Int? = null, step: Int = 1, noinline validator: (Int?) -> Unit? = null): NumberInputField<Int>
inline fun Fields.integer(property: KProperty<Int?>, label: String = property.name, hint: String? = label, value: Int? = null, isReadonly: Boolean = false, isRequired: Boolean = false, formatter: NumberFormatter? = NumberFormatter(), max: Int? = null, min: Int? = null, step: Int = 1, noinline validator: (Int?) -> Unit? = null): NumberInputField<Int>