amis 1.5.6 → 1.6.1-beta.0

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 (538) hide show
  1. package/.husky/pre-commit +1 -1
  2. package/README.md +1 -0
  3. package/lib/RootRenderer.d.ts +2 -0
  4. package/lib/RootRenderer.js +19 -1
  5. package/lib/RootRenderer.js.map +2 -2
  6. package/lib/Schema.d.ts +3 -2
  7. package/lib/Schema.js.map +1 -1
  8. package/lib/SchemaRenderer.js +52 -1
  9. package/lib/SchemaRenderer.js.map +2 -2
  10. package/lib/Scoped.d.ts +2 -0
  11. package/lib/Scoped.js +27 -1
  12. package/lib/Scoped.js.map +2 -2
  13. package/lib/actions/Action.d.ts +33 -0
  14. package/lib/actions/Action.js +100 -0
  15. package/lib/actions/Action.js.map +13 -0
  16. package/lib/actions/AjaxAction.d.ts +14 -0
  17. package/lib/actions/AjaxAction.js +68 -0
  18. package/lib/actions/AjaxAction.js.map +13 -0
  19. package/lib/actions/BreakAction.d.ts +12 -0
  20. package/lib/actions/BreakAction.js +28 -0
  21. package/lib/actions/BreakAction.js.map +13 -0
  22. package/lib/actions/BroadcastAction.d.ts +12 -0
  23. package/lib/actions/BroadcastAction.js +40 -0
  24. package/lib/actions/BroadcastAction.js.map +13 -0
  25. package/lib/actions/CmptAction.d.ts +12 -0
  26. package/lib/actions/CmptAction.js +40 -0
  27. package/lib/actions/CmptAction.js.map +13 -0
  28. package/lib/actions/ContinueAction.d.ts +12 -0
  29. package/lib/actions/ContinueAction.js +28 -0
  30. package/lib/actions/ContinueAction.js.map +13 -0
  31. package/lib/actions/CopyAction.d.ts +12 -0
  32. package/lib/actions/CopyAction.js +35 -0
  33. package/lib/actions/CopyAction.js.map +13 -0
  34. package/lib/actions/CustomAction.d.ts +12 -0
  35. package/lib/actions/CustomAction.js +43 -0
  36. package/lib/actions/CustomAction.js.map +13 -0
  37. package/lib/actions/DialogAction.d.ts +12 -0
  38. package/lib/actions/DialogAction.js +31 -0
  39. package/lib/actions/DialogAction.js.map +13 -0
  40. package/lib/actions/DrawerAction.d.ts +12 -0
  41. package/lib/actions/DrawerAction.js +31 -0
  42. package/lib/actions/DrawerAction.js.map +13 -0
  43. package/lib/actions/EmailAction.d.ts +12 -0
  44. package/lib/actions/EmailAction.js +37 -0
  45. package/lib/actions/EmailAction.js.map +13 -0
  46. package/lib/actions/LoopAction.d.ts +12 -0
  47. package/lib/actions/LoopAction.js +93 -0
  48. package/lib/actions/LoopAction.js.map +13 -0
  49. package/lib/actions/OpenPageAction.d.ts +12 -0
  50. package/lib/actions/OpenPageAction.js +33 -0
  51. package/lib/actions/OpenPageAction.js.map +13 -0
  52. package/lib/actions/ParallelAction.d.ts +5 -0
  53. package/lib/actions/ParallelAction.js +33 -0
  54. package/lib/actions/ParallelAction.js.map +13 -0
  55. package/lib/actions/SwitchAction.d.ts +8 -0
  56. package/lib/actions/SwitchAction.js +45 -0
  57. package/lib/actions/SwitchAction.js.map +13 -0
  58. package/lib/actions/index.d.ts +18 -0
  59. package/lib/actions/index.js +22 -0
  60. package/lib/actions/index.js.map +13 -0
  61. package/lib/components/AnchorNav.d.ts +20 -20
  62. package/lib/components/AssociatedSelection.d.ts +84 -84
  63. package/lib/components/AssociatedSelection.js +2 -2
  64. package/lib/components/AssociatedSelection.js.map +2 -2
  65. package/lib/components/Avatar.d.ts +135 -0
  66. package/lib/components/Avatar.js +120 -0
  67. package/lib/components/Avatar.js.map +13 -0
  68. package/lib/components/BaiduMapPicker.js.map +2 -2
  69. package/lib/components/Button.d.ts +20 -20
  70. package/lib/components/CalendarMobile.d.ts +573 -0
  71. package/lib/components/CalendarMobile.js +486 -0
  72. package/lib/components/CalendarMobile.js.map +13 -0
  73. package/lib/components/Cascader.d.ts +123 -0
  74. package/lib/components/Cascader.js +487 -0
  75. package/lib/components/Cascader.js.map +13 -0
  76. package/lib/components/ChainedSelection.d.ts +84 -84
  77. package/lib/components/ChainedSelection.js +15 -3
  78. package/lib/components/ChainedSelection.js.map +2 -2
  79. package/lib/components/CityArea.d.ts +527 -0
  80. package/lib/components/CityArea.js +177 -0
  81. package/lib/components/CityArea.js.map +13 -0
  82. package/lib/components/Collapse.d.ts +20 -20
  83. package/lib/components/ColorPicker.d.ts +84 -84
  84. package/lib/components/ColorPicker.js +4 -3
  85. package/lib/components/ColorPicker.js.map +2 -2
  86. package/lib/components/DatePicker.d.ts +85 -84
  87. package/lib/components/DatePicker.js +21 -8
  88. package/lib/components/DatePicker.js.map +2 -2
  89. package/lib/components/DateRangePicker.d.ts +85 -84
  90. package/lib/components/DateRangePicker.js +19 -6
  91. package/lib/components/DateRangePicker.js.map +2 -2
  92. package/lib/components/GroupedSelection.d.ts +84 -84
  93. package/lib/components/GroupedSelection.js +14 -2
  94. package/lib/components/GroupedSelection.js.map +2 -2
  95. package/lib/components/InputBox.d.ts +21 -21
  96. package/lib/components/ListGroup.d.ts +21 -21
  97. package/lib/components/ListMenu.d.ts +84 -84
  98. package/lib/components/MonthRangePicker.d.ts +85 -84
  99. package/lib/components/MonthRangePicker.js +18 -7
  100. package/lib/components/MonthRangePicker.js.map +2 -2
  101. package/lib/components/Overlay.d.ts +1 -1
  102. package/lib/components/Overlay.js.map +1 -1
  103. package/lib/components/Picker.d.ts +1 -0
  104. package/lib/components/Picker.js +16 -7
  105. package/lib/components/Picker.js.map +2 -2
  106. package/lib/components/PickerColumn.d.ts +1 -0
  107. package/lib/components/PickerColumn.js +21 -18
  108. package/lib/components/PickerColumn.js.map +2 -2
  109. package/lib/components/PickerContainer.d.ts +3 -0
  110. package/lib/components/PickerContainer.js +12 -5
  111. package/lib/components/PickerContainer.js.map +2 -2
  112. package/lib/components/PopOverContainer.d.ts +1 -0
  113. package/lib/components/PopOverContainer.js +5 -3
  114. package/lib/components/PopOverContainer.js.map +2 -2
  115. package/lib/components/PopUp.d.ts +1041 -28
  116. package/lib/components/PopUp.js +32 -8
  117. package/lib/components/PopUp.js.map +2 -2
  118. package/lib/components/Radios.d.ts +21 -21
  119. package/lib/components/Rating.d.ts +21 -21
  120. package/lib/components/ResultBox.d.ts +85 -84
  121. package/lib/components/ResultBox.js +9 -4
  122. package/lib/components/ResultBox.js.map +2 -2
  123. package/lib/components/ResultList.d.ts +9 -2
  124. package/lib/components/ResultList.js +22 -2
  125. package/lib/components/ResultList.js.map +2 -2
  126. package/lib/components/Select.d.ts +238 -238
  127. package/lib/components/Select.js +13 -9
  128. package/lib/components/Select.js.map +2 -2
  129. package/lib/components/Selection.d.ts +94 -86
  130. package/lib/components/Selection.js +11 -2
  131. package/lib/components/Selection.js.map +2 -2
  132. package/lib/components/Steps.js.map +2 -2
  133. package/lib/components/TableSelection.d.ts +85 -85
  134. package/lib/components/TableSelection.js +1 -9
  135. package/lib/components/TableSelection.js.map +2 -2
  136. package/lib/components/Tabs.js +31 -33
  137. package/lib/components/Tabs.js.map +2 -2
  138. package/lib/components/TabsTransfer.d.ts +87 -256
  139. package/lib/components/TabsTransfer.js +52 -9
  140. package/lib/components/TabsTransfer.js.map +2 -2
  141. package/lib/components/TabsTransferPicker.d.ts +1 -1
  142. package/lib/components/TabsTransferPicker.js +20 -18
  143. package/lib/components/TabsTransferPicker.js.map +2 -2
  144. package/lib/components/Timeline.d.ts +69 -0
  145. package/lib/components/Timeline.js +16 -0
  146. package/lib/components/Timeline.js.map +13 -0
  147. package/lib/components/TimelineItem.d.ts +517 -0
  148. package/lib/components/TimelineItem.js +40 -0
  149. package/lib/components/TimelineItem.js.map +13 -0
  150. package/lib/components/Transfer.d.ts +100 -98
  151. package/lib/components/Transfer.js +2 -3
  152. package/lib/components/Transfer.js.map +2 -2
  153. package/lib/components/TransferDropDown.d.ts +85 -84
  154. package/lib/components/TransferDropDown.js +9 -10
  155. package/lib/components/TransferDropDown.js.map +2 -2
  156. package/lib/components/TransferPicker.d.ts +1 -0
  157. package/lib/components/TransferPicker.js +19 -4
  158. package/lib/components/TransferPicker.js.map +2 -2
  159. package/lib/components/Tree.d.ts +84 -84
  160. package/lib/components/TreeSelection.d.ts +85 -85
  161. package/lib/components/TreeSelection.js +7 -1
  162. package/lib/components/TreeSelection.js.map +2 -2
  163. package/lib/components/calendar/Calendar.d.ts +19 -0
  164. package/lib/components/calendar/Calendar.js +71 -1
  165. package/lib/components/calendar/Calendar.js.map +2 -2
  166. package/lib/components/calendar/DaysView.d.ts +21 -0
  167. package/lib/components/calendar/DaysView.js +76 -17
  168. package/lib/components/calendar/DaysView.js.map +2 -2
  169. package/lib/components/calendar/MonthsView.d.ts +34 -0
  170. package/lib/components/calendar/MonthsView.js +68 -3
  171. package/lib/components/calendar/MonthsView.js.map +2 -2
  172. package/lib/components/calendar/QuartersView.d.ts +1 -0
  173. package/lib/components/calendar/QuartersView.js +2 -2
  174. package/lib/components/calendar/QuartersView.js.map +2 -2
  175. package/lib/components/calendar/TimeView.d.ts +30 -18
  176. package/lib/components/calendar/TimeView.js +47 -8
  177. package/lib/components/calendar/TimeView.js.map +2 -2
  178. package/lib/components/calendar/YearsView.d.ts +6 -0
  179. package/lib/components/calendar/YearsView.js +21 -10
  180. package/lib/components/calendar/YearsView.js.map +2 -2
  181. package/lib/components/condition-builder/Field.js +1 -4
  182. package/lib/components/condition-builder/Field.js.map +2 -2
  183. package/lib/components/condition-builder/Func.js +1 -1
  184. package/lib/components/condition-builder/Func.js.map +2 -2
  185. package/lib/components/formula/Editor.d.ts +3 -0
  186. package/lib/components/formula/Editor.js +3 -2
  187. package/lib/components/formula/Editor.js.map +2 -2
  188. package/lib/components/formula/FuncList.js +2 -1
  189. package/lib/components/formula/FuncList.js.map +2 -2
  190. package/lib/components/formula/Picker.js +1 -1
  191. package/lib/components/formula/Picker.js.map +2 -2
  192. package/lib/components/formula/plugin.js +0 -1
  193. package/lib/components/formula/plugin.js.map +2 -2
  194. package/lib/components/icons.js +2 -0
  195. package/lib/components/icons.js.map +2 -2
  196. package/lib/components/index.d.ts +2 -1
  197. package/lib/components/index.js +4 -2
  198. package/lib/components/index.js.map +2 -2
  199. package/lib/components/virtual-list/SizeAndPositionManager.js.map +2 -2
  200. package/lib/components/virtual-list/index.js +1 -2
  201. package/lib/components/virtual-list/index.js.map +2 -2
  202. package/lib/env.d.ts +4 -0
  203. package/lib/env.js.map +2 -2
  204. package/lib/factory.d.ts +2 -1
  205. package/lib/factory.js +83 -0
  206. package/lib/factory.js.map +2 -2
  207. package/lib/helper.css.map +1 -1
  208. package/lib/icons/tree-down.js +7 -0
  209. package/lib/index.d.ts +3 -0
  210. package/lib/index.js +4 -1
  211. package/lib/index.js.map +2 -2
  212. package/lib/locale/de-DE.js +17 -2
  213. package/lib/locale/de-DE.js.map +2 -2
  214. package/lib/locale/en-US.js +17 -2
  215. package/lib/locale/en-US.js.map +2 -2
  216. package/lib/locale/zh-CN.js +16 -1
  217. package/lib/locale/zh-CN.js.map +2 -2
  218. package/lib/renderers/Action.d.ts +1 -1
  219. package/lib/renderers/Action.js +26 -10
  220. package/lib/renderers/Action.js.map +2 -2
  221. package/lib/renderers/Avatar.d.ts +35 -26
  222. package/lib/renderers/Avatar.js +14 -19
  223. package/lib/renderers/Avatar.js.map +2 -2
  224. package/lib/renderers/CRUD.js +1 -2
  225. package/lib/renderers/CRUD.js.map +2 -2
  226. package/lib/renderers/Card.js +6 -5
  227. package/lib/renderers/Card.js.map +2 -2
  228. package/lib/renderers/Custom.d.ts +1 -1
  229. package/lib/renderers/Custom.js +1 -1
  230. package/lib/renderers/Custom.js.map +2 -2
  231. package/lib/renderers/DropDownButton.d.ts +11 -2
  232. package/lib/renderers/DropDownButton.js +30 -12
  233. package/lib/renderers/DropDownButton.js.map +2 -2
  234. package/lib/renderers/Each.js +5 -2
  235. package/lib/renderers/Each.js.map +2 -2
  236. package/lib/renderers/Flex.js +1 -5
  237. package/lib/renderers/Flex.js.map +2 -2
  238. package/lib/renderers/Form/ChartRadios.js.map +2 -2
  239. package/lib/renderers/Form/Checkboxes.js.map +2 -2
  240. package/lib/renderers/Form/CityDB.js +526 -2
  241. package/lib/renderers/Form/CityDB.js.map +2 -2
  242. package/lib/renderers/Form/DiffEditor.d.ts +6 -0
  243. package/lib/renderers/Form/DiffEditor.js +2 -1
  244. package/lib/renderers/Form/DiffEditor.js.map +2 -2
  245. package/lib/renderers/Form/Editor.d.ts +6 -0
  246. package/lib/renderers/Form/InputCity.d.ts +85 -84
  247. package/lib/renderers/Form/InputCity.js +4 -2
  248. package/lib/renderers/Form/InputCity.js.map +2 -2
  249. package/lib/renderers/Form/InputColor.d.ts +84 -84
  250. package/lib/renderers/Form/InputColor.js +6 -2
  251. package/lib/renderers/Form/InputColor.js.map +2 -2
  252. package/lib/renderers/Form/InputDate.js +10 -5
  253. package/lib/renderers/Form/InputDate.js.map +2 -2
  254. package/lib/renderers/Form/InputDateRange.js +6 -2
  255. package/lib/renderers/Form/InputDateRange.js.map +2 -2
  256. package/lib/renderers/Form/InputFormula.d.ts +4 -1
  257. package/lib/renderers/Form/InputFormula.js +2 -2
  258. package/lib/renderers/Form/InputFormula.js.map +2 -2
  259. package/lib/renderers/Form/InputImage.d.ts +1 -0
  260. package/lib/renderers/Form/InputImage.js +8 -4
  261. package/lib/renderers/Form/InputImage.js.map +2 -2
  262. package/lib/renderers/Form/InputMonthRange.js +1 -1
  263. package/lib/renderers/Form/InputMonthRange.js.map +2 -2
  264. package/lib/renderers/Form/InputQuarterRange.js +1 -1
  265. package/lib/renderers/Form/InputQuarterRange.js.map +2 -2
  266. package/lib/renderers/Form/InputYearRange.js +1 -1
  267. package/lib/renderers/Form/InputYearRange.js.map +2 -2
  268. package/lib/renderers/Form/Item.d.ts +10 -14
  269. package/lib/renderers/Form/Item.js +18 -9
  270. package/lib/renderers/Form/Item.js.map +2 -2
  271. package/lib/renderers/Form/NestedSelect.d.ts +1 -0
  272. package/lib/renderers/Form/NestedSelect.js +8 -4
  273. package/lib/renderers/Form/NestedSelect.js.map +2 -2
  274. package/lib/renderers/Form/Options.js +9 -7
  275. package/lib/renderers/Form/Options.js.map +2 -2
  276. package/lib/renderers/Form/Select.d.ts +2 -0
  277. package/lib/renderers/Form/Select.js +9 -6
  278. package/lib/renderers/Form/Select.js.map +2 -2
  279. package/lib/renderers/Form/TabsTransfer.d.ts +5 -32
  280. package/lib/renderers/Form/TabsTransfer.js +20 -1
  281. package/lib/renderers/Form/TabsTransfer.js.map +2 -2
  282. package/lib/renderers/Form/TabsTransferPicker.d.ts +5 -35
  283. package/lib/renderers/Form/TabsTransferPicker.js +21 -2
  284. package/lib/renderers/Form/TabsTransferPicker.js.map +2 -2
  285. package/lib/renderers/Form/Transfer.d.ts +15 -4
  286. package/lib/renderers/Form/Transfer.js +55 -18
  287. package/lib/renderers/Form/Transfer.js.map +2 -2
  288. package/lib/renderers/Form/TransferPicker.d.ts +3 -32
  289. package/lib/renderers/Form/TransferPicker.js +1 -1
  290. package/lib/renderers/Form/TransferPicker.js.map +2 -2
  291. package/lib/renderers/Form/TreeSelect.js +4 -4
  292. package/lib/renderers/Form/TreeSelect.js.map +2 -2
  293. package/lib/renderers/Form/index.js +10 -2
  294. package/lib/renderers/Form/index.js.map +2 -2
  295. package/lib/renderers/IFrame.js +0 -2
  296. package/lib/renderers/IFrame.js.map +2 -2
  297. package/lib/renderers/Link.d.ts +1 -1
  298. package/lib/renderers/Link.js +27 -6
  299. package/lib/renderers/Link.js.map +2 -2
  300. package/lib/renderers/Nav.d.ts +21 -21
  301. package/lib/renderers/Nav.js +4 -1
  302. package/lib/renderers/Nav.js.map +2 -2
  303. package/lib/renderers/Remark.d.ts +5 -1
  304. package/lib/renderers/Remark.js +39 -7
  305. package/lib/renderers/Remark.js.map +2 -2
  306. package/lib/renderers/Steps.js +5 -5
  307. package/lib/renderers/Steps.js.map +2 -2
  308. package/lib/renderers/Table/TableRow.js +4 -1
  309. package/lib/renderers/Table/TableRow.js.map +2 -2
  310. package/lib/renderers/Table/index.js +4 -1
  311. package/lib/renderers/Table/index.js.map +2 -2
  312. package/lib/renderers/Tabs.js +1 -1
  313. package/lib/renderers/Tabs.js.map +2 -2
  314. package/lib/renderers/Timeline.d.ts +65 -0
  315. package/lib/renderers/Timeline.js +54 -0
  316. package/lib/renderers/Timeline.js.map +13 -0
  317. package/lib/renderers/Video.js.map +2 -2
  318. package/lib/schemaExtend.js +23 -9
  319. package/lib/schemaExtend.js.map +2 -2
  320. package/lib/store/combo.js.map +2 -2
  321. package/lib/store/formItem.js +7 -7
  322. package/lib/store/formItem.js.map +2 -2
  323. package/lib/store/table.js +1 -1
  324. package/lib/store/table.js.map +2 -2
  325. package/lib/themes/ang-ie11.css +1149 -53
  326. package/lib/themes/ang.css +1149 -53
  327. package/lib/themes/ang.css.map +1 -1
  328. package/lib/themes/antd-ie11.css +1187 -53
  329. package/lib/themes/antd.css +1187 -53
  330. package/lib/themes/antd.css.map +1 -1
  331. package/lib/themes/cxd-ie11.css +1190 -71
  332. package/lib/themes/cxd.css +1190 -71
  333. package/lib/themes/cxd.css.map +1 -1
  334. package/lib/themes/dark-ie11.css +1152 -53
  335. package/lib/themes/dark.css +1152 -53
  336. package/lib/themes/dark.css.map +1 -1
  337. package/lib/themes/default.css +1190 -71
  338. package/lib/themes/default.css.map +1 -1
  339. package/lib/utils/RootClose.js +3 -1
  340. package/lib/utils/RootClose.js.map +2 -2
  341. package/lib/utils/api.js +14 -3
  342. package/lib/utils/api.js.map +2 -2
  343. package/lib/utils/debug.d.ts +26 -0
  344. package/lib/utils/debug.js +351 -0
  345. package/lib/utils/debug.js.map +13 -0
  346. package/lib/utils/helper.d.ts +1 -6
  347. package/lib/utils/helper.js +6 -17
  348. package/lib/utils/helper.js.map +2 -2
  349. package/lib/utils/renderer-event.d.ts +38 -0
  350. package/lib/utils/renderer-event.js +28 -0
  351. package/lib/utils/renderer-event.js.map +13 -0
  352. package/package.json +12 -6
  353. package/schema.json +3483 -810
  354. package/scss/_properties.scss +20 -6
  355. package/scss/_variables.scss +1 -0
  356. package/scss/components/_avatar.scss +27 -9
  357. package/scss/components/_calendar.scss +291 -0
  358. package/scss/components/_card.scss +1 -1
  359. package/scss/components/_cascader.scss +102 -0
  360. package/scss/components/_city-area.scss +27 -0
  361. package/scss/components/_collapse-group.scss +1 -3
  362. package/scss/components/_debug.scss +167 -0
  363. package/scss/components/_dropdown.scss +39 -9
  364. package/scss/components/_formula.scss +30 -6
  365. package/scss/components/_modal.scss +18 -0
  366. package/scss/components/_panel.scss +45 -0
  367. package/scss/components/_picker-columns.scss +15 -5
  368. package/scss/components/_popup.scss +43 -16
  369. package/scss/components/_result-box.scss +31 -0
  370. package/scss/components/_timeline.scss +198 -0
  371. package/scss/components/form/_checks.scss +2 -0
  372. package/scss/components/form/_color.scss +2 -2
  373. package/scss/components/form/_date-range.scss +34 -1
  374. package/scss/components/form/_date.scss +46 -1
  375. package/scss/components/form/_form.scss +170 -0
  376. package/scss/components/form/_nested-select.scss +3 -0
  377. package/scss/components/form/_result-list.scss +2 -0
  378. package/scss/components/form/_select.scss +32 -3
  379. package/scss/components/form/_selection.scss +5 -4
  380. package/scss/components/form/_transfer.scss +3 -0
  381. package/scss/components/form/_tree-select.scss +1 -1
  382. package/scss/themes/_antd-variables.scss +45 -0
  383. package/scss/themes/_common.scss +5 -0
  384. package/scss/themes/_cxd-variables.scss +51 -2
  385. package/scss/themes/_dark-variables.scss +4 -0
  386. package/scss/themes/cxd.scss +0 -19
  387. package/sdk/ang-ie11.css +1450 -142
  388. package/sdk/ang.css +1473 -159
  389. package/sdk/antd-ie11.css +1451 -142
  390. package/sdk/antd.css +1511 -159
  391. package/sdk/charts.js +15 -15
  392. package/sdk/codemirror.js +7 -7
  393. package/sdk/color-picker.js +65 -65
  394. package/sdk/cropperjs.js +2 -2
  395. package/sdk/cxd-ie11.css +1449 -159
  396. package/sdk/cxd.css +1514 -179
  397. package/sdk/dark-ie11.css +1450 -142
  398. package/sdk/dark.css +1476 -159
  399. package/sdk/exceljs.js +1 -1
  400. package/sdk/helper.css.map +1 -1
  401. package/sdk/locale/de-DE.js +17 -2
  402. package/sdk/markdown.js +69 -69
  403. package/sdk/papaparse.js +1 -1
  404. package/sdk/renderers/Form/CityDB.js +1 -1
  405. package/sdk/rest.js +18 -18
  406. package/sdk/rich-text.js +62 -62
  407. package/sdk/sdk-ie11.css +1449 -159
  408. package/sdk/sdk.css +1514 -179
  409. package/sdk/sdk.js +1311 -1253
  410. package/sdk/thirds/hls.js/hls.js +1 -1
  411. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  412. package/sdk/tinymce.js +57 -57
  413. package/src/RootRenderer.tsx +27 -1
  414. package/src/Schema.ts +3 -0
  415. package/src/SchemaRenderer.tsx +70 -4
  416. package/src/Scoped.tsx +46 -4
  417. package/src/actions/Action.ts +138 -0
  418. package/src/actions/AjaxAction.ts +58 -0
  419. package/src/actions/BreakAction.ts +27 -0
  420. package/src/actions/BroadcastAction.ts +41 -0
  421. package/src/actions/CmptAction.ts +36 -0
  422. package/src/actions/ContinueAction.ts +27 -0
  423. package/src/actions/CopyAction.ts +41 -0
  424. package/src/actions/CustomAction.ts +46 -0
  425. package/src/actions/DialogAction.ts +28 -0
  426. package/src/actions/DrawerAction.ts +28 -0
  427. package/src/actions/EmailAction.ts +38 -0
  428. package/src/actions/LoopAction.ts +77 -0
  429. package/src/actions/OpenPageAction.ts +39 -0
  430. package/src/actions/ParallelAction.ts +26 -0
  431. package/src/actions/SwitchAction.ts +35 -0
  432. package/src/actions/index.ts +20 -0
  433. package/src/components/AssociatedSelection.tsx +5 -1
  434. package/src/components/Avatar.tsx +253 -0
  435. package/src/components/BaiduMapPicker.tsx +19 -14
  436. package/src/components/CalendarMobile.tsx +658 -0
  437. package/src/components/Cascader.tsx +564 -0
  438. package/src/components/ChainedSelection.tsx +16 -3
  439. package/src/components/CityArea.tsx +315 -0
  440. package/src/components/ColorPicker.tsx +41 -40
  441. package/src/components/DatePicker.tsx +80 -34
  442. package/src/components/DateRangePicker.tsx +85 -30
  443. package/src/components/GroupedSelection.tsx +14 -2
  444. package/src/components/MonthRangePicker.tsx +78 -31
  445. package/src/components/Overlay.tsx +1 -1
  446. package/src/components/Picker.tsx +55 -35
  447. package/src/components/PickerColumn.tsx +43 -36
  448. package/src/components/PickerContainer.tsx +13 -1
  449. package/src/components/PopOverContainer.tsx +31 -17
  450. package/src/components/PopUp.tsx +84 -57
  451. package/src/components/ResultBox.tsx +14 -2
  452. package/src/components/ResultList.tsx +36 -6
  453. package/src/components/Select.tsx +24 -26
  454. package/src/components/Selection.tsx +21 -3
  455. package/src/components/Steps.tsx +23 -10
  456. package/src/components/TableSelection.tsx +1 -44
  457. package/src/components/Tabs.tsx +65 -54
  458. package/src/components/TabsTransfer.tsx +78 -9
  459. package/src/components/TabsTransferPicker.tsx +25 -13
  460. package/src/components/Timeline.tsx +36 -0
  461. package/src/components/TimelineItem.tsx +140 -0
  462. package/src/components/Transfer.tsx +11 -8
  463. package/src/components/TransferDropDown.tsx +20 -12
  464. package/src/components/TransferPicker.tsx +25 -4
  465. package/src/components/TreeSelection.tsx +7 -1
  466. package/src/components/calendar/Calendar.tsx +101 -4
  467. package/src/components/calendar/DaysView.tsx +165 -33
  468. package/src/components/calendar/MonthsView.tsx +108 -1
  469. package/src/components/calendar/QuartersView.tsx +3 -2
  470. package/src/components/calendar/TimeView.tsx +104 -41
  471. package/src/components/calendar/YearsView.tsx +34 -17
  472. package/src/components/condition-builder/Field.tsx +1 -3
  473. package/src/components/condition-builder/Func.tsx +1 -1
  474. package/src/components/formula/Editor.tsx +16 -11
  475. package/src/components/formula/FuncList.tsx +3 -1
  476. package/src/components/formula/Picker.tsx +2 -1
  477. package/src/components/formula/plugin.ts +0 -2
  478. package/src/components/icons.tsx +2 -0
  479. package/src/components/index.tsx +2 -0
  480. package/src/components/virtual-list/SizeAndPositionManager.ts +6 -3
  481. package/src/components/virtual-list/index.tsx +4 -6
  482. package/src/env.tsx +22 -0
  483. package/src/factory.tsx +93 -1
  484. package/src/icons/tree-down.svg +5 -0
  485. package/src/index.tsx +5 -0
  486. package/src/locale/de-DE.ts +17 -2
  487. package/src/locale/en-US.ts +17 -2
  488. package/src/locale/zh-CN.ts +16 -1
  489. package/src/renderers/Action.tsx +11 -2
  490. package/src/renderers/Avatar.tsx +83 -74
  491. package/src/renderers/CRUD.tsx +1 -3
  492. package/src/renderers/Card.tsx +10 -6
  493. package/src/renderers/Custom.tsx +7 -4
  494. package/src/renderers/DropDownButton.tsx +69 -35
  495. package/src/renderers/Each.tsx +4 -4
  496. package/src/renderers/Flex.tsx +3 -7
  497. package/src/renderers/Form/ChartRadios.tsx +2 -7
  498. package/src/renderers/Form/Checkboxes.tsx +1 -1
  499. package/src/renderers/Form/CityDB.ts +526 -2
  500. package/src/renderers/Form/DiffEditor.tsx +2 -3
  501. package/src/renderers/Form/InputCity.tsx +23 -3
  502. package/src/renderers/Form/InputColor.tsx +21 -2
  503. package/src/renderers/Form/InputDate.tsx +48 -20
  504. package/src/renderers/Form/InputDateRange.tsx +9 -2
  505. package/src/renderers/Form/InputFormula.tsx +9 -4
  506. package/src/renderers/Form/InputImage.tsx +9 -4
  507. package/src/renderers/Form/InputMonthRange.tsx +0 -1
  508. package/src/renderers/Form/InputQuarterRange.tsx +0 -1
  509. package/src/renderers/Form/InputYearRange.tsx +0 -1
  510. package/src/renderers/Form/Item.tsx +29 -8
  511. package/src/renderers/Form/NestedSelect.tsx +32 -4
  512. package/src/renderers/Form/Options.tsx +15 -7
  513. package/src/renderers/Form/Select.tsx +21 -5
  514. package/src/renderers/Form/TabsTransfer.tsx +28 -38
  515. package/src/renderers/Form/TabsTransferPicker.tsx +28 -46
  516. package/src/renderers/Form/Transfer.tsx +75 -24
  517. package/src/renderers/Form/TransferPicker.tsx +6 -38
  518. package/src/renderers/Form/TreeSelect.tsx +18 -16
  519. package/src/renderers/Form/index.tsx +9 -2
  520. package/src/renderers/IFrame.tsx +0 -2
  521. package/src/renderers/Link.tsx +18 -3
  522. package/src/renderers/Nav.tsx +4 -1
  523. package/src/renderers/Remark.tsx +68 -18
  524. package/src/renderers/Steps.tsx +11 -13
  525. package/src/renderers/Table/TableRow.tsx +3 -1
  526. package/src/renderers/Table/index.tsx +7 -1
  527. package/src/renderers/Tabs.tsx +6 -2
  528. package/src/renderers/Timeline.tsx +141 -0
  529. package/src/renderers/Video.tsx +4 -20
  530. package/src/schemaExtend.ts +22 -10
  531. package/src/store/combo.ts +1 -3
  532. package/src/store/formItem.ts +3 -3
  533. package/src/store/table.ts +2 -1
  534. package/src/utils/RootClose.ts +5 -1
  535. package/src/utils/api.ts +15 -2
  536. package/src/utils/debug.tsx +438 -0
  537. package/src/utils/helper.ts +6 -16
  538. package/src/utils/renderer-event.ts +75 -0
