@wix/design-system
Version:
@wix/design-system
23 lines • 848 B
TypeScript
import { SupportedWixLocales } from "wix-design-systems-locale-utils";
import LocaleUtils from "../../common/LocaleUtils/LocaleUtils";
export type DatePickerHeadProps = {
className?: string;
locale: SupportedWixLocales;
date: Date;
localeUtils: ReturnType<typeof LocaleUtils>;
size?: 'small' | 'medium';
leftArrowAriaLabel?: string;
leftArrowAriaLabelledBy?: string;
rightArrowAriaLabel?: string;
rightArrowAriaLabelledBy?: string;
monthDropdownAriaLabel?: string;
monthDropdownAriaLabelledBy?: string;
yearDropdownAriaLabel?: string;
yearDropdownAriaLabelledBy?: string;
showMonthDropdown?: boolean;
showYearDropdown?: boolean;
onChange: (value: Date) => void;
onLeftArrowClick: () => void;
onRightArrowClick: () => void;
};
//# sourceMappingURL=DatePickerHead.types.d.ts.map