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.
Files changed (159) hide show
  1. package/lib/Schema.d.ts +1 -1
  2. package/lib/Schema.js.map +1 -1
  3. package/lib/components/AsideNav.d.ts +1 -1
  4. package/lib/components/AsideNav.js.map +1 -1
  5. package/lib/components/CodeMirror.d.ts +26 -0
  6. package/lib/components/CodeMirror.js +104 -0
  7. package/lib/components/CodeMirror.js.map +13 -0
  8. package/lib/components/Collapse.d.ts +22 -21
  9. package/lib/components/Collapse.js.map +2 -2
  10. package/lib/components/ColorPicker.d.ts +85 -84
  11. package/lib/components/ColorPicker.js +15 -3
  12. package/lib/components/ColorPicker.js.map +2 -2
  13. package/lib/components/DatePicker.js +7 -3
  14. package/lib/components/DatePicker.js.map +2 -2
  15. package/lib/components/DateRangePicker.d.ts +85 -84
  16. package/lib/components/DateRangePicker.js +5 -3
  17. package/lib/components/DateRangePicker.js.map +2 -2
  18. package/lib/components/MonthRangePicker.d.ts +85 -84
  19. package/lib/components/MonthRangePicker.js +5 -3
  20. package/lib/components/MonthRangePicker.js.map +2 -2
  21. package/lib/components/PickerContainer.d.ts +2 -1
  22. package/lib/components/PickerContainer.js +3 -3
  23. package/lib/components/PickerContainer.js.map +2 -2
  24. package/lib/components/PopUp.d.ts +93 -0
  25. package/lib/components/PopUp.js +58 -0
  26. package/lib/components/PopUp.js.map +13 -0
  27. package/lib/components/Steps.d.ts +1 -0
  28. package/lib/components/Steps.js +5 -3
  29. package/lib/components/Steps.js.map +2 -2
  30. package/lib/components/TabsTransferPicker.js +1 -1
  31. package/lib/components/TabsTransferPicker.js.map +2 -2
  32. package/lib/components/TransferPicker.d.ts +0 -1
  33. package/lib/components/TransferPicker.js +2 -15
  34. package/lib/components/TransferPicker.js.map +2 -2
  35. package/lib/components/formula/Editor.d.ts +560 -0
  36. package/lib/components/formula/Editor.js +186 -0
  37. package/lib/components/formula/Editor.js.map +13 -0
  38. package/lib/components/formula/FuncList.d.ts +67 -0
  39. package/lib/components/formula/FuncList.js +35 -0
  40. package/lib/components/formula/FuncList.js.map +13 -0
  41. package/lib/components/formula/Picker.d.ts +493 -0
  42. package/lib/components/formula/Picker.js +48 -0
  43. package/lib/components/formula/Picker.js.map +13 -0
  44. package/lib/components/formula/VariableList.d.ts +9 -0
  45. package/lib/components/formula/VariableList.js +15 -0
  46. package/lib/components/formula/VariableList.js.map +13 -0
  47. package/lib/components/formula/plugin.d.ts +18 -0
  48. package/lib/components/formula/plugin.js +136 -0
  49. package/lib/components/formula/plugin.js.map +13 -0
  50. package/lib/helper.css +57 -57
  51. package/lib/helper.css.map +1 -1
  52. package/lib/index.d.ts +1 -0
  53. package/lib/index.js +2 -1
  54. package/lib/index.js.map +2 -2
  55. package/lib/renderers/Form/InputColor.d.ts +84 -84
  56. package/lib/renderers/Form/InputColor.js +2 -2
  57. package/lib/renderers/Form/InputColor.js.map +2 -2
  58. package/lib/renderers/Form/InputDate.js +2 -2
  59. package/lib/renderers/Form/InputDate.js.map +2 -2
  60. package/lib/renderers/Form/InputDateRange.js +2 -2
  61. package/lib/renderers/Form/InputDateRange.js.map +2 -2
  62. package/lib/renderers/Form/InputFormula.d.ts +35 -0
  63. package/lib/renderers/Form/InputFormula.js +25 -0
  64. package/lib/renderers/Form/InputFormula.js.map +13 -0
  65. package/lib/renderers/Form/InputMonthRange.js +2 -2
  66. package/lib/renderers/Form/InputMonthRange.js.map +2 -2
  67. package/lib/renderers/Form/InputQuarterRange.js +2 -2
  68. package/lib/renderers/Form/InputQuarterRange.js.map +2 -2
  69. package/lib/renderers/Form/InputYearRange.js +2 -2
  70. package/lib/renderers/Form/InputYearRange.js.map +2 -2
  71. package/lib/renderers/Form/TreeSelect.d.ts +1 -0
  72. package/lib/renderers/Form/TreeSelect.js +11 -8
  73. package/lib/renderers/Form/TreeSelect.js.map +2 -2
  74. package/lib/renderers/Steps.js +2 -2
  75. package/lib/renderers/Steps.js.map +2 -2
  76. package/lib/themes/ang-ie11.css +261 -0
  77. package/lib/themes/ang.css +261 -0
  78. package/lib/themes/ang.css.map +1 -1
  79. package/lib/themes/antd-ie11.css +261 -0
  80. package/lib/themes/antd.css +261 -0
  81. package/lib/themes/antd.css.map +1 -1
  82. package/lib/themes/cxd-ie11.css +261 -0
  83. package/lib/themes/cxd.css +261 -0
  84. package/lib/themes/cxd.css.map +1 -1
  85. package/lib/themes/dark-ie11.css +261 -0
  86. package/lib/themes/dark.css +261 -0
  87. package/lib/themes/dark.css.map +1 -1
  88. package/lib/themes/default.css +261 -0
  89. package/lib/themes/default.css.map +1 -1
  90. package/lib/utils/api.js +2 -2
  91. package/lib/utils/api.js.map +2 -2
  92. package/package.json +4 -2
  93. package/scss/_variables.scss +1 -1
  94. package/scss/components/_formula.scss +122 -0
  95. package/scss/components/_popup.scss +123 -0
  96. package/scss/components/_steps.scss +60 -0
  97. package/scss/components/form/_color.scss +4 -0
  98. package/scss/components/form/_date-range.scss +4 -0
  99. package/scss/components/form/_date.scss +3 -0
  100. package/scss/components/form/_tree-select.scss +4 -0
  101. package/scss/helper/background/_background-color.scss +1 -1
  102. package/scss/helper/border/_border-color.scss +1 -1
  103. package/scss/helper/typography/_text-color.scss +1 -1
  104. package/scss/themes/_common.scss +2 -0
  105. package/sdk/ang-ie11.css +875 -0
  106. package/sdk/ang.css +875 -0
  107. package/sdk/antd-ie11.css +875 -0
  108. package/sdk/antd.css +875 -0
  109. package/sdk/charts.js +15 -15
  110. package/sdk/codemirror.js +14 -0
  111. package/sdk/color-picker.js +65 -65
  112. package/sdk/cropperjs.js +2 -2
  113. package/sdk/cxd-ie11.css +875 -0
  114. package/sdk/cxd.css +875 -0
  115. package/sdk/dark-ie11.css +875 -0
  116. package/sdk/dark.css +875 -0
  117. package/sdk/exceljs.js +1 -1
  118. package/sdk/helper.css +57 -57
  119. package/sdk/helper.css.map +1 -1
  120. package/sdk/markdown.js +69 -69
  121. package/sdk/papaparse.js +1 -1
  122. package/sdk/renderers/Form/CityDB.js +1 -1
  123. package/sdk/rest.js +18 -18
  124. package/sdk/rich-text.js +62 -62
  125. package/sdk/sdk-ie11.css +875 -0
  126. package/sdk/sdk.css +875 -0
  127. package/sdk/sdk.js +1219 -1201
  128. package/sdk/thirds/hls.js/hls.js +1 -1
  129. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  130. package/sdk/tinymce.js +57 -57
  131. package/src/Schema.ts +1 -0
  132. package/src/components/AsideNav.tsx +1 -1
  133. package/src/components/CodeMirror.tsx +99 -0
  134. package/src/components/Collapse.tsx +2 -1
  135. package/src/components/ColorPicker.tsx +45 -3
  136. package/src/components/DatePicker.tsx +33 -3
  137. package/src/components/DateRangePicker.tsx +17 -3
  138. package/src/components/MonthRangePicker.tsx +18 -4
  139. package/src/components/PickerContainer.tsx +10 -6
  140. package/src/components/PopUp.tsx +133 -0
  141. package/src/components/Steps.tsx +8 -3
  142. package/src/components/TabsTransferPicker.tsx +1 -1
  143. package/src/components/TransferPicker.tsx +1 -11
  144. package/src/components/formula/Editor.tsx +261 -0
  145. package/src/components/formula/FuncList.tsx +82 -0
  146. package/src/components/formula/Picker.tsx +86 -0
  147. package/src/components/formula/VariableList.tsx +49 -0
  148. package/src/components/formula/plugin.ts +177 -0
  149. package/src/index.tsx +1 -0
  150. package/src/renderers/Form/InputColor.tsx +2 -3
  151. package/src/renderers/Form/InputDate.tsx +2 -0
  152. package/src/renderers/Form/InputDateRange.tsx +2 -0
  153. package/src/renderers/Form/InputFormula.tsx +75 -0
  154. package/src/renderers/Form/InputMonthRange.tsx +2 -0
  155. package/src/renderers/Form/InputQuarterRange.tsx +2 -0
  156. package/src/renderers/Form/InputYearRange.tsx +2 -0
  157. package/src/renderers/Form/TreeSelect.tsx +82 -63
  158. package/src/renderers/Steps.tsx +4 -2
  159. package/src/utils/api.ts +5 -2
@@ -36,6 +36,7 @@ export interface MonthRangePickerProps extends ThemeProps, LocaleProps {
36
36
  resetValue?: any;
37
37
  popOverContainer?: any;
38
38
  embed?: boolean;
39
+ useMobileUI?: boolean;
39
40
  }
40
41
  export interface MonthRangePickerState {
41
42
  isOpened: boolean;
@@ -85,7 +86,7 @@ export declare class MonthRangePicker extends React.Component<MonthRangePickerPr
85
86
  render(): JSX.Element;
86
87
  }
87
88
  declare const _default: {
88
- new (props: (Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
89
+ new (props: (Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
89
90
  placeholder: string;
90
91
  format: string;
91
92
  inputFormat: string;
@@ -98,7 +99,7 @@ declare const _default: {
98
99
  }, never>> & {
99
100
  locale?: string | undefined;
100
101
  translate?: ((str: string, ...args: any[]) => string) | undefined;
101
- }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
102
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
102
103
  placeholder: string;
103
104
  format: string;
104
105
  inputFormat: string;
@@ -114,7 +115,7 @@ declare const _default: {
114
115
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
115
116
  render(): JSX.Element;
116
117
  context: any;
117
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
118
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
118
119
  placeholder: string;
119
120
  format: string;
120
121
  inputFormat: string;
@@ -129,7 +130,7 @@ declare const _default: {
129
130
  translate?: ((str: string, ...args: any[]) => string) | undefined;
130
131
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
131
132
  forceUpdate(callback?: (() => void) | undefined): void;
132
- readonly props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
133
+ readonly props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
133
134
  placeholder: string;
134
135
  format: string;
135
136
  inputFormat: string;
@@ -150,7 +151,7 @@ declare const _default: {
150
151
  [key: string]: React.ReactInstance;
151
152
  };
152
153
  componentDidMount?(): void;
153
- shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
154
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
154
155
  placeholder: string;
155
156
  format: string;
156
157
  inputFormat: string;
@@ -166,7 +167,7 @@ declare const _default: {
166
167
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
167
168
  componentWillUnmount?(): void;
168
169
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
169
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
170
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
170
171
  placeholder: string;
171
172
  format: string;
172
173
  inputFormat: string;
@@ -180,7 +181,7 @@ declare const _default: {
180
181
  locale?: string | undefined;
181
182
  translate?: ((str: string, ...args: any[]) => string) | undefined;
182
183
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
183
- componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
184
+ componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
184
185
  placeholder: string;
185
186
  format: string;
186
187
  inputFormat: string;
@@ -196,7 +197,7 @@ declare const _default: {
196
197
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
197
198
  componentWillMount?(): void;
198
199
  UNSAFE_componentWillMount?(): void;
199
- componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
200
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
200
201
  placeholder: string;
201
202
  format: string;
202
203
  inputFormat: string;
@@ -210,7 +211,7 @@ declare const _default: {
210
211
  locale?: string | undefined;
211
212
  translate?: ((str: string, ...args: any[]) => string) | undefined;
212
213
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
213
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
214
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
214
215
  placeholder: string;
215
216
  format: string;
216
217
  inputFormat: string;
@@ -224,7 +225,7 @@ declare const _default: {
224
225
  locale?: string | undefined;
225
226
  translate?: ((str: string, ...args: any[]) => string) | undefined;
226
227
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
227
- componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
228
+ componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
228
229
  placeholder: string;
229
230
  format: string;
230
231
  inputFormat: string;
@@ -238,7 +239,7 @@ declare const _default: {
238
239
  locale?: string | undefined;
239
240
  translate?: ((str: string, ...args: any[]) => string) | undefined;
240
241
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
241
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
242
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
242
243
  placeholder: string;
243
244
  format: string;
244
245
  inputFormat: string;
@@ -253,7 +254,7 @@ declare const _default: {
253
254
  translate?: ((str: string, ...args: any[]) => string) | undefined;
254
255
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
255
256
  };
256
- new (props: Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
257
+ new (props: Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
257
258
  placeholder: string;
258
259
  format: string;
259
260
  inputFormat: string;
@@ -269,7 +270,7 @@ declare const _default: {
269
270
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
270
271
  render(): JSX.Element;
271
272
  context: any;
272
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
273
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
273
274
  placeholder: string;
274
275
  format: string;
275
276
  inputFormat: string;
@@ -284,7 +285,7 @@ declare const _default: {
284
285
  translate?: ((str: string, ...args: any[]) => string) | undefined;
285
286
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
286
287
  forceUpdate(callback?: (() => void) | undefined): void;
287
- readonly props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
288
+ readonly props: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
288
289
  placeholder: string;
289
290
  format: string;
290
291
  inputFormat: string;
@@ -305,7 +306,7 @@ declare const _default: {
305
306
  [key: string]: React.ReactInstance;
306
307
  };
307
308
  componentDidMount?(): void;
308
- shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
309
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
309
310
  placeholder: string;
310
311
  format: string;
311
312
  inputFormat: string;
@@ -321,7 +322,7 @@ declare const _default: {
321
322
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
322
323
  componentWillUnmount?(): void;
323
324
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
324
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
325
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
325
326
  placeholder: string;
326
327
  format: string;
327
328
  inputFormat: string;
@@ -335,7 +336,7 @@ declare const _default: {
335
336
  locale?: string | undefined;
336
337
  translate?: ((str: string, ...args: any[]) => string) | undefined;
337
338
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
338
- componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
339
+ componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
339
340
  placeholder: string;
340
341
  format: string;
341
342
  inputFormat: string;
@@ -351,7 +352,7 @@ declare const _default: {
351
352
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
352
353
  componentWillMount?(): void;
353
354
  UNSAFE_componentWillMount?(): void;
354
- componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
355
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
355
356
  placeholder: string;
356
357
  format: string;
357
358
  inputFormat: string;
@@ -365,7 +366,7 @@ declare const _default: {
365
366
  locale?: string | undefined;
366
367
  translate?: ((str: string, ...args: any[]) => string) | undefined;
367
368
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
368
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
369
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
369
370
  placeholder: string;
370
371
  format: string;
371
372
  inputFormat: string;
@@ -379,7 +380,7 @@ declare const _default: {
379
380
  locale?: string | undefined;
380
381
  translate?: ((str: string, ...args: any[]) => string) | undefined;
381
382
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
382
- componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
383
+ componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
383
384
  placeholder: string;
384
385
  format: string;
385
386
  inputFormat: string;
@@ -393,7 +394,7 @@ declare const _default: {
393
394
  locale?: string | undefined;
394
395
  translate?: ((str: string, ...args: any[]) => string) | undefined;
395
396
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
396
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
397
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
397
398
  placeholder: string;
398
399
  format: string;
399
400
  inputFormat: string;
@@ -411,7 +412,7 @@ declare const _default: {
411
412
  displayName: string;
412
413
  contextType: React.Context<string>;
413
414
  ComposedComponent: React.ComponentType<{
414
- new (props: (Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
415
+ new (props: (Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
415
416
  placeholder: string;
416
417
  format: string;
417
418
  inputFormat: string;
@@ -424,7 +425,7 @@ declare const _default: {
424
425
  }, never>> & {
425
426
  locale?: string | undefined;
426
427
  translate?: ((str: string, ...args: any[]) => string) | undefined;
427
- }) | Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
428
+ }) | Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
428
429
  placeholder: string;
429
430
  format: string;
430
431
  inputFormat: string;
@@ -440,7 +441,7 @@ declare const _default: {
440
441
  }>): {
441
442
  render(): JSX.Element;
442
443
  context: any;
443
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
444
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
444
445
  placeholder: string;
445
446
  format: string;
446
447
  inputFormat: string;
@@ -455,7 +456,7 @@ declare const _default: {
455
456
  translate?: ((str: string, ...args: any[]) => string) | undefined;
456
457
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
457
458
  forceUpdate(callback?: (() => void) | undefined): void;
458
- readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
459
+ readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
459
460
  placeholder: string;
460
461
  format: string;
461
462
  inputFormat: string;
@@ -476,7 +477,7 @@ declare const _default: {
476
477
  [key: string]: React.ReactInstance;
477
478
  };
478
479
  componentDidMount?(): void;
479
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
480
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
480
481
  placeholder: string;
481
482
  format: string;
482
483
  inputFormat: string;
@@ -492,7 +493,7 @@ declare const _default: {
492
493
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
493
494
  componentWillUnmount?(): void;
494
495
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
495
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
496
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
496
497
  placeholder: string;
497
498
  format: string;
498
499
  inputFormat: string;
@@ -506,7 +507,7 @@ declare const _default: {
506
507
  locale?: string | undefined;
507
508
  translate?: ((str: string, ...args: any[]) => string) | undefined;
508
509
  }>, prevState: Readonly<{}>): any;
509
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
510
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
510
511
  placeholder: string;
511
512
  format: string;
512
513
  inputFormat: string;
@@ -522,7 +523,7 @@ declare const _default: {
522
523
  }>, prevState: Readonly<{}>, snapshot?: any): void;
523
524
  componentWillMount?(): void;
524
525
  UNSAFE_componentWillMount?(): void;
525
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
526
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
526
527
  placeholder: string;
527
528
  format: string;
528
529
  inputFormat: string;
@@ -536,7 +537,7 @@ declare const _default: {
536
537
  locale?: string | undefined;
537
538
  translate?: ((str: string, ...args: any[]) => string) | undefined;
538
539
  }>, nextContext: any): void;
539
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
540
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
540
541
  placeholder: string;
541
542
  format: string;
542
543
  inputFormat: string;
@@ -550,7 +551,7 @@ declare const _default: {
550
551
  locale?: string | undefined;
551
552
  translate?: ((str: string, ...args: any[]) => string) | undefined;
552
553
  }>, nextContext: any): void;
553
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
554
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
554
555
  placeholder: string;
555
556
  format: string;
556
557
  inputFormat: string;
@@ -564,7 +565,7 @@ declare const _default: {
564
565
  locale?: string | undefined;
565
566
  translate?: ((str: string, ...args: any[]) => string) | undefined;
566
567
  }>, nextState: Readonly<{}>, nextContext: any): void;
567
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
568
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
568
569
  placeholder: string;
569
570
  format: string;
570
571
  inputFormat: string;
@@ -579,7 +580,7 @@ declare const _default: {
579
580
  translate?: ((str: string, ...args: any[]) => string) | undefined;
580
581
  }>, nextState: Readonly<{}>, nextContext: any): void;
581
582
  };
582
- new (props: Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
583
+ new (props: Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
583
584
  placeholder: string;
584
585
  format: string;
585
586
  inputFormat: string;
@@ -595,7 +596,7 @@ declare const _default: {
595
596
  }, context: any): {
596
597
  render(): JSX.Element;
597
598
  context: any;
598
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
599
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
599
600
  placeholder: string;
600
601
  format: string;
601
602
  inputFormat: string;
@@ -610,7 +611,7 @@ declare const _default: {
610
611
  translate?: ((str: string, ...args: any[]) => string) | undefined;
611
612
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
612
613
  forceUpdate(callback?: (() => void) | undefined): void;
613
- readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
614
+ readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
614
615
  placeholder: string;
615
616
  format: string;
616
617
  inputFormat: string;
@@ -631,7 +632,7 @@ declare const _default: {
631
632
  [key: string]: React.ReactInstance;
632
633
  };
633
634
  componentDidMount?(): void;
634
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
635
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
635
636
  placeholder: string;
636
637
  format: string;
637
638
  inputFormat: string;
@@ -647,7 +648,7 @@ declare const _default: {
647
648
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
648
649
  componentWillUnmount?(): void;
649
650
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
650
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
651
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
651
652
  placeholder: string;
652
653
  format: string;
653
654
  inputFormat: string;
@@ -661,7 +662,7 @@ declare const _default: {
661
662
  locale?: string | undefined;
662
663
  translate?: ((str: string, ...args: any[]) => string) | undefined;
663
664
  }>, prevState: Readonly<{}>): any;
664
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
665
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
665
666
  placeholder: string;
666
667
  format: string;
667
668
  inputFormat: string;
@@ -677,7 +678,7 @@ declare const _default: {
677
678
  }>, prevState: Readonly<{}>, snapshot?: any): void;
678
679
  componentWillMount?(): void;
679
680
  UNSAFE_componentWillMount?(): void;
680
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
681
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
681
682
  placeholder: string;
682
683
  format: string;
683
684
  inputFormat: string;
@@ -691,7 +692,7 @@ declare const _default: {
691
692
  locale?: string | undefined;
692
693
  translate?: ((str: string, ...args: any[]) => string) | undefined;
693
694
  }>, nextContext: any): void;
694
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
695
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
695
696
  placeholder: string;
696
697
  format: string;
697
698
  inputFormat: string;
@@ -705,7 +706,7 @@ declare const _default: {
705
706
  locale?: string | undefined;
706
707
  translate?: ((str: string, ...args: any[]) => string) | undefined;
707
708
  }>, nextContext: any): void;
708
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
709
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
709
710
  placeholder: string;
710
711
  format: string;
711
712
  inputFormat: string;
@@ -719,7 +720,7 @@ declare const _default: {
719
720
  locale?: string | undefined;
720
721
  translate?: ((str: string, ...args: any[]) => string) | undefined;
721
722
  }>, nextState: Readonly<{}>, nextContext: any): void;
722
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
723
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
723
724
  placeholder: string;
724
725
  format: string;
725
726
  inputFormat: string;
@@ -741,7 +742,7 @@ declare const _default: {
741
742
  ComposedComponent: typeof MonthRangePicker;
742
743
  }>;
743
744
  } & import("hoist-non-react-statics").NonReactStatics<{
744
- new (props: (Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
745
+ new (props: (Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
745
746
  placeholder: string;
746
747
  format: string;
747
748
  inputFormat: string;
@@ -754,7 +755,7 @@ declare const _default: {
754
755
  }, never>> & {
755
756
  locale?: string | undefined;
756
757
  translate?: ((str: string, ...args: any[]) => string) | undefined;
757
- }) | Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
758
+ }) | Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
758
759
  placeholder: string;
759
760
  format: string;
760
761
  inputFormat: string;
@@ -770,7 +771,7 @@ declare const _default: {
770
771
  }>): {
771
772
  render(): JSX.Element;
772
773
  context: any;
773
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
774
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
774
775
  placeholder: string;
775
776
  format: string;
776
777
  inputFormat: string;
@@ -785,7 +786,7 @@ declare const _default: {
785
786
  translate?: ((str: string, ...args: any[]) => string) | undefined;
786
787
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
787
788
  forceUpdate(callback?: (() => void) | undefined): void;
788
- readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
789
+ readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
789
790
  placeholder: string;
790
791
  format: string;
791
792
  inputFormat: string;
@@ -806,7 +807,7 @@ declare const _default: {
806
807
  [key: string]: React.ReactInstance;
807
808
  };
808
809
  componentDidMount?(): void;
809
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
810
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
810
811
  placeholder: string;
811
812
  format: string;
812
813
  inputFormat: string;
@@ -822,7 +823,7 @@ declare const _default: {
822
823
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
823
824
  componentWillUnmount?(): void;
824
825
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
825
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
826
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
826
827
  placeholder: string;
827
828
  format: string;
828
829
  inputFormat: string;
@@ -836,7 +837,7 @@ declare const _default: {
836
837
  locale?: string | undefined;
837
838
  translate?: ((str: string, ...args: any[]) => string) | undefined;
838
839
  }>, prevState: Readonly<{}>): any;
839
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
840
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
840
841
  placeholder: string;
841
842
  format: string;
842
843
  inputFormat: string;
@@ -852,7 +853,7 @@ declare const _default: {
852
853
  }>, prevState: Readonly<{}>, snapshot?: any): void;
853
854
  componentWillMount?(): void;
854
855
  UNSAFE_componentWillMount?(): void;
855
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
856
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
856
857
  placeholder: string;
857
858
  format: string;
858
859
  inputFormat: string;
@@ -866,7 +867,7 @@ declare const _default: {
866
867
  locale?: string | undefined;
867
868
  translate?: ((str: string, ...args: any[]) => string) | undefined;
868
869
  }>, nextContext: any): void;
869
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
870
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
870
871
  placeholder: string;
871
872
  format: string;
872
873
  inputFormat: string;
@@ -880,7 +881,7 @@ declare const _default: {
880
881
  locale?: string | undefined;
881
882
  translate?: ((str: string, ...args: any[]) => string) | undefined;
882
883
  }>, nextContext: any): void;
883
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
884
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
884
885
  placeholder: string;
885
886
  format: string;
886
887
  inputFormat: string;
@@ -894,7 +895,7 @@ declare const _default: {
894
895
  locale?: string | undefined;
895
896
  translate?: ((str: string, ...args: any[]) => string) | undefined;
896
897
  }>, nextState: Readonly<{}>, nextContext: any): void;
897
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
898
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
898
899
  placeholder: string;
899
900
  format: string;
900
901
  inputFormat: string;
@@ -909,7 +910,7 @@ declare const _default: {
909
910
  translate?: ((str: string, ...args: any[]) => string) | undefined;
910
911
  }>, nextState: Readonly<{}>, nextContext: any): void;
911
912
  };
912
- new (props: Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
913
+ new (props: Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
913
914
  placeholder: string;
914
915
  format: string;
915
916
  inputFormat: string;
@@ -925,7 +926,7 @@ declare const _default: {
925
926
  }, context: any): {
926
927
  render(): JSX.Element;
927
928
  context: any;
928
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
929
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
929
930
  placeholder: string;
930
931
  format: string;
931
932
  inputFormat: string;
@@ -940,7 +941,7 @@ declare const _default: {
940
941
  translate?: ((str: string, ...args: any[]) => string) | undefined;
941
942
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
942
943
  forceUpdate(callback?: (() => void) | undefined): void;
943
- readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
944
+ readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
944
945
  placeholder: string;
945
946
  format: string;
946
947
  inputFormat: string;
@@ -961,7 +962,7 @@ declare const _default: {
961
962
  [key: string]: React.ReactInstance;
962
963
  };
963
964
  componentDidMount?(): void;
964
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
965
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
965
966
  placeholder: string;
966
967
  format: string;
967
968
  inputFormat: string;
@@ -977,7 +978,7 @@ declare const _default: {
977
978
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
978
979
  componentWillUnmount?(): void;
979
980
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
980
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
981
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
981
982
  placeholder: string;
982
983
  format: string;
983
984
  inputFormat: string;
@@ -991,7 +992,7 @@ declare const _default: {
991
992
  locale?: string | undefined;
992
993
  translate?: ((str: string, ...args: any[]) => string) | undefined;
993
994
  }>, prevState: Readonly<{}>): any;
994
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
995
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
995
996
  placeholder: string;
996
997
  format: string;
997
998
  inputFormat: string;
@@ -1007,7 +1008,7 @@ declare const _default: {
1007
1008
  }>, prevState: Readonly<{}>, snapshot?: any): void;
1008
1009
  componentWillMount?(): void;
1009
1010
  UNSAFE_componentWillMount?(): void;
1010
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1011
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1011
1012
  placeholder: string;
1012
1013
  format: string;
1013
1014
  inputFormat: string;
@@ -1021,7 +1022,7 @@ declare const _default: {
1021
1022
  locale?: string | undefined;
1022
1023
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1023
1024
  }>, nextContext: any): void;
1024
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1025
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1025
1026
  placeholder: string;
1026
1027
  format: string;
1027
1028
  inputFormat: string;
@@ -1035,7 +1036,7 @@ declare const _default: {
1035
1036
  locale?: string | undefined;
1036
1037
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1037
1038
  }>, nextContext: any): void;
1038
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1039
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1039
1040
  placeholder: string;
1040
1041
  format: string;
1041
1042
  inputFormat: string;
@@ -1049,7 +1050,7 @@ declare const _default: {
1049
1050
  locale?: string | undefined;
1050
1051
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1051
1052
  }>, nextState: Readonly<{}>, nextContext: any): void;
1052
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1053
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1053
1054
  placeholder: string;
1054
1055
  format: string;
1055
1056
  inputFormat: string;
@@ -1071,7 +1072,7 @@ declare const _default: {
1071
1072
  ComposedComponent: typeof MonthRangePicker;
1072
1073
  }, {}> & {
1073
1074
  ComposedComponent: {
1074
- new (props: (Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1075
+ new (props: (Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1075
1076
  placeholder: string;
1076
1077
  format: string;
1077
1078
  inputFormat: string;
@@ -1084,7 +1085,7 @@ declare const _default: {
1084
1085
  }, never>> & {
1085
1086
  locale?: string | undefined;
1086
1087
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1087
- }) | Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1088
+ }) | Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1088
1089
  placeholder: string;
1089
1090
  format: string;
1090
1091
  inputFormat: string;
@@ -1100,7 +1101,7 @@ declare const _default: {
1100
1101
  }>): {
1101
1102
  render(): JSX.Element;
1102
1103
  context: any;
1103
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1104
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1104
1105
  placeholder: string;
1105
1106
  format: string;
1106
1107
  inputFormat: string;
@@ -1115,7 +1116,7 @@ declare const _default: {
1115
1116
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1116
1117
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
1117
1118
  forceUpdate(callback?: (() => void) | undefined): void;
1118
- readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1119
+ readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1119
1120
  placeholder: string;
1120
1121
  format: string;
1121
1122
  inputFormat: string;
@@ -1136,7 +1137,7 @@ declare const _default: {
1136
1137
  [key: string]: React.ReactInstance;
1137
1138
  };
1138
1139
  componentDidMount?(): void;
1139
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1140
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1140
1141
  placeholder: string;
1141
1142
  format: string;
1142
1143
  inputFormat: string;
@@ -1152,7 +1153,7 @@ declare const _default: {
1152
1153
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
1153
1154
  componentWillUnmount?(): void;
1154
1155
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1155
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1156
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1156
1157
  placeholder: string;
1157
1158
  format: string;
1158
1159
  inputFormat: string;
@@ -1166,7 +1167,7 @@ declare const _default: {
1166
1167
  locale?: string | undefined;
1167
1168
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1168
1169
  }>, prevState: Readonly<{}>): any;
1169
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1170
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1170
1171
  placeholder: string;
1171
1172
  format: string;
1172
1173
  inputFormat: string;
@@ -1182,7 +1183,7 @@ declare const _default: {
1182
1183
  }>, prevState: Readonly<{}>, snapshot?: any): void;
1183
1184
  componentWillMount?(): void;
1184
1185
  UNSAFE_componentWillMount?(): void;
1185
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1186
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1186
1187
  placeholder: string;
1187
1188
  format: string;
1188
1189
  inputFormat: string;
@@ -1196,7 +1197,7 @@ declare const _default: {
1196
1197
  locale?: string | undefined;
1197
1198
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1198
1199
  }>, nextContext: any): void;
1199
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1200
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1200
1201
  placeholder: string;
1201
1202
  format: string;
1202
1203
  inputFormat: string;
@@ -1210,7 +1211,7 @@ declare const _default: {
1210
1211
  locale?: string | undefined;
1211
1212
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1212
1213
  }>, nextContext: any): void;
1213
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1214
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1214
1215
  placeholder: string;
1215
1216
  format: string;
1216
1217
  inputFormat: string;
@@ -1224,7 +1225,7 @@ declare const _default: {
1224
1225
  locale?: string | undefined;
1225
1226
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1226
1227
  }>, nextState: Readonly<{}>, nextContext: any): void;
1227
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1228
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1228
1229
  placeholder: string;
1229
1230
  format: string;
1230
1231
  inputFormat: string;
@@ -1239,7 +1240,7 @@ declare const _default: {
1239
1240
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1240
1241
  }>, nextState: Readonly<{}>, nextContext: any): void;
1241
1242
  };
1242
- new (props: Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1243
+ new (props: Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1243
1244
  placeholder: string;
1244
1245
  format: string;
1245
1246
  inputFormat: string;
@@ -1255,7 +1256,7 @@ declare const _default: {
1255
1256
  }, context: any): {
1256
1257
  render(): JSX.Element;
1257
1258
  context: any;
1258
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1259
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1259
1260
  placeholder: string;
1260
1261
  format: string;
1261
1262
  inputFormat: string;
@@ -1270,7 +1271,7 @@ declare const _default: {
1270
1271
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1271
1272
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
1272
1273
  forceUpdate(callback?: (() => void) | undefined): void;
1273
- readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1274
+ readonly props: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1274
1275
  placeholder: string;
1275
1276
  format: string;
1276
1277
  inputFormat: string;
@@ -1291,7 +1292,7 @@ declare const _default: {
1291
1292
  [key: string]: React.ReactInstance;
1292
1293
  };
1293
1294
  componentDidMount?(): void;
1294
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1295
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1295
1296
  placeholder: string;
1296
1297
  format: string;
1297
1298
  inputFormat: string;
@@ -1307,7 +1308,7 @@ declare const _default: {
1307
1308
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
1308
1309
  componentWillUnmount?(): void;
1309
1310
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1310
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1311
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1311
1312
  placeholder: string;
1312
1313
  format: string;
1313
1314
  inputFormat: string;
@@ -1321,7 +1322,7 @@ declare const _default: {
1321
1322
  locale?: string | undefined;
1322
1323
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1323
1324
  }>, prevState: Readonly<{}>): any;
1324
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1325
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1325
1326
  placeholder: string;
1326
1327
  format: string;
1327
1328
  inputFormat: string;
@@ -1337,7 +1338,7 @@ declare const _default: {
1337
1338
  }>, prevState: Readonly<{}>, snapshot?: any): void;
1338
1339
  componentWillMount?(): void;
1339
1340
  UNSAFE_componentWillMount?(): void;
1340
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1341
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1341
1342
  placeholder: string;
1342
1343
  format: string;
1343
1344
  inputFormat: string;
@@ -1351,7 +1352,7 @@ declare const _default: {
1351
1352
  locale?: string | undefined;
1352
1353
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1353
1354
  }>, nextContext: any): void;
1354
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1355
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1355
1356
  placeholder: string;
1356
1357
  format: string;
1357
1358
  inputFormat: string;
@@ -1365,7 +1366,7 @@ declare const _default: {
1365
1366
  locale?: string | undefined;
1366
1367
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1367
1368
  }>, nextContext: any): void;
1368
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1369
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1369
1370
  placeholder: string;
1370
1371
  format: string;
1371
1372
  inputFormat: string;
@@ -1379,7 +1380,7 @@ declare const _default: {
1379
1380
  locale?: string | undefined;
1380
1381
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1381
1382
  }>, nextState: Readonly<{}>, nextContext: any): void;
1382
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1383
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "classPrefix" | "classnames" | "data" | "embed" | "className" | "theme" | "value" | "disabled" | "onChange" | "maxDate" | "minDate" | "maxDuration" | "minDuration" | "popOverContainer" | "utc" | "timeFormat" | "popoverClassName" | "useMobileUI" | "ranges"> & Partial<Pick<Omit<MonthRangePickerProps, keyof LocaleProps>, "delimiter" | "joinValues" | "resetValue" | "placeholder" | "clearable" | "format" | "inputFormat" | "closeOnSelect" | "overlayPlacement">> & Partial<Pick<{
1383
1384
  placeholder: string;
1384
1385
  format: string;
1385
1386
  inputFormat: string;