amis 1.5.6-beta.4 → 1.5.6-beta.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/lib/Schema.d.ts +1 -1
- package/lib/Schema.js.map +1 -1
- package/lib/components/AsideNav.d.ts +1 -1
- package/lib/components/AsideNav.js.map +1 -1
- package/lib/components/CodeMirror.d.ts +26 -0
- package/lib/components/CodeMirror.js +104 -0
- package/lib/components/CodeMirror.js.map +13 -0
- package/lib/components/Collapse.d.ts +22 -21
- package/lib/components/Collapse.js.map +2 -2
- package/lib/components/ColorPicker.d.ts +85 -84
- package/lib/components/ColorPicker.js +15 -3
- package/lib/components/ColorPicker.js.map +2 -2
- package/lib/components/DatePicker.js +7 -3
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/DateRangePicker.d.ts +85 -84
- package/lib/components/DateRangePicker.js +5 -3
- package/lib/components/DateRangePicker.js.map +2 -2
- package/lib/components/MonthRangePicker.d.ts +85 -84
- package/lib/components/MonthRangePicker.js +5 -3
- package/lib/components/MonthRangePicker.js.map +2 -2
- package/lib/components/PickerContainer.d.ts +2 -1
- package/lib/components/PickerContainer.js +3 -3
- package/lib/components/PickerContainer.js.map +2 -2
- package/lib/components/PopUp.d.ts +93 -0
- package/lib/components/PopUp.js +58 -0
- package/lib/components/PopUp.js.map +13 -0
- package/lib/components/Steps.d.ts +1 -0
- package/lib/components/Steps.js +5 -3
- package/lib/components/Steps.js.map +2 -2
- package/lib/components/TabsTransferPicker.js +1 -1
- package/lib/components/TabsTransferPicker.js.map +2 -2
- package/lib/components/TransferPicker.d.ts +0 -1
- package/lib/components/TransferPicker.js +2 -15
- package/lib/components/TransferPicker.js.map +2 -2
- package/lib/components/formula/Editor.d.ts +560 -0
- package/lib/components/formula/Editor.js +186 -0
- package/lib/components/formula/Editor.js.map +13 -0
- package/lib/components/formula/FuncList.d.ts +67 -0
- package/lib/components/formula/FuncList.js +35 -0
- package/lib/components/formula/FuncList.js.map +13 -0
- package/lib/components/formula/Picker.d.ts +493 -0
- package/lib/components/formula/Picker.js +48 -0
- package/lib/components/formula/Picker.js.map +13 -0
- package/lib/components/formula/VariableList.d.ts +9 -0
- package/lib/components/formula/VariableList.js +15 -0
- package/lib/components/formula/VariableList.js.map +13 -0
- package/lib/components/formula/plugin.d.ts +18 -0
- package/lib/components/formula/plugin.js +136 -0
- package/lib/components/formula/plugin.js.map +13 -0
- package/lib/helper.css +57 -57
- package/lib/helper.css.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/index.js.map +2 -2
- package/lib/renderers/Form/InputColor.d.ts +84 -84
- package/lib/renderers/Form/InputColor.js +2 -2
- package/lib/renderers/Form/InputColor.js.map +2 -2
- package/lib/renderers/Form/InputDate.js +2 -2
- package/lib/renderers/Form/InputDate.js.map +2 -2
- package/lib/renderers/Form/InputDateRange.js +2 -2
- package/lib/renderers/Form/InputDateRange.js.map +2 -2
- package/lib/renderers/Form/InputFormula.d.ts +35 -0
- package/lib/renderers/Form/InputFormula.js +25 -0
- package/lib/renderers/Form/InputFormula.js.map +13 -0
- package/lib/renderers/Form/InputMonthRange.js +2 -2
- package/lib/renderers/Form/InputMonthRange.js.map +2 -2
- package/lib/renderers/Form/InputQuarterRange.js +2 -2
- package/lib/renderers/Form/InputQuarterRange.js.map +2 -2
- package/lib/renderers/Form/InputYearRange.js +2 -2
- package/lib/renderers/Form/InputYearRange.js.map +2 -2
- package/lib/renderers/Form/TreeSelect.d.ts +1 -0
- package/lib/renderers/Form/TreeSelect.js +11 -8
- package/lib/renderers/Form/TreeSelect.js.map +2 -2
- package/lib/renderers/Steps.js +2 -2
- package/lib/renderers/Steps.js.map +2 -2
- package/lib/themes/ang-ie11.css +261 -0
- package/lib/themes/ang.css +261 -0
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +261 -0
- package/lib/themes/antd.css +261 -0
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +261 -0
- package/lib/themes/cxd.css +261 -0
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +261 -0
- package/lib/themes/dark.css +261 -0
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +261 -0
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/api.js +2 -2
- package/lib/utils/api.js.map +2 -2
- package/package.json +4 -2
- package/scss/_variables.scss +1 -1
- package/scss/components/_formula.scss +122 -0
- package/scss/components/_popup.scss +123 -0
- package/scss/components/_steps.scss +60 -0
- package/scss/components/form/_color.scss +4 -0
- package/scss/components/form/_date-range.scss +4 -0
- package/scss/components/form/_date.scss +3 -0
- package/scss/components/form/_tree-select.scss +4 -0
- package/scss/helper/background/_background-color.scss +1 -1
- package/scss/helper/border/_border-color.scss +1 -1
- package/scss/helper/typography/_text-color.scss +1 -1
- package/scss/themes/_common.scss +2 -0
- package/sdk/ang-ie11.css +875 -0
- package/sdk/ang.css +875 -0
- package/sdk/antd-ie11.css +875 -0
- package/sdk/antd.css +875 -0
- package/sdk/charts.js +15 -15
- package/sdk/codemirror.js +14 -0
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +875 -0
- package/sdk/cxd.css +875 -0
- package/sdk/dark-ie11.css +875 -0
- package/sdk/dark.css +875 -0
- package/sdk/exceljs.js +1 -1
- package/sdk/helper.css +57 -57
- package/sdk/helper.css.map +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +18 -18
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +875 -0
- package/sdk/sdk.css +875 -0
- package/sdk/sdk.js +1219 -1201
- 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/Schema.ts +1 -0
- package/src/components/AsideNav.tsx +1 -1
- package/src/components/CodeMirror.tsx +99 -0
- package/src/components/Collapse.tsx +2 -1
- package/src/components/ColorPicker.tsx +45 -3
- package/src/components/DatePicker.tsx +33 -3
- package/src/components/DateRangePicker.tsx +17 -3
- package/src/components/MonthRangePicker.tsx +18 -4
- package/src/components/PickerContainer.tsx +10 -6
- package/src/components/PopUp.tsx +133 -0
- package/src/components/Steps.tsx +8 -3
- package/src/components/TabsTransferPicker.tsx +1 -1
- package/src/components/TransferPicker.tsx +1 -11
- package/src/components/formula/Editor.tsx +261 -0
- package/src/components/formula/FuncList.tsx +82 -0
- package/src/components/formula/Picker.tsx +86 -0
- package/src/components/formula/VariableList.tsx +49 -0
- package/src/components/formula/plugin.ts +177 -0
- package/src/index.tsx +1 -0
- package/src/renderers/Form/InputColor.tsx +2 -3
- package/src/renderers/Form/InputDate.tsx +2 -0
- package/src/renderers/Form/InputDateRange.tsx +2 -0
- package/src/renderers/Form/InputFormula.tsx +75 -0
- package/src/renderers/Form/InputMonthRange.tsx +2 -0
- package/src/renderers/Form/InputQuarterRange.tsx +2 -0
- package/src/renderers/Form/InputYearRange.tsx +2 -0
- package/src/renderers/Form/TreeSelect.tsx +82 -63
- package/src/renderers/Steps.tsx +4 -2
- package/src/utils/api.ts +5 -2
@@ -39,6 +39,7 @@ export interface DateRangePickerProps extends ThemeProps, LocaleProps {
|
|
39
39
|
embed?: boolean;
|
40
40
|
viewMode?: 'days' | 'months' | 'years' | 'time' | 'quarters';
|
41
41
|
borderMode?: 'full' | 'half' | 'none';
|
42
|
+
useMobileUI?: boolean;
|
42
43
|
}
|
43
44
|
export interface DateRangePickerState {
|
44
45
|
isOpened: boolean;
|
@@ -98,7 +99,7 @@ export declare class DateRangePicker extends React.Component<DateRangePickerProp
|
|
98
99
|
render(): JSX.Element;
|
99
100
|
}
|
100
101
|
declare const _default: {
|
101
|
-
new (props: (Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
102
|
+
new (props: (Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
102
103
|
placeholder: string;
|
103
104
|
format: string;
|
104
105
|
inputFormat: string;
|
@@ -112,7 +113,7 @@ declare const _default: {
|
|
112
113
|
}, never>> & {
|
113
114
|
locale?: string | undefined;
|
114
115
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
116
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
116
117
|
placeholder: string;
|
117
118
|
format: string;
|
118
119
|
inputFormat: string;
|
@@ -129,7 +130,7 @@ declare const _default: {
|
|
129
130
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
130
131
|
render(): JSX.Element;
|
131
132
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
133
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
133
134
|
placeholder: string;
|
134
135
|
format: string;
|
135
136
|
inputFormat: string;
|
@@ -145,7 +146,7 @@ declare const _default: {
|
|
145
146
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
146
147
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
147
148
|
forceUpdate(callback?: (() => void) | undefined): void;
|
148
|
-
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
149
|
+
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
149
150
|
placeholder: string;
|
150
151
|
format: string;
|
151
152
|
inputFormat: string;
|
@@ -167,7 +168,7 @@ declare const _default: {
|
|
167
168
|
[key: string]: React.ReactInstance;
|
168
169
|
};
|
169
170
|
componentDidMount?(): void;
|
170
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
171
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
171
172
|
placeholder: string;
|
172
173
|
format: string;
|
173
174
|
inputFormat: string;
|
@@ -184,7 +185,7 @@ declare const _default: {
|
|
184
185
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
185
186
|
componentWillUnmount?(): void;
|
186
187
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
188
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
188
189
|
placeholder: string;
|
189
190
|
format: string;
|
190
191
|
inputFormat: string;
|
@@ -199,7 +200,7 @@ declare const _default: {
|
|
199
200
|
locale?: string | undefined;
|
200
201
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
201
202
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
203
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
203
204
|
placeholder: string;
|
204
205
|
format: string;
|
205
206
|
inputFormat: string;
|
@@ -216,7 +217,7 @@ declare const _default: {
|
|
216
217
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
217
218
|
componentWillMount?(): void;
|
218
219
|
UNSAFE_componentWillMount?(): void;
|
219
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
220
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
220
221
|
placeholder: string;
|
221
222
|
format: string;
|
222
223
|
inputFormat: string;
|
@@ -231,7 +232,7 @@ declare const _default: {
|
|
231
232
|
locale?: string | undefined;
|
232
233
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
233
234
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
235
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
235
236
|
placeholder: string;
|
236
237
|
format: string;
|
237
238
|
inputFormat: string;
|
@@ -246,7 +247,7 @@ declare const _default: {
|
|
246
247
|
locale?: string | undefined;
|
247
248
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
248
249
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
250
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
250
251
|
placeholder: string;
|
251
252
|
format: string;
|
252
253
|
inputFormat: string;
|
@@ -261,7 +262,7 @@ declare const _default: {
|
|
261
262
|
locale?: string | undefined;
|
262
263
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
263
264
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
265
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
265
266
|
placeholder: string;
|
266
267
|
format: string;
|
267
268
|
inputFormat: string;
|
@@ -277,7 +278,7 @@ declare const _default: {
|
|
277
278
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
278
279
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
279
280
|
};
|
280
|
-
new (props: Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
281
|
+
new (props: Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
281
282
|
placeholder: string;
|
282
283
|
format: string;
|
283
284
|
inputFormat: string;
|
@@ -294,7 +295,7 @@ declare const _default: {
|
|
294
295
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
295
296
|
render(): JSX.Element;
|
296
297
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
298
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
298
299
|
placeholder: string;
|
299
300
|
format: string;
|
300
301
|
inputFormat: string;
|
@@ -310,7 +311,7 @@ declare const _default: {
|
|
310
311
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
311
312
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
312
313
|
forceUpdate(callback?: (() => void) | undefined): void;
|
313
|
-
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
314
|
+
readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
314
315
|
placeholder: string;
|
315
316
|
format: string;
|
316
317
|
inputFormat: string;
|
@@ -332,7 +333,7 @@ declare const _default: {
|
|
332
333
|
[key: string]: React.ReactInstance;
|
333
334
|
};
|
334
335
|
componentDidMount?(): void;
|
335
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
336
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
336
337
|
placeholder: string;
|
337
338
|
format: string;
|
338
339
|
inputFormat: string;
|
@@ -349,7 +350,7 @@ declare const _default: {
|
|
349
350
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
350
351
|
componentWillUnmount?(): void;
|
351
352
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
353
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
353
354
|
placeholder: string;
|
354
355
|
format: string;
|
355
356
|
inputFormat: string;
|
@@ -364,7 +365,7 @@ declare const _default: {
|
|
364
365
|
locale?: string | undefined;
|
365
366
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
366
367
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
368
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
368
369
|
placeholder: string;
|
369
370
|
format: string;
|
370
371
|
inputFormat: string;
|
@@ -381,7 +382,7 @@ declare const _default: {
|
|
381
382
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
382
383
|
componentWillMount?(): void;
|
383
384
|
UNSAFE_componentWillMount?(): void;
|
384
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
385
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
385
386
|
placeholder: string;
|
386
387
|
format: string;
|
387
388
|
inputFormat: string;
|
@@ -396,7 +397,7 @@ declare const _default: {
|
|
396
397
|
locale?: string | undefined;
|
397
398
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
398
399
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
400
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
400
401
|
placeholder: string;
|
401
402
|
format: string;
|
402
403
|
inputFormat: string;
|
@@ -411,7 +412,7 @@ declare const _default: {
|
|
411
412
|
locale?: string | undefined;
|
412
413
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
413
414
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
415
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
415
416
|
placeholder: string;
|
416
417
|
format: string;
|
417
418
|
inputFormat: string;
|
@@ -426,7 +427,7 @@ declare const _default: {
|
|
426
427
|
locale?: string | undefined;
|
427
428
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
428
429
|
}, 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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
430
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
430
431
|
placeholder: string;
|
431
432
|
format: string;
|
432
433
|
inputFormat: string;
|
@@ -445,7 +446,7 @@ declare const _default: {
|
|
445
446
|
displayName: string;
|
446
447
|
contextType: React.Context<string>;
|
447
448
|
ComposedComponent: React.ComponentType<{
|
448
|
-
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
449
|
+
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
449
450
|
placeholder: string;
|
450
451
|
format: string;
|
451
452
|
inputFormat: string;
|
@@ -459,7 +460,7 @@ declare const _default: {
|
|
459
460
|
}, never>> & {
|
460
461
|
locale?: string | undefined;
|
461
462
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
462
|
-
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
463
|
+
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
463
464
|
placeholder: string;
|
464
465
|
format: string;
|
465
466
|
inputFormat: string;
|
@@ -476,7 +477,7 @@ declare const _default: {
|
|
476
477
|
}>): {
|
477
478
|
render(): JSX.Element;
|
478
479
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
480
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
480
481
|
placeholder: string;
|
481
482
|
format: string;
|
482
483
|
inputFormat: string;
|
@@ -492,7 +493,7 @@ declare const _default: {
|
|
492
493
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
493
494
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
494
495
|
forceUpdate(callback?: (() => void) | undefined): void;
|
495
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
496
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
496
497
|
placeholder: string;
|
497
498
|
format: string;
|
498
499
|
inputFormat: string;
|
@@ -514,7 +515,7 @@ declare const _default: {
|
|
514
515
|
[key: string]: React.ReactInstance;
|
515
516
|
};
|
516
517
|
componentDidMount?(): void;
|
517
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
518
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
518
519
|
placeholder: string;
|
519
520
|
format: string;
|
520
521
|
inputFormat: string;
|
@@ -531,7 +532,7 @@ declare const _default: {
|
|
531
532
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
532
533
|
componentWillUnmount?(): void;
|
533
534
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
535
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
535
536
|
placeholder: string;
|
536
537
|
format: string;
|
537
538
|
inputFormat: string;
|
@@ -546,7 +547,7 @@ declare const _default: {
|
|
546
547
|
locale?: string | undefined;
|
547
548
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
548
549
|
}>, prevState: Readonly<{}>): any;
|
549
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
550
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
550
551
|
placeholder: string;
|
551
552
|
format: string;
|
552
553
|
inputFormat: string;
|
@@ -563,7 +564,7 @@ declare const _default: {
|
|
563
564
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
564
565
|
componentWillMount?(): void;
|
565
566
|
UNSAFE_componentWillMount?(): void;
|
566
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
567
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
567
568
|
placeholder: string;
|
568
569
|
format: string;
|
569
570
|
inputFormat: string;
|
@@ -578,7 +579,7 @@ declare const _default: {
|
|
578
579
|
locale?: string | undefined;
|
579
580
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
580
581
|
}>, nextContext: any): void;
|
581
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
582
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
582
583
|
placeholder: string;
|
583
584
|
format: string;
|
584
585
|
inputFormat: string;
|
@@ -593,7 +594,7 @@ declare const _default: {
|
|
593
594
|
locale?: string | undefined;
|
594
595
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
595
596
|
}>, nextContext: any): void;
|
596
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
597
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
597
598
|
placeholder: string;
|
598
599
|
format: string;
|
599
600
|
inputFormat: string;
|
@@ -608,7 +609,7 @@ declare const _default: {
|
|
608
609
|
locale?: string | undefined;
|
609
610
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
610
611
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
611
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
612
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
612
613
|
placeholder: string;
|
613
614
|
format: string;
|
614
615
|
inputFormat: string;
|
@@ -624,7 +625,7 @@ declare const _default: {
|
|
624
625
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
625
626
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
626
627
|
};
|
627
|
-
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
628
|
+
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
628
629
|
placeholder: string;
|
629
630
|
format: string;
|
630
631
|
inputFormat: string;
|
@@ -641,7 +642,7 @@ declare const _default: {
|
|
641
642
|
}, context: any): {
|
642
643
|
render(): JSX.Element;
|
643
644
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
645
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
645
646
|
placeholder: string;
|
646
647
|
format: string;
|
647
648
|
inputFormat: string;
|
@@ -657,7 +658,7 @@ declare const _default: {
|
|
657
658
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
658
659
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
659
660
|
forceUpdate(callback?: (() => void) | undefined): void;
|
660
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
661
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
661
662
|
placeholder: string;
|
662
663
|
format: string;
|
663
664
|
inputFormat: string;
|
@@ -679,7 +680,7 @@ declare const _default: {
|
|
679
680
|
[key: string]: React.ReactInstance;
|
680
681
|
};
|
681
682
|
componentDidMount?(): void;
|
682
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
683
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
683
684
|
placeholder: string;
|
684
685
|
format: string;
|
685
686
|
inputFormat: string;
|
@@ -696,7 +697,7 @@ declare const _default: {
|
|
696
697
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
697
698
|
componentWillUnmount?(): void;
|
698
699
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
700
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
700
701
|
placeholder: string;
|
701
702
|
format: string;
|
702
703
|
inputFormat: string;
|
@@ -711,7 +712,7 @@ declare const _default: {
|
|
711
712
|
locale?: string | undefined;
|
712
713
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
713
714
|
}>, prevState: Readonly<{}>): any;
|
714
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
715
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
715
716
|
placeholder: string;
|
716
717
|
format: string;
|
717
718
|
inputFormat: string;
|
@@ -728,7 +729,7 @@ declare const _default: {
|
|
728
729
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
729
730
|
componentWillMount?(): void;
|
730
731
|
UNSAFE_componentWillMount?(): void;
|
731
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
732
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
732
733
|
placeholder: string;
|
733
734
|
format: string;
|
734
735
|
inputFormat: string;
|
@@ -743,7 +744,7 @@ declare const _default: {
|
|
743
744
|
locale?: string | undefined;
|
744
745
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
745
746
|
}>, nextContext: any): void;
|
746
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
747
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
747
748
|
placeholder: string;
|
748
749
|
format: string;
|
749
750
|
inputFormat: string;
|
@@ -758,7 +759,7 @@ declare const _default: {
|
|
758
759
|
locale?: string | undefined;
|
759
760
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
760
761
|
}>, nextContext: any): void;
|
761
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
762
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
762
763
|
placeholder: string;
|
763
764
|
format: string;
|
764
765
|
inputFormat: string;
|
@@ -773,7 +774,7 @@ declare const _default: {
|
|
773
774
|
locale?: string | undefined;
|
774
775
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
775
776
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
776
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
777
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
777
778
|
placeholder: string;
|
778
779
|
format: string;
|
779
780
|
inputFormat: string;
|
@@ -796,7 +797,7 @@ declare const _default: {
|
|
796
797
|
ComposedComponent: typeof DateRangePicker;
|
797
798
|
}>;
|
798
799
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
799
|
-
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
800
|
+
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
800
801
|
placeholder: string;
|
801
802
|
format: string;
|
802
803
|
inputFormat: string;
|
@@ -810,7 +811,7 @@ declare const _default: {
|
|
810
811
|
}, never>> & {
|
811
812
|
locale?: string | undefined;
|
812
813
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
813
|
-
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
814
|
+
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
814
815
|
placeholder: string;
|
815
816
|
format: string;
|
816
817
|
inputFormat: string;
|
@@ -827,7 +828,7 @@ declare const _default: {
|
|
827
828
|
}>): {
|
828
829
|
render(): JSX.Element;
|
829
830
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
831
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
831
832
|
placeholder: string;
|
832
833
|
format: string;
|
833
834
|
inputFormat: string;
|
@@ -843,7 +844,7 @@ declare const _default: {
|
|
843
844
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
844
845
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
845
846
|
forceUpdate(callback?: (() => void) | undefined): void;
|
846
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
847
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
847
848
|
placeholder: string;
|
848
849
|
format: string;
|
849
850
|
inputFormat: string;
|
@@ -865,7 +866,7 @@ declare const _default: {
|
|
865
866
|
[key: string]: React.ReactInstance;
|
866
867
|
};
|
867
868
|
componentDidMount?(): void;
|
868
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
869
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
869
870
|
placeholder: string;
|
870
871
|
format: string;
|
871
872
|
inputFormat: string;
|
@@ -882,7 +883,7 @@ declare const _default: {
|
|
882
883
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
883
884
|
componentWillUnmount?(): void;
|
884
885
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
886
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
886
887
|
placeholder: string;
|
887
888
|
format: string;
|
888
889
|
inputFormat: string;
|
@@ -897,7 +898,7 @@ declare const _default: {
|
|
897
898
|
locale?: string | undefined;
|
898
899
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
899
900
|
}>, prevState: Readonly<{}>): any;
|
900
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
901
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
901
902
|
placeholder: string;
|
902
903
|
format: string;
|
903
904
|
inputFormat: string;
|
@@ -914,7 +915,7 @@ declare const _default: {
|
|
914
915
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
915
916
|
componentWillMount?(): void;
|
916
917
|
UNSAFE_componentWillMount?(): void;
|
917
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
918
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
918
919
|
placeholder: string;
|
919
920
|
format: string;
|
920
921
|
inputFormat: string;
|
@@ -929,7 +930,7 @@ declare const _default: {
|
|
929
930
|
locale?: string | undefined;
|
930
931
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
931
932
|
}>, nextContext: any): void;
|
932
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
933
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
933
934
|
placeholder: string;
|
934
935
|
format: string;
|
935
936
|
inputFormat: string;
|
@@ -944,7 +945,7 @@ declare const _default: {
|
|
944
945
|
locale?: string | undefined;
|
945
946
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
946
947
|
}>, nextContext: any): void;
|
947
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
948
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
948
949
|
placeholder: string;
|
949
950
|
format: string;
|
950
951
|
inputFormat: string;
|
@@ -959,7 +960,7 @@ declare const _default: {
|
|
959
960
|
locale?: string | undefined;
|
960
961
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
961
962
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
962
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
963
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
963
964
|
placeholder: string;
|
964
965
|
format: string;
|
965
966
|
inputFormat: string;
|
@@ -975,7 +976,7 @@ declare const _default: {
|
|
975
976
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
976
977
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
977
978
|
};
|
978
|
-
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
979
|
+
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
979
980
|
placeholder: string;
|
980
981
|
format: string;
|
981
982
|
inputFormat: string;
|
@@ -992,7 +993,7 @@ declare const _default: {
|
|
992
993
|
}, context: any): {
|
993
994
|
render(): JSX.Element;
|
994
995
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
996
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
996
997
|
placeholder: string;
|
997
998
|
format: string;
|
998
999
|
inputFormat: string;
|
@@ -1008,7 +1009,7 @@ declare const _default: {
|
|
1008
1009
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1009
1010
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1010
1011
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1011
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1012
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1012
1013
|
placeholder: string;
|
1013
1014
|
format: string;
|
1014
1015
|
inputFormat: string;
|
@@ -1030,7 +1031,7 @@ declare const _default: {
|
|
1030
1031
|
[key: string]: React.ReactInstance;
|
1031
1032
|
};
|
1032
1033
|
componentDidMount?(): void;
|
1033
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1034
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1034
1035
|
placeholder: string;
|
1035
1036
|
format: string;
|
1036
1037
|
inputFormat: string;
|
@@ -1047,7 +1048,7 @@ declare const _default: {
|
|
1047
1048
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1048
1049
|
componentWillUnmount?(): void;
|
1049
1050
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1051
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1051
1052
|
placeholder: string;
|
1052
1053
|
format: string;
|
1053
1054
|
inputFormat: string;
|
@@ -1062,7 +1063,7 @@ declare const _default: {
|
|
1062
1063
|
locale?: string | undefined;
|
1063
1064
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1064
1065
|
}>, prevState: Readonly<{}>): any;
|
1065
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1066
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1066
1067
|
placeholder: string;
|
1067
1068
|
format: string;
|
1068
1069
|
inputFormat: string;
|
@@ -1079,7 +1080,7 @@ declare const _default: {
|
|
1079
1080
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1080
1081
|
componentWillMount?(): void;
|
1081
1082
|
UNSAFE_componentWillMount?(): void;
|
1082
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1083
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1083
1084
|
placeholder: string;
|
1084
1085
|
format: string;
|
1085
1086
|
inputFormat: string;
|
@@ -1094,7 +1095,7 @@ declare const _default: {
|
|
1094
1095
|
locale?: string | undefined;
|
1095
1096
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1096
1097
|
}>, nextContext: any): void;
|
1097
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1098
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1098
1099
|
placeholder: string;
|
1099
1100
|
format: string;
|
1100
1101
|
inputFormat: string;
|
@@ -1109,7 +1110,7 @@ declare const _default: {
|
|
1109
1110
|
locale?: string | undefined;
|
1110
1111
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1111
1112
|
}>, nextContext: any): void;
|
1112
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1113
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1113
1114
|
placeholder: string;
|
1114
1115
|
format: string;
|
1115
1116
|
inputFormat: string;
|
@@ -1124,7 +1125,7 @@ declare const _default: {
|
|
1124
1125
|
locale?: string | undefined;
|
1125
1126
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1126
1127
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1127
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1128
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1128
1129
|
placeholder: string;
|
1129
1130
|
format: string;
|
1130
1131
|
inputFormat: string;
|
@@ -1147,7 +1148,7 @@ declare const _default: {
|
|
1147
1148
|
ComposedComponent: typeof DateRangePicker;
|
1148
1149
|
}, {}> & {
|
1149
1150
|
ComposedComponent: {
|
1150
|
-
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1151
|
+
new (props: (Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1151
1152
|
placeholder: string;
|
1152
1153
|
format: string;
|
1153
1154
|
inputFormat: string;
|
@@ -1161,7 +1162,7 @@ declare const _default: {
|
|
1161
1162
|
}, never>> & {
|
1162
1163
|
locale?: string | undefined;
|
1163
1164
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1164
|
-
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1165
|
+
}) | Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1165
1166
|
placeholder: string;
|
1166
1167
|
format: string;
|
1167
1168
|
inputFormat: string;
|
@@ -1178,7 +1179,7 @@ declare const _default: {
|
|
1178
1179
|
}>): {
|
1179
1180
|
render(): JSX.Element;
|
1180
1181
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1182
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1182
1183
|
placeholder: string;
|
1183
1184
|
format: string;
|
1184
1185
|
inputFormat: string;
|
@@ -1194,7 +1195,7 @@ declare const _default: {
|
|
1194
1195
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1195
1196
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1196
1197
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1197
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1198
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1198
1199
|
placeholder: string;
|
1199
1200
|
format: string;
|
1200
1201
|
inputFormat: string;
|
@@ -1216,7 +1217,7 @@ declare const _default: {
|
|
1216
1217
|
[key: string]: React.ReactInstance;
|
1217
1218
|
};
|
1218
1219
|
componentDidMount?(): void;
|
1219
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1220
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1220
1221
|
placeholder: string;
|
1221
1222
|
format: string;
|
1222
1223
|
inputFormat: string;
|
@@ -1233,7 +1234,7 @@ declare const _default: {
|
|
1233
1234
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1234
1235
|
componentWillUnmount?(): void;
|
1235
1236
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1237
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1237
1238
|
placeholder: string;
|
1238
1239
|
format: string;
|
1239
1240
|
inputFormat: string;
|
@@ -1248,7 +1249,7 @@ declare const _default: {
|
|
1248
1249
|
locale?: string | undefined;
|
1249
1250
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1250
1251
|
}>, prevState: Readonly<{}>): any;
|
1251
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1252
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1252
1253
|
placeholder: string;
|
1253
1254
|
format: string;
|
1254
1255
|
inputFormat: string;
|
@@ -1265,7 +1266,7 @@ declare const _default: {
|
|
1265
1266
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1266
1267
|
componentWillMount?(): void;
|
1267
1268
|
UNSAFE_componentWillMount?(): void;
|
1268
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1269
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1269
1270
|
placeholder: string;
|
1270
1271
|
format: string;
|
1271
1272
|
inputFormat: string;
|
@@ -1280,7 +1281,7 @@ declare const _default: {
|
|
1280
1281
|
locale?: string | undefined;
|
1281
1282
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1282
1283
|
}>, nextContext: any): void;
|
1283
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1284
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1284
1285
|
placeholder: string;
|
1285
1286
|
format: string;
|
1286
1287
|
inputFormat: string;
|
@@ -1295,7 +1296,7 @@ declare const _default: {
|
|
1295
1296
|
locale?: string | undefined;
|
1296
1297
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1297
1298
|
}>, nextContext: any): void;
|
1298
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1299
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1299
1300
|
placeholder: string;
|
1300
1301
|
format: string;
|
1301
1302
|
inputFormat: string;
|
@@ -1310,7 +1311,7 @@ declare const _default: {
|
|
1310
1311
|
locale?: string | undefined;
|
1311
1312
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1312
1313
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1313
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1314
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1314
1315
|
placeholder: string;
|
1315
1316
|
format: string;
|
1316
1317
|
inputFormat: string;
|
@@ -1326,7 +1327,7 @@ declare const _default: {
|
|
1326
1327
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1327
1328
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1328
1329
|
};
|
1329
|
-
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1330
|
+
new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1330
1331
|
placeholder: string;
|
1331
1332
|
format: string;
|
1332
1333
|
inputFormat: string;
|
@@ -1343,7 +1344,7 @@ declare const _default: {
|
|
1343
1344
|
}, context: any): {
|
1344
1345
|
render(): JSX.Element;
|
1345
1346
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1347
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1347
1348
|
placeholder: string;
|
1348
1349
|
format: string;
|
1349
1350
|
inputFormat: string;
|
@@ -1359,7 +1360,7 @@ declare const _default: {
|
|
1359
1360
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1360
1361
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1361
1362
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1362
|
-
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1363
|
+
readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1363
1364
|
placeholder: string;
|
1364
1365
|
format: string;
|
1365
1366
|
inputFormat: string;
|
@@ -1381,7 +1382,7 @@ declare const _default: {
|
|
1381
1382
|
[key: string]: React.ReactInstance;
|
1382
1383
|
};
|
1383
1384
|
componentDidMount?(): void;
|
1384
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1385
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1385
1386
|
placeholder: string;
|
1386
1387
|
format: string;
|
1387
1388
|
inputFormat: string;
|
@@ -1398,7 +1399,7 @@ declare const _default: {
|
|
1398
1399
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1399
1400
|
componentWillUnmount?(): void;
|
1400
1401
|
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" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1402
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1402
1403
|
placeholder: string;
|
1403
1404
|
format: string;
|
1404
1405
|
inputFormat: string;
|
@@ -1413,7 +1414,7 @@ declare const _default: {
|
|
1413
1414
|
locale?: string | undefined;
|
1414
1415
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1415
1416
|
}>, prevState: Readonly<{}>): any;
|
1416
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1417
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1417
1418
|
placeholder: string;
|
1418
1419
|
format: string;
|
1419
1420
|
inputFormat: string;
|
@@ -1430,7 +1431,7 @@ declare const _default: {
|
|
1430
1431
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1431
1432
|
componentWillMount?(): void;
|
1432
1433
|
UNSAFE_componentWillMount?(): void;
|
1433
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1434
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1434
1435
|
placeholder: string;
|
1435
1436
|
format: string;
|
1436
1437
|
inputFormat: string;
|
@@ -1445,7 +1446,7 @@ declare const _default: {
|
|
1445
1446
|
locale?: string | undefined;
|
1446
1447
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1447
1448
|
}>, nextContext: any): void;
|
1448
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1449
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1449
1450
|
placeholder: string;
|
1450
1451
|
format: string;
|
1451
1452
|
inputFormat: string;
|
@@ -1460,7 +1461,7 @@ declare const _default: {
|
|
1460
1461
|
locale?: string | undefined;
|
1461
1462
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1462
1463
|
}>, nextContext: any): void;
|
1463
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1464
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1464
1465
|
placeholder: string;
|
1465
1466
|
format: string;
|
1466
1467
|
inputFormat: string;
|
@@ -1475,7 +1476,7 @@ declare const _default: {
|
|
1475
1476
|
locale?: string | undefined;
|
1476
1477
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1477
1478
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1478
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1479
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "viewMode" | "dateFormat"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement" | "ranges">> & Partial<Pick<{
|
1479
1480
|
placeholder: string;
|
1480
1481
|
format: string;
|
1481
1482
|
inputFormat: string;
|