UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

19 lines 1.14 kB
import React from 'react'; import { BaseComponentProps } from '../../internal/base-component'; import { TimeInputProps } from '../../time-input/interfaces'; import { DateRangePickerProps, RangeCalendarI18nStrings } from '../interfaces'; export interface DateRangePickerCalendarProps extends BaseComponentProps { value: DateRangePickerProps.PendingAbsoluteValue; setValue: React.Dispatch<React.SetStateAction<DateRangePickerProps.PendingAbsoluteValue>>; locale?: string; startOfWeek?: number; isDateEnabled?: (date: Date) => boolean; dateDisabledReason?: (date: Date) => string; i18nStrings?: RangeCalendarI18nStrings; dateOnly?: boolean; timeInputFormat?: TimeInputProps.Format; customAbsoluteRangeControl: DateRangePickerProps.AbsoluteRangeControl | undefined; granularity?: DateRangePickerProps.Granularity; } export default function DateRangePickerCalendar({ value, setValue, locale, startOfWeek, isDateEnabled, dateDisabledReason, i18nStrings, dateOnly, timeInputFormat, customAbsoluteRangeControl, granularity, }: DateRangePickerCalendarProps): JSX.Element; //# sourceMappingURL=index.d.ts.map