long

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