Get startedPatternsComponentsStylesContentSupport
Select your development framework to see all code in your development languages. You can change this in the top right of the screen.
AllAccordionBadgeBlockButtonButton groupCalloutCheckboxContainerDate pickerDetailsDividerDropdownFile uploaderFilter chipFooterForm itemForm stepperGridHeaderHero bannerIconsIcon buttonInputListMicrosite headerModalNotification bannerPaginationPopoverProgress indicatorRadioSide menuSkeleton loadingSpacerTableTabsTextText areaTooltip

Date picker

Lets users select a date through a calendar without the need to manually type it in a field.

Related components: Form item
Code examples
function onChange(name: string, value: Date) {
  console.log(name, value);
}
<GoAFormItem label="Item">
  <GoADatePicker onChange={onChange} name="item" value={new Date(2025,3,4)}></GoADatePicker>
</GoAFormItem>
namestring
Name of the date field.
valuestring | undefined
Value of the calendar date.
errorboolean
Sets the input to an error state. Defaults to false.
minstring
Minimum date value allowed. Defaults to 5 year previous.
maxstring
Maximum date value allowed. Defaults to 5 years forward.
mt,mr,mb,mlnone | 3xs | 2xs | xs | s | m | l | xl | 2xl | 3xl | 4xl
Apply margin to the top, right, bottom, and/or left of the component.
disabledboolean
Disables the date picker. Defaults to false.
relativeboolean
Set to true if a parent element has a css position of relative. Defaults to false.

Reset example

Set ValueClear Value
export function Datepicker() {
  const [date, setDate] = useState<Date | undefined>();

  const setNewDate = (value: Date | undefined) => {
    setDate(value);
  };

  function setValue() {
    const d = new Date();
    d.setDate(d.getDate() - 7);

    setDate(d);
  }

  function clearValue() {
    setDate(undefined);
  }

  return (
    <>
      <GoAFormItem label="Item">
        <GoADatePicker
          name="item"
          value={date}
          onChange={(_, value) => setNewDate(value)}
          mb="xl"
        ></GoADatePicker>
      </GoAFormItem>
      
      <GoAButtonGroup mt={"xs"} alignment={"start"}>
        <GoAButton onClick={setValue} mr="l">Set Value</GoAButton>
        <GoAButton onClick={clearValue}>Clear Value</GoAButton>
      </GoAButtonGroup>
    </>
  );
}
Design guidelines
Join design system drop in hours to get feedback on your service, propose new components or patterns, suggest changes to existing resources, ask questions, and give feedback to the design system. These sessions are for Government of Alberta product teams.
Book time in drop in hours
Get startedPatternsComponentsStylesContentSubmit an issue#design-system-supportContribute to the design systemGive feedbackRelease notes