You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@mantine/dates

Package Overview
Dependencies
Maintainers
1
Versions
354
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mantine/dates

Calendars, date and time pickers based on Mantine components

8.1.3
latest
Source
npmnpm
Version published
Weekly downloads
283K
-18.36%
Maintainers
1
Weekly downloads
 
Created

What is @mantine/dates?

@mantine/dates is a part of the Mantine library, which provides a set of React components and hooks for building modern web applications. The @mantine/dates package specifically focuses on date and time-related components, offering a variety of tools to handle date picking, time picking, and calendar functionalities.

What are @mantine/dates's main functionalities?

DatePicker

The DatePicker component allows users to select a date from a calendar popup. It can be customized with various props to fit different use cases.

import { DatePicker } from '@mantine/dates';

function Demo() {
  return <DatePicker placeholder="Pick a date" label="Event date" />;
}

TimeInput

The TimeInput component provides a way for users to input a time value. It supports various formats and can be customized to match the application's design.

import { TimeInput } from '@mantine/dates';

function Demo() {
  return <TimeInput label="Event time" defaultValue={new Date()} />;
}

Calendar

The Calendar component displays a full calendar view, allowing users to navigate through months and select dates. It can be used for more complex date-related functionalities.

import { Calendar } from '@mantine/dates';

function Demo() {
  return <Calendar />;
}

DateRangePicker

The DateRangePicker component enables users to select a range of dates. This is useful for applications that require start and end date selections, such as booking systems.

import { DateRangePicker } from '@mantine/dates';

function Demo() {
  return <DateRangePicker label="Select date range" placeholder="Pick dates" />;
}

Other packages similar to @mantine/dates

Keywords

calendar

FAQs

Package last updated on 07 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts