Sha256: 583d0f3983f37c985ee8742f2aad7e382439f6893cd33f9b2740ec76f954b368
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 KB
Contents
import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type DatePickerProps = { allowInput?: boolean; aria?: { [key: string]: string; }; className?: string; dark?: boolean; data?: { [key: string]: string; }; defaultDate?: string; disableDate?: number[]; disableInput?: boolean; disableRange?: number[]; disableWeekdays?: number[]; enableTime?: boolean; error?: string; format?: string; hideIcon?: boolean; hideLabel?: boolean; id?: string; inLine?: boolean; inputAria?: { [key: string]: string; }; inputData?: { [key: string]: string; }; inputOnChange?: (e: React.FormEvent<HTMLInputElement>) => void; inputValue?: string; label?: string; maxDate: string; minDate: string; name: string; pickerId?: string; placeholder?: string; positionElement?: HTMLElement | null; scrollContainer?: string; selectionType?: "month" | "week" | "quickpick"; showTimezone?: boolean; staticPosition: boolean; thisRangesEndToday?: boolean; timeFormat?: string; type?: string; yearRange?: number[]; } & GlobalProps; declare const DatePicker: (props: DatePickerProps) => React.ReactElement; export default DatePicker;
Version data entries
2 entries across 2 versions & 1 rubygems