import type { FocusEventHandler, MouseEventHandler } from '../../_util/EventInterface'; import type { CSSProperties, PropType } from 'vue'; import type { PickerLocale } from '.'; import type { SizeType } from '../../config-provider'; import type { AlignType } from '../../vc-align/interface'; import type { CustomFormat, DisabledTime, DisabledTimes, EventValue, PanelMode, PickerMode, RangeValue, } from '../../vc-picker/interface'; import type { DateRender } from '../../vc-picker/panels/DatePanel/DateBody'; import type { MonthCellRender } from '../../vc-picker/panels/MonthPanel/MonthBody'; import type { SharedTimeProps } from '../../vc-picker/panels/TimePanel'; import type { RangeDateRender, RangeInfo, RangeType } from '../../vc-picker/RangePicker'; import type { VueNode } from '../../_util/type'; function commonProps() { return { id: String, dropdownClassName: String, dropdownAlign: { type: Object as PropType }, popupStyle: { type: Object as PropType }, transitionName: String, placeholder: String, allowClear: { type: Boolean, default: undefined }, autofocus: { type: Boolean, default: undefined }, disabled: { type: Boolean, default: undefined }, tabindex: Number, open: { type: Boolean, default: undefined }, defaultOpen: { type: Boolean, default: undefined }, /** Make input readOnly to avoid popup keyboard in mobile */ inputReadOnly: { type: Boolean, default: undefined }, // Value // format: string | CustomFormat | (string | CustomFormat)[]; // Render // suffixIcon?: VueNode; // clearIcon?: VueNode; // prevIcon?: VueNode; // nextIcon?: VueNode; // superPrevIcon?: VueNode; // superNextIcon?: VueNode; getPopupContainer: { type: Function as PropType<(node: HTMLElement) => HTMLElement> }, panelRender: { type: Function as PropType<(originPanel: VueNode) => VueNode> }, // // Events onChange: { type: Function as PropType<(value: DateType | string | null, dateString: string) => void>, }, 'onUpdate:value': { type: Function as PropType<(value: DateType | string | null) => void> }, onOk: { type: Function as PropType<(value: DateType | string | null) => void> }, onOpenChange: { type: Function as PropType<(open: boolean) => void> }, 'onUpdate:open': { type: Function as PropType<(open: boolean) => void> }, onFocus: { type: Function as PropType }, onBlur: { type: Function as PropType }, onMousedown: { type: Function as PropType }, onMouseup: { type: Function as PropType }, onMouseenter: { type: Function as PropType }, onMouseleave: { type: Function as PropType }, onClick: { type: Function as PropType }, onContextmenu: { type: Function as PropType }, onKeydown: { type: Function as PropType<(event: KeyboardEvent, preventDefault: () => void) => void>, }, // WAI-ARIA role: String, name: String, autocomplete: String, direction: { type: String as PropType<'ltr' | 'rtl'> }, showToday: { type: Boolean, default: undefined }, showTime: { type: [Boolean, Object] as PropType>, default: undefined, }, locale: { type: Object as PropType }, size: { type: String as PropType }, bordered: { type: Boolean, default: undefined }, dateRender: { type: Function as PropType> }, disabledDate: { type: Function as PropType<(date: DateType) => boolean> }, mode: { type: String as PropType }, picker: { type: String as PropType }, valueFormat: String, }; } export interface CommonProps { id?: string; prefixCls?: string; dropdownClassName?: string; dropdownAlign?: AlignType; popupStyle?: CSSProperties; transitionName?: string; placeholder?: string; allowClear?: boolean; autofocus?: boolean; disabled?: boolean; tabindex?: number; open?: boolean; defaultOpen?: boolean; inputReadOnly?: boolean; suffixIcon?: VueNode; clearIcon?: VueNode; prevIcon?: VueNode; nextIcon?: VueNode; superPrevIcon?: VueNode; superNextIcon?: VueNode; getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement; panelRender?: (originPanel: VueNode) => VueNode; onChange?: (value: DateType | string | null, dateString: string) => void; 'onUpdate:value'?: (value: DateType | string | null) => void; onOk?: (value: DateType | string | null) => void; onOpenChange?: (open: boolean) => void; 'onUpdate:open'?: (open: boolean) => void; onFocus?: FocusEventHandler; onBlur?: FocusEventHandler; onMousedown?: MouseEventHandler; onMouseup?: MouseEventHandler; onMouseenter?: MouseEventHandler; onMouseleave?: MouseEventHandler; onClick?: MouseEventHandler; onContextmenu?: MouseEventHandler; onKeydown?: (event: KeyboardEvent, preventDefault: () => void) => void; role?: string; name?: string; autocomplete?: string; direction?: 'ltr' | 'rtl'; showToday?: boolean; showTime?: boolean | SharedTimeProps; locale?: PickerLocale; size?: SizeType; bordered?: boolean; dateRender?: DateRender; disabledDate?: (date: DateType) => boolean; mode?: PanelMode; picker?: PickerMode; valueFormat?: string; } function datePickerProps() { return { defaultPickerValue: { type: [String, Object] as PropType }, defaultValue: { type: [String, Object] as PropType }, value: { type: [String, Object] as PropType }, disabledTime: { type: Function as PropType> }, format: { type: [String, Function, Array] as PropType< string | CustomFormat | (string | CustomFormat)[] >, }, renderExtraFooter: { type: Function as PropType<(mode: PanelMode) => VueNode> }, showNow: { type: Boolean, default: undefined }, monthCellRender: { type: Function as PropType> }, // deprecated Please use `monthCellRender"` instead.', monthCellContentRender: { type: Function as PropType> }, }; } export interface DatePickerProps { defaultPickerValue?: DateType | string; defaultValue?: DateType | string; value?: DateType | string; disabledTime?: DisabledTime; format?: string | CustomFormat | (string | CustomFormat)[]; renderExtraFooter?: (mode: PanelMode) => VueNode; showNow?: boolean; monthCellRender?: MonthCellRender; // deprecated Please use `monthCellRender"` instead.', monthCellContentRender?: MonthCellRender; } function rangePickerProps() { return { allowEmpty: { type: Array as unknown as PropType<[boolean, boolean]> }, dateRender: { type: Function as PropType> }, defaultPickerValue: { type: Array as unknown as PropType | RangeValue>, }, defaultValue: { type: Array as unknown as PropType | RangeValue> }, value: { type: Array as unknown as PropType | RangeValue> }, disabledTime: { type: Function as PropType<(date: EventValue, type: RangeType) => DisabledTimes>, }, disabled: { type: [Boolean, Array] as unknown as PropType }, format: String, renderExtraFooter: { type: Function as PropType<() => VueNode> }, separator: { type: String }, ranges: { type: Object as PropType< Record< string, Exclude, null> | (() => Exclude, null>) > >, }, placeholder: Array, mode: { type: Array as unknown as PropType<[PanelMode, PanelMode]> }, onChange: { type: Function as PropType< ( value: RangeValue | RangeValue | null, dateString: [string, string], ) => void >, }, 'onUpdate:value': { type: Function as PropType<(value: RangeValue | RangeValue | null) => void>, }, onCalendarChange: { type: Function as PropType< ( values: RangeValue | RangeValue, formatString: [string, string], info: RangeInfo, ) => void >, }, onPanelChange: { type: Function as PropType< (values: RangeValue | RangeValue, modes: [PanelMode, PanelMode]) => void >, }, onOk: { type: Function as PropType<(dates: RangeValue | RangeValue) => void>, }, }; } export interface RangePickerProps { allowEmpty?: [boolean, boolean]; dateRender?: RangeDateRender; defaultPickerValue?: RangeValue | RangeValue; defaultValue?: RangeValue | RangeValue; value?: RangeValue | RangeValue; disabledTime?: (date: EventValue, type: RangeType) => DisabledTimes; disabled?: [boolean, boolean]; format?: string; renderExtraFooter?: () => VueNode; separator?: string; ranges?: Record< string, Exclude, null> | (() => Exclude, null>) >; placeholder?: [string, string]; mode?: [PanelMode, PanelMode]; onChange?: ( value: RangeValue | RangeValue | null, dateString: [string, string], ) => void; 'onUpdate:value'?: (value: RangeValue | RangeValue | null) => void; onCalendarChange?: ( values: RangeValue | RangeValue, formatString: [string, string], info: RangeInfo, ) => void; onPanelChange?: ( values: RangeValue | RangeValue, modes: [PanelMode, PanelMode], ) => void; onOk?: (dates: RangeValue | RangeValue) => void; } export type ExtraDatePickerProps = { valueFormat?: string; defaultPickerValue?: DateType | string; defaultValue?: DateType | string; value?: DateType | string; }; export type ExtraRangePickerProps = { valueFormat?: string; defaultPickerValue?: RangeValue | RangeValue; defaultValue?: RangeValue | RangeValue; value?: RangeValue | RangeValue; }; export { commonProps, datePickerProps, rangePickerProps };