Date and time selection controls with default, time-only, and range picker states. Please read the official documentation for the full list of options.
A searchable React select control with theme-aware styling and a native form layout. Please read the official documentation for the full list of options.
A standard datepicker and inline datepicker using the current React implementation. Please read the official documentation for the full list of options.
Input masks for dates, phone numbers, tax IDs, product keys, and social security numbers. Please read the official documentation for the full list of options.
Interactive Sketch and Chrome color pickers with live color values. Please read the official documentation for the full list of options.
Range controls with default, fixed-step, and custom range values. Please read the official documentation for the full list of options.
import React, { useState } from 'react'; const [value, setValue] = useState(3); <input type="range" min="0" max="20" value={value} onChange={event => setValue(Number(event.target.value))} />A rich text editor with editable content and the current Quill configuration. Please read the official documentation for the full list of options.
Tag entry with autocomplete suggestions, add, and delete interactions. Please read the official documentation for the full list of options.