UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

23 lines (22 loc) 649 B
import { Locale } from "date-fns"; /** Return the months to show in the dropdown. */ export declare function getMonthOptions({ displayMonth, navStart, navEnd, locale, }: { displayMonth: Date; navStart: Date | undefined; navEnd: Date | undefined; locale: Locale; }): { value: number; label: string; disabled: boolean; }[] | undefined; /** Return the years to show in the dropdown. */ export declare function getYearOptions({ navStart, navEnd, locale, }: { navStart: Date | undefined; navEnd: Date | undefined; locale: Locale; }): { value: number; label: string; disabled: boolean; }[] | undefined;