richTimeRef

@Composable
fun IComponent.richTimeRef(value: LocalTime? = null, name: String? = null, placeholder: String? = null, disabled: Boolean? = null, required: Boolean? = null, inline: Boolean = false, format: String = "HH:mm", locale: Locale = LocaleManager.currentLocale, clockIcon: String = "fas fa-clock", inputClassName: String? = null, className: String? = null, id: String? = null, setup: @Composable IRichTime.() -> Unit = {}): RichTime

Creates a RichTime component, returning a reference.

Return

a RichTime component

Parameters

value

the initial value

name

the name attribute of the generated HTML input element

placeholder

the placeholder attribute of the generated HTML input element

disabled

determines if the field is disabled

required

determines if the field is required

locale

the locale for i18n

clockIcon

the icon of the clock button

inputClassName

the CSS class name of the generated HTML input element

className

the CSS class name

id

the ID of the generated HTML input element

setup

a function for setting up the component