amis 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/lib/components/Card.d.ts +96 -0
- package/lib/components/Card.js +85 -0
- package/lib/components/Card.js.map +13 -0
- package/lib/components/DatePicker.d.ts +85 -84
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/DateRangePicker.d.ts +84 -84
- package/lib/components/MonthRangePicker.d.ts +84 -84
- package/lib/components/Picker.d.ts +503 -0
- package/lib/components/Picker.js +65 -0
- package/lib/components/Picker.js.map +13 -0
- package/lib/components/PickerColumn.d.ts +29 -459
- package/lib/components/PickerColumn.js +35 -44
- package/lib/components/PickerColumn.js.map +2 -2
- package/lib/components/Select.d.ts +238 -238
- package/lib/components/Select.js +9 -2
- package/lib/components/Select.js.map +2 -2
- package/lib/components/Selection.js +1 -4
- package/lib/components/Selection.js.map +2 -2
- package/lib/components/Switch.d.ts +6 -6
- package/lib/components/Switch.js.map +2 -2
- package/lib/components/calendar/Calendar.js +15 -0
- package/lib/components/calendar/Calendar.js.map +2 -2
- package/lib/components/calendar/DaysView.js +4 -4
- package/lib/components/calendar/DaysView.js.map +2 -2
- package/lib/components/calendar/TimeView.d.ts +10 -0
- package/lib/components/calendar/TimeView.js +55 -2
- package/lib/components/calendar/TimeView.js.map +2 -2
- package/lib/components/calendar/YearsView.d.ts +9 -0
- package/lib/components/calendar/YearsView.js +19 -0
- package/lib/components/calendar/YearsView.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Card.d.ts +81 -13
- package/lib/renderers/Card.js +178 -81
- package/lib/renderers/Card.js.map +2 -2
- package/lib/renderers/Form/DiffEditor.d.ts +145 -37
- package/lib/renderers/Form/Editor.d.ts +144 -36
- package/lib/renderers/Form/Formula.js +5 -5
- package/lib/renderers/Form/Formula.js.map +2 -2
- package/lib/renderers/Form/InputCity.d.ts +84 -84
- package/lib/renderers/Form/InputFile.js +2 -2
- package/lib/renderers/Form/InputFile.js.map +2 -2
- package/lib/renderers/Form/index.js +10 -0
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Form/wrapControl.js +3 -2
- package/lib/renderers/Form/wrapControl.js.map +2 -2
- package/lib/store/combo.d.ts +160 -40
- package/lib/store/form.d.ts +64 -16
- package/lib/store/formItem.d.ts +4 -2
- package/lib/store/formItem.js +11 -6
- package/lib/store/formItem.js.map +2 -2
- package/lib/store/table.d.ts +128 -32
- package/lib/themes/ang-ie11.css +177 -30
- package/lib/themes/ang.css +177 -30
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +177 -30
- package/lib/themes/antd.css +177 -30
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +177 -30
- package/lib/themes/cxd.css +177 -30
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +177 -30
- package/lib/themes/dark.css +177 -30
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +177 -30
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.d.ts +7 -0
- package/lib/utils/helper.js +33 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +2 -2
- package/schema.json +157 -13
- package/scss/_properties.scss +13 -2
- package/scss/components/_card.scss +155 -15
- package/scss/components/_nav.scss +1 -1
- package/scss/components/_picker-columns.scss +20 -14
- package/scss/components/form/_file.scss +2 -2
- package/scss/components/form/_selection.scss +4 -0
- package/scss/components/form/_switch.scss +6 -0
- package/sdk/ang-ie11.css +214 -40
- package/sdk/ang.css +216 -32
- package/sdk/antd-ie11.css +214 -40
- package/sdk/antd.css +216 -32
- package/sdk/charts.js +14 -14
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +206 -32
- package/sdk/cxd.css +216 -32
- package/sdk/dark-ie11.css +214 -40
- package/sdk/dark.css +216 -32
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +18 -18
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +206 -32
- package/sdk/sdk.css +216 -32
- package/sdk/sdk.js +1190 -1186
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/components/Card.tsx +203 -0
- package/src/components/DatePicker.tsx +3 -0
- package/src/components/Picker.tsx +145 -0
- package/src/components/PickerColumn.tsx +58 -95
- package/src/components/Select.tsx +17 -12
- package/src/components/Selection.tsx +1 -4
- package/src/components/Switch.tsx +7 -7
- package/src/components/calendar/Calendar.tsx +18 -0
- package/src/components/calendar/DaysView.tsx +6 -4
- package/src/components/calendar/TimeView.tsx +80 -5
- package/src/components/calendar/YearsView.tsx +44 -1
- package/src/renderers/Card.tsx +299 -191
- package/src/renderers/Form/Formula.tsx +7 -5
- package/src/renderers/Form/InputFile.tsx +6 -2
- package/src/renderers/Form/index.tsx +12 -0
- package/src/renderers/Form/wrapControl.tsx +5 -2
- package/src/store/formItem.ts +12 -6
- package/src/utils/helper.ts +34 -0
@@ -72,6 +72,7 @@ export interface DateProps extends LocaleProps, ThemeProps {
|
|
72
72
|
scheduleClassNames?: Array<string>;
|
73
73
|
largeMode?: boolean;
|
74
74
|
onScheduleClick?: (scheduleData: any) => void;
|
75
|
+
useMobileUI?: boolean;
|
75
76
|
}
|
76
77
|
export interface DatePickerState {
|
77
78
|
isOpened: boolean;
|
@@ -110,7 +111,7 @@ export declare class DatePicker extends React.Component<DateProps, DatePickerSta
|
|
110
111
|
render(): JSX.Element;
|
111
112
|
}
|
112
113
|
declare const _default: {
|
113
|
-
new (props: (Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
114
|
+
new (props: (Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
114
115
|
viewMode: "time" | "years" | "months" | "days";
|
115
116
|
shortcuts: string;
|
116
117
|
closeOnSelect: boolean;
|
@@ -119,7 +120,7 @@ declare const _default: {
|
|
119
120
|
}, never>> & {
|
120
121
|
locale?: string | undefined;
|
121
122
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
122
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
123
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
123
124
|
viewMode: "time" | "years" | "months" | "days";
|
124
125
|
shortcuts: string;
|
125
126
|
closeOnSelect: boolean;
|
@@ -131,7 +132,7 @@ declare const _default: {
|
|
131
132
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
132
133
|
render(): JSX.Element;
|
133
134
|
context: any;
|
134
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
135
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
135
136
|
viewMode: "time" | "years" | "months" | "days";
|
136
137
|
shortcuts: string;
|
137
138
|
closeOnSelect: boolean;
|
@@ -142,7 +143,7 @@ declare const _default: {
|
|
142
143
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
143
144
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
144
145
|
forceUpdate(callback?: (() => void) | undefined): void;
|
145
|
-
readonly props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
146
|
+
readonly props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
146
147
|
viewMode: "time" | "years" | "months" | "days";
|
147
148
|
shortcuts: string;
|
148
149
|
closeOnSelect: boolean;
|
@@ -159,7 +160,7 @@ declare const _default: {
|
|
159
160
|
[key: string]: React.ReactInstance;
|
160
161
|
};
|
161
162
|
componentDidMount?(): void;
|
162
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
163
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
163
164
|
viewMode: "time" | "years" | "months" | "days";
|
164
165
|
shortcuts: string;
|
165
166
|
closeOnSelect: boolean;
|
@@ -171,7 +172,7 @@ declare const _default: {
|
|
171
172
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
172
173
|
componentWillUnmount?(): void;
|
173
174
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
174
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
175
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
175
176
|
viewMode: "time" | "years" | "months" | "days";
|
176
177
|
shortcuts: string;
|
177
178
|
closeOnSelect: boolean;
|
@@ -181,7 +182,7 @@ declare const _default: {
|
|
181
182
|
locale?: string | undefined;
|
182
183
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
183
184
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
184
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
185
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
185
186
|
viewMode: "time" | "years" | "months" | "days";
|
186
187
|
shortcuts: string;
|
187
188
|
closeOnSelect: boolean;
|
@@ -193,7 +194,7 @@ declare const _default: {
|
|
193
194
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
194
195
|
componentWillMount?(): void;
|
195
196
|
UNSAFE_componentWillMount?(): void;
|
196
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
197
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
197
198
|
viewMode: "time" | "years" | "months" | "days";
|
198
199
|
shortcuts: string;
|
199
200
|
closeOnSelect: boolean;
|
@@ -203,7 +204,7 @@ declare const _default: {
|
|
203
204
|
locale?: string | undefined;
|
204
205
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
205
206
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
206
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
207
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
207
208
|
viewMode: "time" | "years" | "months" | "days";
|
208
209
|
shortcuts: string;
|
209
210
|
closeOnSelect: boolean;
|
@@ -213,7 +214,7 @@ declare const _default: {
|
|
213
214
|
locale?: string | undefined;
|
214
215
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
215
216
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
216
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
217
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
217
218
|
viewMode: "time" | "years" | "months" | "days";
|
218
219
|
shortcuts: string;
|
219
220
|
closeOnSelect: boolean;
|
@@ -223,7 +224,7 @@ declare const _default: {
|
|
223
224
|
locale?: string | undefined;
|
224
225
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
225
226
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
226
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
227
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
227
228
|
viewMode: "time" | "years" | "months" | "days";
|
228
229
|
shortcuts: string;
|
229
230
|
closeOnSelect: boolean;
|
@@ -234,7 +235,7 @@ declare const _default: {
|
|
234
235
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
235
236
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
236
237
|
};
|
237
|
-
new (props: Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
238
|
+
new (props: Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
238
239
|
viewMode: "time" | "years" | "months" | "days";
|
239
240
|
shortcuts: string;
|
240
241
|
closeOnSelect: boolean;
|
@@ -246,7 +247,7 @@ declare const _default: {
|
|
246
247
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
247
248
|
render(): JSX.Element;
|
248
249
|
context: any;
|
249
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
250
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
250
251
|
viewMode: "time" | "years" | "months" | "days";
|
251
252
|
shortcuts: string;
|
252
253
|
closeOnSelect: boolean;
|
@@ -257,7 +258,7 @@ declare const _default: {
|
|
257
258
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
258
259
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
259
260
|
forceUpdate(callback?: (() => void) | undefined): void;
|
260
|
-
readonly props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
261
|
+
readonly props: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
261
262
|
viewMode: "time" | "years" | "months" | "days";
|
262
263
|
shortcuts: string;
|
263
264
|
closeOnSelect: boolean;
|
@@ -274,7 +275,7 @@ declare const _default: {
|
|
274
275
|
[key: string]: React.ReactInstance;
|
275
276
|
};
|
276
277
|
componentDidMount?(): void;
|
277
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
278
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
278
279
|
viewMode: "time" | "years" | "months" | "days";
|
279
280
|
shortcuts: string;
|
280
281
|
closeOnSelect: boolean;
|
@@ -286,7 +287,7 @@ declare const _default: {
|
|
286
287
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
287
288
|
componentWillUnmount?(): void;
|
288
289
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
289
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
290
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
290
291
|
viewMode: "time" | "years" | "months" | "days";
|
291
292
|
shortcuts: string;
|
292
293
|
closeOnSelect: boolean;
|
@@ -296,7 +297,7 @@ declare const _default: {
|
|
296
297
|
locale?: string | undefined;
|
297
298
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
298
299
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
299
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
300
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
300
301
|
viewMode: "time" | "years" | "months" | "days";
|
301
302
|
shortcuts: string;
|
302
303
|
closeOnSelect: boolean;
|
@@ -308,7 +309,7 @@ declare const _default: {
|
|
308
309
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
309
310
|
componentWillMount?(): void;
|
310
311
|
UNSAFE_componentWillMount?(): void;
|
311
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
312
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
312
313
|
viewMode: "time" | "years" | "months" | "days";
|
313
314
|
shortcuts: string;
|
314
315
|
closeOnSelect: boolean;
|
@@ -318,7 +319,7 @@ declare const _default: {
|
|
318
319
|
locale?: string | undefined;
|
319
320
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
320
321
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
321
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
322
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
322
323
|
viewMode: "time" | "years" | "months" | "days";
|
323
324
|
shortcuts: string;
|
324
325
|
closeOnSelect: boolean;
|
@@ -328,7 +329,7 @@ declare const _default: {
|
|
328
329
|
locale?: string | undefined;
|
329
330
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
330
331
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
331
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
332
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
332
333
|
viewMode: "time" | "years" | "months" | "days";
|
333
334
|
shortcuts: string;
|
334
335
|
closeOnSelect: boolean;
|
@@ -338,7 +339,7 @@ declare const _default: {
|
|
338
339
|
locale?: string | undefined;
|
339
340
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
340
341
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
341
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
342
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
342
343
|
viewMode: "time" | "years" | "months" | "days";
|
343
344
|
shortcuts: string;
|
344
345
|
closeOnSelect: boolean;
|
@@ -352,7 +353,7 @@ declare const _default: {
|
|
352
353
|
displayName: string;
|
353
354
|
contextType: React.Context<string>;
|
354
355
|
ComposedComponent: React.ComponentType<{
|
355
|
-
new (props: (Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
356
|
+
new (props: (Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
356
357
|
viewMode: "time" | "years" | "months" | "days";
|
357
358
|
shortcuts: string;
|
358
359
|
closeOnSelect: boolean;
|
@@ -361,7 +362,7 @@ declare const _default: {
|
|
361
362
|
}, never>> & {
|
362
363
|
locale?: string | undefined;
|
363
364
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
364
|
-
}) | Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
365
|
+
}) | Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
365
366
|
viewMode: "time" | "years" | "months" | "days";
|
366
367
|
shortcuts: string;
|
367
368
|
closeOnSelect: boolean;
|
@@ -373,7 +374,7 @@ declare const _default: {
|
|
373
374
|
}>): {
|
374
375
|
render(): JSX.Element;
|
375
376
|
context: any;
|
376
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
377
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
377
378
|
viewMode: "time" | "years" | "months" | "days";
|
378
379
|
shortcuts: string;
|
379
380
|
closeOnSelect: boolean;
|
@@ -384,7 +385,7 @@ declare const _default: {
|
|
384
385
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
385
386
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
386
387
|
forceUpdate(callback?: (() => void) | undefined): void;
|
387
|
-
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
388
|
+
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
388
389
|
viewMode: "time" | "years" | "months" | "days";
|
389
390
|
shortcuts: string;
|
390
391
|
closeOnSelect: boolean;
|
@@ -401,7 +402,7 @@ declare const _default: {
|
|
401
402
|
[key: string]: React.ReactInstance;
|
402
403
|
};
|
403
404
|
componentDidMount?(): void;
|
404
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
405
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
405
406
|
viewMode: "time" | "years" | "months" | "days";
|
406
407
|
shortcuts: string;
|
407
408
|
closeOnSelect: boolean;
|
@@ -413,7 +414,7 @@ declare const _default: {
|
|
413
414
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
414
415
|
componentWillUnmount?(): void;
|
415
416
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
416
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
417
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
417
418
|
viewMode: "time" | "years" | "months" | "days";
|
418
419
|
shortcuts: string;
|
419
420
|
closeOnSelect: boolean;
|
@@ -423,7 +424,7 @@ declare const _default: {
|
|
423
424
|
locale?: string | undefined;
|
424
425
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
425
426
|
}>, prevState: Readonly<{}>): any;
|
426
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
427
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
427
428
|
viewMode: "time" | "years" | "months" | "days";
|
428
429
|
shortcuts: string;
|
429
430
|
closeOnSelect: boolean;
|
@@ -435,7 +436,7 @@ declare const _default: {
|
|
435
436
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
436
437
|
componentWillMount?(): void;
|
437
438
|
UNSAFE_componentWillMount?(): void;
|
438
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
439
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
439
440
|
viewMode: "time" | "years" | "months" | "days";
|
440
441
|
shortcuts: string;
|
441
442
|
closeOnSelect: boolean;
|
@@ -445,7 +446,7 @@ declare const _default: {
|
|
445
446
|
locale?: string | undefined;
|
446
447
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
447
448
|
}>, nextContext: any): void;
|
448
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
449
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
449
450
|
viewMode: "time" | "years" | "months" | "days";
|
450
451
|
shortcuts: string;
|
451
452
|
closeOnSelect: boolean;
|
@@ -455,7 +456,7 @@ declare const _default: {
|
|
455
456
|
locale?: string | undefined;
|
456
457
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
457
458
|
}>, nextContext: any): void;
|
458
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
459
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
459
460
|
viewMode: "time" | "years" | "months" | "days";
|
460
461
|
shortcuts: string;
|
461
462
|
closeOnSelect: boolean;
|
@@ -465,7 +466,7 @@ declare const _default: {
|
|
465
466
|
locale?: string | undefined;
|
466
467
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
467
468
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
468
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
469
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
469
470
|
viewMode: "time" | "years" | "months" | "days";
|
470
471
|
shortcuts: string;
|
471
472
|
closeOnSelect: boolean;
|
@@ -476,7 +477,7 @@ declare const _default: {
|
|
476
477
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
477
478
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
478
479
|
};
|
479
|
-
new (props: Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
480
|
+
new (props: Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
480
481
|
viewMode: "time" | "years" | "months" | "days";
|
481
482
|
shortcuts: string;
|
482
483
|
closeOnSelect: boolean;
|
@@ -488,7 +489,7 @@ declare const _default: {
|
|
488
489
|
}, context: any): {
|
489
490
|
render(): JSX.Element;
|
490
491
|
context: any;
|
491
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
492
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
492
493
|
viewMode: "time" | "years" | "months" | "days";
|
493
494
|
shortcuts: string;
|
494
495
|
closeOnSelect: boolean;
|
@@ -499,7 +500,7 @@ declare const _default: {
|
|
499
500
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
500
501
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
501
502
|
forceUpdate(callback?: (() => void) | undefined): void;
|
502
|
-
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
503
|
+
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
503
504
|
viewMode: "time" | "years" | "months" | "days";
|
504
505
|
shortcuts: string;
|
505
506
|
closeOnSelect: boolean;
|
@@ -516,7 +517,7 @@ declare const _default: {
|
|
516
517
|
[key: string]: React.ReactInstance;
|
517
518
|
};
|
518
519
|
componentDidMount?(): void;
|
519
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
520
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
520
521
|
viewMode: "time" | "years" | "months" | "days";
|
521
522
|
shortcuts: string;
|
522
523
|
closeOnSelect: boolean;
|
@@ -528,7 +529,7 @@ declare const _default: {
|
|
528
529
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
529
530
|
componentWillUnmount?(): void;
|
530
531
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
531
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
532
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
532
533
|
viewMode: "time" | "years" | "months" | "days";
|
533
534
|
shortcuts: string;
|
534
535
|
closeOnSelect: boolean;
|
@@ -538,7 +539,7 @@ declare const _default: {
|
|
538
539
|
locale?: string | undefined;
|
539
540
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
540
541
|
}>, prevState: Readonly<{}>): any;
|
541
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
542
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
542
543
|
viewMode: "time" | "years" | "months" | "days";
|
543
544
|
shortcuts: string;
|
544
545
|
closeOnSelect: boolean;
|
@@ -550,7 +551,7 @@ declare const _default: {
|
|
550
551
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
551
552
|
componentWillMount?(): void;
|
552
553
|
UNSAFE_componentWillMount?(): void;
|
553
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
554
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
554
555
|
viewMode: "time" | "years" | "months" | "days";
|
555
556
|
shortcuts: string;
|
556
557
|
closeOnSelect: boolean;
|
@@ -560,7 +561,7 @@ declare const _default: {
|
|
560
561
|
locale?: string | undefined;
|
561
562
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
562
563
|
}>, nextContext: any): void;
|
563
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
564
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
564
565
|
viewMode: "time" | "years" | "months" | "days";
|
565
566
|
shortcuts: string;
|
566
567
|
closeOnSelect: boolean;
|
@@ -570,7 +571,7 @@ declare const _default: {
|
|
570
571
|
locale?: string | undefined;
|
571
572
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
572
573
|
}>, nextContext: any): void;
|
573
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
574
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
574
575
|
viewMode: "time" | "years" | "months" | "days";
|
575
576
|
shortcuts: string;
|
576
577
|
closeOnSelect: boolean;
|
@@ -580,7 +581,7 @@ declare const _default: {
|
|
580
581
|
locale?: string | undefined;
|
581
582
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
582
583
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
583
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
584
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
584
585
|
viewMode: "time" | "years" | "months" | "days";
|
585
586
|
shortcuts: string;
|
586
587
|
closeOnSelect: boolean;
|
@@ -598,7 +599,7 @@ declare const _default: {
|
|
598
599
|
ComposedComponent: typeof DatePicker;
|
599
600
|
}>;
|
600
601
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
601
|
-
new (props: (Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
602
|
+
new (props: (Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
602
603
|
viewMode: "time" | "years" | "months" | "days";
|
603
604
|
shortcuts: string;
|
604
605
|
closeOnSelect: boolean;
|
@@ -607,7 +608,7 @@ declare const _default: {
|
|
607
608
|
}, never>> & {
|
608
609
|
locale?: string | undefined;
|
609
610
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
610
|
-
}) | Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
611
|
+
}) | Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
611
612
|
viewMode: "time" | "years" | "months" | "days";
|
612
613
|
shortcuts: string;
|
613
614
|
closeOnSelect: boolean;
|
@@ -619,7 +620,7 @@ declare const _default: {
|
|
619
620
|
}>): {
|
620
621
|
render(): JSX.Element;
|
621
622
|
context: any;
|
622
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
623
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
623
624
|
viewMode: "time" | "years" | "months" | "days";
|
624
625
|
shortcuts: string;
|
625
626
|
closeOnSelect: boolean;
|
@@ -630,7 +631,7 @@ declare const _default: {
|
|
630
631
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
631
632
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
632
633
|
forceUpdate(callback?: (() => void) | undefined): void;
|
633
|
-
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
634
|
+
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
634
635
|
viewMode: "time" | "years" | "months" | "days";
|
635
636
|
shortcuts: string;
|
636
637
|
closeOnSelect: boolean;
|
@@ -647,7 +648,7 @@ declare const _default: {
|
|
647
648
|
[key: string]: React.ReactInstance;
|
648
649
|
};
|
649
650
|
componentDidMount?(): void;
|
650
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
651
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
651
652
|
viewMode: "time" | "years" | "months" | "days";
|
652
653
|
shortcuts: string;
|
653
654
|
closeOnSelect: boolean;
|
@@ -659,7 +660,7 @@ declare const _default: {
|
|
659
660
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
660
661
|
componentWillUnmount?(): void;
|
661
662
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
662
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
663
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
663
664
|
viewMode: "time" | "years" | "months" | "days";
|
664
665
|
shortcuts: string;
|
665
666
|
closeOnSelect: boolean;
|
@@ -669,7 +670,7 @@ declare const _default: {
|
|
669
670
|
locale?: string | undefined;
|
670
671
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
671
672
|
}>, prevState: Readonly<{}>): any;
|
672
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
673
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
673
674
|
viewMode: "time" | "years" | "months" | "days";
|
674
675
|
shortcuts: string;
|
675
676
|
closeOnSelect: boolean;
|
@@ -681,7 +682,7 @@ declare const _default: {
|
|
681
682
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
682
683
|
componentWillMount?(): void;
|
683
684
|
UNSAFE_componentWillMount?(): void;
|
684
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
685
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
685
686
|
viewMode: "time" | "years" | "months" | "days";
|
686
687
|
shortcuts: string;
|
687
688
|
closeOnSelect: boolean;
|
@@ -691,7 +692,7 @@ declare const _default: {
|
|
691
692
|
locale?: string | undefined;
|
692
693
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
693
694
|
}>, nextContext: any): void;
|
694
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
695
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
695
696
|
viewMode: "time" | "years" | "months" | "days";
|
696
697
|
shortcuts: string;
|
697
698
|
closeOnSelect: boolean;
|
@@ -701,7 +702,7 @@ declare const _default: {
|
|
701
702
|
locale?: string | undefined;
|
702
703
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
703
704
|
}>, nextContext: any): void;
|
704
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
705
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
705
706
|
viewMode: "time" | "years" | "months" | "days";
|
706
707
|
shortcuts: string;
|
707
708
|
closeOnSelect: boolean;
|
@@ -711,7 +712,7 @@ declare const _default: {
|
|
711
712
|
locale?: string | undefined;
|
712
713
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
713
714
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
714
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
715
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
715
716
|
viewMode: "time" | "years" | "months" | "days";
|
716
717
|
shortcuts: string;
|
717
718
|
closeOnSelect: boolean;
|
@@ -722,7 +723,7 @@ declare const _default: {
|
|
722
723
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
723
724
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
724
725
|
};
|
725
|
-
new (props: Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
726
|
+
new (props: Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
726
727
|
viewMode: "time" | "years" | "months" | "days";
|
727
728
|
shortcuts: string;
|
728
729
|
closeOnSelect: boolean;
|
@@ -734,7 +735,7 @@ declare const _default: {
|
|
734
735
|
}, context: any): {
|
735
736
|
render(): JSX.Element;
|
736
737
|
context: any;
|
737
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
738
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
738
739
|
viewMode: "time" | "years" | "months" | "days";
|
739
740
|
shortcuts: string;
|
740
741
|
closeOnSelect: boolean;
|
@@ -745,7 +746,7 @@ declare const _default: {
|
|
745
746
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
746
747
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
747
748
|
forceUpdate(callback?: (() => void) | undefined): void;
|
748
|
-
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
749
|
+
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
749
750
|
viewMode: "time" | "years" | "months" | "days";
|
750
751
|
shortcuts: string;
|
751
752
|
closeOnSelect: boolean;
|
@@ -762,7 +763,7 @@ declare const _default: {
|
|
762
763
|
[key: string]: React.ReactInstance;
|
763
764
|
};
|
764
765
|
componentDidMount?(): void;
|
765
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
766
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
766
767
|
viewMode: "time" | "years" | "months" | "days";
|
767
768
|
shortcuts: string;
|
768
769
|
closeOnSelect: boolean;
|
@@ -774,7 +775,7 @@ declare const _default: {
|
|
774
775
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
775
776
|
componentWillUnmount?(): void;
|
776
777
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
777
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
778
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
778
779
|
viewMode: "time" | "years" | "months" | "days";
|
779
780
|
shortcuts: string;
|
780
781
|
closeOnSelect: boolean;
|
@@ -784,7 +785,7 @@ declare const _default: {
|
|
784
785
|
locale?: string | undefined;
|
785
786
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
786
787
|
}>, prevState: Readonly<{}>): any;
|
787
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
788
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
788
789
|
viewMode: "time" | "years" | "months" | "days";
|
789
790
|
shortcuts: string;
|
790
791
|
closeOnSelect: boolean;
|
@@ -796,7 +797,7 @@ declare const _default: {
|
|
796
797
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
797
798
|
componentWillMount?(): void;
|
798
799
|
UNSAFE_componentWillMount?(): void;
|
799
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
800
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
800
801
|
viewMode: "time" | "years" | "months" | "days";
|
801
802
|
shortcuts: string;
|
802
803
|
closeOnSelect: boolean;
|
@@ -806,7 +807,7 @@ declare const _default: {
|
|
806
807
|
locale?: string | undefined;
|
807
808
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
808
809
|
}>, nextContext: any): void;
|
809
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
810
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
810
811
|
viewMode: "time" | "years" | "months" | "days";
|
811
812
|
shortcuts: string;
|
812
813
|
closeOnSelect: boolean;
|
@@ -816,7 +817,7 @@ declare const _default: {
|
|
816
817
|
locale?: string | undefined;
|
817
818
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
818
819
|
}>, nextContext: any): void;
|
819
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
820
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
820
821
|
viewMode: "time" | "years" | "months" | "days";
|
821
822
|
shortcuts: string;
|
822
823
|
closeOnSelect: boolean;
|
@@ -826,7 +827,7 @@ declare const _default: {
|
|
826
827
|
locale?: string | undefined;
|
827
828
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
828
829
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
829
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
830
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
830
831
|
viewMode: "time" | "years" | "months" | "days";
|
831
832
|
shortcuts: string;
|
832
833
|
closeOnSelect: boolean;
|
@@ -844,7 +845,7 @@ declare const _default: {
|
|
844
845
|
ComposedComponent: typeof DatePicker;
|
845
846
|
}, {}> & {
|
846
847
|
ComposedComponent: {
|
847
|
-
new (props: (Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
848
|
+
new (props: (Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
848
849
|
viewMode: "time" | "years" | "months" | "days";
|
849
850
|
shortcuts: string;
|
850
851
|
closeOnSelect: boolean;
|
@@ -853,7 +854,7 @@ declare const _default: {
|
|
853
854
|
}, never>> & {
|
854
855
|
locale?: string | undefined;
|
855
856
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
856
|
-
}) | Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
857
|
+
}) | Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
857
858
|
viewMode: "time" | "years" | "months" | "days";
|
858
859
|
shortcuts: string;
|
859
860
|
closeOnSelect: boolean;
|
@@ -865,7 +866,7 @@ declare const _default: {
|
|
865
866
|
}>): {
|
866
867
|
render(): JSX.Element;
|
867
868
|
context: any;
|
868
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
869
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
869
870
|
viewMode: "time" | "years" | "months" | "days";
|
870
871
|
shortcuts: string;
|
871
872
|
closeOnSelect: boolean;
|
@@ -876,7 +877,7 @@ declare const _default: {
|
|
876
877
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
877
878
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
878
879
|
forceUpdate(callback?: (() => void) | undefined): void;
|
879
|
-
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
880
|
+
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
880
881
|
viewMode: "time" | "years" | "months" | "days";
|
881
882
|
shortcuts: string;
|
882
883
|
closeOnSelect: boolean;
|
@@ -893,7 +894,7 @@ declare const _default: {
|
|
893
894
|
[key: string]: React.ReactInstance;
|
894
895
|
};
|
895
896
|
componentDidMount?(): void;
|
896
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
897
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
897
898
|
viewMode: "time" | "years" | "months" | "days";
|
898
899
|
shortcuts: string;
|
899
900
|
closeOnSelect: boolean;
|
@@ -905,7 +906,7 @@ declare const _default: {
|
|
905
906
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
906
907
|
componentWillUnmount?(): void;
|
907
908
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
908
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
909
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
909
910
|
viewMode: "time" | "years" | "months" | "days";
|
910
911
|
shortcuts: string;
|
911
912
|
closeOnSelect: boolean;
|
@@ -915,7 +916,7 @@ declare const _default: {
|
|
915
916
|
locale?: string | undefined;
|
916
917
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
917
918
|
}>, prevState: Readonly<{}>): any;
|
918
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
919
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
919
920
|
viewMode: "time" | "years" | "months" | "days";
|
920
921
|
shortcuts: string;
|
921
922
|
closeOnSelect: boolean;
|
@@ -927,7 +928,7 @@ declare const _default: {
|
|
927
928
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
928
929
|
componentWillMount?(): void;
|
929
930
|
UNSAFE_componentWillMount?(): void;
|
930
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
931
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
931
932
|
viewMode: "time" | "years" | "months" | "days";
|
932
933
|
shortcuts: string;
|
933
934
|
closeOnSelect: boolean;
|
@@ -937,7 +938,7 @@ declare const _default: {
|
|
937
938
|
locale?: string | undefined;
|
938
939
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
939
940
|
}>, nextContext: any): void;
|
940
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
941
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
941
942
|
viewMode: "time" | "years" | "months" | "days";
|
942
943
|
shortcuts: string;
|
943
944
|
closeOnSelect: boolean;
|
@@ -947,7 +948,7 @@ declare const _default: {
|
|
947
948
|
locale?: string | undefined;
|
948
949
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
949
950
|
}>, nextContext: any): void;
|
950
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
951
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
951
952
|
viewMode: "time" | "years" | "months" | "days";
|
952
953
|
shortcuts: string;
|
953
954
|
closeOnSelect: boolean;
|
@@ -957,7 +958,7 @@ declare const _default: {
|
|
957
958
|
locale?: string | undefined;
|
958
959
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
959
960
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
960
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
961
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
961
962
|
viewMode: "time" | "years" | "months" | "days";
|
962
963
|
shortcuts: string;
|
963
964
|
closeOnSelect: boolean;
|
@@ -968,7 +969,7 @@ declare const _default: {
|
|
968
969
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
969
970
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
970
971
|
};
|
971
|
-
new (props: Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
972
|
+
new (props: Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
972
973
|
viewMode: "time" | "years" | "months" | "days";
|
973
974
|
shortcuts: string;
|
974
975
|
closeOnSelect: boolean;
|
@@ -980,7 +981,7 @@ declare const _default: {
|
|
980
981
|
}, context: any): {
|
981
982
|
render(): JSX.Element;
|
982
983
|
context: any;
|
983
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
984
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
984
985
|
viewMode: "time" | "years" | "months" | "days";
|
985
986
|
shortcuts: string;
|
986
987
|
closeOnSelect: boolean;
|
@@ -991,7 +992,7 @@ declare const _default: {
|
|
991
992
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
992
993
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
993
994
|
forceUpdate(callback?: (() => void) | undefined): void;
|
994
|
-
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
995
|
+
readonly props: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
995
996
|
viewMode: "time" | "years" | "months" | "days";
|
996
997
|
shortcuts: string;
|
997
998
|
closeOnSelect: boolean;
|
@@ -1008,7 +1009,7 @@ declare const _default: {
|
|
1008
1009
|
[key: string]: React.ReactInstance;
|
1009
1010
|
};
|
1010
1011
|
componentDidMount?(): void;
|
1011
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
1012
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
1012
1013
|
viewMode: "time" | "years" | "months" | "days";
|
1013
1014
|
shortcuts: string;
|
1014
1015
|
closeOnSelect: boolean;
|
@@ -1020,7 +1021,7 @@ declare const _default: {
|
|
1020
1021
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1021
1022
|
componentWillUnmount?(): void;
|
1022
1023
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1023
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
1024
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
1024
1025
|
viewMode: "time" | "years" | "months" | "days";
|
1025
1026
|
shortcuts: string;
|
1026
1027
|
closeOnSelect: boolean;
|
@@ -1030,7 +1031,7 @@ declare const _default: {
|
|
1030
1031
|
locale?: string | undefined;
|
1031
1032
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1032
1033
|
}>, prevState: Readonly<{}>): any;
|
1033
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
1034
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
1034
1035
|
viewMode: "time" | "years" | "months" | "days";
|
1035
1036
|
shortcuts: string;
|
1036
1037
|
closeOnSelect: boolean;
|
@@ -1042,7 +1043,7 @@ declare const _default: {
|
|
1042
1043
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1043
1044
|
componentWillMount?(): void;
|
1044
1045
|
UNSAFE_componentWillMount?(): void;
|
1045
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
1046
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
1046
1047
|
viewMode: "time" | "years" | "months" | "days";
|
1047
1048
|
shortcuts: string;
|
1048
1049
|
closeOnSelect: boolean;
|
@@ -1052,7 +1053,7 @@ declare const _default: {
|
|
1052
1053
|
locale?: string | undefined;
|
1053
1054
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1054
1055
|
}>, nextContext: any): void;
|
1055
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
1056
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
1056
1057
|
viewMode: "time" | "years" | "months" | "days";
|
1057
1058
|
shortcuts: string;
|
1058
1059
|
closeOnSelect: boolean;
|
@@ -1062,7 +1063,7 @@ declare const _default: {
|
|
1062
1063
|
locale?: string | undefined;
|
1063
1064
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1064
1065
|
}>, nextContext: any): void;
|
1065
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
1066
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
1066
1067
|
viewMode: "time" | "years" | "months" | "days";
|
1067
1068
|
shortcuts: string;
|
1068
1069
|
closeOnSelect: boolean;
|
@@ -1072,7 +1073,7 @@ declare const _default: {
|
|
1072
1073
|
locale?: string | undefined;
|
1073
1074
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1074
1075
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1075
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "
|
1076
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateProps, keyof LocaleProps>, "classPrefix" | "classnames" | "embed" | "className" | "theme" | "value" | "defaultValue" | "disabled" | "placeholder" | "onChange" | "clearable" | "timeFormat" | "minDate" | "maxDate" | "inputFormat" | "dateFormat" | "utc" | "timeConstraints" | "schedules" | "largeMode" | "onScheduleClick" | "popoverClassName" | "format" | "popOverContainer" | "borderMode" | "useMobileUI"> & Partial<Pick<Omit<DateProps, keyof LocaleProps>, "viewMode" | "closeOnSelect" | "shortcuts" | "overlayPlacement" | "scheduleClassNames">> & Partial<Pick<{
|
1076
1077
|
viewMode: "time" | "years" | "months" | "days";
|
1077
1078
|
shortcuts: string;
|
1078
1079
|
closeOnSelect: boolean;
|