Bridge UI

DateField

Form field that opens a DatePicker calendar in an overlay (auto by default: menu on desktop, bottom drawer on mobile).

Introduction

DateField is a complete form control: a label, an input that displays the selected date, and a calendar that opens in an overlay (auto by default: menu on desktop, bottom drawer on mobile). It wraps FormField chrome around a native <input> and an inline DatePicker, so you get consistent layout, validation styling, and date selection without assembling those pieces yourself.

For a date range instead of a single date, use DateRangeField, which pairs dual calendars in one field.

Import

import { DateField } from "@bridge-ui/vue/Components/DateField";
import { DateField } from "@bridge-ui/react/Components/DateField";

Basic usage

Provide a label and placeholder. Bind the value with value/onChange in React or v-model in Vue. For uncontrolled usage with an initial value, use defaultValue in React or default-value in Vue. Clicking the field opens a calendar menu; selecting a day commits the value and closes the menu.

Stored as a local calendar date.

Stored as a local calendar date.

Form props

Standard form attributes are supported through inherited FormField props:

  • required — shows a red asterisk on the label. Pair with the native required attribute when validating with HTML forms.
  • disabled — prevents interaction and applies disabled styling to the field shell and input.
  • readonly — keeps the value visible and focusable but not editable; the calendar menu does not open.

Use description for helper text below the field. When error is set, the description is hidden and errorMessage is shown instead.

Variants

Control the field shell appearance with the variant prop. Available variants: outline (default), filled, notched, stacked, and underlined.

Sizes

Control the field size with the size prop. Available sizes: 2xs, xs, sm, md (default), lg, xl, and 2xl.

Rounded

Use the rounded prop to control border radius on both the field shell and the calendar menu panel. Available values: none, xs, sm, md (default), lg, xl, 2xl, 3xl, 4xl, and full.

Range

Set range to select a start and end date from a single calendar instead of one day. The bound value becomes a two-item array ([start, end]) instead of a single Date.

Pick a start and end date.

Pick a start and end date.

Bounds

Constrain the selectable range with minDate and maxDate. Days outside the bounds are disabled in the calendar.

Selectable days limited to Aug 1–28, 2026.

Selectable days limited to Aug 1–28, 2026.

Set showFooter to add Cancel / Apply actions to the nested picker. The selection is a draft until Apply is pressed; Cancel discards it and closes. When unset, showFooter defaults to true for modal / drawer overlays (false for menu).

Selection is a draft on the calendar until Apply is pressed.

Selection is a draft on the calendar until Apply is pressed.

A custom footer slot replaces Cancel / Apply on the nested picker. Call apply() to commit the draft and close the overlay, or cancel() to discard and close.

Custom footer replaces Cancel / Apply.

Custom footer replaces Cancel / Apply.

DatePicker

DatePicker is the inline calendar that DateField opens in an overlay (auto by default: menu on desktop, bottom drawer on mobile). Use it directly when you need an always-visible calendar without the FormField shell or menu behavior—for example, in a sidebar or a custom popover.

It supports the same value/onChange, range, multiple, minDate/maxDate, and showFooter props as DateField, plus standalone-only props like color and disabled. The same footer slot works on standalone DatePicker: apply() commits (and closes an overlay), cancel() discards.

import { DatePicker } from "@bridge-ui/vue/Components/DatePicker";
import { DatePicker } from "@bridge-ui/react/Components/DatePicker";
SunMonTueWedThuFriSat
SunMonTueWedThuFriSat

Overlay

Use the overlay prop to choose the picker shell: auto (default), menu, modal, or drawer. auto uses menu on desktop and a bottom drawer on mobile. When unset, showFooter defaults to true for modal / drawer overlays (false for menu). Apply commits and closes; Cancel discards and closes.

Validation

Set error and errorMessage to show invalid styling and an error message below the field. Use required to show a red asterisk on the label.

Pick a valid date.

Pick a valid date.

DatePicker, DateRangeField, Select

Accessibility

For the field to be accessible, the input must be linked to its label and helper or error text:

  • The label is associated with the input via htmlFor / id, using controlId (auto-generated when omitted).
  • description and errorMessage are linked through aria-describedby on the input.
  • When error is true, the input receives aria-invalid="true".
  • Calendar navigation follows standard keyboard interaction for grid widgets (arrow keys to move between days, Enter/Space to select).

