/**
* @file DatePicker
* @description 时间选择器组件
* @author fex
*/
///
import React from 'react';
import moment from 'moment';
import { ThemeProps } from 'amis-core';
import { LocaleProps } from 'amis-core';
import type { Moment } from 'moment';
import type { RendererEnv } from 'amis-core';
import type { ChangeEventViewMode } from './calendar/Calendar';
export type ShortCutDate = {
label: string;
/** 支持表达式 */
date: moment.Moment | string;
};
export type ShortCutDateRange = {
label: string;
startDate?: moment.Moment | string;
endDate?: moment.Moment | string;
};
export type ShortCuts = {
label: string;
value: string;
} | ShortCutDate | ShortCutDateRange;
export interface DateProps extends LocaleProps, ThemeProps {
viewMode: 'years' | 'months' | 'days' | 'time' | 'quarters';
className?: string;
popoverClassName?: string;
placeholder?: string;
inputFormat?: string;
displayFormat?: string;
timeFormat?: string;
format?: string;
valueFormat?: string;
closeOnSelect: boolean;
disabled?: boolean;
minDate?: moment.Moment;
maxDate?: moment.Moment;
minDateRaw?: string;
maxDateRaw?: string;
clearable?: boolean;
defaultValue?: any;
utc?: boolean;
onChange: (value: any) => void;
value?: any;
shortcuts: string | Array;
overlayPlacement: string;
dateFormat?: string;
timeConstraints?: {
hours?: {
min: number;
max: number;
step: number;
};
minutes?: {
min: number;
max: number;
step: number;
};
seconds: {
min: number;
max: number;
step: number;
};
};
popOverContainer?: any;
label?: string | false;
borderMode?: 'full' | 'half' | 'none';
embed?: boolean;
schedules?: Array<{
startTime: Date;
endTime: Date;
content: any;
className?: string;
}>;
scheduleClassNames?: Array;
env?: RendererEnv;
largeMode?: boolean;
todayActiveStyle?: React.CSSProperties;
onScheduleClick?: (scheduleData: any) => void;
mobileCalendarMode?: 'picker' | 'calendar';
onFocus?: Function;
onBlur?: Function;
onRef?: any;
data?: any;
isEndDate?: boolean;
disabledDate?: (date: moment.Moment) => any;
onClick?: (date: moment.Moment) => any;
onMouseEnter?: (date: moment.Moment) => any;
onMouseLeave?: (date: moment.Moment) => any;
}
export interface DatePickerState {
isOpened: boolean;
isFocused: boolean;
value: moment.Moment | undefined;
inputValue: string | undefined;
curTimeFormat: string;
curDateFormat: string;
isModified: boolean;
}
export declare class DatePicker extends React.Component {
static defaultProps: {
viewMode: "time" | "days" | "years" | "months";
shortcuts: string;
closeOnSelect: boolean;
overlayPlacement: string;
scheduleClassNames: string[];
};
constructor(props: DateProps);
dom: HTMLDivElement;
inputRef: React.RefObject;
inputValueCache: string;
componentDidMount(): void;
componentDidUpdate(prevProps: DateProps): void;
isConfirmMode(): boolean;
focus(): void;
handleFocus(e: React.SyntheticEvent): void;
handleBlur(e: React.SyntheticEvent): void;
handleKeyPress(e: React.KeyboardEvent): void;
handleClick(): void;
handlePopOverClick(e: React.MouseEvent): void;
open(fn?: () => void): void;
close(): void;
clearValue(e: React.MouseEvent): void;
clear(): void;
reset(resetValue?: any): void;
/**
* 如果为日期时间选择器,则单独处理时间选择事件,点击确认的时候才触发onChange
*/
handleConfirm(): void;
handleChange(value: Moment, viewMode?: ChangeEventViewMode): void;
inputChange(e: React.ChangeEvent): void;
onInputBlur(): void;
selectShortcut(shortcut: any): void;
checkIsValidDate(currentDate: moment.Moment): boolean;
getTarget(): HTMLDivElement;
getParent(): HTMLDivElement;
domRef: (ref: HTMLDivElement) => void;
getAvailableShortcuts(key: string): any;
renderShortCuts(shortcuts: string | Array): React.JSX.Element | null;
render(): React.JSX.Element;
}
declare const _default: {
new (props: Omit, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps): {
ref: any;
childRef(ref: any): void;
getWrappedInstance(): any;
render(): React.JSX.Element;
context: unknown;
setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>;
state: Readonly<{}>;
refs: {
[key: string]: React.ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, prevState: Readonly<{}>): any;
componentDidUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, prevState: Readonly<{}>, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): void;
};
displayName: string;
contextType: React.Context;
ComposedComponent: React.ComponentType<{
new (props: Pick, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}): {
ref: any;
childRef(ref: any): void;
getWrappedInstance(): any;
render(): React.JSX.Element;
context: unknown;
setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>;
state: Readonly<{}>;
refs: {
[key: string]: React.ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, prevState: Readonly<{}>): any;
componentDidUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, prevState: Readonly<{}>, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): void;
};
displayName: string;
contextType: React.Context;
ComposedComponent: React.ComponentType;
} & import("hoist-non-react-statics").NonReactStatics & {
ComposedComponent: typeof DatePicker;
}>;
} & import("hoist-non-react-statics").NonReactStatics<{
new (props: Pick, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}): {
ref: any;
childRef(ref: any): void;
getWrappedInstance(): any;
render(): React.JSX.Element;
context: unknown;
setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>;
state: Readonly<{}>;
refs: {
[key: string]: React.ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, prevState: Readonly<{}>): any;
componentDidUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, prevState: Readonly<{}>, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): void;
};
displayName: string;
contextType: React.Context;
ComposedComponent: React.ComponentType;
} & import("hoist-non-react-statics").NonReactStatics & {
ComposedComponent: typeof DatePicker;
}, {}> & {
ComposedComponent: {
new (props: Pick, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}): {
ref: any;
childRef(ref: any): void;
getWrappedInstance(): any;
render(): React.JSX.Element;
context: unknown;
setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
forceUpdate(callback?: (() => void) | undefined): void;
readonly props: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>;
state: Readonly<{}>;
refs: {
[key: string]: React.ReactInstance;
};
componentDidMount?(): void;
shouldComponentUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): boolean;
componentWillUnmount?(): void;
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
getSnapshotBeforeUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, prevState: Readonly<{}>): any;
componentDidUpdate?(prevProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, prevState: Readonly<{}>, snapshot?: any): void;
componentWillMount?(): void;
UNSAFE_componentWillMount?(): void;
componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextContext: any): void;
UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextContext: any): void;
componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): void;
UNSAFE_componentWillUpdate?(nextProps: Readonly, "classnames" | "classPrefix" | "data" | "embed" | "label" | "style" | "className" | "theme" | "mobileUI" | "value" | "onClick" | "onMouseEnter" | "onMouseLeave" | "disabled" | "onFocus" | "onBlur" | "onChange" | "placeholder" | "clearable" | "popoverClassName" | "inputFormat" | "displayFormat" | "timeFormat" | "format" | "valueFormat" | "minDate" | "maxDate" | "minDateRaw" | "maxDateRaw" | "defaultValue" | "utc" | "dateFormat" | "timeConstraints" | "popOverContainer" | "borderMode" | "schedules" | "env" | "largeMode" | "todayActiveStyle" | "onScheduleClick" | "mobileCalendarMode" | "onRef" | "isEndDate" | "disabledDate"> & {
viewMode?: "time" | "days" | "years" | "months" | "quarters" | undefined;
closeOnSelect?: boolean | undefined;
shortcuts?: string | ShortCuts[] | undefined;
overlayPlacement?: string | undefined;
scheduleClassNames?: string[] | undefined;
} & {} & {
locale?: string | undefined;
translate?: ((str: string, ...args: any[]) => string) | undefined;
}>, nextState: Readonly<{}>, nextContext: any): void;
};
displayName: string;
contextType: React.Context;
ComposedComponent: React.ComponentType;
} & import("hoist-non-react-statics").NonReactStatics & {
ComposedComponent: typeof DatePicker;
};
};
export default _default;