Tag Field
A tag field lets users add labels to items for categorization. They can type, select from a list, or create new tags as needed.
Basic
The basic tag field lets you add tags to your content.
Laravel
Installation
To install, run the following command:
Anatomy
Import the components and use them as shown below, adapting the structure to fit each component.
Max Entry
Set a limit on the number of tags that can be added.
Variant
By default, the tag field component uses the primary
variant. But it has a secondary
variant as well.
Laravel
Inertia.js
React
Tailwind CSS
Shape
Customize the tag field’s shape using the shape
prop.
Laravel
Inertia.js
Controlled
The tag field is controlled by default. This example demonstrates how to access its value.
Ferrari
Disabled
Disable the tag field by using the isDisabled
prop.
Props
Here's the fixed table:
Prop | Type | Default | Description |
---|---|---|---|
label | string | - | The label of the tag field |
description | string | - | The description of the tag field |
placeholder | string | - | The placeholder of the tag field |
max | number | - | The maximum number of tags that can be added |
className | string | - | The class name of the tag field |
name | string | - | The name of the tag field |
list | ListData | - | The list of tags |
onItemInserted | (tag: TagItemProps) => void | - | The callback function when a tag is inserted |
onItemCleared | (tag: TagItemProps) => void | - | The callback function when a tag is cleared |
isDisabled | boolean | - | The disabled state of the tag field |
intent | string | 'primary' | 'primary', 'secondary' |
shape | string | 'square' | 'square', 'circle' |