Provide a stable controlId when rendering client-only so labels associate correctly on first paint.

Anatomy

DateField composes FormField around a native <input> and opens a DatePicker in an overlay (auto by default: menu on desktop, bottom drawer on mobile):

FormField (root)
├── Header — label, optional corner text, required indicator
├── Container — variant shell (outline, filled, …)
│   └── Input — read-only text input showing the formatted value
└── Footer — description (helper text) or error message

Menu (opened on click)
└── DatePicker — calendar panel, optionally with Cancel / Apply footer

API

Prop Type Default Description
v-model DatePickerModel Two-way binding for the selected value (date, dates, or range).
default-value DatePickerModel Initial value for uncontrolled usage (without v-model).
Prop Type Default Description
value DatePickerModel Selected value (date, dates, or range). Use with onChange for controlled state.
defaultValue DatePickerModel Initial value for uncontrolled usage.
onChange (value: DatePickerModel) => void Called when the selection model changes.

DateField-specific

Prop Type Default Description
range boolean false Selects a date range instead of a single date.
multiple boolean false Allows selecting multiple dates.
minDate Date Earliest selectable date.
maxDate Date Latest selectable date.
clearable boolean true Whether the value can be cleared.
overlay FieldOverlayMode "auto" Overlay shell: menu, modal, drawer, or auto.
disableDates Date[] Dates that cannot be selected.
disableMonths number[] Month indexes that cannot be selected.
disableYears number[] Years that cannot be selected.
showFooter boolean false (true for modal/drawer when unset) Shows Cancel / Apply on the nested picker.
defaultView CalendarView "date" Initial calendar panel view.
hideMonths boolean false Hides month navigation / panel.
hideYears boolean false Hides year navigation / panel.
hideWeekdays boolean false Hides weekday labels.
hideOutsideDays boolean false Hides days that fall outside the displayed month.
startOfWeek StartOfWeek 0 First day of the week.
timeZone string IANA time zone.
classes DateFieldClasses Classes for field / input regions.
customProps DateFieldCustomProps Extra props for internal parts (input, menu, modal, drawer, datePicker, …).
slots DateFieldSlots Named slots (FormField slots + calendar day + footer).

Events

Event Payload Description
@apply Emitted when Apply is pressed (showFooter).
@cancel Emitted when Cancel is pressed (showFooter).
@change value: DatePickerModel Emitted when the selection model changes (alternative to v-model).
@close Emitted when the menu closes.
@open Emitted when the menu opens.
Prop Payload Description
onApply Called when Apply is pressed (showFooter).
onCancel Called when Cancel is pressed (showFooter).
onChange value: DatePickerModel Called when the selection model changes.
onClose Called when the menu closes.
onOpen Called when the menu opens.

Inherited from FormField

Prop Type Default Description
label string Primary label text above the control.
description string Helper text below the control (hidden when invalid).
corner string Secondary label text at the inline end of the header row.
required boolean false Shows a red asterisk on the label.
disabled boolean false Whether the control is disabled.
readonly boolean false Whether the control is read-only.
error boolean false Applies invalid styling and hides description.
errorMessage string Error message below the control.
showErrorIcon boolean true Shows an error icon when invalid.
hideErrorMessage boolean false Does not reserve space for error messages.
variant FormFieldVariant "outline" Visual variant of the field shell.
color FormFieldColor "primary" Color applied to the field control.
size FormFieldSize "md" Typography and control sizing.
rounded FormFieldRounded "md" Border radius of the field control and the calendar menu panel.
start string Inline-start text inside the field (prefix).
end string Inline-end text inside the field (suffix).
startIcon IconSource Icon at the inline start.
endIcon IconSource Icon at the inline end.
errorIcon IconSource "alert" Icon shown when invalid and showErrorIcon is enabled.
controlId string Associates labels and helper text with the control. Auto-generated when omitted.
classes FormFieldClasses Class overrides per part.
customProps FormFieldCustomProps Props for each part. label accepts Label props (without children); error label colors come from Label.
slots FormFieldSlots React slots. Vue: #label, #corner, default, #description, #errorMessage, #start, #end.