React Datepicker - Flowbite
Use the datepicker component to select a date from a calendar view based on an input element by selecting the day, month, and year values using React and Tailwind CSS
The Datepicker component from Flowbite React is an advanced UI element that you can use to allow users to pick a date from a calendar view by selecting the day, month, and year values which then will be available in the input field and state of the component.
Follow the examples below to see how you can use the Datepicker component by importing it from the Flowbite React library, customize the colors and behaviour of the component by overriding the default theme variables and using the props from React.
Import the component from flowbite-react
to use the datepicker element:
import { Datepicker } from 'flowbite-react';
#
Default DatepickerUse this example to show a simple datepicker component.
'use client';
import { Datepicker } from 'flowbite-react';
function Component() {
return <Datepicker />;
}
#
LocalizationUse the language
prop to set the language of the datepicker component.
The labelTodayButton
and labelClearButton
can also be used to update the text of the buttons.
'use client';
import { Datepicker } from 'flowbite-react';
function Component() {
return <Datepicker language="pt-BR" labelTodayButton="Hoje" labelClearButton="Limpar" />;
}
#
Limit the dateBy using the minDate
and maxDate
props you can limit the date range that the user can select.
'use client';
import { Datepicker } from 'flowbite-react';
function Component() {
return <Datepicker minDate={new Date(2023, 0, 1)} maxDate={new Date(2023, 3, 30)} />;
}
#
Week startThe weekStart
prop can be used to set the first day of the week inside the datepicker component.
{
"0": "Sunday",
"1": "Monday",
"2": "Tuesday",
"3": "Wednesday",
"4": "Thursday",
"5": "Friday",
"6": "Saturday"
}
'use client';
import { Datepicker } from 'flowbite-react';
function Component() {
return (
<Datepicker
weekStart={1} // Monday
/>
);
}
#
AutohideBy setting the autoHide
prop you can either enable or disable automatically hiding the datepicker component when selecting a value.
'use client';
import { Datepicker } from 'flowbite-react';
function Component() {
return <Datepicker autoHide={false} />;
}
#
TitleYou can use the title
prop to set a title for the datepicker component.
'use client';
import { Datepicker } from 'flowbite-react';
function Component() {
return <Datepicker title="Flowbite Datepicker" />
}
#
InlineUse the inline
prop to show the datepicker component without having to click inside an input field.
'use client';
import { Datepicker } from 'flowbite-react';
function Component() {
return <Datepicker inline />;
}
#
ThemeTo learn more about how to customize the appearance of components, please see the Theme docs.
{
"root": {
"base": "relative"
},
"popup": {
"root": {
"base": "absolute top-10 z-50 block pt-2",
"inline": "relative top-0 z-auto",
"inner": "inline-block rounded-lg bg-white p-4 shadow-lg dark:bg-gray-700"
},
"header": {
"base": "",
"title": "px-2 py-3 text-center font-semibold text-gray-900 dark:text-white",
"selectors": {
"base": "flex justify-between mb-2",
"button": {
"base": "text-sm rounded-lg text-gray-900 dark:text-white bg-white dark:bg-gray-700 font-semibold py-2.5 px-5 hover:bg-gray-100 dark:hover:bg-gray-600 focus:outline-none focus:ring-2 focus:ring-gray-200 view-switch",
"prev": "",
"next": "",
"view": ""
}
}
},
"view": {
"base": "p-1"
},
"footer": {
"base": "flex mt-2 space-x-2",
"button": {
"base": "w-full rounded-lg px-5 py-2 text-center text-sm font-medium focus:ring-4 focus:ring-cyan-300",
"today": "bg-cyan-700 text-white hover:bg-cyan-800 dark:bg-cyan-600 dark:hover:bg-cyan-700",
"clear": "border border-gray-300 bg-white text-gray-900 hover:bg-gray-100 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:hover:bg-gray-600"
}
}
},
"views": {
"days": {
"header": {
"base": "grid grid-cols-7 mb-1",
"title": "dow h-6 text-center text-sm font-medium leading-6 text-gray-500 dark:text-gray-400"
},
"items": {
"base": "grid w-64 grid-cols-7",
"item": {
"base": "block flex-1 cursor-pointer rounded-lg border-0 text-center text-sm font-semibold leading-9 text-gray-900 hover:bg-gray-100 dark:text-white dark:hover:bg-gray-600 ",
"selected": "bg-cyan-700 text-white hover:bg-cyan-600",
"disabled": "text-gray-500"
}
}
},
"months": {
"items": {
"base": "grid w-64 grid-cols-4",
"item": {
"base": "block flex-1 cursor-pointer rounded-lg border-0 text-center text-sm font-semibold leading-9 text-gray-900 hover:bg-gray-100 dark:text-white dark:hover:bg-gray-600",
"selected": "bg-cyan-700 text-white hover:bg-cyan-600",
"disabled": "text-gray-500"
}
}
},
"years": {
"items": {
"base": "grid w-64 grid-cols-4",
"item": {
"base": "block flex-1 cursor-pointer rounded-lg border-0 text-center text-sm font-semibold leading-9 hover:bg-gray-100 dark:text-white dark:hover:bg-gray-600 text-gray-900",
"selected": "bg-cyan-700 text-white hover:bg-cyan-600",
"disabled": "text-gray-500"
}
}
},
"decades": {
"items": {
"base": "grid w-64 grid-cols-4",
"item": {
"base": "block flex-1 cursor-pointer rounded-lg border-0 text-center text-sm font-semibold leading-9 hover:bg-gray-100 dark:text-white dark:hover:bg-gray-600 text-gray-900",
"selected": "bg-cyan-700 text-white hover:bg-cyan-600",
"disabled": "text-gray-500"
}
}
}
}
}