amis 1.9.1-beta.28 → 1.9.1-beta.29

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. package/lib/components/AnchorNav.d.ts +8 -2
  2. package/lib/components/AnchorNav.js +24 -5
  3. package/lib/components/AnchorNav.js.map +2 -2
  4. package/lib/components/DatePicker.d.ts +41 -40
  5. package/lib/components/DatePicker.js +2 -2
  6. package/lib/components/DatePicker.js.map +2 -2
  7. package/lib/components/DateRangePicker.d.ts +44 -41
  8. package/lib/components/DateRangePicker.js +25 -8
  9. package/lib/components/DateRangePicker.js.map +2 -2
  10. package/lib/components/MonthRangePicker.d.ts +41 -40
  11. package/lib/components/MonthRangePicker.js +2 -2
  12. package/lib/components/MonthRangePicker.js.map +2 -2
  13. package/lib/components/SearchBox.d.ts +124 -42
  14. package/lib/components/SearchBox.js +181 -19
  15. package/lib/components/SearchBox.js.map +2 -2
  16. package/lib/components/Tag.d.ts +12 -10
  17. package/lib/components/Tag.js +18 -7
  18. package/lib/components/Tag.js.map +2 -2
  19. package/lib/locale/de-DE.js +1 -0
  20. package/lib/locale/de-DE.js.map +2 -2
  21. package/lib/locale/en-US.js +1 -0
  22. package/lib/locale/en-US.js.map +2 -2
  23. package/lib/locale/zh-CN.js +1 -0
  24. package/lib/locale/zh-CN.js.map +2 -2
  25. package/lib/renderers/Card.d.ts +7 -2
  26. package/lib/renderers/Card.js +11 -7
  27. package/lib/renderers/Card.js.map +2 -2
  28. package/lib/renderers/Form/InputExcel.d.ts +1 -0
  29. package/lib/renderers/Form/InputExcel.js +5 -0
  30. package/lib/renderers/Form/InputExcel.js.map +2 -2
  31. package/lib/renderers/Form/InputFile.d.ts +2 -2
  32. package/lib/renderers/Form/InputFile.js +6 -5
  33. package/lib/renderers/Form/InputFile.js.map +2 -2
  34. package/lib/renderers/Form/InputText.d.ts +8 -0
  35. package/lib/renderers/Form/InputText.js +8 -8
  36. package/lib/renderers/Form/InputText.js.map +2 -2
  37. package/lib/renderers/Table/index.js +1 -1
  38. package/lib/renderers/Table/index.js.map +2 -2
  39. package/lib/renderers/Tag.js +2 -2
  40. package/lib/renderers/Tag.js.map +2 -2
  41. package/lib/renderers/Wizard.d.ts +1 -1
  42. package/lib/renderers/Wizard.js +72 -75
  43. package/lib/renderers/Wizard.js.map +2 -2
  44. package/lib/store/formItem.js +2 -1
  45. package/lib/store/formItem.js.map +2 -2
  46. package/lib/themes/ang-ie11.css +120 -15
  47. package/lib/themes/ang.css +124 -15
  48. package/lib/themes/ang.css.map +1 -1
  49. package/lib/themes/antd-ie11.css +120 -15
  50. package/lib/themes/antd.css +124 -15
  51. package/lib/themes/antd.css.map +1 -1
  52. package/lib/themes/cxd-ie11.css +120 -15
  53. package/lib/themes/cxd.css +124 -15
  54. package/lib/themes/cxd.css.map +1 -1
  55. package/lib/themes/dark-ie11.css +120 -15
  56. package/lib/themes/dark.css +124 -15
  57. package/lib/themes/dark.css.map +1 -1
  58. package/lib/themes/default-ie11.css +120 -15
  59. package/lib/themes/default.css +124 -15
  60. package/lib/themes/default.css.map +1 -1
  61. package/package.json +3 -3
  62. package/schema.json +35 -14
  63. package/scss/_properties.scss +5 -0
  64. package/scss/components/_anchor-nav.scss +1 -0
  65. package/scss/components/_calendar.scss +32 -14
  66. package/scss/components/_search-box.scss +116 -10
  67. package/scss/components/_tag.scss +12 -3
  68. package/scss/components/form/_date-range.scss +1 -1
  69. package/sdk/ang-ie11.css +131 -14
  70. package/sdk/ang.css +135 -14
  71. package/sdk/antd-ie11.css +131 -14
  72. package/sdk/antd.css +135 -14
  73. package/sdk/cxd-ie11.css +131 -14
  74. package/sdk/cxd.css +135 -14
  75. package/sdk/dark-ie11.css +131 -14
  76. package/sdk/dark.css +135 -14
  77. package/sdk/locale/de-DE.js +1 -0
  78. package/sdk/sdk-ie11.css +131 -14
  79. package/sdk/sdk.css +135 -14
  80. package/sdk/sdk.js +17 -17
  81. package/src/components/AnchorNav.tsx +40 -7
  82. package/src/components/DatePicker.tsx +8 -4
  83. package/src/components/DateRangePicker.tsx +34 -8
  84. package/src/components/MonthRangePicker.tsx +4 -2
  85. package/src/components/SearchBox.tsx +262 -29
  86. package/src/components/Tag.tsx +14 -3
  87. package/src/locale/de-DE.ts +1 -0
  88. package/src/locale/en-US.ts +1 -0
  89. package/src/locale/zh-CN.ts +1 -0
  90. package/src/renderers/Card.tsx +24 -12
  91. package/src/renderers/Form/InputExcel.tsx +6 -0
  92. package/src/renderers/Form/InputFile.tsx +19 -18
  93. package/src/renderers/Form/InputText.tsx +20 -5
  94. package/src/renderers/Table/index.tsx +1 -1
  95. package/src/renderers/Tag.tsx +2 -0
  96. package/src/renderers/Wizard.tsx +2 -1
  97. package/src/store/formItem.ts +4 -1
@@ -45,12 +45,15 @@ export interface DateRangePickerProps extends ThemeProps, LocaleProps {
45
45
  onBlur?: Function;
46
46
  type?: string;
47
47
  onRef?: any;
48
+ label?: string | false;
48
49
  }
49
50
  export interface DateRangePickerState {
50
51
  isOpened: boolean;
51
52
  isFocused: boolean;
52
53
  startDate?: moment.Moment;
53
54
  endDate?: moment.Moment;
55
+ oldStartDate?: moment.Moment;
56
+ oldEndDate?: moment.Moment;
54
57
  editState?: 'start' | 'end';
55
58
  startInputValue?: string;
56
59
  endInputValue?: string;
@@ -106,7 +109,7 @@ export declare class DateRangePicker extends React.Component<DateRangePickerProp
106
109
  open(): void;
107
110
  openStart(): void;
108
111
  openEnd(): void;
109
- close(): void;
112
+ close(isConfirm?: boolean): void;
110
113
  handleClick(): void;
111
114
  handlePopOverClick(e: React.MouseEvent<any>): void;
112
115
  handleKeyPress(e: React.KeyboardEvent): void;
@@ -137,7 +140,7 @@ export declare class DateRangePicker extends React.Component<DateRangePickerProp
137
140
  render(): JSX.Element;
138
141
  }
139
142
  declare const _default: {
140
- new (props: Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
143
+ new (props: Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
141
144
  startPlaceholder: string;
142
145
  endPlaceholder: string;
143
146
  format: string;
@@ -158,7 +161,7 @@ declare const _default: {
158
161
  getWrappedInstance(): any;
159
162
  render(): JSX.Element;
160
163
  context: any;
161
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
164
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
162
165
  startPlaceholder: string;
163
166
  endPlaceholder: string;
164
167
  format: string;
@@ -175,7 +178,7 @@ declare const _default: {
175
178
  translate?: ((str: string, ...args: any[]) => string) | undefined;
176
179
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
177
180
  forceUpdate(callback?: (() => void) | undefined): void;
178
- readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
181
+ readonly props: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
179
182
  startPlaceholder: string;
180
183
  endPlaceholder: string;
181
184
  format: string;
@@ -198,7 +201,7 @@ declare const _default: {
198
201
  [key: string]: React.ReactInstance;
199
202
  };
200
203
  componentDidMount?(): void;
201
- shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
204
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
202
205
  startPlaceholder: string;
203
206
  endPlaceholder: string;
204
207
  format: string;
@@ -216,7 +219,7 @@ declare const _default: {
216
219
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
217
220
  componentWillUnmount?(): void;
218
221
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
219
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
222
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
220
223
  startPlaceholder: string;
221
224
  endPlaceholder: string;
222
225
  format: string;
@@ -232,7 +235,7 @@ declare const _default: {
232
235
  locale?: string | undefined;
233
236
  translate?: ((str: string, ...args: any[]) => string) | undefined;
234
237
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
235
- componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
238
+ componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
236
239
  startPlaceholder: string;
237
240
  endPlaceholder: string;
238
241
  format: string;
@@ -250,7 +253,7 @@ declare const _default: {
250
253
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
251
254
  componentWillMount?(): void;
252
255
  UNSAFE_componentWillMount?(): void;
253
- componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
256
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
254
257
  startPlaceholder: string;
255
258
  endPlaceholder: string;
256
259
  format: string;
@@ -266,7 +269,7 @@ declare const _default: {
266
269
  locale?: string | undefined;
267
270
  translate?: ((str: string, ...args: any[]) => string) | undefined;
268
271
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
269
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
272
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
270
273
  startPlaceholder: string;
271
274
  endPlaceholder: string;
272
275
  format: string;
@@ -282,7 +285,7 @@ declare const _default: {
282
285
  locale?: string | undefined;
283
286
  translate?: ((str: string, ...args: any[]) => string) | undefined;
284
287
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
285
- componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
288
+ componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
286
289
  startPlaceholder: string;
287
290
  endPlaceholder: string;
288
291
  format: string;
@@ -298,7 +301,7 @@ declare const _default: {
298
301
  locale?: string | undefined;
299
302
  translate?: ((str: string, ...args: any[]) => string) | undefined;
300
303
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
301
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
304
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
302
305
  startPlaceholder: string;
303
306
  endPlaceholder: string;
304
307
  format: string;
@@ -318,7 +321,7 @@ declare const _default: {
318
321
  displayName: string;
319
322
  contextType: React.Context<string>;
320
323
  ComposedComponent: React.ComponentType<{
321
- new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
324
+ new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
322
325
  startPlaceholder: string;
323
326
  endPlaceholder: string;
324
327
  format: string;
@@ -339,7 +342,7 @@ declare const _default: {
339
342
  getWrappedInstance(): any;
340
343
  render(): JSX.Element;
341
344
  context: any;
342
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
345
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
343
346
  startPlaceholder: string;
344
347
  endPlaceholder: string;
345
348
  format: string;
@@ -356,7 +359,7 @@ declare const _default: {
356
359
  translate?: ((str: string, ...args: any[]) => string) | undefined;
357
360
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
358
361
  forceUpdate(callback?: (() => void) | undefined): void;
359
- readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
362
+ readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
360
363
  startPlaceholder: string;
361
364
  endPlaceholder: string;
362
365
  format: string;
@@ -379,7 +382,7 @@ declare const _default: {
379
382
  [key: string]: React.ReactInstance;
380
383
  };
381
384
  componentDidMount?(): void;
382
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
385
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
383
386
  startPlaceholder: string;
384
387
  endPlaceholder: string;
385
388
  format: string;
@@ -397,7 +400,7 @@ declare const _default: {
397
400
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
398
401
  componentWillUnmount?(): void;
399
402
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
400
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
403
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
401
404
  startPlaceholder: string;
402
405
  endPlaceholder: string;
403
406
  format: string;
@@ -413,7 +416,7 @@ declare const _default: {
413
416
  locale?: string | undefined;
414
417
  translate?: ((str: string, ...args: any[]) => string) | undefined;
415
418
  }>, prevState: Readonly<{}>): any;
416
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
419
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
417
420
  startPlaceholder: string;
418
421
  endPlaceholder: string;
419
422
  format: string;
@@ -431,7 +434,7 @@ declare const _default: {
431
434
  }>, prevState: Readonly<{}>, snapshot?: any): void;
432
435
  componentWillMount?(): void;
433
436
  UNSAFE_componentWillMount?(): void;
434
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
437
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
435
438
  startPlaceholder: string;
436
439
  endPlaceholder: string;
437
440
  format: string;
@@ -447,7 +450,7 @@ declare const _default: {
447
450
  locale?: string | undefined;
448
451
  translate?: ((str: string, ...args: any[]) => string) | undefined;
449
452
  }>, nextContext: any): void;
450
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
453
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
451
454
  startPlaceholder: string;
452
455
  endPlaceholder: string;
453
456
  format: string;
@@ -463,7 +466,7 @@ declare const _default: {
463
466
  locale?: string | undefined;
464
467
  translate?: ((str: string, ...args: any[]) => string) | undefined;
465
468
  }>, nextContext: any): void;
466
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
469
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
467
470
  startPlaceholder: string;
468
471
  endPlaceholder: string;
469
472
  format: string;
@@ -479,7 +482,7 @@ declare const _default: {
479
482
  locale?: string | undefined;
480
483
  translate?: ((str: string, ...args: any[]) => string) | undefined;
481
484
  }>, nextState: Readonly<{}>, nextContext: any): void;
482
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
485
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
483
486
  startPlaceholder: string;
484
487
  endPlaceholder: string;
485
488
  format: string;
@@ -503,7 +506,7 @@ declare const _default: {
503
506
  ComposedComponent: typeof DateRangePicker;
504
507
  }>;
505
508
  } & import("hoist-non-react-statics").NonReactStatics<{
506
- new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
509
+ new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
507
510
  startPlaceholder: string;
508
511
  endPlaceholder: string;
509
512
  format: string;
@@ -524,7 +527,7 @@ declare const _default: {
524
527
  getWrappedInstance(): any;
525
528
  render(): JSX.Element;
526
529
  context: any;
527
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
530
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
528
531
  startPlaceholder: string;
529
532
  endPlaceholder: string;
530
533
  format: string;
@@ -541,7 +544,7 @@ declare const _default: {
541
544
  translate?: ((str: string, ...args: any[]) => string) | undefined;
542
545
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
543
546
  forceUpdate(callback?: (() => void) | undefined): void;
544
- readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
547
+ readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
545
548
  startPlaceholder: string;
546
549
  endPlaceholder: string;
547
550
  format: string;
@@ -564,7 +567,7 @@ declare const _default: {
564
567
  [key: string]: React.ReactInstance;
565
568
  };
566
569
  componentDidMount?(): void;
567
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
570
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
568
571
  startPlaceholder: string;
569
572
  endPlaceholder: string;
570
573
  format: string;
@@ -582,7 +585,7 @@ declare const _default: {
582
585
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
583
586
  componentWillUnmount?(): void;
584
587
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
585
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
588
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
586
589
  startPlaceholder: string;
587
590
  endPlaceholder: string;
588
591
  format: string;
@@ -598,7 +601,7 @@ declare const _default: {
598
601
  locale?: string | undefined;
599
602
  translate?: ((str: string, ...args: any[]) => string) | undefined;
600
603
  }>, prevState: Readonly<{}>): any;
601
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
604
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
602
605
  startPlaceholder: string;
603
606
  endPlaceholder: string;
604
607
  format: string;
@@ -616,7 +619,7 @@ declare const _default: {
616
619
  }>, prevState: Readonly<{}>, snapshot?: any): void;
617
620
  componentWillMount?(): void;
618
621
  UNSAFE_componentWillMount?(): void;
619
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
622
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
620
623
  startPlaceholder: string;
621
624
  endPlaceholder: string;
622
625
  format: string;
@@ -632,7 +635,7 @@ declare const _default: {
632
635
  locale?: string | undefined;
633
636
  translate?: ((str: string, ...args: any[]) => string) | undefined;
634
637
  }>, nextContext: any): void;
635
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
638
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
636
639
  startPlaceholder: string;
637
640
  endPlaceholder: string;
638
641
  format: string;
@@ -648,7 +651,7 @@ declare const _default: {
648
651
  locale?: string | undefined;
649
652
  translate?: ((str: string, ...args: any[]) => string) | undefined;
650
653
  }>, nextContext: any): void;
651
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
654
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
652
655
  startPlaceholder: string;
653
656
  endPlaceholder: string;
654
657
  format: string;
@@ -664,7 +667,7 @@ declare const _default: {
664
667
  locale?: string | undefined;
665
668
  translate?: ((str: string, ...args: any[]) => string) | undefined;
666
669
  }>, nextState: Readonly<{}>, nextContext: any): void;
667
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
670
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
668
671
  startPlaceholder: string;
669
672
  endPlaceholder: string;
670
673
  format: string;
@@ -688,7 +691,7 @@ declare const _default: {
688
691
  ComposedComponent: typeof DateRangePicker;
689
692
  }, {}> & {
690
693
  ComposedComponent: {
691
- new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
694
+ new (props: Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
692
695
  startPlaceholder: string;
693
696
  endPlaceholder: string;
694
697
  format: string;
@@ -709,7 +712,7 @@ declare const _default: {
709
712
  getWrappedInstance(): any;
710
713
  render(): JSX.Element;
711
714
  context: any;
712
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
715
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
713
716
  startPlaceholder: string;
714
717
  endPlaceholder: string;
715
718
  format: string;
@@ -726,7 +729,7 @@ declare const _default: {
726
729
  translate?: ((str: string, ...args: any[]) => string) | undefined;
727
730
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
728
731
  forceUpdate(callback?: (() => void) | undefined): void;
729
- readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
732
+ readonly props: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
730
733
  startPlaceholder: string;
731
734
  endPlaceholder: string;
732
735
  format: string;
@@ -749,7 +752,7 @@ declare const _default: {
749
752
  [key: string]: React.ReactInstance;
750
753
  };
751
754
  componentDidMount?(): void;
752
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
755
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
753
756
  startPlaceholder: string;
754
757
  endPlaceholder: string;
755
758
  format: string;
@@ -767,7 +770,7 @@ declare const _default: {
767
770
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
768
771
  componentWillUnmount?(): void;
769
772
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
770
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
773
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
771
774
  startPlaceholder: string;
772
775
  endPlaceholder: string;
773
776
  format: string;
@@ -783,7 +786,7 @@ declare const _default: {
783
786
  locale?: string | undefined;
784
787
  translate?: ((str: string, ...args: any[]) => string) | undefined;
785
788
  }>, prevState: Readonly<{}>): any;
786
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
789
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
787
790
  startPlaceholder: string;
788
791
  endPlaceholder: string;
789
792
  format: string;
@@ -801,7 +804,7 @@ declare const _default: {
801
804
  }>, prevState: Readonly<{}>, snapshot?: any): void;
802
805
  componentWillMount?(): void;
803
806
  UNSAFE_componentWillMount?(): void;
804
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
807
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
805
808
  startPlaceholder: string;
806
809
  endPlaceholder: string;
807
810
  format: string;
@@ -817,7 +820,7 @@ declare const _default: {
817
820
  locale?: string | undefined;
818
821
  translate?: ((str: string, ...args: any[]) => string) | undefined;
819
822
  }>, nextContext: any): void;
820
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
823
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
821
824
  startPlaceholder: string;
822
825
  endPlaceholder: string;
823
826
  format: string;
@@ -833,7 +836,7 @@ declare const _default: {
833
836
  locale?: string | undefined;
834
837
  translate?: ((str: string, ...args: any[]) => string) | undefined;
835
838
  }>, nextContext: any): void;
836
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
839
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
837
840
  startPlaceholder: string;
838
841
  endPlaceholder: string;
839
842
  format: string;
@@ -849,7 +852,7 @@ declare const _default: {
849
852
  locale?: string | undefined;
850
853
  translate?: ((str: string, ...args: any[]) => string) | undefined;
851
854
  }>, nextState: Readonly<{}>, nextContext: any): void;
852
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
855
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "label" | "className" | "theme" | "value" | "type" | "disabled" | "onFocus" | "onBlur" | "onChange" | "useMobileUI" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "borderMode" | "popOverContainer" | "dateFormat" | "timeFormat" | "viewMode" | "utc" | "popoverClassName" | "onRef"> & Partial<Pick<Omit<DateRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "clearable" | "format" | "inputFormat" | "ranges" | "startPlaceholder" | "endPlaceholder" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
853
856
  startPlaceholder: string;
854
857
  endPlaceholder: string;
855
858
  format: string;