Skip to content
Components

Date Range Picker

Date Range Picker for a useful, keyboard-friendly product interface.

Open ↗

Make it yours.

Install the editable source and its dependencies into your React + Tailwind project.

Scroll horizontally for long lines
pnpm dlx shadcn@4.0.8 add http://localhost:3000/r/date-range-picker.json

Use it

Scroll horizontally for long lines
"use client";
import {DateRangePicker} from '@/components/jez-ui/ui/date-range-picker';

export default function Example(){

return <><div className="w-full max-w-sm"><div className="mb-7"><h3 className="text-2xl tracking-tight">See the whole stretch.</h3><p className="mt-2 text-sm leading-relaxed text-muted-foreground">Choose the window for your next project.</p></div><DateRangePicker/></div></>;
}

Props & types

Scroll horizontally for long lines
export type DateRange = { from: string; to: string };

{
  value?: DateRange;
  defaultValue?: DateRange;
  onValueChange?: (range: DateRange) => void;
  className?: string;
}

Source

View 4 source files

registry/ui/date-range-picker.tsx

Scroll horizontally for long lines
"use client";
import * as React from "react";
import { cn } from "./utils";
import { Input } from "./input";
import { useControllable } from "./use-controllable";
export type DateRange = { from: string; to: string };
export function DateRangePicker({
  value,
  defaultValue = { from: "", to: "" },
  onValueChange,
  className,
}: {
  value?: DateRange;
  defaultValue?: DateRange;
  onValueChange?: (range: DateRange) => void;
  className?: string;
}) {
  const [range, setRange] = useControllable(value, defaultValue, onValueChange);
  return (
    <fieldset className={cn("flex flex-wrap gap-3", className)}>
      <legend className="mb-2 text-sm font-medium">Date range</legend>
      <label className="grid gap-1 text-xs">
        From
        <Input
          type="date"
          value={range.from}
          max={range.to || undefined}
          onChange={(e) => setRange({ ...range, from: e.target.value })}
        />
      </label>
      <label className="grid gap-1 text-xs">
        To
        <Input
          type="date"
          value={range.to}
          min={range.from || undefined}
          onChange={(e) => setRange({ ...range, to: e.target.value })}
        />
      </label>
    </fieldset>
  );
}

registry/ui/utils.ts

Scroll horizontally for long lines
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...values: ClassValue[]) {
  return twMerge(clsx(values));
}

registry/ui/input.tsx

Scroll horizontally for long lines
"use client";
import * as React from "react";
import { cn } from "./utils";
export function Input({ className, ...props }: React.ComponentProps<"input">) {
  return (
    <input
      className={cn(
        "block h-10 w-full min-w-0 rounded-lg border border-border bg-background px-3 text-sm leading-normal shadow-[0_1px_2px_#00000004] transition-[border-color,box-shadow] placeholder:text-muted-foreground/75 hover:border-foreground/25 focus:border-primary focus:outline-none focus:ring-3 focus:ring-primary/10 aria-invalid:border-danger aria-invalid:ring-danger/10 disabled:cursor-not-allowed disabled:bg-muted/50 disabled:opacity-50",
        className,
      )}
      {...props}
    />
  );
}

registry/ui/use-controllable.ts

Scroll horizontally for long lines
"use client";
import { useState } from "react";
export function useControllable<T>(
  value: T | undefined,
  initial: T,
  onChange?: (value: T) => void,
) {
  const [local, setLocal] = useState(initial);
  return [
    value === undefined ? local : value,
    (next: T) => {
      if (value === undefined) setLocal(next);
      onChange?.(next);
    },
  ] as const;
}

Dependencies

clsx@2.1.1 · tailwind-merge@3.5.0

Accessibility & behaviour

Provide meaningful labels and preserve keyboard focus styles. Check contrast when customising theme colours.

Read the accessibility and performance guide →