@@ -5,41 +5,86 @@
5
5
  */
6
6
  /// <reference types="hoist-non-react-statics" />
7
7
  import React from 'react';
8
- import { ClassNamesFn } from '../theme';
9
- export interface PopUpPorps {
8
+ import { ThemeProps } from '../theme';
9
+ import { LocaleProps } from '../locale';
10
+ export interface PopUpPorps extends ThemeProps, LocaleProps {
11
+ title?: string;
10
12
  className?: string;
11
13
  style?: {
12
14
  [styleName: string]: string;
13
15
  };
14
16
  overlay?: boolean;
15
17
  onHide?: () => void;
16
- classPrefix: string;
17
- classnames: ClassNamesFn;
18
- [propName: string]: any;
19
18
  isShow?: boolean;
20
19
  container?: any;
21
- hideClose?: boolean;
20
+ showConfirm?: boolean;
21
+ onConfirm?: (value: any) => void;
22
+ showClose?: boolean;
22
23
  placement?: 'left' | 'center' | 'right';
24
+ header?: JSX.Element;
23
25
  }
24
26
  export declare class PopUp extends React.PureComponent<PopUpPorps> {
27
+ scrollTop: number;
25
28
  static defaultProps: {
26
29
  className: string;
27
30
  overlay: boolean;
28
31
  isShow: boolean;
29
32
  container: HTMLElement;
30
- hideClose: boolean;
33
+ showClose: boolean;
34
+ onConfirm: () => void;
31
35
  };
32
- componentDidMount(): void;
36
+ componentDidUpdate(): void;
37
+ componentWillUnmount(): void;
33
38
  handleClick(e: React.MouseEvent): void;
34
39
  render(): JSX.Element;
35
40
  }
36
41
  declare const _default: {
37
- new (props: (Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>): {
42
+ new (props: (Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
43
+ className: string;
44
+ overlay: boolean;
45
+ isShow: boolean;
46
+ container: HTMLElement;
47
+ showClose: boolean;
48
+ onConfirm: () => void;
49
+ }, never>> & {
50
+ locale?: string | undefined;
51
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
52
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
53
+ className: string;
54
+ overlay: boolean;
55
+ isShow: boolean;
56
+ container: HTMLElement;
57
+ showClose: boolean;
58
+ onConfirm: () => void;
59
+ }, never>> & {
60
+ locale?: string | undefined;
61
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
62
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
38
63
  render(): JSX.Element;
39
64
  context: any;
40
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
65
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
66
+ className: string;
67
+ overlay: boolean;
68
+ isShow: boolean;
69
+ container: HTMLElement;
70
+ showClose: boolean;
71
+ onConfirm: () => void;
72
+ }, never>> & {
73
+ locale?: string | undefined;
74
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
75
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
41
76
  forceUpdate(callback?: (() => void) | undefined): void;
42
- readonly props: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
77
+ readonly props: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
78
+ className: string;
79
+ overlay: boolean;
80
+ isShow: boolean;
81
+ container: HTMLElement;
82
+ showClose: boolean;
83
+ onConfirm: () => void;
84
+ }, never>> & {
85
+ locale?: string | undefined;
86
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
87
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
43
88
  children?: React.ReactNode;
44
89
  }>;
45
90
  state: Readonly<{}>;
@@ -47,24 +92,124 @@ declare const _default: {
47
92
  [key: string]: React.ReactInstance;
48
93
  };
49
94
  componentDidMount?(): void;
50
- shouldComponentUpdate?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
95
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
96
+ className: string;
97
+ overlay: boolean;
98
+ isShow: boolean;
99
+ container: HTMLElement;
100
+ showClose: boolean;
101
+ onConfirm: () => void;
102
+ }, never>> & {
103
+ locale?: string | undefined;
104
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
105
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
51
106
  componentWillUnmount?(): void;
52
107
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
53
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
54
- componentDidUpdate?(prevProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
108
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
109
+ className: string;
110
+ overlay: boolean;
111
+ isShow: boolean;
112
+ container: HTMLElement;
113
+ showClose: boolean;
114
+ onConfirm: () => void;
115
+ }, never>> & {
116
+ locale?: string | undefined;
117
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
118
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
119
+ componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
120
+ className: string;
121
+ overlay: boolean;
122
+ isShow: boolean;
123
+ container: HTMLElement;
124
+ showClose: boolean;
125
+ onConfirm: () => void;
126
+ }, never>> & {
127
+ locale?: string | undefined;
128
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
129
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
55
130
  componentWillMount?(): void;
56
131
  UNSAFE_componentWillMount?(): void;
57
- componentWillReceiveProps?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
58
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
59
- componentWillUpdate?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
60
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
132
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
133
+ className: string;
134
+ overlay: boolean;
135
+ isShow: boolean;
136
+ container: HTMLElement;
137
+ showClose: boolean;
138
+ onConfirm: () => void;
139
+ }, never>> & {
140
+ locale?: string | undefined;
141
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
142
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
143
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
144
+ className: string;
145
+ overlay: boolean;
146
+ isShow: boolean;
147
+ container: HTMLElement;
148
+ showClose: boolean;
149
+ onConfirm: () => void;
150
+ }, never>> & {
151
+ locale?: string | undefined;
152
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
153
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
154
+ componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
155
+ className: string;
156
+ overlay: boolean;
157
+ isShow: boolean;
158
+ container: HTMLElement;
159
+ showClose: boolean;
160
+ onConfirm: () => void;
161
+ }, never>> & {
162
+ locale?: string | undefined;
163
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
164
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
165
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
166
+ className: string;
167
+ overlay: boolean;
168
+ isShow: boolean;
169
+ container: HTMLElement;
170
+ showClose: boolean;
171
+ onConfirm: () => void;
172
+ }, never>> & {
173
+ locale?: string | undefined;
174
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
175
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
61
176
  };
62
- new (props: Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
177
+ new (props: Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
178
+ className: string;
179
+ overlay: boolean;
180
+ isShow: boolean;
181
+ container: HTMLElement;
182
+ showClose: boolean;
183
+ onConfirm: () => void;
184
+ }, never>> & {
185
+ locale?: string | undefined;
186
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
187
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
63
188
  render(): JSX.Element;
64
189
  context: any;
65
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
190
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
191
+ className: string;
192
+ overlay: boolean;
193
+ isShow: boolean;
194
+ container: HTMLElement;
195
+ showClose: boolean;
196
+ onConfirm: () => void;
197
+ }, never>> & {
198
+ locale?: string | undefined;
199
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
200
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
66
201
  forceUpdate(callback?: (() => void) | undefined): void;
67
- readonly props: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
202
+ readonly props: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
203
+ className: string;
204
+ overlay: boolean;
205
+ isShow: boolean;
206
+ container: HTMLElement;
207
+ showClose: boolean;
208
+ onConfirm: () => void;
209
+ }, never>> & {
210
+ locale?: string | undefined;
211
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
212
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{
68
213
  children?: React.ReactNode;
69
214
  }>;
70
215
  state: Readonly<{}>;
@@ -72,22 +217,890 @@ declare const _default: {
72
217
  [key: string]: React.ReactInstance;
73
218
  };
74
219
  componentDidMount?(): void;
75
- shouldComponentUpdate?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
220
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
221
+ className: string;
222
+ overlay: boolean;
223
+ isShow: boolean;
224
+ container: HTMLElement;
225
+ showClose: boolean;
226
+ onConfirm: () => void;
227
+ }, never>> & {
228
+ locale?: string | undefined;
229
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
230
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
76
231
  componentWillUnmount?(): void;
77
232
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
78
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
79
- componentDidUpdate?(prevProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
233
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
234
+ className: string;
235
+ overlay: boolean;
236
+ isShow: boolean;
237
+ container: HTMLElement;
238
+ showClose: boolean;
239
+ onConfirm: () => void;
240
+ }, never>> & {
241
+ locale?: string | undefined;
242
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
243
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
244
+ componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
245
+ className: string;
246
+ overlay: boolean;
247
+ isShow: boolean;
248
+ container: HTMLElement;
249
+ showClose: boolean;
250
+ onConfirm: () => void;
251
+ }, never>> & {
252
+ locale?: string | undefined;
253
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
254
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
80
255
  componentWillMount?(): void;
81
256
  UNSAFE_componentWillMount?(): void;
82
- componentWillReceiveProps?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
83
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
84
- componentWillUpdate?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
85
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<PopUpPorps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
257
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
258
+ className: string;
259
+ overlay: boolean;
260
+ isShow: boolean;
261
+ container: HTMLElement;
262
+ showClose: boolean;
263
+ onConfirm: () => void;
264
+ }, never>> & {
265
+ locale?: string | undefined;
266
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
267
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
268
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
269
+ className: string;
270
+ overlay: boolean;
271
+ isShow: boolean;
272
+ container: HTMLElement;
273
+ showClose: boolean;
274
+ onConfirm: () => void;
275
+ }, never>> & {
276
+ locale?: string | undefined;
277
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
278
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
279
+ componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
280
+ className: string;
281
+ overlay: boolean;
282
+ isShow: boolean;
283
+ container: HTMLElement;
284
+ showClose: boolean;
285
+ onConfirm: () => void;
286
+ }, never>> & {
287
+ locale?: string | undefined;
288
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
289
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
290
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
291
+ className: string;
292
+ overlay: boolean;
293
+ isShow: boolean;
294
+ container: HTMLElement;
295
+ showClose: boolean;
296
+ onConfirm: () => void;
297
+ }, never>> & {
298
+ locale?: string | undefined;
299
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
300
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
301
+ };
302
+ displayName: string;
303
+ contextType: React.Context<string>;
304
+ ComposedComponent: React.ComponentType<{
305
+ new (props: (Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
306
+ className: string;
307
+ overlay: boolean;
308
+ isShow: boolean;
309
+ container: HTMLElement;
310
+ showClose: boolean;
311
+ onConfirm: () => void;
312
+ }, never>> & {
313
+ locale?: string | undefined;
314
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
315
+ }) | Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
316
+ className: string;
317
+ overlay: boolean;
318
+ isShow: boolean;
319
+ container: HTMLElement;
320
+ showClose: boolean;
321
+ onConfirm: () => void;
322
+ }, never>> & {
323
+ locale?: string | undefined;
324
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
325
+ }>): {
326
+ render(): JSX.Element;
327
+ context: any;
328
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
329
+ className: string;
330
+ overlay: boolean;
331
+ isShow: boolean;
332
+ container: HTMLElement;
333
+ showClose: boolean;
334
+ onConfirm: () => void;
335
+ }, never>> & {
336
+ locale?: string | undefined;
337
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
338
+ }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
339
+ forceUpdate(callback?: (() => void) | undefined): void;
340
+ readonly props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
341
+ className: string;
342
+ overlay: boolean;
343
+ isShow: boolean;
344
+ container: HTMLElement;
345
+ showClose: boolean;
346
+ onConfirm: () => void;
347
+ }, never>> & {
348
+ locale?: string | undefined;
349
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
350
+ }> & Readonly<{
351
+ children?: React.ReactNode;
352
+ }>;
353
+ state: Readonly<{}>;
354
+ refs: {
355
+ [key: string]: React.ReactInstance;
356
+ };
357
+ componentDidMount?(): void;
358
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
359
+ className: string;
360
+ overlay: boolean;
361
+ isShow: boolean;
362
+ container: HTMLElement;
363
+ showClose: boolean;
364
+ onConfirm: () => void;
365
+ }, never>> & {
366
+ locale?: string | undefined;
367
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
368
+ }>, nextState: Readonly<{}>, nextContext: any): boolean;
369
+ componentWillUnmount?(): void;
370
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
371
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
372
+ className: string;
373
+ overlay: boolean;
374
+ isShow: boolean;
375
+ container: HTMLElement;
376
+ showClose: boolean;
377
+ onConfirm: () => void;
378
+ }, never>> & {
379
+ locale?: string | undefined;
380
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
381
+ }>, prevState: Readonly<{}>): any;
382
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
383
+ className: string;
384
+ overlay: boolean;
385
+ isShow: boolean;
386
+ container: HTMLElement;
387
+ showClose: boolean;
388
+ onConfirm: () => void;
389
+ }, never>> & {
390
+ locale?: string | undefined;
391
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
392
+ }>, prevState: Readonly<{}>, snapshot?: any): void;
393
+ componentWillMount?(): void;
394
+ UNSAFE_componentWillMount?(): void;
395
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
396
+ className: string;
397
+ overlay: boolean;
398
+ isShow: boolean;
399
+ container: HTMLElement;
400
+ showClose: boolean;
401
+ onConfirm: () => void;
402
+ }, never>> & {
403
+ locale?: string | undefined;
404
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
405
+ }>, nextContext: any): void;
406
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
407
+ className: string;
408
+ overlay: boolean;
409
+ isShow: boolean;
410
+ container: HTMLElement;
411
+ showClose: boolean;
412
+ onConfirm: () => void;
413
+ }, never>> & {
414
+ locale?: string | undefined;
415
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
416
+ }>, nextContext: any): void;
417
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
418
+ className: string;
419
+ overlay: boolean;
420
+ isShow: boolean;
421
+ container: HTMLElement;
422
+ showClose: boolean;
423
+ onConfirm: () => void;
424
+ }, never>> & {
425
+ locale?: string | undefined;
426
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
427
+ }>, nextState: Readonly<{}>, nextContext: any): void;
428
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
429
+ className: string;
430
+ overlay: boolean;
431
+ isShow: boolean;
432
+ container: HTMLElement;
433
+ showClose: boolean;
434
+ onConfirm: () => void;
435
+ }, never>> & {
436
+ locale?: string | undefined;
437
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
438
+ }>, nextState: Readonly<{}>, nextContext: any): void;
439
+ };
440
+ new (props: Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
441
+ className: string;
442
+ overlay: boolean;
443
+ isShow: boolean;
444
+ container: HTMLElement;
445
+ showClose: boolean;
446
+ onConfirm: () => void;
447
+ }, never>> & {
448
+ locale?: string | undefined;
449
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
450
+ }, context: any): {
451
+ render(): JSX.Element;
452
+ context: any;
453
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
454
+ className: string;
455
+ overlay: boolean;
456
+ isShow: boolean;
457
+ container: HTMLElement;
458
+ showClose: boolean;
459
+ onConfirm: () => void;
460
+ }, never>> & {
461
+ locale?: string | undefined;
462
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
463
+ }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
464
+ forceUpdate(callback?: (() => void) | undefined): void;
465
+ readonly props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
466
+ className: string;
467
+ overlay: boolean;
468
+ isShow: boolean;
469
+ container: HTMLElement;
470
+ showClose: boolean;
471
+ onConfirm: () => void;
472
+ }, never>> & {
473
+ locale?: string | undefined;
474
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
475
+ }> & Readonly<{
476
+ children?: React.ReactNode;
477
+ }>;
478
+ state: Readonly<{}>;
479
+ refs: {
480
+ [key: string]: React.ReactInstance;
481
+ };
482
+ componentDidMount?(): void;
483
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
484
+ className: string;
485
+ overlay: boolean;
486
+ isShow: boolean;
487
+ container: HTMLElement;
488
+ showClose: boolean;
489
+ onConfirm: () => void;
490
+ }, never>> & {
491
+ locale?: string | undefined;
492
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
493
+ }>, nextState: Readonly<{}>, nextContext: any): boolean;
494
+ componentWillUnmount?(): void;
495
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
496
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
497
+ className: string;
498
+ overlay: boolean;
499
+ isShow: boolean;
500
+ container: HTMLElement;
501
+ showClose: boolean;
502
+ onConfirm: () => void;
503
+ }, never>> & {
504
+ locale?: string | undefined;
505
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
506
+ }>, prevState: Readonly<{}>): any;
507
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
508
+ className: string;
509
+ overlay: boolean;
510
+ isShow: boolean;
511
+ container: HTMLElement;
512
+ showClose: boolean;
513
+ onConfirm: () => void;
514
+ }, never>> & {
515
+ locale?: string | undefined;
516
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
517
+ }>, prevState: Readonly<{}>, snapshot?: any): void;
518
+ componentWillMount?(): void;
519
+ UNSAFE_componentWillMount?(): void;
520
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
521
+ className: string;
522
+ overlay: boolean;
523
+ isShow: boolean;
524
+ container: HTMLElement;
525
+ showClose: boolean;
526
+ onConfirm: () => void;
527
+ }, never>> & {
528
+ locale?: string | undefined;
529
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
530
+ }>, nextContext: any): void;
531
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
532
+ className: string;
533
+ overlay: boolean;
534
+ isShow: boolean;
535
+ container: HTMLElement;
536
+ showClose: boolean;
537
+ onConfirm: () => void;
538
+ }, never>> & {
539
+ locale?: string | undefined;
540
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
541
+ }>, nextContext: any): void;
542
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
543
+ className: string;
544
+ overlay: boolean;
545
+ isShow: boolean;
546
+ container: HTMLElement;
547
+ showClose: boolean;
548
+ onConfirm: () => void;
549
+ }, never>> & {
550
+ locale?: string | undefined;
551
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
552
+ }>, nextState: Readonly<{}>, nextContext: any): void;
553
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
554
+ className: string;
555
+ overlay: boolean;
556
+ isShow: boolean;
557
+ container: HTMLElement;
558
+ showClose: boolean;
559
+ onConfirm: () => void;
560
+ }, never>> & {
561
+ locale?: string | undefined;
562
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
563
+ }>, nextState: Readonly<{}>, nextContext: any): void;
564
+ };
565
+ displayName: string;
566
+ contextType: React.Context<string>;
567
+ ComposedComponent: React.ComponentType<typeof PopUp>;
568
+ } & import("hoist-non-react-statics").NonReactStatics<typeof PopUp, {}> & {
569
+ ComposedComponent: typeof PopUp;
570
+ }>;
571
+ } & import("hoist-non-react-statics").NonReactStatics<{
572
+ new (props: (Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
573
+ className: string;
574
+ overlay: boolean;
575
+ isShow: boolean;
576
+ container: HTMLElement;
577
+ showClose: boolean;
578
+ onConfirm: () => void;
579
+ }, never>> & {
580
+ locale?: string | undefined;
581
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
582
+ }) | Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
583
+ className: string;
584
+ overlay: boolean;
585
+ isShow: boolean;
586
+ container: HTMLElement;
587
+ showClose: boolean;
588
+ onConfirm: () => void;
589
+ }, never>> & {
590
+ locale?: string | undefined;
591
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
592
+ }>): {
593
+ render(): JSX.Element;
594
+ context: any;
595
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
596
+ className: string;
597
+ overlay: boolean;
598
+ isShow: boolean;
599
+ container: HTMLElement;
600
+ showClose: boolean;
601
+ onConfirm: () => void;
602
+ }, never>> & {
603
+ locale?: string | undefined;
604
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
605
+ }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
606
+ forceUpdate(callback?: (() => void) | undefined): void;
607
+ readonly props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
608
+ className: string;
609
+ overlay: boolean;
610
+ isShow: boolean;
611
+ container: HTMLElement;
612
+ showClose: boolean;
613
+ onConfirm: () => void;
614
+ }, never>> & {
615
+ locale?: string | undefined;
616
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
617
+ }> & Readonly<{
618
+ children?: React.ReactNode;
619
+ }>;
620
+ state: Readonly<{}>;
621
+ refs: {
622
+ [key: string]: React.ReactInstance;
623
+ };
624
+ componentDidMount?(): void;
625
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
626
+ className: string;
627
+ overlay: boolean;
628
+ isShow: boolean;
629
+ container: HTMLElement;
630
+ showClose: boolean;
631
+ onConfirm: () => void;
632
+ }, never>> & {
633
+ locale?: string | undefined;
634
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
635
+ }>, nextState: Readonly<{}>, nextContext: any): boolean;
636
+ componentWillUnmount?(): void;
637
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
638
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
639
+ className: string;
640
+ overlay: boolean;
641
+ isShow: boolean;
642
+ container: HTMLElement;
643
+ showClose: boolean;
644
+ onConfirm: () => void;
645
+ }, never>> & {
646
+ locale?: string | undefined;
647
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
648
+ }>, prevState: Readonly<{}>): any;
649
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
650
+ className: string;
651
+ overlay: boolean;
652
+ isShow: boolean;
653
+ container: HTMLElement;
654
+ showClose: boolean;
655
+ onConfirm: () => void;
656
+ }, never>> & {
657
+ locale?: string | undefined;
658
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
659
+ }>, prevState: Readonly<{}>, snapshot?: any): void;
660
+ componentWillMount?(): void;
661
+ UNSAFE_componentWillMount?(): void;
662
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
663
+ className: string;
664
+ overlay: boolean;
665
+ isShow: boolean;
666
+ container: HTMLElement;
667
+ showClose: boolean;
668
+ onConfirm: () => void;
669
+ }, never>> & {
670
+ locale?: string | undefined;
671
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
672
+ }>, nextContext: any): void;
673
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
674
+ className: string;
675
+ overlay: boolean;
676
+ isShow: boolean;
677
+ container: HTMLElement;
678
+ showClose: boolean;
679
+ onConfirm: () => void;
680
+ }, never>> & {
681
+ locale?: string | undefined;
682
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
683
+ }>, nextContext: any): void;
684
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
685
+ className: string;
686
+ overlay: boolean;
687
+ isShow: boolean;
688
+ container: HTMLElement;
689
+ showClose: boolean;
690
+ onConfirm: () => void;
691
+ }, never>> & {
692
+ locale?: string | undefined;
693
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
694
+ }>, nextState: Readonly<{}>, nextContext: any): void;
695
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
696
+ className: string;
697
+ overlay: boolean;
698
+ isShow: boolean;
699
+ container: HTMLElement;
700
+ showClose: boolean;
701
+ onConfirm: () => void;
702
+ }, never>> & {
703
+ locale?: string | undefined;
704
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
705
+ }>, nextState: Readonly<{}>, nextContext: any): void;
706
+ };
707
+ new (props: Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
708
+ className: string;
709
+ overlay: boolean;
710
+ isShow: boolean;
711
+ container: HTMLElement;
712
+ showClose: boolean;
713
+ onConfirm: () => void;
714
+ }, never>> & {
715
+ locale?: string | undefined;
716
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
717
+ }, context: any): {
718
+ render(): JSX.Element;
719
+ context: any;
720
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
721
+ className: string;
722
+ overlay: boolean;
723
+ isShow: boolean;
724
+ container: HTMLElement;
725
+ showClose: boolean;
726
+ onConfirm: () => void;
727
+ }, never>> & {
728
+ locale?: string | undefined;
729
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
730
+ }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
731
+ forceUpdate(callback?: (() => void) | undefined): void;
732
+ readonly props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
733
+ className: string;
734
+ overlay: boolean;
735
+ isShow: boolean;
736
+ container: HTMLElement;
737
+ showClose: boolean;
738
+ onConfirm: () => void;
739
+ }, never>> & {
740
+ locale?: string | undefined;
741
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
742
+ }> & Readonly<{
743
+ children?: React.ReactNode;
744
+ }>;
745
+ state: Readonly<{}>;
746
+ refs: {
747
+ [key: string]: React.ReactInstance;
748
+ };
749
+ componentDidMount?(): void;
750
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
751
+ className: string;
752
+ overlay: boolean;
753
+ isShow: boolean;
754
+ container: HTMLElement;
755
+ showClose: boolean;
756
+ onConfirm: () => void;
757
+ }, never>> & {
758
+ locale?: string | undefined;
759
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
760
+ }>, nextState: Readonly<{}>, nextContext: any): boolean;
761
+ componentWillUnmount?(): void;
762
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
763
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
764
+ className: string;
765
+ overlay: boolean;
766
+ isShow: boolean;
767
+ container: HTMLElement;
768
+ showClose: boolean;
769
+ onConfirm: () => void;
770
+ }, never>> & {
771
+ locale?: string | undefined;
772
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
773
+ }>, prevState: Readonly<{}>): any;
774
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
775
+ className: string;
776
+ overlay: boolean;
777
+ isShow: boolean;
778
+ container: HTMLElement;
779
+ showClose: boolean;
780
+ onConfirm: () => void;
781
+ }, never>> & {
782
+ locale?: string | undefined;
783
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
784
+ }>, prevState: Readonly<{}>, snapshot?: any): void;
785
+ componentWillMount?(): void;
786
+ UNSAFE_componentWillMount?(): void;
787
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
788
+ className: string;
789
+ overlay: boolean;
790
+ isShow: boolean;
791
+ container: HTMLElement;
792
+ showClose: boolean;
793
+ onConfirm: () => void;
794
+ }, never>> & {
795
+ locale?: string | undefined;
796
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
797
+ }>, nextContext: any): void;
798
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
799
+ className: string;
800
+ overlay: boolean;
801
+ isShow: boolean;
802
+ container: HTMLElement;
803
+ showClose: boolean;
804
+ onConfirm: () => void;
805
+ }, never>> & {
806
+ locale?: string | undefined;
807
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
808
+ }>, nextContext: any): void;
809
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
810
+ className: string;
811
+ overlay: boolean;
812
+ isShow: boolean;
813
+ container: HTMLElement;
814
+ showClose: boolean;
815
+ onConfirm: () => void;
816
+ }, never>> & {
817
+ locale?: string | undefined;
818
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
819
+ }>, nextState: Readonly<{}>, nextContext: any): void;
820
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
821
+ className: string;
822
+ overlay: boolean;
823
+ isShow: boolean;
824
+ container: HTMLElement;
825
+ showClose: boolean;
826
+ onConfirm: () => void;
827
+ }, never>> & {
828
+ locale?: string | undefined;
829
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
830
+ }>, nextState: Readonly<{}>, nextContext: any): void;
86
831
  };
87
832
  displayName: string;
88
833
  contextType: React.Context<string>;
89
834
  ComposedComponent: React.ComponentType<typeof PopUp>;
90
835
  } & import("hoist-non-react-statics").NonReactStatics<typeof PopUp, {}> & {
91
836
  ComposedComponent: typeof PopUp;
837
+ }, {}> & {
838
+ ComposedComponent: {
839
+ new (props: (Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
840
+ className: string;
841
+ overlay: boolean;
842
+ isShow: boolean;
843
+ container: HTMLElement;
844
+ showClose: boolean;
845
+ onConfirm: () => void;
846
+ }, never>> & {
847
+ locale?: string | undefined;
848
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
849
+ }) | Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
850
+ className: string;
851
+ overlay: boolean;
852
+ isShow: boolean;
853
+ container: HTMLElement;
854
+ showClose: boolean;
855
+ onConfirm: () => void;
856
+ }, never>> & {
857
+ locale?: string | undefined;
858
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
859
+ }>): {
860
+ render(): JSX.Element;
861
+ context: any;
862
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
863
+ className: string;
864
+ overlay: boolean;
865
+ isShow: boolean;
866
+ container: HTMLElement;
867
+ showClose: boolean;
868
+ onConfirm: () => void;
869
+ }, never>> & {
870
+ locale?: string | undefined;
871
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
872
+ }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
873
+ forceUpdate(callback?: (() => void) | undefined): void;
874
+ readonly props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
875
+ className: string;
876
+ overlay: boolean;
877
+ isShow: boolean;
878
+ container: HTMLElement;
879
+ showClose: boolean;
880
+ onConfirm: () => void;
881
+ }, never>> & {
882
+ locale?: string | undefined;
883
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
884
+ }> & Readonly<{
885
+ children?: React.ReactNode;
886
+ }>;
887
+ state: Readonly<{}>;
888
+ refs: {
889
+ [key: string]: React.ReactInstance;
890
+ };
891
+ componentDidMount?(): void;
892
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
893
+ className: string;
894
+ overlay: boolean;
895
+ isShow: boolean;
896
+ container: HTMLElement;
897
+ showClose: boolean;
898
+ onConfirm: () => void;
899
+ }, never>> & {
900
+ locale?: string | undefined;
901
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
902
+ }>, nextState: Readonly<{}>, nextContext: any): boolean;
903
+ componentWillUnmount?(): void;
904
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
905
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
906
+ className: string;
907
+ overlay: boolean;
908
+ isShow: boolean;
909
+ container: HTMLElement;
910
+ showClose: boolean;
911
+ onConfirm: () => void;
912
+ }, never>> & {
913
+ locale?: string | undefined;
914
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
915
+ }>, prevState: Readonly<{}>): any;
916
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
917
+ className: string;
918
+ overlay: boolean;
919
+ isShow: boolean;
920
+ container: HTMLElement;
921
+ showClose: boolean;
922
+ onConfirm: () => void;
923
+ }, never>> & {
924
+ locale?: string | undefined;
925
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
926
+ }>, prevState: Readonly<{}>, snapshot?: any): void;
927
+ componentWillMount?(): void;
928
+ UNSAFE_componentWillMount?(): void;
929
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
930
+ className: string;
931
+ overlay: boolean;
932
+ isShow: boolean;
933
+ container: HTMLElement;
934
+ showClose: boolean;
935
+ onConfirm: () => void;
936
+ }, never>> & {
937
+ locale?: string | undefined;
938
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
939
+ }>, nextContext: any): void;
940
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
941
+ className: string;
942
+ overlay: boolean;
943
+ isShow: boolean;
944
+ container: HTMLElement;
945
+ showClose: boolean;
946
+ onConfirm: () => void;
947
+ }, never>> & {
948
+ locale?: string | undefined;
949
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
950
+ }>, nextContext: any): void;
951
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
952
+ className: string;
953
+ overlay: boolean;
954
+ isShow: boolean;
955
+ container: HTMLElement;
956
+ showClose: boolean;
957
+ onConfirm: () => void;
958
+ }, never>> & {
959
+ locale?: string | undefined;
960
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
961
+ }>, nextState: Readonly<{}>, nextContext: any): void;
962
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
963
+ className: string;
964
+ overlay: boolean;
965
+ isShow: boolean;
966
+ container: HTMLElement;
967
+ showClose: boolean;
968
+ onConfirm: () => void;
969
+ }, never>> & {
970
+ locale?: string | undefined;
971
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
972
+ }>, nextState: Readonly<{}>, nextContext: any): void;
973
+ };
974
+ new (props: Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
975
+ className: string;
976
+ overlay: boolean;
977
+ isShow: boolean;
978
+ container: HTMLElement;
979
+ showClose: boolean;
980
+ onConfirm: () => void;
981
+ }, never>> & {
982
+ locale?: string | undefined;
983
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
984
+ }, context: any): {
985
+ render(): JSX.Element;
986
+ context: any;
987
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
988
+ className: string;
989
+ overlay: boolean;
990
+ isShow: boolean;
991
+ container: HTMLElement;
992
+ showClose: boolean;
993
+ onConfirm: () => void;
994
+ }, never>> & {
995
+ locale?: string | undefined;
996
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
997
+ }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
998
+ forceUpdate(callback?: (() => void) | undefined): void;
999
+ readonly props: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1000
+ className: string;
1001
+ overlay: boolean;
1002
+ isShow: boolean;
1003
+ container: HTMLElement;
1004
+ showClose: boolean;
1005
+ onConfirm: () => void;
1006
+ }, never>> & {
1007
+ locale?: string | undefined;
1008
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1009
+ }> & Readonly<{
1010
+ children?: React.ReactNode;
1011
+ }>;
1012
+ state: Readonly<{}>;
1013
+ refs: {
1014
+ [key: string]: React.ReactInstance;
1015
+ };
1016
+ componentDidMount?(): void;
1017
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1018
+ className: string;
1019
+ overlay: boolean;
1020
+ isShow: boolean;
1021
+ container: HTMLElement;
1022
+ showClose: boolean;
1023
+ onConfirm: () => void;
1024
+ }, never>> & {
1025
+ locale?: string | undefined;
1026
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1027
+ }>, nextState: Readonly<{}>, nextContext: any): boolean;
1028
+ componentWillUnmount?(): void;
1029
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1030
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1031
+ className: string;
1032
+ overlay: boolean;
1033
+ isShow: boolean;
1034
+ container: HTMLElement;
1035
+ showClose: boolean;
1036
+ onConfirm: () => void;
1037
+ }, never>> & {
1038
+ locale?: string | undefined;
1039
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1040
+ }>, prevState: Readonly<{}>): any;
1041
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1042
+ className: string;
1043
+ overlay: boolean;
1044
+ isShow: boolean;
1045
+ container: HTMLElement;
1046
+ showClose: boolean;
1047
+ onConfirm: () => void;
1048
+ }, never>> & {
1049
+ locale?: string | undefined;
1050
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1051
+ }>, prevState: Readonly<{}>, snapshot?: any): void;
1052
+ componentWillMount?(): void;
1053
+ UNSAFE_componentWillMount?(): void;
1054
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1055
+ className: string;
1056
+ overlay: boolean;
1057
+ isShow: boolean;
1058
+ container: HTMLElement;
1059
+ showClose: boolean;
1060
+ onConfirm: () => void;
1061
+ }, never>> & {
1062
+ locale?: string | undefined;
1063
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1064
+ }>, nextContext: any): void;
1065
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1066
+ className: string;
1067
+ overlay: boolean;
1068
+ isShow: boolean;
1069
+ container: HTMLElement;
1070
+ showClose: boolean;
1071
+ onConfirm: () => void;
1072
+ }, never>> & {
1073
+ locale?: string | undefined;
1074
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1075
+ }>, nextContext: any): void;
1076
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1077
+ className: string;
1078
+ overlay: boolean;
1079
+ isShow: boolean;
1080
+ container: HTMLElement;
1081
+ showClose: boolean;
1082
+ onConfirm: () => void;
1083
+ }, never>> & {
1084
+ locale?: string | undefined;
1085
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1086
+ }>, nextState: Readonly<{}>, nextContext: any): void;
1087
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<PopUpPorps, keyof LocaleProps>, "classPrefix" | "classnames" | "header" | "style" | "title" | "theme" | "placement" | "onHide" | "showConfirm"> & Partial<Pick<Omit<PopUpPorps, keyof LocaleProps>, "className" | "overlay" | "container" | "onConfirm" | "isShow" | "showClose">> & Partial<Pick<{
1088
+ className: string;
1089
+ overlay: boolean;
1090
+ isShow: boolean;
1091
+ container: HTMLElement;
1092
+ showClose: boolean;
1093
+ onConfirm: () => void;
1094
+ }, never>> & {
1095
+ locale?: string | undefined;
1096
+ translate?: ((str: string, ...args: any[]) => string) | undefined;
1097
+ }>, nextState: Readonly<{}>, nextContext: any): void;
1098
+ };
1099
+ displayName: string;
1100
+ contextType: React.Context<string>;
1101
+ ComposedComponent: React.ComponentType<typeof PopUp>;
1102
+ } & import("hoist-non-react-statics").NonReactStatics<typeof PopUp, {}> & {
1103
+ ComposedComponent: typeof PopUp;
1104
+ };
92
1105
  };
93
1106
  export default _default;