@zat-design/sisyphus-react 4.0.0-beta.4 → 4.0.0-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (500) hide show
  1. package/dist/index.esm.css +1 -0
  2. package/dist/index.min.js +1 -0
  3. package/dist/less.esm.css +1 -0
  4. package/dist/less.min.js +1 -0
  5. package/es/FormsProvider/index.js +5 -5
  6. package/es/ProAction/components/CheckModalContent/index.js +5 -7
  7. package/es/ProAction/index.js +16 -16
  8. package/es/ProConfigProvider/index.js +31 -17
  9. package/es/ProDownload/index.js +13 -12
  10. package/es/ProDownload/utils.js +15 -15
  11. package/es/ProDrawerForm/components/ProDrawer/index.js +22 -19
  12. package/es/ProDrawerForm/components/ProModal/index.js +14 -9
  13. package/es/ProDrawerForm/index.js +6 -10
  14. package/es/ProDrawerForm/utils/index.js +1 -1
  15. package/es/ProEditLabel/components/RenderProForm.js +10 -9
  16. package/es/ProEditLabel/index.js +36 -24
  17. package/es/ProEditLabel/utils/index.js +4 -3
  18. package/es/ProEditTable/components/ActionButton/index.js +58 -56
  19. package/es/ProEditTable/components/RcTable/BaseTable.js +21 -20
  20. package/es/ProEditTable/components/RcTable/DraggableTable.js +27 -34
  21. package/es/ProEditTable/components/RenderField/ListChangedWrapper.js +40 -46
  22. package/es/ProEditTable/components/RenderField/index.js +98 -121
  23. package/es/ProEditTable/components/RenderToolbar/index.js +27 -33
  24. package/es/ProEditTable/components/Summary/index.js +16 -14
  25. package/es/ProEditTable/components/Validator/index.js +9 -6
  26. package/es/ProEditTable/index.js +130 -147
  27. package/es/ProEditTable/utils/config.js +29 -36
  28. package/es/ProEditTable/utils/diffOriginal.js +13 -13
  29. package/es/ProEditTable/utils/getDefaultProps.js +6 -7
  30. package/es/ProEditTable/utils/index.js +52 -58
  31. package/es/ProEditTable/utils/tools.js +32 -41
  32. package/es/ProEditTable/utils/transform.js +7 -11
  33. package/es/ProEditTable/utils/useEditTableError.js +10 -12
  34. package/es/ProEnum/components/Group.js +18 -22
  35. package/es/ProEnum/components/Tag.js +10 -14
  36. package/es/ProEnum/hooks/useEnum.js +6 -10
  37. package/es/ProEnum/hooks/useEnumRequest.js +23 -25
  38. package/es/ProEnum/hooks/useFrequentEnumRequest.d.ts +14 -0
  39. package/es/ProEnum/hooks/useFrequentEnumRequest.js +76 -0
  40. package/es/ProEnum/index.js +50 -52
  41. package/es/ProEnum/propsType.d.ts +29 -0
  42. package/es/ProEnum/utils/eventCenter.js +20 -31
  43. package/es/ProEnum/utils/frequentEnum.d.ts +40 -0
  44. package/es/ProEnum/utils/frequentEnum.js +91 -0
  45. package/es/ProEnum/utils/getEnumLabel.js +8 -12
  46. package/es/ProEnum/utils/index.js +6 -6
  47. package/es/ProForm/components/Container.js +4 -3
  48. package/es/ProForm/components/FormFooter/index.js +16 -13
  49. package/es/ProForm/components/base/Checkbox/index.js +10 -11
  50. package/es/ProForm/components/base/DatePicker/index.js +8 -7
  51. package/es/ProForm/components/base/DatePicker/useDateLimit.js +2 -4
  52. package/es/ProForm/components/base/Input/index.js +24 -20
  53. package/es/ProForm/components/base/InputNumber/index.js +21 -18
  54. package/es/ProForm/components/base/Radio/index.js +11 -12
  55. package/es/ProForm/components/base/RangePicker/index.js +9 -12
  56. package/es/ProForm/components/base/RangePicker/useDateRange.js +3 -3
  57. package/es/ProForm/components/base/Select/index.js +9 -8
  58. package/es/ProForm/components/base/Switch/index.js +7 -6
  59. package/es/ProForm/components/base/SwitchCheckbox/index.js +7 -6
  60. package/es/ProForm/components/base/TextArea/index.js +9 -8
  61. package/es/ProForm/components/base/TimePicker/index.js +5 -4
  62. package/es/ProForm/components/combination/Container/index.js +12 -12
  63. package/es/ProForm/components/combination/FormList/components/ActionButton.js +60 -70
  64. package/es/ProForm/components/combination/FormList/components/BlockFields.js +11 -7
  65. package/es/ProForm/components/combination/FormList/components/BlockTitle.js +1 -1
  66. package/es/ProForm/components/combination/FormList/components/Empty.js +9 -10
  67. package/es/ProForm/components/combination/FormList/components/LineFields.js +10 -9
  68. package/es/ProForm/components/combination/FormList/components/ToolbarButton.js +32 -36
  69. package/es/ProForm/components/combination/FormList/index.js +25 -33
  70. package/es/ProForm/components/combination/FormList/utils.js +5 -7
  71. package/es/ProForm/components/combination/Group/component/AddonWrapper/index.js +1 -1
  72. package/es/ProForm/components/combination/Group/component/ComRender.js +14 -14
  73. package/es/ProForm/components/combination/Group/hooks/index.d.ts +0 -1
  74. package/es/ProForm/components/combination/Group/hooks/index.js +30 -35
  75. package/es/ProForm/components/combination/Group/index.js +35 -29
  76. package/es/ProForm/components/combination/Group/propsType.d.ts +2 -0
  77. package/es/ProForm/components/combination/Group/style/index.less +7 -0
  78. package/es/ProForm/components/combination/Group/utils.d.ts +0 -1
  79. package/es/ProForm/components/combination/Group/utils.js +38 -39
  80. package/es/ProForm/components/combination/ProCascader/index.js +43 -52
  81. package/es/ProForm/components/combination/ProCascader/utils/index.js +3 -3
  82. package/es/ProForm/components/combination/ProModalSelect/hooks/useRequestList.js +16 -16
  83. package/es/ProForm/components/combination/ProModalSelect/index.js +102 -108
  84. package/es/ProForm/components/combination/ProModalSelect/utils/index.js +1 -1
  85. package/es/ProForm/components/combination/ProNumberRange/index.js +73 -47
  86. package/es/ProForm/components/combination/ProNumberRange/propsType.d.ts +3 -2
  87. package/es/ProForm/components/combination/ProNumberRange/style/index.less +1 -1
  88. package/es/ProForm/components/combination/ProRangeLimit/index.js +20 -18
  89. package/es/ProForm/components/combination/ProTimeLimit/hooks/useControlled.js +3 -3
  90. package/es/ProForm/components/combination/ProTimeLimit/index.js +17 -15
  91. package/es/ProForm/components/render/ChangedWrapper.js +24 -26
  92. package/es/ProForm/components/render/ConfirmWrapper.js +10 -11
  93. package/es/ProForm/components/render/Render.js +107 -102
  94. package/es/ProForm/components/render/RenderFields.d.ts +0 -1
  95. package/es/ProForm/components/render/RenderFields.js +22 -24
  96. package/es/ProForm/index.js +44 -45
  97. package/es/ProForm/propsType.d.ts +1 -4
  98. package/es/ProForm/utils/diffOriginal.js +9 -9
  99. package/es/ProForm/utils/getDefaultProps.js +5 -5
  100. package/es/ProForm/utils/index.js +62 -90
  101. package/es/ProForm/utils/processDependencies.js +4 -5
  102. package/es/ProForm/utils/rulesCreator.js +12 -12
  103. package/es/ProForm/utils/transformNames.js +2 -2
  104. package/es/ProForm/utils/transformValue.js +6 -8
  105. package/es/ProForm/utils/useDeepCompareMemo.js +1 -1
  106. package/es/ProForm/utils/useFieldProps.js +1 -3
  107. package/es/ProForm/utils/useForm.js +19 -21
  108. package/es/ProForm/utils/useRules.js +17 -22
  109. package/es/ProForm/utils/useShouldUpdate.js +79 -83
  110. package/es/ProForm/utils/useWatch.js +12 -12
  111. package/es/ProForm/utils/valueType.js +46 -50
  112. package/es/ProIcon/index.js +30 -31
  113. package/es/ProIcon/utils/index.js +5 -5
  114. package/es/ProLayout/components/Layout/Header/index.js +1 -1
  115. package/es/ProLayout/components/Layout/Icon/Icon.js +4 -4
  116. package/es/ProLayout/components/Layout/Menu/FoldMenu/index.js +19 -22
  117. package/es/ProLayout/components/Layout/Menu/OpenMenu/index.js +23 -30
  118. package/es/ProLayout/components/Layout/Menu/SideMenu/index.js +3 -3
  119. package/es/ProLayout/components/Layout/Menu/index.js +9 -9
  120. package/es/ProLayout/components/Layout/Notice/index.js +3 -3
  121. package/es/ProLayout/components/ProCollapse/index.js +23 -18
  122. package/es/ProLayout/components/ProFooter/index.js +13 -14
  123. package/es/ProLayout/components/ProHeader/components/Copy/index.js +6 -5
  124. package/es/ProLayout/components/ProHeader/components/ProBackBtn/index.js +6 -5
  125. package/es/ProLayout/components/ProHeader/index.js +68 -59
  126. package/es/ProLayout/components/ProHeader/utils/index.js +1 -1
  127. package/es/ProLayout/index.js +33 -32
  128. package/es/ProLayout/utils/index.js +17 -18
  129. package/es/ProSelect/components/AdaptiveTooltip.js +8 -9
  130. package/es/ProSelect/index.js +57 -64
  131. package/es/ProSelect/utils/index.js +17 -28
  132. package/es/ProStep/components/Anchor/index.js +10 -9
  133. package/es/ProStep/components/Item/index.js +11 -11
  134. package/es/ProStep/components/Listener/index.js +6 -10
  135. package/es/ProStep/components/Step/index.js +9 -11
  136. package/es/ProStep/index.js +24 -30
  137. package/es/ProStep/utils/index.js +8 -8
  138. package/es/ProStepTab/index.js +27 -28
  139. package/es/ProTable/components/FormatColumn/index.js +54 -59
  140. package/es/ProTable/components/RcTable/components/BaseTable/index.js +6 -7
  141. package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/index.js +21 -37
  142. package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/index.js +16 -17
  143. package/es/ProTable/components/RcTable/components/DraggableTable/index.js +5 -6
  144. package/es/ProTable/components/RenderColumn/index.js +36 -35
  145. package/es/ProTable/components/RenderEmptyText/index.js +1 -1
  146. package/es/ProTable/components/RenderFooter/index.js +2 -2
  147. package/es/ProTable/components/RenderSummary/index.js +13 -12
  148. package/es/ProTable/components/RenderTableHeader/index.js +5 -4
  149. package/es/ProTable/components/RenderTabs/index.js +26 -29
  150. package/es/ProTable/components/TableResizable/index.js +8 -8
  151. package/es/ProTable/components/TooltipTitle/index.js +4 -3
  152. package/es/ProTable/hooks/useAntdTable.js +80 -95
  153. package/es/ProTable/index.js +110 -133
  154. package/es/ProTable/propsType.d.ts +9 -3
  155. package/es/ProTable/utils/index.js +13 -16
  156. package/es/ProTabs/components/Card/index.js +14 -8
  157. package/es/ProTabs/index.js +30 -20
  158. package/es/ProTabs/propType.d.ts +5 -0
  159. package/es/ProTabs/style/index.less +40 -3
  160. package/es/ProThemeTools/component/ProTools/index.js +46 -39
  161. package/es/ProThemeTools/context/ThemeContext.js +13 -13
  162. package/es/ProThemeTools/index.js +18 -19
  163. package/es/ProThemeTools/utils/index.js +14 -18
  164. package/es/ProTooltip/index.js +24 -27
  165. package/es/ProTree/components/AdaptiveTooltip.js +5 -6
  166. package/es/ProTree/components/List.js +10 -13
  167. package/es/ProTree/components/ProTree.js +47 -64
  168. package/es/ProTree/components/ProTreeSelect/index.js +77 -76
  169. package/es/ProTree/components/Tree.js +23 -22
  170. package/es/ProTree/index.js +1 -1
  171. package/es/ProTree/utils.js +14 -14
  172. package/es/ProTreeModal/components/Cascader.js +13 -16
  173. package/es/ProTreeModal/components/List.js +49 -70
  174. package/es/ProTreeModal/components/SortableItem.js +7 -8
  175. package/es/ProTreeModal/components/Tree.js +18 -23
  176. package/es/ProTreeModal/components/Trigger.js +15 -10
  177. package/es/ProTreeModal/index.js +98 -151
  178. package/es/ProTreeModal/utils.js +21 -21
  179. package/es/ProUpload/components/ButtonRender.js +11 -12
  180. package/es/ProUpload/components/DragRender.js +17 -20
  181. package/es/ProUpload/components/DraggableUploadListItem.js +2 -2
  182. package/es/ProUpload/components/Example.js +3 -3
  183. package/es/ProUpload/components/FileItem.js +30 -25
  184. package/es/ProUpload/components/ImageRender.js +29 -22
  185. package/es/ProUpload/index.js +55 -66
  186. package/es/ProUpload/uitls.js +2 -2
  187. package/es/ProUtils/utils/index.js +10 -14
  188. package/es/ProViewer/index.js +22 -19
  189. package/es/ProViewer/propsType.js +0 -3
  190. package/es/ProWaterMark/index.js +4 -3
  191. package/es/index.d.ts +1 -1
  192. package/es/locale/index.js +2 -2
  193. package/es/style/index.less +1 -1
  194. package/es/style/theme/base.less +1 -0
  195. package/es/utils/index.js +11 -13
  196. package/lib/FormsProvider/index.js +30 -50
  197. package/lib/ProAction/components/CheckModalContent/index.js +31 -27
  198. package/lib/ProAction/index.js +194 -151
  199. package/lib/ProAction/propsType.js +4 -16
  200. package/lib/ProConfigProvider/index.js +136 -136
  201. package/lib/ProDownload/index.js +192 -124
  202. package/lib/ProDownload/propsType.js +4 -16
  203. package/lib/ProDownload/utils.js +189 -143
  204. package/lib/ProDrawerForm/components/ProDrawer/index.js +243 -169
  205. package/lib/ProDrawerForm/components/ProModal/index.js +194 -134
  206. package/lib/ProDrawerForm/components/index.js +17 -39
  207. package/lib/ProDrawerForm/index.js +79 -88
  208. package/lib/ProDrawerForm/propsType.js +4 -16
  209. package/lib/ProDrawerForm/utils/index.js +13 -30
  210. package/lib/ProEditLabel/components/RenderProForm.js +58 -57
  211. package/lib/ProEditLabel/index.js +251 -178
  212. package/lib/ProEditLabel/propsType.js +4 -16
  213. package/lib/ProEditLabel/utils/index.js +11 -26
  214. package/lib/ProEditTable/components/ActionButton/index.js +144 -155
  215. package/lib/ProEditTable/components/RcTable/BaseTable.js +97 -96
  216. package/lib/ProEditTable/components/RcTable/DraggableTable.js +172 -151
  217. package/lib/ProEditTable/components/RcTable/index.js +17 -39
  218. package/lib/ProEditTable/components/RenderField/ListChangedWrapper.js +177 -176
  219. package/lib/ProEditTable/components/RenderField/index.js +628 -539
  220. package/lib/ProEditTable/components/RenderToolbar/index.js +119 -105
  221. package/lib/ProEditTable/components/Summary/index.js +70 -61
  222. package/lib/ProEditTable/components/Validator/index.js +30 -47
  223. package/lib/ProEditTable/components/index.js +38 -48
  224. package/lib/ProEditTable/index.js +379 -324
  225. package/lib/ProEditTable/propsType.js +4 -16
  226. package/lib/ProEditTable/utils/config.js +225 -170
  227. package/lib/ProEditTable/utils/diffOriginal.js +93 -80
  228. package/lib/ProEditTable/utils/getDefaultProps.js +26 -42
  229. package/lib/ProEditTable/utils/index.js +318 -244
  230. package/lib/ProEditTable/utils/tools.js +438 -243
  231. package/lib/ProEditTable/utils/transform.js +15 -28
  232. package/lib/ProEditTable/utils/useEditTableError.js +65 -54
  233. package/lib/ProEnum/components/Group.js +53 -81
  234. package/lib/ProEnum/components/Tag.js +37 -54
  235. package/lib/ProEnum/hooks/useEnum.js +72 -52
  236. package/lib/ProEnum/hooks/useEnumRequest.js +267 -194
  237. package/lib/ProEnum/hooks/useFrequentEnumRequest.d.ts +14 -0
  238. package/lib/ProEnum/hooks/useFrequentEnumRequest.js +83 -0
  239. package/lib/ProEnum/index.js +239 -234
  240. package/lib/ProEnum/propsType.d.ts +29 -0
  241. package/lib/ProEnum/propsType.js +4 -16
  242. package/lib/ProEnum/utils/eventCenter.js +15 -12
  243. package/lib/ProEnum/utils/frequentEnum.d.ts +40 -0
  244. package/lib/ProEnum/utils/frequentEnum.js +99 -0
  245. package/lib/ProEnum/utils/getEnumLabel.js +57 -65
  246. package/lib/ProEnum/utils/index.js +98 -68
  247. package/lib/ProForm/components/Container.js +35 -45
  248. package/lib/ProForm/components/FormFooter/index.js +67 -80
  249. package/lib/ProForm/components/FormFooter/propsType.js +4 -16
  250. package/lib/ProForm/components/base/Checkbox/index.js +67 -62
  251. package/lib/ProForm/components/base/DatePicker/index.js +63 -74
  252. package/lib/ProForm/components/base/DatePicker/useDateLimit.js +13 -29
  253. package/lib/ProForm/components/base/Input/index.js +65 -73
  254. package/lib/ProForm/components/base/Input/propsType.js +4 -16
  255. package/lib/ProForm/components/base/InputNumber/index.js +230 -176
  256. package/lib/ProForm/components/base/Radio/index.js +60 -69
  257. package/lib/ProForm/components/base/RangePicker/index.js +73 -88
  258. package/lib/ProForm/components/base/RangePicker/useDateRange.js +28 -45
  259. package/lib/ProForm/components/base/Select/index.js +63 -69
  260. package/lib/ProForm/components/base/Switch/index.js +43 -59
  261. package/lib/ProForm/components/base/SwitchCheckbox/index.js +63 -62
  262. package/lib/ProForm/components/base/TextArea/index.js +52 -65
  263. package/lib/ProForm/components/base/TimePicker/index.js +45 -59
  264. package/lib/ProForm/components/combination/Container/index.js +58 -72
  265. package/lib/ProForm/components/combination/Container/propsType.js +4 -16
  266. package/lib/ProForm/components/combination/FormList/components/ActionButton.js +240 -195
  267. package/lib/ProForm/components/combination/FormList/components/BlockFields.js +85 -107
  268. package/lib/ProForm/components/combination/FormList/components/BlockTitle.js +25 -44
  269. package/lib/ProForm/components/combination/FormList/components/Empty.js +92 -55
  270. package/lib/ProForm/components/combination/FormList/components/LineFields.js +92 -117
  271. package/lib/ProForm/components/combination/FormList/components/ToolbarButton.js +133 -101
  272. package/lib/ProForm/components/combination/FormList/index.js +131 -164
  273. package/lib/ProForm/components/combination/FormList/propsType.js +4 -16
  274. package/lib/ProForm/components/combination/FormList/utils.js +32 -52
  275. package/lib/ProForm/components/combination/Group/component/AddonWrapper/index.js +23 -38
  276. package/lib/ProForm/components/combination/Group/component/ComRender.js +78 -74
  277. package/lib/ProForm/components/combination/Group/hooks/index.d.ts +0 -1
  278. package/lib/ProForm/components/combination/Group/hooks/index.js +123 -123
  279. package/lib/ProForm/components/combination/Group/index.js +99 -104
  280. package/lib/ProForm/components/combination/Group/propsType.d.ts +2 -0
  281. package/lib/ProForm/components/combination/Group/propsType.js +4 -16
  282. package/lib/ProForm/components/combination/Group/style/index.less +7 -0
  283. package/lib/ProForm/components/combination/Group/utils.d.ts +0 -1
  284. package/lib/ProForm/components/combination/Group/utils.js +132 -104
  285. package/lib/ProForm/components/combination/ProCascader/index.js +271 -226
  286. package/lib/ProForm/components/combination/ProCascader/propsType.js +4 -16
  287. package/lib/ProForm/components/combination/ProCascader/utils/index.js +23 -33
  288. package/lib/ProForm/components/combination/ProModalSelect/hooks/useRequestList.js +113 -114
  289. package/lib/ProForm/components/combination/ProModalSelect/index.js +651 -472
  290. package/lib/ProForm/components/combination/ProModalSelect/propsType.js +4 -16
  291. package/lib/ProForm/components/combination/ProModalSelect/utils/index.js +21 -43
  292. package/lib/ProForm/components/combination/ProNumberRange/index.js +207 -160
  293. package/lib/ProForm/components/combination/ProNumberRange/propsType.d.ts +3 -2
  294. package/lib/ProForm/components/combination/ProNumberRange/propsType.js +4 -16
  295. package/lib/ProForm/components/combination/ProNumberRange/style/index.less +1 -1
  296. package/lib/ProForm/components/combination/ProRangeLimit/index.js +169 -139
  297. package/lib/ProForm/components/combination/ProRangeLimit/propsType.js +4 -16
  298. package/lib/ProForm/components/combination/ProTimeLimit/hooks/useControlled.js +28 -49
  299. package/lib/ProForm/components/combination/ProTimeLimit/index.js +150 -127
  300. package/lib/ProForm/components/index.js +192 -115
  301. package/lib/ProForm/components/render/ChangedWrapper.js +130 -141
  302. package/lib/ProForm/components/render/ConfirmWrapper.js +120 -78
  303. package/lib/ProForm/components/render/Render.js +445 -346
  304. package/lib/ProForm/components/render/RenderFields.d.ts +0 -1
  305. package/lib/ProForm/components/render/RenderFields.js +195 -181
  306. package/lib/ProForm/components/render/propsType.js +31 -17
  307. package/lib/ProForm/index.js +282 -235
  308. package/lib/ProForm/propsType.d.ts +1 -4
  309. package/lib/ProForm/propsType.js +9 -38
  310. package/lib/ProForm/utils/diffOriginal.js +88 -81
  311. package/lib/ProForm/utils/getDefaultProps.js +26 -42
  312. package/lib/ProForm/utils/index.js +330 -254
  313. package/lib/ProForm/utils/processDependencies.js +61 -44
  314. package/lib/ProForm/utils/rulesCreator.js +58 -81
  315. package/lib/ProForm/utils/transformNames.js +26 -37
  316. package/lib/ProForm/utils/transformValue.js +47 -47
  317. package/lib/ProForm/utils/useDeepCompareMemo.js +15 -34
  318. package/lib/ProForm/utils/useFieldProps.js +10 -42
  319. package/lib/ProForm/utils/useForm.js +226 -118
  320. package/lib/ProForm/utils/useRules.js +50 -60
  321. package/lib/ProForm/utils/useShouldUpdate.js +233 -126
  322. package/lib/ProForm/utils/useWatch.js +122 -93
  323. package/lib/ProForm/utils/valueType.js +222 -155
  324. package/lib/ProIcon/config/index.js +278 -365
  325. package/lib/ProIcon/index.js +217 -184
  326. package/lib/ProIcon/propsTypes.js +4 -16
  327. package/lib/ProIcon/symbolIcon.js +30 -23
  328. package/lib/ProIcon/utils/index.js +53 -60
  329. package/lib/ProLayout/components/Layout/Header/index.js +42 -59
  330. package/lib/ProLayout/components/Layout/Icon/Icon.js +31 -49
  331. package/lib/ProLayout/components/Layout/Icon/index.js +7 -34
  332. package/lib/ProLayout/components/Layout/Menu/FoldMenu/index.js +170 -139
  333. package/lib/ProLayout/components/Layout/Menu/OpenMenu/index.js +135 -117
  334. package/lib/ProLayout/components/Layout/Menu/OpenMenu/propsType.js +4 -16
  335. package/lib/ProLayout/components/Layout/Menu/SideMenu/index.js +44 -60
  336. package/lib/ProLayout/components/Layout/Menu/index.js +52 -71
  337. package/lib/ProLayout/components/Layout/Notice/index.js +31 -39
  338. package/lib/ProLayout/components/Layout/index.js +31 -45
  339. package/lib/ProLayout/components/ProCollapse/PropTypes.js +4 -16
  340. package/lib/ProLayout/components/ProCollapse/index.js +159 -148
  341. package/lib/ProLayout/components/ProFooter/PropTypes.js +4 -16
  342. package/lib/ProLayout/components/ProFooter/index.js +41 -56
  343. package/lib/ProLayout/components/ProHeader/PropTypes.js +4 -16
  344. package/lib/ProLayout/components/ProHeader/components/Copy/index.js +26 -53
  345. package/lib/ProLayout/components/ProHeader/components/ProBackBtn/index.js +27 -48
  346. package/lib/ProLayout/components/ProHeader/components/ProBackBtn/propsType.js +4 -16
  347. package/lib/ProLayout/components/ProHeader/components/index.js +17 -39
  348. package/lib/ProLayout/components/ProHeader/index.js +466 -268
  349. package/lib/ProLayout/components/ProHeader/utils/index.js +14 -31
  350. package/lib/ProLayout/components/index.js +24 -42
  351. package/lib/ProLayout/index.js +139 -130
  352. package/lib/ProLayout/propTypes.js +4 -16
  353. package/lib/ProLayout/utils/index.js +120 -86
  354. package/lib/ProSelect/components/AdaptiveTooltip.js +38 -45
  355. package/lib/ProSelect/index.js +240 -213
  356. package/lib/ProSelect/propsType.js +4 -16
  357. package/lib/ProSelect/utils/index.js +114 -93
  358. package/lib/ProStep/components/Anchor/index.js +102 -107
  359. package/lib/ProStep/components/Item/index.js +71 -75
  360. package/lib/ProStep/components/Listener/index.js +69 -62
  361. package/lib/ProStep/components/Step/index.js +65 -75
  362. package/lib/ProStep/index.js +227 -165
  363. package/lib/ProStep/propsType.js +4 -16
  364. package/lib/ProStep/utils/index.js +54 -57
  365. package/lib/ProStepTab/index.js +307 -166
  366. package/lib/ProStepTab/propsType.js +4 -16
  367. package/lib/ProTable/components/FormatColumn/index.js +472 -425
  368. package/lib/ProTable/components/RcTable/components/BaseTable/index.js +39 -53
  369. package/lib/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/index.js +183 -135
  370. package/lib/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/index.js +85 -104
  371. package/lib/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/propsType.js +4 -16
  372. package/lib/ProTable/components/RcTable/components/DraggableTable/index.js +58 -80
  373. package/lib/ProTable/components/RcTable/index.js +17 -39
  374. package/lib/ProTable/components/RenderColumn/index.js +203 -194
  375. package/lib/ProTable/components/RenderEmptyText/index.js +25 -27
  376. package/lib/ProTable/components/RenderFooter/index.js +17 -33
  377. package/lib/ProTable/components/RenderSummary/index.js +57 -46
  378. package/lib/ProTable/components/RenderTableHeader/index.js +62 -68
  379. package/lib/ProTable/components/RenderTabs/index.js +67 -80
  380. package/lib/ProTable/components/TableResizable/index.js +87 -87
  381. package/lib/ProTable/components/TooltipTitle/index.js +27 -40
  382. package/lib/ProTable/components/index.js +45 -51
  383. package/lib/ProTable/hooks/useAntdTable.js +351 -304
  384. package/lib/ProTable/index.js +354 -333
  385. package/lib/ProTable/propsType.d.ts +9 -3
  386. package/lib/ProTable/propsType.js +4 -16
  387. package/lib/ProTable/utils/index.js +89 -78
  388. package/lib/ProTabs/components/Card/index.js +57 -30
  389. package/lib/ProTabs/components/index.js +10 -36
  390. package/lib/ProTabs/index.js +94 -89
  391. package/lib/ProTabs/propType.d.ts +5 -0
  392. package/lib/ProTabs/propType.js +4 -16
  393. package/lib/ProTabs/style/index.less +40 -3
  394. package/lib/ProThemeTools/component/ProTools/index.js +246 -198
  395. package/lib/ProThemeTools/component/index.js +10 -36
  396. package/lib/ProThemeTools/context/ThemeContext.js +99 -89
  397. package/lib/ProThemeTools/index.js +207 -172
  398. package/lib/ProThemeTools/propsType.js +4 -16
  399. package/lib/ProThemeTools/utils/index.js +84 -80
  400. package/lib/ProTooltip/index.js +217 -214
  401. package/lib/ProTooltip/propsType.js +4 -16
  402. package/lib/ProTree/components/AdaptiveTooltip.js +22 -33
  403. package/lib/ProTree/components/CloseIcon.js +31 -36
  404. package/lib/ProTree/components/List.js +69 -68
  405. package/lib/ProTree/components/ProTree.js +346 -258
  406. package/lib/ProTree/components/ProTreeSelect/index.js +460 -336
  407. package/lib/ProTree/components/ProTreeSelect/propsType.js +4 -16
  408. package/lib/ProTree/components/SearchTitle.js +50 -47
  409. package/lib/ProTree/components/Tree.js +300 -227
  410. package/lib/ProTree/components/index.js +31 -45
  411. package/lib/ProTree/index.js +22 -45
  412. package/lib/ProTree/propsType.js +4 -16
  413. package/lib/ProTree/utils.js +140 -79
  414. package/lib/ProTreeModal/components/Cascader.js +90 -97
  415. package/lib/ProTreeModal/components/CloseIcon.js +31 -36
  416. package/lib/ProTreeModal/components/List.js +246 -192
  417. package/lib/ProTreeModal/components/SearchTitle.js +22 -30
  418. package/lib/ProTreeModal/components/SortableItem.js +59 -60
  419. package/lib/ProTreeModal/components/Tree.js +171 -157
  420. package/lib/ProTreeModal/components/Trigger.js +131 -108
  421. package/lib/ProTreeModal/components/index.js +45 -51
  422. package/lib/ProTreeModal/index.js +523 -448
  423. package/lib/ProTreeModal/propsType.js +4 -16
  424. package/lib/ProTreeModal/utils.js +160 -99
  425. package/lib/ProUpload/components/ButtonRender.js +106 -85
  426. package/lib/ProUpload/components/DragRender.js +167 -117
  427. package/lib/ProUpload/components/DraggableUploadListItem.js +32 -48
  428. package/lib/ProUpload/components/Example.js +39 -55
  429. package/lib/ProUpload/components/FileItem.js +215 -113
  430. package/lib/ProUpload/components/ImageRender.js +250 -175
  431. package/lib/ProUpload/index.js +185 -181
  432. package/lib/ProUpload/propsType.js +4 -16
  433. package/lib/ProUpload/uitls.js +9 -31
  434. package/lib/ProUtils/utils/index.js +20 -36
  435. package/lib/ProViewer/index.js +210 -175
  436. package/lib/ProViewer/propsType.js +1 -17
  437. package/lib/ProWaterMark/index.js +20 -38
  438. package/lib/ProWaterMark/propsType.js +4 -16
  439. package/lib/index.d.ts +1 -1
  440. package/lib/index.js +272 -123
  441. package/lib/locale/en_US.js +127 -145
  442. package/lib/locale/index.js +40 -55
  443. package/lib/locale/zh_CN.js +128 -146
  444. package/lib/style/index.less +1 -1
  445. package/lib/style/theme/base.less +1 -0
  446. package/lib/tokens.js +87 -103
  447. package/lib/utils/index.js +66 -88
  448. package/package.json +7 -7
  449. package/dist/esm/index.d.ts +0 -5
  450. package/dist/esm/index.js +0 -5
  451. package/dist/esm/regExp/index.d.ts +0 -19
  452. package/dist/esm/regExp/index.js +0 -73
  453. package/dist/esm/tools/calc/index.d.ts +0 -4
  454. package/dist/esm/tools/calc/index.js +0 -67
  455. package/dist/esm/tools/dateUtils.d.ts +0 -7
  456. package/dist/esm/tools/dateUtils.js +0 -23
  457. package/dist/esm/tools/disableDate/index.d.ts +0 -9
  458. package/dist/esm/tools/disableDate/index.js +0 -43
  459. package/dist/esm/tools/disableTimeRange/index.d.ts +0 -9
  460. package/dist/esm/tools/disableTimeRange/index.js +0 -121
  461. package/dist/esm/tools/formatAmount/index.d.ts +0 -7
  462. package/dist/esm/tools/formatAmount/index.js +0 -14
  463. package/dist/esm/tools/formatPerMill/index.d.ts +0 -7
  464. package/dist/esm/tools/formatPerMill/index.js +0 -11
  465. package/dist/esm/tools/formatPercent/index.d.ts +0 -7
  466. package/dist/esm/tools/formatPercent/index.js +0 -11
  467. package/dist/esm/tools/getDataByIdCard/index.d.ts +0 -16
  468. package/dist/esm/tools/getDataByIdCard/index.js +0 -65
  469. package/dist/esm/tools/index.d.ts +0 -12
  470. package/dist/esm/tools/index.js +0 -14
  471. package/dist/esm/tools/sumAmount/index.d.ts +0 -16
  472. package/dist/esm/tools/sumAmount/index.js +0 -40
  473. package/dist/esm/tools/toChineseNum/index.d.ts +0 -7
  474. package/dist/esm/tools/toChineseNum/index.js +0 -103
  475. package/dist/esm/tools/toFixed/index.d.ts +0 -2
  476. package/dist/esm/tools/toFixed/index.js +0 -5
  477. package/dist/esm/tools/transformDataName/index.d.ts +0 -12
  478. package/dist/esm/tools/transformDataName/index.js +0 -37
  479. package/dist/esm/transforms/dateTransformer/index.d.ts +0 -24
  480. package/dist/esm/transforms/dateTransformer/index.js +0 -67
  481. package/dist/esm/transforms/index.d.ts +0 -6
  482. package/dist/esm/transforms/index.js +0 -6
  483. package/dist/esm/transforms/propTypes.d.ts +0 -7
  484. package/dist/esm/transforms/propTypes.js +0 -1
  485. package/dist/esm/transforms/transformDate/index.d.ts +0 -21
  486. package/dist/esm/transforms/transformDate/index.js +0 -141
  487. package/dist/esm/transforms/transformDatePicker/index.d.ts +0 -12
  488. package/dist/esm/transforms/transformDatePicker/index.js +0 -24
  489. package/dist/esm/transforms/transformRangePicker/index.d.ts +0 -29
  490. package/dist/esm/transforms/transformRangePicker/index.js +0 -61
  491. package/dist/esm/transforms/transformSwitch/index.d.ts +0 -13
  492. package/dist/esm/transforms/transformSwitch/index.js +0 -35
  493. package/dist/esm/transforms/utils.d.ts +0 -2
  494. package/dist/esm/transforms/utils.js +0 -8
  495. package/dist/esm/validate/index.d.ts +0 -107
  496. package/dist/esm/validate/index.js +0 -284
  497. package/tests/__mocks__/fileMock.js +0 -1
  498. package/tests/__mocks__/zatUtils.js +0 -27
  499. package/tests/setup.ts +0 -484
  500. package/tests/test-utils.tsx +0 -81
