amis 1.5.1 → 1.5.5
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/RootRenderer.d.ts +1 -1
- package/lib/RootRenderer.js +4 -3
- package/lib/RootRenderer.js.map +2 -2
- 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/Collapse.js +1 -1
- package/lib/components/Collapse.js.map +2 -2
- package/lib/components/DatePicker.d.ts +179 -84
- package/lib/components/DatePicker.js +25 -4
- 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/Progress.js +1 -1
- package/lib/components/Progress.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.d.ts +8 -0
- package/lib/components/calendar/Calendar.js +19 -1
- package/lib/components/calendar/Calendar.js.map +2 -2
- package/lib/components/calendar/DaysView.d.ts +8 -0
- package/lib/components/calendar/DaysView.js +71 -0
- 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/CRUD.d.ts +1 -1
- package/lib/renderers/CRUD.js +4 -4
- package/lib/renderers/CRUD.js.map +2 -2
- 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/Dialog.d.ts +2 -2
- package/lib/renderers/Dialog.js +7 -7
- package/lib/renderers/Dialog.js.map +2 -2
- package/lib/renderers/Drawer.js +2 -2
- package/lib/renderers/Drawer.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/InputDate.d.ts +25 -0
- package/lib/renderers/Form/InputDate.js +48 -3
- package/lib/renderers/Form/InputDate.js.map +2 -2
- package/lib/renderers/Form/InputFile.js +2 -2
- package/lib/renderers/Form/InputFile.js.map +2 -2
- package/lib/renderers/Form/Item.d.ts +1 -1
- package/lib/renderers/Form/Item.js +4 -3
- package/lib/renderers/Form/Item.js.map +2 -2
- package/lib/renderers/Form/index.d.ts +1 -1
- package/lib/renderers/Form/index.js +13 -2
- 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/renderers/Page.d.ts +3 -3
- package/lib/renderers/Page.js +4 -3
- package/lib/renderers/Page.js.map +2 -2
- package/lib/renderers/Status.js +1 -1
- package/lib/renderers/Status.js.map +2 -2
- package/lib/renderers/Wizard.d.ts +1 -1
- package/lib/renderers/Wizard.js +93 -36
- package/lib/renderers/Wizard.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 +255 -31
- package/lib/themes/ang.css +255 -31
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +255 -32
- package/lib/themes/antd.css +255 -32
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +263 -31
- package/lib/themes/cxd.css +263 -31
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +255 -31
- package/lib/themes/dark.css +255 -31
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +263 -31
- 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 +209 -20
- package/scss/_properties.scss +14 -3
- package/scss/components/_calendar.scss +81 -0
- 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/_toast.scss +3 -0
- 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/scss/themes/_antd-variables.scss +0 -2
- package/scss/themes/_common.scss +1 -0
- package/scss/themes/_cxd-variables.scss +9 -0
- package/sdk/ang-ie11.css +296 -33
- package/sdk/ang.css +306 -33
- package/sdk/antd-ie11.css +295 -32
- package/sdk/antd.css +306 -34
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +69 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +296 -33
- package/sdk/cxd.css +314 -33
- package/sdk/dark-ie11.css +296 -33
- package/sdk/dark.css +306 -33
- 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 +16 -20
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +296 -33
- package/sdk/sdk.css +314 -33
- package/sdk/sdk.js +1218 -1214
- 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/RootRenderer.tsx +3 -3
- package/src/components/Card.tsx +203 -0
- package/src/components/Collapse.tsx +1 -1
- package/src/components/DatePicker.tsx +44 -3
- package/src/components/Picker.tsx +145 -0
- package/src/components/PickerColumn.tsx +58 -95
- package/src/components/Progress.tsx +1 -1
- 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 +30 -1
- package/src/components/calendar/DaysView.tsx +91 -0
- package/src/components/calendar/TimeView.tsx +80 -5
- package/src/components/calendar/YearsView.tsx +44 -1
- package/src/renderers/CRUD.tsx +3 -4
- package/src/renderers/Card.tsx +299 -191
- package/src/renderers/Dialog.tsx +8 -8
- package/src/renderers/Drawer.tsx +2 -2
- package/src/renderers/Form/Formula.tsx +7 -5
- package/src/renderers/Form/InputDate.tsx +83 -2
- package/src/renderers/Form/InputFile.tsx +6 -2
- package/src/renderers/Form/Item.tsx +2 -2
- package/src/renderers/Form/index.tsx +14 -2
- package/src/renderers/Form/wrapControl.tsx +5 -2
- package/src/renderers/Page.tsx +11 -10
- package/src/renderers/Status.tsx +3 -1
- package/src/renderers/Wizard.tsx +52 -12
- package/src/store/formItem.ts +12 -6
- package/src/utils/helper.ts +34 -0
@@ -98,7 +98,7 @@ export declare class DateRangePicker extends React.Component<DateRangePickerProp
|
|
98
98
|
render(): JSX.Element;
|
99
99
|
}
|
100
100
|
declare const _default: {
|
101
|
-
new (props: (Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
101
|
+
new (props: (Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
102
102
|
placeholder: string;
|
103
103
|
format: string;
|
104
104
|
inputFormat: string;
|
@@ -112,7 +112,7 @@ declare const _default: {
|
|
112
112
|
}, never>> & {
|
113
113
|
locale?: string | undefined;
|
114
114
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
115
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
115
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
116
116
|
placeholder: string;
|
117
117
|
format: string;
|
118
118
|
inputFormat: string;
|
@@ -129,7 +129,7 @@ declare const _default: {
|
|
129
129
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
130
130
|
render(): JSX.Element;
|
131
131
|
context: any;
|
132
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
132
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
133
133
|
placeholder: string;
|
134
134
|
format: string;
|
135
135
|
inputFormat: string;
|
@@ -145,7 +145,7 @@ declare const _default: {
|
|
145
145
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
146
146
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
147
147
|
forceUpdate(callback?: (() => void) | undefined): void;
|
148
|
-
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
148
|
+
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
149
149
|
placeholder: string;
|
150
150
|
format: string;
|
151
151
|
inputFormat: string;
|
@@ -167,7 +167,7 @@ declare const _default: {
|
|
167
167
|
[key: string]: React.ReactInstance;
|
168
168
|
};
|
169
169
|
componentDidMount?(): void;
|
170
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
170
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
171
171
|
placeholder: string;
|
172
172
|
format: string;
|
173
173
|
inputFormat: string;
|
@@ -184,7 +184,7 @@ declare const _default: {
|
|
184
184
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
185
185
|
componentWillUnmount?(): void;
|
186
186
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
187
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
187
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
188
188
|
placeholder: string;
|
189
189
|
format: string;
|
190
190
|
inputFormat: string;
|
@@ -199,7 +199,7 @@ declare const _default: {
|
|
199
199
|
locale?: string | undefined;
|
200
200
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
201
201
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
202
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
202
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
203
203
|
placeholder: string;
|
204
204
|
format: string;
|
205
205
|
inputFormat: string;
|
@@ -216,7 +216,7 @@ declare const _default: {
|
|
216
216
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
217
217
|
componentWillMount?(): void;
|
218
218
|
UNSAFE_componentWillMount?(): void;
|
219
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
219
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
220
220
|
placeholder: string;
|
221
221
|
format: string;
|
222
222
|
inputFormat: string;
|
@@ -231,7 +231,7 @@ declare const _default: {
|
|
231
231
|
locale?: string | undefined;
|
232
232
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
233
233
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
234
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
234
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
235
235
|
placeholder: string;
|
236
236
|
format: string;
|
237
237
|
inputFormat: string;
|
@@ -246,7 +246,7 @@ declare const _default: {
|
|
246
246
|
locale?: string | undefined;
|
247
247
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
248
248
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
249
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
249
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
250
250
|
placeholder: string;
|
251
251
|
format: string;
|
252
252
|
inputFormat: string;
|
@@ -261,7 +261,7 @@ declare const _default: {
|
|
261
261
|
locale?: string | undefined;
|
262
262
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
263
263
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
264
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
264
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
265
265
|
placeholder: string;
|
266
266
|
format: string;
|
267
267
|
inputFormat: string;
|
@@ -277,7 +277,7 @@ declare const _default: {
|
|
277
277
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
278
278
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
279
279
|
};
|
280
|
-
new (props: Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
280
|
+
new (props: Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
281
281
|
placeholder: string;
|
282
282
|
format: string;
|
283
283
|
inputFormat: string;
|
@@ -294,7 +294,7 @@ declare const _default: {
|
|
294
294
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
295
295
|
render(): JSX.Element;
|
296
296
|
context: any;
|
297
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
297
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
298
298
|
placeholder: string;
|
299
299
|
format: string;
|
300
300
|
inputFormat: string;
|
@@ -310,7 +310,7 @@ declare const _default: {
|
|
310
310
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
311
311
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
312
312
|
forceUpdate(callback?: (() => void) | undefined): void;
|
313
|
-
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
313
|
+
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
314
314
|
placeholder: string;
|
315
315
|
format: string;
|
316
316
|
inputFormat: string;
|
@@ -332,7 +332,7 @@ declare const _default: {
|
|
332
332
|
[key: string]: React.ReactInstance;
|
333
333
|
};
|
334
334
|
componentDidMount?(): void;
|
335
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
335
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
336
336
|
placeholder: string;
|
337
337
|
format: string;
|
338
338
|
inputFormat: string;
|
@@ -349,7 +349,7 @@ declare const _default: {
|
|
349
349
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
350
350
|
componentWillUnmount?(): void;
|
351
351
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
352
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
352
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
353
353
|
placeholder: string;
|
354
354
|
format: string;
|
355
355
|
inputFormat: string;
|
@@ -364,7 +364,7 @@ declare const _default: {
|
|
364
364
|
locale?: string | undefined;
|
365
365
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
366
366
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
367
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
367
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
368
368
|
placeholder: string;
|
369
369
|
format: string;
|
370
370
|
inputFormat: string;
|
@@ -381,7 +381,7 @@ declare const _default: {
|
|
381
381
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
382
382
|
componentWillMount?(): void;
|
383
383
|
UNSAFE_componentWillMount?(): void;
|
384
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
384
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
385
385
|
placeholder: string;
|
386
386
|
format: string;
|
387
387
|
inputFormat: string;
|
@@ -396,7 +396,7 @@ declare const _default: {
|
|
396
396
|
locale?: string | undefined;
|
397
397
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
398
398
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
399
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
399
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
400
400
|
placeholder: string;
|
401
401
|
format: string;
|
402
402
|
inputFormat: string;
|
@@ -411,7 +411,7 @@ declare const _default: {
|
|
411
411
|
locale?: string | undefined;
|
412
412
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
413
413
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
414
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
414
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
415
415
|
placeholder: string;
|
416
416
|
format: string;
|
417
417
|
inputFormat: string;
|
@@ -426,7 +426,7 @@ declare const _default: {
|
|
426
426
|
locale?: string | undefined;
|
427
427
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
428
428
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
429
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
429
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
430
430
|
placeholder: string;
|
431
431
|
format: string;
|
432
432
|
inputFormat: string;
|
@@ -445,7 +445,7 @@ declare const _default: {
|
|
445
445
|
displayName: string;
|
446
446
|
contextType: React.Context<string>;
|
447
447
|
ComposedComponent: React.ComponentType<{
|
448
|
-
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
448
|
+
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
449
449
|
placeholder: string;
|
450
450
|
format: string;
|
451
451
|
inputFormat: string;
|
@@ -459,7 +459,7 @@ declare const _default: {
|
|
459
459
|
}, never>> & {
|
460
460
|
locale?: string | undefined;
|
461
461
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
462
|
-
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
462
|
+
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
463
463
|
placeholder: string;
|
464
464
|
format: string;
|
465
465
|
inputFormat: string;
|
@@ -476,7 +476,7 @@ declare const _default: {
|
|
476
476
|
}>): {
|
477
477
|
render(): JSX.Element;
|
478
478
|
context: any;
|
479
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
479
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
480
480
|
placeholder: string;
|
481
481
|
format: string;
|
482
482
|
inputFormat: string;
|
@@ -492,7 +492,7 @@ declare const _default: {
|
|
492
492
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
493
493
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
494
494
|
forceUpdate(callback?: (() => void) | undefined): void;
|
495
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
495
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
496
496
|
placeholder: string;
|
497
497
|
format: string;
|
498
498
|
inputFormat: string;
|
@@ -514,7 +514,7 @@ declare const _default: {
|
|
514
514
|
[key: string]: React.ReactInstance;
|
515
515
|
};
|
516
516
|
componentDidMount?(): void;
|
517
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
517
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
518
518
|
placeholder: string;
|
519
519
|
format: string;
|
520
520
|
inputFormat: string;
|
@@ -531,7 +531,7 @@ declare const _default: {
|
|
531
531
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
532
532
|
componentWillUnmount?(): void;
|
533
533
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
534
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
534
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
535
535
|
placeholder: string;
|
536
536
|
format: string;
|
537
537
|
inputFormat: string;
|
@@ -546,7 +546,7 @@ declare const _default: {
|
|
546
546
|
locale?: string | undefined;
|
547
547
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
548
548
|
}>, prevState: Readonly<{}>): any;
|
549
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
549
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
550
550
|
placeholder: string;
|
551
551
|
format: string;
|
552
552
|
inputFormat: string;
|
@@ -563,7 +563,7 @@ declare const _default: {
|
|
563
563
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
564
564
|
componentWillMount?(): void;
|
565
565
|
UNSAFE_componentWillMount?(): void;
|
566
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
566
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
567
567
|
placeholder: string;
|
568
568
|
format: string;
|
569
569
|
inputFormat: string;
|
@@ -578,7 +578,7 @@ declare const _default: {
|
|
578
578
|
locale?: string | undefined;
|
579
579
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
580
580
|
}>, nextContext: any): void;
|
581
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
581
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
582
582
|
placeholder: string;
|
583
583
|
format: string;
|
584
584
|
inputFormat: string;
|
@@ -593,7 +593,7 @@ declare const _default: {
|
|
593
593
|
locale?: string | undefined;
|
594
594
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
595
595
|
}>, nextContext: any): void;
|
596
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
596
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
597
597
|
placeholder: string;
|
598
598
|
format: string;
|
599
599
|
inputFormat: string;
|
@@ -608,7 +608,7 @@ declare const _default: {
|
|
608
608
|
locale?: string | undefined;
|
609
609
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
610
610
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
611
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
611
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
612
612
|
placeholder: string;
|
613
613
|
format: string;
|
614
614
|
inputFormat: string;
|
@@ -624,7 +624,7 @@ declare const _default: {
|
|
624
624
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
625
625
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
626
626
|
};
|
627
|
-
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
627
|
+
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
628
628
|
placeholder: string;
|
629
629
|
format: string;
|
630
630
|
inputFormat: string;
|
@@ -641,7 +641,7 @@ declare const _default: {
|
|
641
641
|
}, context: any): {
|
642
642
|
render(): JSX.Element;
|
643
643
|
context: any;
|
644
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
644
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
645
645
|
placeholder: string;
|
646
646
|
format: string;
|
647
647
|
inputFormat: string;
|
@@ -657,7 +657,7 @@ declare const _default: {
|
|
657
657
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
658
658
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
659
659
|
forceUpdate(callback?: (() => void) | undefined): void;
|
660
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
660
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
661
661
|
placeholder: string;
|
662
662
|
format: string;
|
663
663
|
inputFormat: string;
|
@@ -679,7 +679,7 @@ declare const _default: {
|
|
679
679
|
[key: string]: React.ReactInstance;
|
680
680
|
};
|
681
681
|
componentDidMount?(): void;
|
682
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
682
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
683
683
|
placeholder: string;
|
684
684
|
format: string;
|
685
685
|
inputFormat: string;
|
@@ -696,7 +696,7 @@ declare const _default: {
|
|
696
696
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
697
697
|
componentWillUnmount?(): void;
|
698
698
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
699
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
699
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
700
700
|
placeholder: string;
|
701
701
|
format: string;
|
702
702
|
inputFormat: string;
|
@@ -711,7 +711,7 @@ declare const _default: {
|
|
711
711
|
locale?: string | undefined;
|
712
712
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
713
713
|
}>, prevState: Readonly<{}>): any;
|
714
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
714
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
715
715
|
placeholder: string;
|
716
716
|
format: string;
|
717
717
|
inputFormat: string;
|
@@ -728,7 +728,7 @@ declare const _default: {
|
|
728
728
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
729
729
|
componentWillMount?(): void;
|
730
730
|
UNSAFE_componentWillMount?(): void;
|
731
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
731
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
732
732
|
placeholder: string;
|
733
733
|
format: string;
|
734
734
|
inputFormat: string;
|
@@ -743,7 +743,7 @@ declare const _default: {
|
|
743
743
|
locale?: string | undefined;
|
744
744
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
745
745
|
}>, nextContext: any): void;
|
746
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
746
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
747
747
|
placeholder: string;
|
748
748
|
format: string;
|
749
749
|
inputFormat: string;
|
@@ -758,7 +758,7 @@ declare const _default: {
|
|
758
758
|
locale?: string | undefined;
|
759
759
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
760
760
|
}>, nextContext: any): void;
|
761
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
761
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
762
762
|
placeholder: string;
|
763
763
|
format: string;
|
764
764
|
inputFormat: string;
|
@@ -773,7 +773,7 @@ declare const _default: {
|
|
773
773
|
locale?: string | undefined;
|
774
774
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
775
775
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
776
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
776
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
777
777
|
placeholder: string;
|
778
778
|
format: string;
|
779
779
|
inputFormat: string;
|
@@ -796,7 +796,7 @@ declare const _default: {
|
|
796
796
|
ComposedComponent: typeof DateRangePicker;
|
797
797
|
}>;
|
798
798
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
799
|
-
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
799
|
+
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
800
800
|
placeholder: string;
|
801
801
|
format: string;
|
802
802
|
inputFormat: string;
|
@@ -810,7 +810,7 @@ declare const _default: {
|
|
810
810
|
}, never>> & {
|
811
811
|
locale?: string | undefined;
|
812
812
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
813
|
-
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
813
|
+
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
814
814
|
placeholder: string;
|
815
815
|
format: string;
|
816
816
|
inputFormat: string;
|
@@ -827,7 +827,7 @@ declare const _default: {
|
|
827
827
|
}>): {
|
828
828
|
render(): JSX.Element;
|
829
829
|
context: any;
|
830
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
830
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
831
831
|
placeholder: string;
|
832
832
|
format: string;
|
833
833
|
inputFormat: string;
|
@@ -843,7 +843,7 @@ declare const _default: {
|
|
843
843
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
844
844
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
845
845
|
forceUpdate(callback?: (() => void) | undefined): void;
|
846
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
846
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
847
847
|
placeholder: string;
|
848
848
|
format: string;
|
849
849
|
inputFormat: string;
|
@@ -865,7 +865,7 @@ declare const _default: {
|
|
865
865
|
[key: string]: React.ReactInstance;
|
866
866
|
};
|
867
867
|
componentDidMount?(): void;
|
868
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
868
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
869
869
|
placeholder: string;
|
870
870
|
format: string;
|
871
871
|
inputFormat: string;
|
@@ -882,7 +882,7 @@ declare const _default: {
|
|
882
882
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
883
883
|
componentWillUnmount?(): void;
|
884
884
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
885
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
885
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
886
886
|
placeholder: string;
|
887
887
|
format: string;
|
888
888
|
inputFormat: string;
|
@@ -897,7 +897,7 @@ declare const _default: {
|
|
897
897
|
locale?: string | undefined;
|
898
898
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
899
899
|
}>, prevState: Readonly<{}>): any;
|
900
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
900
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
901
901
|
placeholder: string;
|
902
902
|
format: string;
|
903
903
|
inputFormat: string;
|
@@ -914,7 +914,7 @@ declare const _default: {
|
|
914
914
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
915
915
|
componentWillMount?(): void;
|
916
916
|
UNSAFE_componentWillMount?(): void;
|
917
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
917
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
918
918
|
placeholder: string;
|
919
919
|
format: string;
|
920
920
|
inputFormat: string;
|
@@ -929,7 +929,7 @@ declare const _default: {
|
|
929
929
|
locale?: string | undefined;
|
930
930
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
931
931
|
}>, nextContext: any): void;
|
932
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
932
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
933
933
|
placeholder: string;
|
934
934
|
format: string;
|
935
935
|
inputFormat: string;
|
@@ -944,7 +944,7 @@ declare const _default: {
|
|
944
944
|
locale?: string | undefined;
|
945
945
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
946
946
|
}>, nextContext: any): void;
|
947
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
947
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
948
948
|
placeholder: string;
|
949
949
|
format: string;
|
950
950
|
inputFormat: string;
|
@@ -959,7 +959,7 @@ declare const _default: {
|
|
959
959
|
locale?: string | undefined;
|
960
960
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
961
961
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
962
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
962
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
963
963
|
placeholder: string;
|
964
964
|
format: string;
|
965
965
|
inputFormat: string;
|
@@ -975,7 +975,7 @@ declare const _default: {
|
|
975
975
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
976
976
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
977
977
|
};
|
978
|
-
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
978
|
+
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
979
979
|
placeholder: string;
|
980
980
|
format: string;
|
981
981
|
inputFormat: string;
|
@@ -992,7 +992,7 @@ declare const _default: {
|
|
992
992
|
}, context: any): {
|
993
993
|
render(): JSX.Element;
|
994
994
|
context: any;
|
995
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
995
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
996
996
|
placeholder: string;
|
997
997
|
format: string;
|
998
998
|
inputFormat: string;
|
@@ -1008,7 +1008,7 @@ declare const _default: {
|
|
1008
1008
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1009
1009
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1010
1010
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1011
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1011
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1012
1012
|
placeholder: string;
|
1013
1013
|
format: string;
|
1014
1014
|
inputFormat: string;
|
@@ -1030,7 +1030,7 @@ declare const _default: {
|
|
1030
1030
|
[key: string]: React.ReactInstance;
|
1031
1031
|
};
|
1032
1032
|
componentDidMount?(): void;
|
1033
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1033
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1034
1034
|
placeholder: string;
|
1035
1035
|
format: string;
|
1036
1036
|
inputFormat: string;
|
@@ -1047,7 +1047,7 @@ declare const _default: {
|
|
1047
1047
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1048
1048
|
componentWillUnmount?(): void;
|
1049
1049
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1050
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1050
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1051
1051
|
placeholder: string;
|
1052
1052
|
format: string;
|
1053
1053
|
inputFormat: string;
|
@@ -1062,7 +1062,7 @@ declare const _default: {
|
|
1062
1062
|
locale?: string | undefined;
|
1063
1063
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1064
1064
|
}>, prevState: Readonly<{}>): any;
|
1065
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1065
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1066
1066
|
placeholder: string;
|
1067
1067
|
format: string;
|
1068
1068
|
inputFormat: string;
|
@@ -1079,7 +1079,7 @@ declare const _default: {
|
|
1079
1079
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1080
1080
|
componentWillMount?(): void;
|
1081
1081
|
UNSAFE_componentWillMount?(): void;
|
1082
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1082
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1083
1083
|
placeholder: string;
|
1084
1084
|
format: string;
|
1085
1085
|
inputFormat: string;
|
@@ -1094,7 +1094,7 @@ declare const _default: {
|
|
1094
1094
|
locale?: string | undefined;
|
1095
1095
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1096
1096
|
}>, nextContext: any): void;
|
1097
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1097
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1098
1098
|
placeholder: string;
|
1099
1099
|
format: string;
|
1100
1100
|
inputFormat: string;
|
@@ -1109,7 +1109,7 @@ declare const _default: {
|
|
1109
1109
|
locale?: string | undefined;
|
1110
1110
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1111
1111
|
}>, nextContext: any): void;
|
1112
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1112
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1113
1113
|
placeholder: string;
|
1114
1114
|
format: string;
|
1115
1115
|
inputFormat: string;
|
@@ -1124,7 +1124,7 @@ declare const _default: {
|
|
1124
1124
|
locale?: string | undefined;
|
1125
1125
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1126
1126
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1127
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1127
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1128
1128
|
placeholder: string;
|
1129
1129
|
format: string;
|
1130
1130
|
inputFormat: string;
|
@@ -1147,7 +1147,7 @@ declare const _default: {
|
|
1147
1147
|
ComposedComponent: typeof DateRangePicker;
|
1148
1148
|
}, {}> & {
|
1149
1149
|
ComposedComponent: {
|
1150
|
-
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1150
|
+
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1151
1151
|
placeholder: string;
|
1152
1152
|
format: string;
|
1153
1153
|
inputFormat: string;
|
@@ -1161,7 +1161,7 @@ declare const _default: {
|
|
1161
1161
|
}, never>> & {
|
1162
1162
|
locale?: string | undefined;
|
1163
1163
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1164
|
-
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1164
|
+
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1165
1165
|
placeholder: string;
|
1166
1166
|
format: string;
|
1167
1167
|
inputFormat: string;
|
@@ -1178,7 +1178,7 @@ declare const _default: {
|
|
1178
1178
|
}>): {
|
1179
1179
|
render(): JSX.Element;
|
1180
1180
|
context: any;
|
1181
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1181
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1182
1182
|
placeholder: string;
|
1183
1183
|
format: string;
|
1184
1184
|
inputFormat: string;
|
@@ -1194,7 +1194,7 @@ declare const _default: {
|
|
1194
1194
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1195
1195
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1196
1196
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1197
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1197
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1198
1198
|
placeholder: string;
|
1199
1199
|
format: string;
|
1200
1200
|
inputFormat: string;
|
@@ -1216,7 +1216,7 @@ declare const _default: {
|
|
1216
1216
|
[key: string]: React.ReactInstance;
|
1217
1217
|
};
|
1218
1218
|
componentDidMount?(): void;
|
1219
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1219
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1220
1220
|
placeholder: string;
|
1221
1221
|
format: string;
|
1222
1222
|
inputFormat: string;
|
@@ -1233,7 +1233,7 @@ declare const _default: {
|
|
1233
1233
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1234
1234
|
componentWillUnmount?(): void;
|
1235
1235
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1236
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1236
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1237
1237
|
placeholder: string;
|
1238
1238
|
format: string;
|
1239
1239
|
inputFormat: string;
|
@@ -1248,7 +1248,7 @@ declare const _default: {
|
|
1248
1248
|
locale?: string | undefined;
|
1249
1249
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1250
1250
|
}>, prevState: Readonly<{}>): any;
|
1251
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1251
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1252
1252
|
placeholder: string;
|
1253
1253
|
format: string;
|
1254
1254
|
inputFormat: string;
|
@@ -1265,7 +1265,7 @@ declare const _default: {
|
|
1265
1265
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1266
1266
|
componentWillMount?(): void;
|
1267
1267
|
UNSAFE_componentWillMount?(): void;
|
1268
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1268
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1269
1269
|
placeholder: string;
|
1270
1270
|
format: string;
|
1271
1271
|
inputFormat: string;
|
@@ -1280,7 +1280,7 @@ declare const _default: {
|
|
1280
1280
|
locale?: string | undefined;
|
1281
1281
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1282
1282
|
}>, nextContext: any): void;
|
1283
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1283
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1284
1284
|
placeholder: string;
|
1285
1285
|
format: string;
|
1286
1286
|
inputFormat: string;
|
@@ -1295,7 +1295,7 @@ declare const _default: {
|
|
1295
1295
|
locale?: string | undefined;
|
1296
1296
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1297
1297
|
}>, nextContext: any): void;
|
1298
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1298
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1299
1299
|
placeholder: string;
|
1300
1300
|
format: string;
|
1301
1301
|
inputFormat: string;
|
@@ -1310,7 +1310,7 @@ declare const _default: {
|
|
1310
1310
|
locale?: string | undefined;
|
1311
1311
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1312
1312
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1313
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1313
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1314
1314
|
placeholder: string;
|
1315
1315
|
format: string;
|
1316
1316
|
inputFormat: string;
|
@@ -1326,7 +1326,7 @@ declare const _default: {
|
|
1326
1326
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1327
1327
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1328
1328
|
};
|
1329
|
-
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1329
|
+
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1330
1330
|
placeholder: string;
|
1331
1331
|
format: string;
|
1332
1332
|
inputFormat: string;
|
@@ -1343,7 +1343,7 @@ declare const _default: {
|
|
1343
1343
|
}, context: any): {
|
1344
1344
|
render(): JSX.Element;
|
1345
1345
|
context: any;
|
1346
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1346
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1347
1347
|
placeholder: string;
|
1348
1348
|
format: string;
|
1349
1349
|
inputFormat: string;
|
@@ -1359,7 +1359,7 @@ declare const _default: {
|
|
1359
1359
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1360
1360
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1361
1361
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1362
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1362
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1363
1363
|
placeholder: string;
|
1364
1364
|
format: string;
|
1365
1365
|
inputFormat: string;
|
@@ -1381,7 +1381,7 @@ declare const _default: {
|
|
1381
1381
|
[key: string]: React.ReactInstance;
|
1382
1382
|
};
|
1383
1383
|
componentDidMount?(): void;
|
1384
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1384
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1385
1385
|
placeholder: string;
|
1386
1386
|
format: string;
|
1387
1387
|
inputFormat: string;
|
@@ -1398,7 +1398,7 @@ declare const _default: {
|
|
1398
1398
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1399
1399
|
componentWillUnmount?(): void;
|
1400
1400
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1401
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1401
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1402
1402
|
placeholder: string;
|
1403
1403
|
format: string;
|
1404
1404
|
inputFormat: string;
|
@@ -1413,7 +1413,7 @@ declare const _default: {
|
|
1413
1413
|
locale?: string | undefined;
|
1414
1414
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1415
1415
|
}>, prevState: Readonly<{}>): any;
|
1416
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1416
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1417
1417
|
placeholder: string;
|
1418
1418
|
format: string;
|
1419
1419
|
inputFormat: string;
|
@@ -1430,7 +1430,7 @@ declare const _default: {
|
|
1430
1430
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1431
1431
|
componentWillMount?(): void;
|
1432
1432
|
UNSAFE_componentWillMount?(): void;
|
1433
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1433
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1434
1434
|
placeholder: string;
|
1435
1435
|
format: string;
|
1436
1436
|
inputFormat: string;
|
@@ -1445,7 +1445,7 @@ declare const _default: {
|
|
1445
1445
|
locale?: string | undefined;
|
1446
1446
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1447
1447
|
}>, nextContext: any): void;
|
1448
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1448
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1449
1449
|
placeholder: string;
|
1450
1450
|
format: string;
|
1451
1451
|
inputFormat: string;
|
@@ -1460,7 +1460,7 @@ declare const _default: {
|
|
1460
1460
|
locale?: string | undefined;
|
1461
1461
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1462
1462
|
}>, nextContext: any): void;
|
1463
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1463
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1464
1464
|
placeholder: string;
|
1465
1465
|
format: string;
|
1466
1466
|
inputFormat: string;
|
@@ -1475,7 +1475,7 @@ declare const _default: {
|
|
1475
1475
|
locale?: string | undefined;
|
1476
1476
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1477
1477
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1478
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "
|
1478
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "timeFormat" | "minDate" | "maxDate" | "viewMode" | "dateFormat" | "utc" | "popoverClassName" | "popOverContainer" | "borderMode" | "minDuration" | "maxDuration"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "inputFormat" | "closeOnSelect" | "format" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1479
1479
|
placeholder: string;
|
1480
1480
|
format: string;
|
1481
1481
|
inputFormat: string;
|