Skip to main content

Input

Allow users to enter text that will fit on a single line. This is the most basic form field.

<Input id="input" label="Input" />

Usage

To follow user-centred design and GDPR best practices, we should only ask users for information we need. In that respect, all form fields of the Pallote component library are by default required.

For the CSS library, you do not need to add the required property to the form fields, it is added automatically with the javascript import.

Props

Type

Change the input type property.

<Input type="date" id="date" label="Date" />
<Input type="email" id="email" label="Email" />
<Input type="number" id="number" label="Number" />
<Input type="tel" id="tel" label="Telephone" />
<Input type="text" id="text" label="Text" />
<Input type="time" id="time" label="Time" />

isFocused

Focus on a input on page load.

<Input id="focused" label="IsFocused" isFocused />

Error

Notify users that the field has an error.

This is the error message

<Input id="error" label="Error" error="This is the error message" />

Disabled

Add this class to signal users the field is disabled.

<Input id="disabled" label="Disabled" disabled />

Optional

<Input id="optional" label="Optional" optional />

Hint

This is a hint to give more details

<Input id="hint" label="Hint" hint="This is a hint to give more details" />