We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
name
placeholder
maxlength
readonly
disabled
rows and cols
wrap
overflowwrap
whitespace
value
size
autofocus
required
autocomplete
pattern
title
id
(todo: narrow down from these since theyre a bit more nebulous, what is for road to v1.0.0 and what is for future)
The text was updated successfully, but these errors were encountered:
hanbollar
No branches or pull requests
necessary:
for feature complete:
both
name
: The name associated with the <textarea/field> for form submission and backend processing.placeholder
: Provides a hint to the user about what they should type into the <textarea/field>.maxlength
: Specifies the maximum number of characters that the user can enter.readonly
: Makes the <textarea/field> uneditable, allowing the text to be only read, not modified.disabled
: Disables the text area so it cannot be interacted with or submitted.mr-textarea
rows and cols
: These attributes control the size of the <textarea> in terms of the number of text rows and columns visible.wrap
: Controls how text is wrapped in the textarea, with values like soft and hard affecting form submission.overflowwrap
: Controls how wrap breaks, at whitespace characters or in the middle of words.whitespace
: Controls if text wraps with the overflowWrap feature or not.mr-textfield
value
: Sets the initial value of the input field.size
: Defines the width of the input field in characters.autofocus
: If present, specifies that the input field should automatically get focus when the page loads.required
: If present, specifies that the input field must be filled out before submitting the form. (the red error)autocomplete
: Enables or disables autocomplete suggestions for the input field. Values can be "on" or "off".pattern
: Specifies a regular expression that the input's value must match in order for the form to be submitted.title
: Provides a tooltip or advisory information about the input field when hovered over.id
: Specifies a unique ID for the input field, which can be used for targeting with CSS or JavaScript.nice to have:
(todo: narrow down from these since theyre a bit more nebulous, what is for road to v1.0.0 and what is for future)
The text was updated successfully, but these errors were encountered: