Package-level declarations
Types
Link copied to clipboard
Text input component.
Link copied to clipboard
Textarea component.
Link copied to clipboard
open class Text(value: String? = null, type: InputType = InputType.Text, name: String? = null, maxlength: Int? = null, placeholder: String? = null, disabled: Boolean? = null, required: Boolean? = null, className: String? = null, id: String? = null, val renderConfig: RenderConfig = RenderConfig.Default) : Input<String> , StringFormControl, IText
Text input component.
Link copied to clipboard
open class TextArea(value: String? = null, cols: Int? = null, rows: Int? = null, name: String? = null, maxlength: Int? = null, placeholder: String? = null, disabled: Boolean? = null, required: Boolean? = null, className: String? = null, id: String? = null, val renderConfig: RenderConfig = RenderConfig.Default, withStateFlowDelegate: WithStateFlowDelegate<String?> = WithStateFlowDelegateImpl()) : Tag<HTMLTextAreaElement> , StringFormControl, WithStateFlow<String?> , ITextArea
Textarea component.
Functions
Link copied to clipboard
@Composable
Creates Text component with password input type.
Link copied to clipboard
@Composable
Creates Text component with password input type, returning a reference.
Link copied to clipboard
@Composable
Creates Text component.
Link copied to clipboard
@Composable
Creates a TextArea component.
Link copied to clipboard
@Composable
Creates a TextArea component, returnig a reference.
Link copied to clipboard
@Composable
Creates Text component, returning a reference.