UseInputParameters

external interface UseInputParameters(source)

Properties

Link copied to clipboard
abstract var defaultValue: Any?

The default value. Use when the component is not controlled.

Link copied to clipboard
abstract var disabled: Boolean?

If true, the component is disabled. The prop defaults to the value (false) inherited from the parent FormControl component.

Link copied to clipboard
abstract var error: Boolean?

If true, the input will indicate an error by setting the aria-invalid attribute. The prop defaults to the value (false) inherited from the parent FormControl component.

Link copied to clipboard
abstract var inputRef: Ref<HTMLInputElement>?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract var onClick: MouseEventHandler<*>?
Link copied to clipboard
Link copied to clipboard
abstract var required: Boolean?

If true, the input element is required. The prop defaults to the value (false) inherited from the parent FormControl component.

Link copied to clipboard
abstract var value: Any?