@oslokommune/punkt-react
Version:
React komponentbibliotek til Punkt, et designsystem laget av Oslo Origo
22 lines (21 loc) • 835 B
TypeScript
interface DatepickerPopupProps {
open: boolean;
multiple?: boolean;
range?: boolean;
weeknumbers?: boolean;
withcontrols?: boolean;
selected?: string[];
earliest?: string | null;
latest?: string | null;
excludedates?: string[];
excludeweekdays?: string[];
maxMultiple?: number;
currentmonth?: string | null;
today?: string;
inputRef?: React.RefObject<HTMLInputElement | null>;
hasCounter?: boolean;
onDateSelected: (selected: string[]) => void;
onClose: () => void;
}
export declare const DatepickerPopup: ({ open, multiple, range, weeknumbers, withcontrols, selected, earliest, latest, excludedates, excludeweekdays, maxMultiple, currentmonth, today, inputRef, hasCounter, onDateSelected, onClose, }: DatepickerPopupProps) => import("react").JSX.Element;
export {};