@@ -1,8 +1,14 @@
1
+ import "antd/es/input/style";
2
+ import _Input from "antd/es/input";
3
+ import "antd/es/button/style";
4
+ import _Button from "antd/es/button";
1
5
  import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
2
- import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
6
+ import "antd/es/input-number/style";
7
+ import _InputNumber from "antd/es/input-number";
8
+ import "antd/es/space/style";
9
+ import _Space from "antd/es/space";
3
10
  import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
4
11
  import { useSetState, useDeepCompareEffect } from 'ahooks';
5
- import { Button, Input, InputNumber, Space } from 'antd';
6
12
  import { isEqual, isEmpty } from 'lodash';
7
13
  import { memo } from 'react';
8
14
  import classnames from 'classnames';
@@ -13,12 +19,12 @@ import ProForm from "../../../../ProForm";
13
19
  import { jsx as _jsx } from "react/jsx-runtime";
14
20
  import { jsxs as _jsxs } from "react/jsx-runtime";
15
21
  var formatAmount = tools.formatAmount;
16
- var ProNumberRange = function ProNumberRange(props) {
17
- var _document$querySelect, _valueProps, _ref2, _ref3, _value$, _valueProps2, _ref4, _ref5, _value$2, _valueProps3, _valueProps4;
22
+ var ProNumberRange = props => {
23
+ var _valueProps, _ref2, _ref3, _value$, _valueProps2, _ref4, _ref5, _value$2, _valueProps3, _valueProps4;
18
24
  var _props$value = props.value,
19
25
  value = _props$value === void 0 ? [] : _props$value,
20
26
  _props$onChange = props.onChange,
21
- onChange = _props$onChange === void 0 ? function () {} : _props$onChange,
27
+ onChange = _props$onChange === void 0 ? () => {} : _props$onChange,
22
28
  _props$min = props.min,
23
29
  min = _props$min === void 0 ? 0 : _props$min,
24
30
  max = props.max,
@@ -30,16 +36,16 @@ var ProNumberRange = function ProNumberRange(props) {
30
36
  childProps = props.childProps,
31
37
  addonBefore = props.addonBefore,
32
38
  addonAfter = props.addonAfter,
33
- _props$separator = props.separator,
34
- separator = _props$separator === void 0 ? '~' : _props$separator,
35
39
  inValueType = props.valueType,
40
+ _props$split = props.split,
41
+ split = _props$split === void 0 ? '~' : _props$split,
36
42
  id = props.id;
37
43
  var _ref = ProForm.useFieldProps() || {},
38
44
  isViewCon = _ref.isView,
39
45
  viewEmpty = _ref.viewEmpty,
40
46
  valueType = _ref.valueType;
41
47
  var isView = typeof props.isView === 'boolean' ? props.isView : isViewCon; // 组件可直接接收isView参数, 优先级高
42
- var addonAfterDomWidth = (_document$querySelect = document.querySelector('.ant-input-number-group-addon')) === null || _document$querySelect === void 0 ? void 0 : _document$querySelect.clientWidth;
48
+
43
49
  var _useSetState = useSetState({
44
50
  range: value || []
45
51
  }),
@@ -47,7 +53,7 @@ var ProNumberRange = function ProNumberRange(props) {
47
53
  range = _useSetState2[0].range,
48
54
  setState = _useSetState2[1];
49
55
  var valueProps = {};
50
- useDeepCompareEffect(function () {
56
+ useDeepCompareEffect(() => {
51
57
  // 同步value值
52
58
  if (Array.isArray(value)) {
53
59
  setState({
@@ -55,45 +61,39 @@ var ProNumberRange = function ProNumberRange(props) {
55
61
  });
56
62
  }
57
63
  }, [value]);
58
- var firstHandleChange = function firstHandleChange(val) {
64
+ var firstHandleChange = val => {
59
65
  range[0] = val;
60
- var isEmptyArray = range.every(function (item) {
61
- return !item && item !== 0;
62
- });
66
+ var isEmptyArray = range.every(item => !item && item !== 0);
63
67
  if (isEmptyArray) {
64
68
  onChange([]);
65
69
  } else {
66
- onChange(_toConsumableArray(range));
70
+ onChange([...range]);
67
71
  }
68
72
  setState({
69
- range: range
73
+ range
70
74
  });
71
75
  };
72
- var lastHandleChange = function lastHandleChange(val) {
76
+ var lastHandleChange = val => {
73
77
  range[1] = val;
74
- var isEmptyArray = range.every(function (item) {
75
- return !item && item !== 0;
76
- });
78
+ var isEmptyArray = range.every(item => !item && item !== 0);
77
79
  if (isEmptyArray) {
78
80
  onChange([]);
79
81
  } else {
80
- onChange(_toConsumableArray(range));
82
+ onChange([...range]);
81
83
  }
82
84
  setState({
83
- range: range
85
+ range
84
86
  });
85
87
  };
86
88
  var cls = classnames({
87
89
  'pro-number-range': true,
88
90
  'pro-number-range-disabled': disabled,
89
- className: className
91
+ className
90
92
  });
91
93
 
92
94
  // 查看模式
93
95
  if (isView || props.isView) {
94
- if (isEmpty(value) || value !== null && value !== void 0 && value.every(function (item) {
95
- return typeof item !== 'number';
96
- })) {
96
+ if (isEmpty(value) || value !== null && value !== void 0 && value.every(item => typeof item !== 'number')) {
97
97
  return viewEmpty;
98
98
  }
99
99
  switch (valueType) {
@@ -102,25 +102,53 @@ var ProNumberRange = function ProNumberRange(props) {
102
102
  case 'percentage':
103
103
  return /*#__PURE__*/_jsx(Container, {
104
104
  viewEmpty: viewEmpty,
105
- children: "".concat(formatAmount(value[0], precision || decimal), " ").concat(separator, " ").concat(formatAmount(value[1], precision || decimal))
105
+ children: /*#__PURE__*/_jsxs(_Space, {
106
+ split: split,
107
+ children: [/*#__PURE__*/_jsx("span", {
108
+ children: formatAmount(value[0], precision || decimal)
109
+ }), /*#__PURE__*/_jsx("span", {
110
+ children: formatAmount(value[1], precision || decimal)
111
+ })]
112
+ })
106
113
  });
107
114
  // 千分比
108
115
  case 'permillage':
109
116
  return /*#__PURE__*/_jsx(Container, {
110
117
  viewEmpty: viewEmpty,
111
- children: "".concat(formatAmount(value[0], precision || decimal), " ").concat(separator, " ").concat(formatAmount(value[1], precision || decimal))
118
+ children: /*#__PURE__*/_jsxs(_Space, {
119
+ split: split,
120
+ children: [/*#__PURE__*/_jsx("span", {
121
+ children: formatAmount(value[0], precision || decimal)
122
+ }), /*#__PURE__*/_jsx("span", {
123
+ children: formatAmount(value[1], precision || decimal)
124
+ })]
125
+ })
112
126
  });
113
127
  // 千分位
114
128
  case 'amount':
115
129
  case 'thousandth':
116
130
  return /*#__PURE__*/_jsx(Container, {
117
131
  viewEmpty: viewEmpty,
118
- children: "".concat(formatAmount(value[0], precision || decimal), " ").concat(separator, " ").concat(formatAmount(value[1], precision || decimal))
132
+ children: /*#__PURE__*/_jsxs(_Space, {
133
+ split: split,
134
+ children: [/*#__PURE__*/_jsx("span", {
135
+ children: formatAmount(value[0], precision || decimal)
136
+ }), /*#__PURE__*/_jsx("span", {
137
+ children: formatAmount(value[1], precision || decimal)
138
+ })]
139
+ })
119
140
  });
120
141
  default:
121
142
  return /*#__PURE__*/_jsx(Container, {
122
143
  viewEmpty: viewEmpty,
123
- children: "".concat(value[0] || '-', " ").concat(separator, " ").concat(value[1] || '-')
144
+ children: /*#__PURE__*/_jsxs(_Space, {
145
+ split: split,
146
+ children: [/*#__PURE__*/_jsx("span", {
147
+ children: value[0] || '-'
148
+ }), /*#__PURE__*/_jsx("span", {
149
+ children: value[1] || '-'
150
+ })]
151
+ })
124
152
  });
125
153
  }
126
154
  }
@@ -131,15 +159,13 @@ var ProNumberRange = function ProNumberRange(props) {
131
159
  case 'thousandth':
132
160
  case 'amount':
133
161
  valueProps = {
134
- formatter: function formatter(value) {
162
+ formatter: value => {
135
163
  return typeof value === 'number' || value ? Number(value).toLocaleString('zh-CN', {
136
164
  minimumFractionDigits: precision !== null && precision !== void 0 ? precision : null,
137
165
  maximumFractionDigits: precision !== null && precision !== void 0 ? precision : 9
138
166
  }) : value;
139
167
  },
140
- parser: function parser(value) {
141
- return value.replace(/\$\s?|(,*)/g, '');
142
- }
168
+ parser: value => value.replace(/\$\s?|(,*)/g, '')
143
169
  };
144
170
  break;
145
171
  // 百分比
@@ -170,53 +196,53 @@ var ProNumberRange = function ProNumberRange(props) {
170
196
  * @param disabled 禁用值
171
197
  * @param index 位置
172
198
  */
173
- var getDisabled = function getDisabled(disabled, index) {
199
+ var getDisabled = (disabled, index) => {
174
200
  var result = disabled;
175
201
  if (Array.isArray(disabled)) {
176
202
  result = disabled[index];
177
203
  }
178
204
  return result;
179
205
  };
180
- return /*#__PURE__*/_jsx(Space, {
206
+ return /*#__PURE__*/_jsx(_Space, {
181
207
  className: cls,
182
- children: /*#__PURE__*/_jsxs(Space.Compact, {
183
- children: [/*#__PURE__*/_jsx(InputNumber, _objectSpread(_objectSpread({
208
+ children: /*#__PURE__*/_jsxs(_Space.Compact, {
209
+ children: [/*#__PURE__*/_jsx(_InputNumber, _objectSpread(_objectSpread({
184
210
  id: id,
185
211
  className: "range-left",
186
212
  value: (value === null || value === void 0 ? void 0 : value[0]) || range[0],
187
- placeholder: "".concat(locale.ProForm.inputPlaceholder),
213
+ placeholder: `${locale.ProForm.inputPlaceholder}`,
188
214
  precision: precision,
189
215
  disabled: getDisabled(disabled, 0),
190
- onChange: function onChange(e) {
216
+ onChange: e => {
191
217
  firstHandleChange(e);
192
218
  }
193
219
  }, valueProps), {}, {
194
220
  min: min !== null && min !== void 0 ? min : (_valueProps = valueProps) === null || _valueProps === void 0 ? void 0 : _valueProps.min,
195
221
  max: (_ref2 = (_ref3 = (_value$ = value === null || value === void 0 ? void 0 : value[1]) !== null && _value$ !== void 0 ? _value$ : range[1]) !== null && _ref3 !== void 0 ? _ref3 : max) !== null && _ref2 !== void 0 ? _ref2 : (_valueProps2 = valueProps) === null || _valueProps2 === void 0 ? void 0 : _valueProps2.max
196
- }, childProps === null || childProps === void 0 ? void 0 : childProps[0])), addonBefore ? /*#__PURE__*/_jsx(Button, {
222
+ }, childProps === null || childProps === void 0 ? void 0 : childProps[0])), addonBefore ? /*#__PURE__*/_jsx(_Button, {
197
223
  disabled: true,
198
224
  className: "range-addon-before",
199
225
  children: addonBefore
200
- }) : null, /*#__PURE__*/_jsx(Input, {
226
+ }) : null, /*#__PURE__*/_jsx(_Input, {
201
227
  className: classnames({
202
228
  'range-split': true,
203
229
  'range-split-disabled': !!disabled
204
230
  }),
205
- placeholder: "~",
231
+ placeholder: split,
206
232
  disabled: true
207
- }), /*#__PURE__*/_jsx(InputNumber, _objectSpread(_objectSpread({
233
+ }), /*#__PURE__*/_jsx(_InputNumber, _objectSpread(_objectSpread({
208
234
  className: "range-right",
209
235
  value: (value === null || value === void 0 ? void 0 : value[1]) || range[1],
210
- placeholder: "".concat(locale.ProForm.inputPlaceholder),
236
+ placeholder: `${locale.ProForm.inputPlaceholder}`,
211
237
  precision: precision,
212
238
  disabled: getDisabled(disabled, 1),
213
- onChange: function onChange(e) {
239
+ onChange: e => {
214
240
  lastHandleChange(e);
215
241
  }
216
242
  }, valueProps), {}, {
217
243
  min: (_ref4 = (_ref5 = (_value$2 = value === null || value === void 0 ? void 0 : value[0]) !== null && _value$2 !== void 0 ? _value$2 : range[0]) !== null && _ref5 !== void 0 ? _ref5 : min) !== null && _ref4 !== void 0 ? _ref4 : (_valueProps3 = valueProps) === null || _valueProps3 === void 0 ? void 0 : _valueProps3.min,
218
244
  max: max !== null && max !== void 0 ? max : (_valueProps4 = valueProps) === null || _valueProps4 === void 0 ? void 0 : _valueProps4.max
219
- }, childProps === null || childProps === void 0 ? void 0 : childProps[1])), addonAfter ? /*#__PURE__*/_jsx(Button, {
245
+ }, childProps === null || childProps === void 0 ? void 0 : childProps[1])), addonAfter ? /*#__PURE__*/_jsx(_Button, {
220
246
  disabled: true,
221
247
  className: "range-addon-after",
222
248
  children: addonAfter
@@ -224,7 +250,7 @@ var ProNumberRange = function ProNumberRange(props) {
224
250
  })
225
251
  });
226
252
  };
227
- export default /*#__PURE__*/memo(ProNumberRange, function (prevProps, nextProps) {
253
+ export default /*#__PURE__*/memo(ProNumberRange, (prevProps, nextProps) => {
228
254
  // 基本props比较 只比较关键的
229
255
  if (!isEqual(prevProps === null || prevProps === void 0 ? void 0 : prevProps.value, nextProps === null || nextProps === void 0 ? void 0 : nextProps.value) || (prevProps === null || prevProps === void 0 ? void 0 : prevProps.disabled) !== (nextProps === null || nextProps === void 0 ? void 0 : nextProps.disabled) || !isEqual(prevProps === null || prevProps === void 0 ? void 0 : prevProps.childProps, nextProps === null || nextProps === void 0 ? void 0 : nextProps.childProps)) {
230
256
  return false;
@@ -71,9 +71,10 @@ export interface ProNumberRangeType {
71
71
  * @default '-'
72
72
  */
73
73
  /**
74
- * 查看分割符
74
+ * @description 查看分割符
75
+ * @default '-'
75
76
  */
76
- separator?: React.ReactNode | string;
77
+ split?: React.ReactNode | string;
77
78
  childProps?: any[];
78
79
  otherProps?: ProFormOtherType;
79
80
  id?: string;
@@ -1,7 +1,7 @@
1
1
  .pro-number-range {
2
2
  display: block;
3
3
  .@{ant-prefix}-space-compact {
4
- display: block;
4
+ display: flex;
5
5
  }
6
6
  .range-split {
7
7
  min-width: 32px;
@@ -1,10 +1,14 @@
1
- import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
1
+ import "antd/es/space/style";
2
+ import _Space from "antd/es/space";
3
+ import "antd/es/checkbox/style";
4
+ import _Checkbox from "antd/es/checkbox";
2
5
  import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
3
6
  import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
7
+ import "antd/es/date-picker/style";
8
+ import _DatePicker from "antd/es/date-picker";
4
9
  import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
5
10
  var _excluded = ["disabled", "foreverText", "foreverDate", "format", "otherProps", "separator", "limit"];
6
11
  import React, { useMemo, useState } from 'react';
7
- import { DatePicker, Checkbox, Space } from 'antd';
8
12
  import { omit, isFunction, uniq, isObject } from 'lodash';
9
13
  import classNames from 'classnames';
10
14
  import dayjs from 'dayjs';
@@ -15,7 +19,7 @@ import ProForm from "../../../../ProForm";
15
19
  import { jsxs as _jsxs } from "react/jsx-runtime";
16
20
  import { jsx as _jsx } from "react/jsx-runtime";
17
21
  var defaultPickerValue = [dayjs(), dayjs()];
18
- var useControlled = function useControlled(props) {
22
+ var useControlled = props => {
19
23
  var _useState = useState(),
20
24
  _useState2 = _slicedToArray(_useState, 2),
21
25
  value = _useState2[0],
@@ -23,7 +27,7 @@ var useControlled = function useControlled(props) {
23
27
  if ('value' in props) {
24
28
  var _props$value, _props$value2;
25
29
  var internalValue = [((_props$value = props.value) === null || _props$value === void 0 ? void 0 : _props$value[0]) && dayjs(props.value[0], props.format), ((_props$value2 = props.value) === null || _props$value2 === void 0 ? void 0 : _props$value2[1]) && dayjs(props.value[1], props.format)];
26
- var handleChange = function handleChange(value, other) {
30
+ var handleChange = (value, other) => {
27
31
  if (!value) {
28
32
  props === null || props === void 0 || props.onChange(value, other);
29
33
  } else {
@@ -42,8 +46,8 @@ var useControlled = function useControlled(props) {
42
46
  // @ts-ignore
43
47
  return [value, setValue];
44
48
  };
45
- var RangePicker = DatePicker.RangePicker;
46
- var ProRangeLimit = function ProRangeLimit(props) {
49
+ var RangePicker = _DatePicker.RangePicker;
50
+ var ProRangeLimit = props => {
47
51
  var disabled = props.disabled,
48
52
  _props$foreverText = props.foreverText,
49
53
  foreverText = _props$foreverText === void 0 ? locale.ProTimeLimit.foreverText : _props$foreverText,
@@ -63,7 +67,7 @@ var ProRangeLimit = function ProRangeLimit(props) {
63
67
  var isView = typeof props.isView === 'boolean' ? props.isView : isViewCon; // 组件可直接接收isView参数, 优先级高
64
68
 
65
69
  var _useControlled = useControlled(_objectSpread(_objectSpread({}, props), {}, {
66
- format: format
70
+ format
67
71
  })),
68
72
  _useControlled2 = _slicedToArray(_useControlled, 2),
69
73
  value = _useControlled2[0],
@@ -96,14 +100,12 @@ var ProRangeLimit = function ProRangeLimit(props) {
96
100
  if (isFunction(format)) {
97
101
  tempFormat = [];
98
102
  }
99
- var _format = uniq([].concat(_toConsumableArray(tempFormat), ['YYYY-MM-DD', 'YYYYMMDD', 'YYYY/MM/DD', 'YYYY_MM_DD', 'YYYY.MM.DD'])).filter(function (formatKey) {
100
- return !!formatKey;
101
- });
103
+ var _format = uniq([...tempFormat, 'YYYY-MM-DD', 'YYYYMMDD', 'YYYY/MM/DD', 'YYYY_MM_DD', 'YYYY.MM.DD']).filter(formatKey => !!formatKey);
102
104
  var _defaultShowTime = {
103
105
  format: 'HH:mm:ss'
104
106
  };
105
- var _isForever = useMemo(function () {
106
- var foreverDayjs = function () {
107
+ var _isForever = useMemo(() => {
108
+ var foreverDayjs = (() => {
107
109
  // 使用健壮的日期解析方式
108
110
  var result = dayjs(_foreverDate);
109
111
  if (!result.isValid()) {
@@ -114,10 +116,10 @@ var ProRangeLimit = function ProRangeLimit(props) {
114
116
  result = dayjs('9999-01-01');
115
117
  }
116
118
  return result;
117
- }();
119
+ })();
118
120
  return foreverDayjs.isSame(endDate);
119
121
  }, [value, _foreverDate, format]);
120
- var foreverDayjs = useMemo(function () {
122
+ var foreverDayjs = useMemo(() => {
121
123
  // 使用健壮的日期解析方式
122
124
  var foreverDayjs = dayjs(_foreverDate);
123
125
  if (!foreverDayjs.isValid()) {
@@ -146,7 +148,7 @@ var ProRangeLimit = function ProRangeLimit(props) {
146
148
  }
147
149
 
148
150
  // 时间范围change
149
- var handleRangeChange = function handleRangeChange(date, dateStr) {
151
+ var handleRangeChange = (date, dateStr) => {
150
152
  if (!date) {
151
153
  onChange(null, null);
152
154
  return;
@@ -163,7 +165,7 @@ var ProRangeLimit = function ProRangeLimit(props) {
163
165
  };
164
166
 
165
167
  // 长期选择框change
166
- var handleForeverChange = function handleForeverChange(e) {
168
+ var handleForeverChange = e => {
167
169
  var _ref8 = value || [],
168
170
  _ref9 = _slicedToArray(_ref8, 1),
169
171
  start = _ref9[0];
@@ -189,7 +191,7 @@ var ProRangeLimit = function ProRangeLimit(props) {
189
191
  if (isObject(_rest.showTime)) {
190
192
  _rest.showTime = Object.assign(_defaultShowTime, _rest.showTime);
191
193
  }
192
- return /*#__PURE__*/_jsxs(Space.Compact, {
194
+ return /*#__PURE__*/_jsxs(_Space.Compact, {
193
195
  className: "pro-range-limit",
194
196
  children: [/*#__PURE__*/_jsx(RangePicker, _objectSpread(_objectSpread(_objectSpread({
195
197
  allowClear: true,
@@ -201,7 +203,7 @@ var ProRangeLimit = function ProRangeLimit(props) {
201
203
  onChange: handleRangeChange
202
204
  })), limit && /*#__PURE__*/_jsx("div", {
203
205
  className: className,
204
- children: /*#__PURE__*/_jsx(Checkbox, {
206
+ children: /*#__PURE__*/_jsx(_Checkbox, {
205
207
  checked: _isForever,
206
208
  disabled: _disabled === null || _disabled === void 0 ? void 0 : _disabled[1],
207
209
  onChange: handleForeverChange,
@@ -1,16 +1,16 @@
1
1
  import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
2
2
  import dayjs from 'dayjs';
3
3
  import { useState } from 'react';
4
- var useControlled = function useControlled(props) {
4
+ var useControlled = props => {
5
5
  var value = props.value,
6
6
  _props$onChange = props.onChange,
7
- onChange = _props$onChange === void 0 ? function () {} : _props$onChange,
7
+ onChange = _props$onChange === void 0 ? () => {} : _props$onChange,
8
8
  format = props.format;
9
9
  var _useState = useState(value),
10
10
  _useState2 = _slicedToArray(_useState, 2),
11
11
  valueState = _useState2[0],
12
12
  setValueState = _useState2[1];
13
- var handleChange = function handleChange(value) {
13
+ var handleChange = value => {
14
14
  var _value = value && value.startOf('day').format(format);
15
15
  if (!('value' in props)) {
16
16
  setValueState(value);
@@ -1,10 +1,14 @@
1
+ import "antd/es/space/style";
2
+ import _Space from "antd/es/space";
3
+ import "antd/es/checkbox/style";
4
+ import _Checkbox from "antd/es/checkbox";
5
+ import "antd/es/date-picker/style";
6
+ import _DatePicker from "antd/es/date-picker";
1
7
  import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
2
8
  import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
3
- import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
4
9
  import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
5
10
  var _excluded = ["format", "disabled", "foreverDate", "foreverText", "valueType", "otherProps", "limit"],
6
11
  _excluded2 = ["mode"];
7
- import { Checkbox, DatePicker, Space } from 'antd';
8
12
  import classNames from 'classnames';
9
13
  import { omit, isObject, uniq, isFunction } from 'lodash';
10
14
  import dayjs from 'dayjs';
@@ -19,7 +23,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
19
23
  import { jsxs as _jsxs } from "react/jsx-runtime";
20
24
  // 永久有效默认值
21
25
 
22
- export var ProTimeLimit = function ProTimeLimit(props) {
26
+ export var ProTimeLimit = props => {
23
27
  var _props$format = props.format,
24
28
  format = _props$format === void 0 ? 'YYYY-MM-DD' : _props$format,
25
29
  disabled = props.disabled,
@@ -44,9 +48,7 @@ export var ProTimeLimit = function ProTimeLimit(props) {
44
48
  if (isFunction(format)) {
45
49
  tempFormat = [];
46
50
  }
47
- var _format = uniq([].concat(_toConsumableArray(tempFormat), ['YYYY-MM-DD', 'YYYYMMDD', 'YYYY/MM/DD', 'YYYY_MM_DD', 'YYYY.MM.DD'])).filter(function (formatKey) {
48
- return !!formatKey;
49
- });
51
+ var _format = uniq([...tempFormat, 'YYYY-MM-DD', 'YYYYMMDD', 'YYYY/MM/DD', 'YYYY_MM_DD', 'YYYY.MM.DD']).filter(formatKey => !!formatKey);
50
52
 
51
53
  // dateTime模式下默认开启time选择
52
54
  var _rest = _objectSpread({}, rest);
@@ -63,7 +65,7 @@ export var ProTimeLimit = function ProTimeLimit(props) {
63
65
  var _defaultShowTime = {
64
66
  format: 'HH:mm:ss'
65
67
  };
66
- var _useMemo = useMemo(function () {
68
+ var _useMemo = useMemo(() => {
67
69
  // 使用健壮的日期解析方式
68
70
  var foreverDayjs = dayjs(_foreverDate);
69
71
  if (!foreverDayjs.isValid()) {
@@ -82,18 +84,18 @@ export var ProTimeLimit = function ProTimeLimit(props) {
82
84
 
83
85
  // 管理value的受控状态
84
86
  var _useControlled = useControlled(_objectSpread({
85
- format: format
87
+ format
86
88
  }, props)),
87
89
  _useControlled2 = _slicedToArray(_useControlled, 2),
88
90
  value = _useControlled2[0],
89
91
  onChange = _useControlled2[1];
90
- var isForever = useMemo(function () {
92
+ var isForever = useMemo(() => {
91
93
  if (isObject(value)) {
92
94
  return foreverDayjs.format(format) === value.format(format);
93
95
  }
94
96
  return false;
95
97
  }, [foreverDayjs, value]);
96
- var foreverChange = function foreverChange(e) {
98
+ var foreverChange = e => {
97
99
  var checkedForever = e.target.checked;
98
100
  if (checkedForever) {
99
101
  // 直接使用计算好的 foreverDayjs,避免重新解析
@@ -101,7 +103,7 @@ export var ProTimeLimit = function ProTimeLimit(props) {
101
103
  } else {
102
104
  // 防止长期选择后,时间面板还是9999-01-01
103
105
  onChange(dayjs());
104
- setTimeout(function () {
106
+ setTimeout(() => {
105
107
  onChange(null);
106
108
  }, 0);
107
109
  }
@@ -135,9 +137,9 @@ export var ProTimeLimit = function ProTimeLimit(props) {
135
137
  'ant-input-disabled': disabled,
136
138
  'forever-checkbox': true
137
139
  });
138
- return /*#__PURE__*/_jsxs(Space.Compact, {
140
+ return /*#__PURE__*/_jsxs(_Space.Compact, {
139
141
  className: "pro-time-limit",
140
- children: [/*#__PURE__*/_jsx(DatePicker, _objectSpread(_objectSpread(_objectSpread({
142
+ children: [/*#__PURE__*/_jsx(_DatePicker, _objectSpread(_objectSpread(_objectSpread({
141
143
  defaultPickerValue: dayjs(),
142
144
  disabled: disabled || isForever
143
145
  }, initialConfig), omit(_rest, ['placeholder'])), {}, {
@@ -146,7 +148,7 @@ export var ProTimeLimit = function ProTimeLimit(props) {
146
148
  onChange: onChange
147
149
  })), limit && /*#__PURE__*/_jsx("div", {
148
150
  className: className,
149
- children: /*#__PURE__*/_jsx(Checkbox, {
151
+ children: /*#__PURE__*/_jsx(_Checkbox, {
150
152
  checked: isForever,
151
153
  disabled: disabled,
152
154
  onChange: foreverChange,
@@ -155,7 +157,7 @@ export var ProTimeLimit = function ProTimeLimit(props) {
155
157
  })]
156
158
  });
157
159
  };
158
- var LimitPick = function LimitPick(props) {
160
+ var LimitPick = props => {
159
161
  var _props$mode = props.mode,
160
162
  mode = _props$mode === void 0 ? 'DatePicker' : _props$mode,
161
163
  rest = _objectWithoutProperties(props, _excluded2);
@@ -1,9 +1,10 @@
1
- import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
1
+ import "antd/es/tooltip/style";
2
+ import _Tooltip from "antd/es/tooltip";
3
+ import "antd/es/space/style";
4
+ import _Space from "antd/es/space";
2
5
  import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
3
- import _typeof from "@babel/runtime/helpers/esm/typeof";
4
6
  import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
5
7
  var _excluded = ["name", "names", "namesStr", "form", "onDiff", "children", "type", "diffConfig", "valuePropName", "normalize", "getValueProps", "viewRender"];
6
- import { Space, Tooltip } from 'antd';
7
8
  import classNames from 'classnames';
8
9
  import { get } from 'lodash';
9
10
  import React, { useMemo } from 'react';
@@ -13,7 +14,7 @@ import { isEmpty } from "../../../utils";
13
14
  import { jsxs as _jsxs } from "react/jsx-runtime";
14
15
  import { jsx as _jsx } from "react/jsx-runtime";
15
16
  var componentsWithFloatWindow = ['Select', 'ProSelect', 'ProEnum', 'ProTimeLimit', 'ProModalSelect', 'ProCascader', 'DataPicker', 'RangePicker', 'TimePicker'];
16
- var ChangedWrapper = function ChangedWrapper(props) {
17
+ var ChangedWrapper = props => {
17
18
  var _diffConfig$toolTip, _children$props, _children$props2, _children$props3;
18
19
  var name = props.name,
19
20
  names = props.names,
@@ -38,11 +39,9 @@ var ChangedWrapper = function ChangedWrapper(props) {
38
39
  scrollFollowParent = _diffConfig$scrollFol === void 0 ? true : _diffConfig$scrollFol;
39
40
  var toolTip = (_diffConfig$toolTip = diffConfig.toolTip) !== null && _diffConfig$toolTip !== void 0 ? _diffConfig$toolTip : true;
40
41
  var isWatch = toolTip && !['FormList', 'ProEditTable'].includes(type);
41
- var originalValue = names !== null && names !== void 0 && names.length ? names.map(function (name) {
42
- return get(originalValues, name);
43
- }) : get(originalValues, name);
42
+ var originalValue = names !== null && names !== void 0 && names.length ? names.map(name => get(originalValues, name)) : get(originalValues, name);
44
43
  var noChange = !onDiff && (!originalValues || isDiffAll ? false : isEmpty(originalValue));
45
- var diffType = useMemo(function () {
44
+ var diffType = useMemo(() => {
46
45
  if (!isWatch || noChange) return 'same';
47
46
  var _value = normalize ? normalize(props[valuePropName], undefined, undefined, true) // true 代表是值比对时的调用
48
47
  : props[valuePropName];
@@ -57,27 +56,28 @@ var ChangedWrapper = function ChangedWrapper(props) {
57
56
  return diffOriginal({
58
57
  value: _value,
59
58
  originalValue: _originalValue,
60
- form: form,
61
- onDiff: onDiff,
59
+ form,
60
+ onDiff,
62
61
  type: props.type
63
62
  });
64
- }, [isWatch, noChange, props[valuePropName], originalValue, _typeof(onDiff)]);
63
+ }, [isWatch, noChange, props[valuePropName], originalValue, typeof onDiff]);
65
64
  var isAdd = diffType === 'add';
66
65
  var isChanged = diffType === 'changed';
67
- var tipContent = useMemo(function () {
66
+ var tipContent = useMemo(() => {
68
67
  if (!isWatch || noChange) return undefined;
69
68
  var valueProps = getValueProps ? getValueProps(originalValue, true) : {
70
69
  value: originalValue
71
70
  };
72
71
  if (viewRender) {
73
72
  return viewRender(valueProps === null || valueProps === void 0 ? void 0 : valueProps.value, originalValues, {
74
- form: form
73
+ form
75
74
  });
76
75
  }
77
- return /*#__PURE__*/React.isValidElement(children) ? /*#__PURE__*/React.cloneElement(children, _objectSpread(_objectSpread({}, children.props), {}, _defineProperty({
78
- isView: true
79
- }, valuePropName, valueProps === null || valueProps === void 0 ? void 0 : valueProps.value))) : undefined;
80
- }, [_typeof(viewRender), originalValue, children]);
76
+ return /*#__PURE__*/React.isValidElement(children) ? /*#__PURE__*/React.cloneElement(children, _objectSpread(_objectSpread({}, children.props), {}, {
77
+ isView: true,
78
+ [valuePropName]: valueProps === null || valueProps === void 0 ? void 0 : valueProps.value
79
+ })) : undefined;
80
+ }, [typeof viewRender, originalValue, children]);
81
81
  if (!isWatch || noChange) {
82
82
  // 嵌套子组件
83
83
  var isNestedField = ['ProEditTable'].includes(type);
@@ -87,7 +87,7 @@ var ChangedWrapper = function ChangedWrapper(props) {
87
87
  }
88
88
 
89
89
  // eslint-disable-next-line react-hooks/rules-of-hooks
90
- var tipOpenCalc = function tipOpenCalc() {
90
+ var tipOpenCalc = () => {
91
91
  if (!toolTip) return false;
92
92
 
93
93
  // 传入undefined 鼠标移入显示移出隐藏 获得焦点时不显示气泡
@@ -106,26 +106,24 @@ var ChangedWrapper = function ChangedWrapper(props) {
106
106
  });
107
107
  var open = tipOpenCalc();
108
108
  var scrollFollowParentConfig = componentsWithFloatWindow.includes(type) ? {
109
- scrollFollowParent: scrollFollowParent
109
+ scrollFollowParent
110
110
  } : {};
111
- return /*#__PURE__*/_jsx(Tooltip, {
111
+ return /*#__PURE__*/_jsx(_Tooltip, {
112
112
  open: open,
113
- getPopupContainer: function getPopupContainer(trigger) {
114
- return scrollFollowParent ? trigger.parentElement : document.body;
115
- },
113
+ getPopupContainer: trigger => scrollFollowParent ? trigger.parentElement : document.body,
116
114
  classNames: {
117
115
  root: 'original-value-tooltip'
118
116
  },
119
117
  placement: "topLeft",
120
118
  autoAdjustOverflow: false,
121
- title: /*#__PURE__*/_jsxs(Space, {
119
+ title: /*#__PURE__*/_jsxs(_Space, {
122
120
  direction: "vertical",
123
121
  className: "changed-tooltip",
124
- children: [/*#__PURE__*/_jsxs(Space, {
122
+ children: [/*#__PURE__*/_jsxs(_Space, {
125
123
  align: "start",
126
124
  className: "original-value-container",
127
125
  children: ["\u521D\u59CB\u503C\uFF1A", tipContent]
128
- }), _showEllipse && /*#__PURE__*/_jsxs(Space, {
126
+ }), _showEllipse && /*#__PURE__*/_jsxs(_Space, {
129
127
  className: "current-value-container",
130
128
  children: ["\u5F53\u524D\u503C\uFF1A", /*#__PURE__*/React.isValidElement(children) ? /*#__PURE__*/React.cloneElement(children, _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, children.props), rest), scrollFollowParentConfig), {}, {
131
129
  isView: true