@zat-design/sisyphus-react 3.0.16-beta.4 → 3.1.4

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 (807) hide show
  1. package/README.md +7 -7
  2. package/dist/index.esm.css +1552 -932
  3. package/es/ProAction/index.d.ts +7 -0
  4. package/es/ProAction/index.js +220 -0
  5. package/es/ProAction/index.less +7 -0
  6. package/es/ProAction/propsType.d.ts +38 -0
  7. package/es/ProConfigProvider/index.d.ts +5 -4
  8. package/es/ProConfigProvider/index.js +9 -5
  9. package/es/ProDownload/index.d.ts +4 -2
  10. package/es/ProDownload/index.js +71 -58
  11. package/es/ProDownload/propsType.d.ts +18 -6
  12. package/es/ProDownload/style/index.less +7 -0
  13. package/es/ProDownload/utils.d.ts +55 -0
  14. package/es/ProDownload/{DownloadHelper.js → utils.js} +96 -74
  15. package/es/ProDrawerForm/components/ProDrawer/index.js +53 -42
  16. package/es/ProDrawerForm/components/ProModal/index.js +49 -30
  17. package/es/ProDrawerForm/index.js +43 -19
  18. package/es/ProDrawerForm/propsType.d.ts +7 -3
  19. package/es/ProDrawerForm/style/index.less +33 -23
  20. package/es/ProEditLabel/components/RenderProForm.js +25 -19
  21. package/es/ProEditLabel/index.js +23 -16
  22. package/es/ProEditLabel/propsType.d.ts +3 -3
  23. package/es/ProEditLabel/style/index.less +10 -12
  24. package/es/ProEditTable/components/ActionButton/index.d.ts +1 -2
  25. package/es/ProEditTable/components/ActionButton/index.js +83 -45
  26. package/es/ProEditTable/components/DndWrapper/index.js +44 -32
  27. package/es/ProEditTable/components/RenderField/index.d.ts +1 -2
  28. package/es/ProEditTable/components/RenderField/index.js +158 -134
  29. package/es/ProEditTable/components/RenderToolbar/index.d.ts +1 -2
  30. package/es/ProEditTable/components/RenderToolbar/index.js +42 -31
  31. package/es/ProEditTable/components/Summary/index.d.ts +1 -2
  32. package/es/ProEditTable/components/Summary/index.js +21 -14
  33. package/es/ProEditTable/components/Validator/index.d.ts +3 -3
  34. package/es/ProEditTable/components/Validator/index.js +19 -15
  35. package/es/ProEditTable/index.js +126 -69
  36. package/es/ProEditTable/propsType.d.ts +47 -14
  37. package/es/ProEditTable/style/index.less +143 -53
  38. package/es/ProEditTable/utils/config.d.ts +2 -3
  39. package/es/ProEditTable/utils/config.js +53 -40
  40. package/es/ProEditTable/utils/index.d.ts +1 -2
  41. package/es/ProEditTable/utils/index.js +97 -82
  42. package/es/ProEditTable/utils/transform.d.ts +2 -2
  43. package/es/ProEditTable/utils/transform.js +1 -1
  44. package/es/ProEnum/components/Tag.d.ts +7 -0
  45. package/es/ProEnum/components/Tag.js +40 -0
  46. package/es/ProEnum/hooks/useEnum.d.ts +21 -0
  47. package/es/ProEnum/{useEnum.js → hooks/useEnum.js} +15 -19
  48. package/es/ProEnum/hooks/useEnumRequest.d.ts +4 -0
  49. package/es/ProEnum/hooks/useEnumRequest.js +287 -0
  50. package/es/ProEnum/index.d.ts +4 -4
  51. package/es/ProEnum/index.js +85 -40
  52. package/es/ProEnum/propsType.d.ts +17 -6
  53. package/es/ProEnum/propsType.js +6 -0
  54. package/es/ProEnum/style/index.less +23 -0
  55. package/es/ProEnum/utils/eventCenter.d.ts +1 -0
  56. package/es/ProEnum/utils/eventCenter.js +39 -0
  57. package/es/ProEnum/utils/getEnumLabel.d.ts +2 -0
  58. package/es/ProEnum/utils/getEnumLabel.js +81 -0
  59. package/{lib/ProEnum/utils.d.ts → es/ProEnum/utils/index.d.ts} +1 -1
  60. package/es/ProForm/components/Container.js +14 -10
  61. package/es/ProForm/components/FormFooter/index.d.ts +1 -0
  62. package/es/ProForm/components/FormFooter/index.js +50 -14
  63. package/es/ProForm/components/FormFooter/propsType.d.ts +3 -1
  64. package/es/ProForm/components/base/Checkbox/index.d.ts +1 -1
  65. package/es/ProForm/components/base/Checkbox/index.js +18 -13
  66. package/es/ProForm/components/base/DatePicker/index.d.ts +6 -5
  67. package/es/ProForm/components/base/DatePicker/index.js +16 -15
  68. package/es/ProForm/components/base/Input/index.d.ts +1 -2
  69. package/es/ProForm/components/base/Input/index.js +9 -7
  70. package/es/ProForm/components/base/InputNumber/index.d.ts +1 -1
  71. package/es/ProForm/components/base/InputNumber/index.js +96 -46
  72. package/es/ProForm/components/base/ProCascader/index.d.ts +14 -0
  73. package/es/ProForm/components/base/ProCascader/index.js +72 -0
  74. package/es/ProForm/components/base/Radio/index.js +13 -11
  75. package/es/ProForm/components/base/RangePicker/index.d.ts +4 -3
  76. package/es/ProForm/components/base/RangePicker/index.js +16 -11
  77. package/es/ProForm/components/base/Select/index.d.ts +1 -0
  78. package/es/ProForm/components/base/Select/index.js +18 -11
  79. package/es/ProForm/components/base/Switch/index.js +10 -7
  80. package/es/ProForm/components/base/SwitchCheckbox/index.js +25 -17
  81. package/es/ProForm/components/base/SwitchCheckbox/style/index.less +2 -3
  82. package/es/ProForm/components/base/TextArea/index.d.ts +2 -1
  83. package/es/ProForm/components/base/TextArea/index.js +19 -11
  84. package/es/ProForm/components/base/TextArea/index.less +11 -0
  85. package/es/ProForm/components/base/TimePicker/index.d.ts +13 -0
  86. package/es/ProForm/components/base/TimePicker/index.js +42 -0
  87. package/es/ProForm/components/base/TimePicker/style/index.less +3 -0
  88. package/es/ProForm/components/combination/Container/index.d.ts +4 -0
  89. package/es/ProForm/components/combination/Container/index.js +58 -0
  90. package/es/ProForm/components/combination/Container/propsType.d.ts +10 -0
  91. package/es/ProForm/components/combination/Container/style/index.less +37 -0
  92. package/{lib/ProForm/components/base → es/ProForm/components/combination}/FormList/components/ActionButton.d.ts +6 -3
  93. package/es/ProForm/components/combination/FormList/components/ActionButton.js +242 -0
  94. package/es/ProForm/components/combination/FormList/components/BlockFields.d.ts +19 -0
  95. package/es/ProForm/components/{base → combination}/FormList/components/BlockFields.js +34 -30
  96. package/es/ProForm/components/{base → combination}/FormList/components/BlockTitle.d.ts +2 -4
  97. package/es/ProForm/components/{base → combination}/FormList/components/BlockTitle.js +6 -4
  98. package/es/ProForm/components/{base → combination}/FormList/components/LineFields.d.ts +7 -4
  99. package/es/ProForm/components/combination/FormList/components/LineFields.js +85 -0
  100. package/{lib/ProForm/components/base → es/ProForm/components/combination}/FormList/components/ToolbarButton.d.ts +3 -3
  101. package/es/ProForm/components/combination/FormList/components/ToolbarButton.js +107 -0
  102. package/es/ProForm/components/combination/FormList/index.d.ts +4 -0
  103. package/es/ProForm/components/combination/FormList/index.js +129 -0
  104. package/es/ProForm/components/combination/FormList/propsType.d.ts +62 -0
  105. package/es/ProForm/components/combination/FormList/style/index.less +71 -0
  106. package/es/ProForm/components/combination/Group/index.d.ts +4 -0
  107. package/es/ProForm/components/combination/Group/index.js +71 -0
  108. package/es/ProForm/components/combination/Group/propsType.d.ts +25 -0
  109. package/es/ProForm/components/combination/Group/style/index.less +107 -0
  110. package/es/ProForm/components/combination/Group/utils.d.ts +10 -0
  111. package/es/ProForm/components/combination/Group/utils.js +49 -0
  112. package/es/ProForm/components/combination/ProAddressBar/index.d.ts +2 -2
  113. package/es/ProForm/components/combination/ProAddressBar/index.js +73 -53
  114. package/es/ProForm/components/combination/ProAddressBar/propsType.d.ts +3 -0
  115. package/es/ProForm/components/combination/ProCombination/index.js +43 -37
  116. package/es/ProForm/components/combination/ProModalSelect/index.d.ts +1 -1
  117. package/es/ProForm/components/combination/ProModalSelect/index.js +163 -100
  118. package/es/ProForm/components/combination/ProModalSelect/propsType.d.ts +2 -2
  119. package/es/ProForm/components/combination/ProModalSelect/style/index.less +28 -9
  120. package/es/ProForm/components/combination/ProNumberRange/index.d.ts +1 -2
  121. package/es/ProForm/components/combination/ProNumberRange/index.js +60 -53
  122. package/es/ProForm/components/combination/ProNumberRange/propsType.d.ts +4 -0
  123. package/es/ProForm/components/combination/ProRangeLimit/index.d.ts +3 -2
  124. package/es/ProForm/components/combination/ProRangeLimit/index.js +42 -32
  125. package/es/ProForm/components/combination/ProTimeLimit/index.d.ts +1 -1
  126. package/es/ProForm/components/combination/ProTimeLimit/index.js +40 -47
  127. package/es/ProForm/components/combination/ProTimeLimit/style/index.less +2 -1
  128. package/es/ProForm/components/index.d.ts +7 -3
  129. package/es/ProForm/components/index.js +7 -3
  130. package/es/ProForm/components/old/EnumSelect/index.js +63 -55
  131. package/es/ProForm/components/old/EnumSelect/interface.d.ts +1 -1
  132. package/es/ProForm/components/old/InputRange/index.d.ts +1 -2
  133. package/es/ProForm/components/old/InputRange/index.js +45 -44
  134. package/es/ProForm/components/old/InputWithSuffix/index.d.ts +1 -2
  135. package/es/ProForm/components/old/InputWithSuffix/index.js +22 -20
  136. package/es/ProForm/components/old/InputWithSuffix/propsTypes.d.ts +1 -1
  137. package/es/ProForm/components/old/ProAddress/index.d.ts +3 -3
  138. package/es/ProForm/components/old/ProAddress/index.js +79 -67
  139. package/es/ProForm/components/old/ProCertNo/index.d.ts +2 -2
  140. package/es/ProForm/components/old/ProCertNo/index.js +34 -29
  141. package/es/ProForm/components/old/ProCertNo/propsType.d.ts +1 -1
  142. package/es/ProForm/components/old/ProCertValidity/index.d.ts +2 -2
  143. package/es/ProForm/components/old/ProCertValidity/index.js +40 -34
  144. package/es/ProForm/components/old/ProCertValidity/propsType.d.ts +2 -2
  145. package/es/ProForm/components/old/ProRangeBox/index.d.ts +2 -2
  146. package/es/ProForm/components/old/ProRangeBox/index.js +65 -57
  147. package/es/ProForm/components/render/Render.js +157 -96
  148. package/es/ProForm/components/render/RenderFields.d.ts +3 -1
  149. package/es/ProForm/components/render/RenderFields.js +54 -29
  150. package/es/ProForm/components/render/propsType.d.ts +64 -8
  151. package/es/ProForm/components/render/propsType.js +0 -6
  152. package/es/ProForm/index.js +102 -66
  153. package/es/ProForm/propsType.d.ts +7 -2
  154. package/es/ProForm/style/index.less +77 -75
  155. package/es/ProForm/utils/index.d.ts +27 -2
  156. package/es/ProForm/utils/index.js +139 -31
  157. package/es/ProForm/utils/rulesCreator.d.ts +1 -1
  158. package/es/ProForm/utils/rulesCreator.js +12 -2
  159. package/es/ProForm/utils/transformNames.d.ts +1 -1
  160. package/es/ProForm/utils/transformValue.js +6 -9
  161. package/es/ProForm/utils/useChanged.js +6 -2
  162. package/es/ProForm/utils/useFieldProps.d.ts +4 -0
  163. package/es/ProForm/utils/useFieldProps.js +6 -0
  164. package/es/ProForm/utils/useForm.js +32 -48
  165. package/es/ProForm/utils/useRules.d.ts +16 -0
  166. package/es/ProForm/utils/useRules.js +62 -0
  167. package/es/ProForm/utils/useShouldUpdate.d.ts +3 -1
  168. package/es/ProForm/utils/useShouldUpdate.js +23 -22
  169. package/es/ProForm/utils/valueType.js +1 -1
  170. package/es/ProIcon/index.js +26 -26
  171. package/es/ProIcon/style/index.less +15 -0
  172. package/es/ProIcon/symbolIcon.js +6 -6
  173. package/es/ProLayout/components/Layout/Header/index.js +20 -13
  174. package/es/ProLayout/components/Layout/Header/style/index.less +6 -6
  175. package/es/ProLayout/components/Layout/Icon/Icon.js +8 -6
  176. package/es/ProLayout/components/Layout/Menu/FoldMenu/index.d.ts +1 -1
  177. package/es/ProLayout/components/Layout/Menu/FoldMenu/index.js +83 -72
  178. package/es/ProLayout/components/Layout/Menu/FoldMenu/style/index.less +8 -8
  179. package/es/ProLayout/components/Layout/Menu/OpenMenu/index.d.ts +1 -2
  180. package/es/ProLayout/components/Layout/Menu/OpenMenu/index.js +76 -50
  181. package/es/ProLayout/components/Layout/Menu/OpenMenu/propsType.d.ts +2 -0
  182. package/es/ProLayout/components/Layout/Menu/OpenMenu/style/index.less +23 -12
  183. package/es/ProLayout/components/Layout/Menu/SideMenu/index.js +22 -17
  184. package/es/ProLayout/components/Layout/Menu/SideMenu/style/index.less +5 -4
  185. package/es/ProLayout/components/Layout/Menu/index.js +36 -34
  186. package/es/ProLayout/components/Layout/Menu/style/index.less +22 -3
  187. package/es/ProLayout/components/Layout/Notice/index.js +15 -13
  188. package/es/ProLayout/components/Layout/Notice/style/index.less +3 -3
  189. package/es/ProLayout/components/ProCollapse/PropTypes.d.ts +1 -1
  190. package/es/ProLayout/components/ProCollapse/index.d.ts +1 -2
  191. package/es/ProLayout/components/ProCollapse/index.js +57 -43
  192. package/es/ProLayout/components/ProCollapse/style/index.less +10 -4
  193. package/es/ProLayout/components/ProFooter/index.d.ts +2 -2
  194. package/es/ProLayout/components/ProFooter/index.js +10 -6
  195. package/es/ProLayout/components/ProFooter/style/index.less +2 -2
  196. package/es/ProLayout/components/ProHeader/PropTypes.d.ts +30 -7
  197. package/es/ProLayout/components/ProHeader/components/Copy/index.d.ts +1 -2
  198. package/es/ProLayout/components/ProHeader/components/Copy/index.js +4 -7
  199. package/es/ProLayout/components/ProHeader/index.d.ts +1 -1
  200. package/es/ProLayout/components/ProHeader/index.js +253 -158
  201. package/es/ProLayout/components/ProHeader/style/index.less +29 -14
  202. package/es/ProLayout/index.d.ts +10 -6
  203. package/es/ProLayout/index.js +44 -26
  204. package/es/ProLayout/propTypes.d.ts +2 -0
  205. package/es/ProLayout/style/index.less +156 -1
  206. package/es/ProSelect/components/AdaptiveTooltip.d.ts +4 -0
  207. package/es/ProSelect/components/AdaptiveTooltip.js +46 -0
  208. package/es/ProSelect/index.d.ts +2 -1
  209. package/es/ProSelect/index.js +85 -59
  210. package/es/ProSelect/index.less +8 -0
  211. package/es/ProSelect/propsType.d.ts +19 -9
  212. package/es/ProStep/components/Anchor/index.d.ts +1 -2
  213. package/es/ProStep/components/Anchor/index.js +45 -34
  214. package/es/ProStep/components/Item/index.d.ts +2 -6
  215. package/es/ProStep/components/Item/index.js +23 -7
  216. package/es/ProStep/components/Step/index.d.ts +1 -2
  217. package/es/ProStep/components/Step/index.js +19 -14
  218. package/es/ProStep/index.d.ts +5 -9
  219. package/es/ProStep/index.js +94 -20
  220. package/es/ProStep/propsType.d.ts +11 -1
  221. package/es/ProStep/style/index.less +10 -24
  222. package/es/ProTable/components/RenderColumn/index.d.ts +14 -0
  223. package/es/ProTable/components/RenderColumn/index.js +75 -0
  224. package/es/ProTable/components/ResizableLine/index.d.ts +1 -2
  225. package/es/ProTable/components/ResizableLine/index.js +2 -2
  226. package/es/ProTable/components/TableResizable/index.d.ts +1 -2
  227. package/es/ProTable/components/TableResizable/index.js +16 -12
  228. package/es/ProTable/components/TooltipTitle/index.d.ts +11 -0
  229. package/es/ProTable/components/TooltipTitle/index.js +23 -0
  230. package/es/ProTable/index.d.ts +3 -3
  231. package/es/ProTable/index.js +137 -112
  232. package/es/ProTable/propsType.d.ts +40 -26
  233. package/es/ProTable/style/index.less +66 -32
  234. package/es/ProTable/useAntdTable.d.ts +11 -7
  235. package/es/ProTable/useAntdTable.js +107 -58
  236. package/es/ProTable/utils.d.ts +8 -0
  237. package/es/ProTable/utils.js +167 -110
  238. package/es/ProTabs/components/Card/index.d.ts +1 -2
  239. package/es/ProTabs/components/Card/index.js +45 -17
  240. package/es/ProTabs/index.d.ts +1 -1
  241. package/es/ProTabs/index.js +38 -27
  242. package/es/ProTabs/propType.d.ts +5 -0
  243. package/es/ProTabs/style/index.less +15 -3
  244. package/es/ProThemeTools/component/PrdTools/index.d.ts +1 -2
  245. package/es/ProThemeTools/component/PrdTools/index.js +214 -154
  246. package/es/ProThemeTools/component/PrdTools/style/index.less +3 -3
  247. package/es/ProThemeTools/index.d.ts +1 -2
  248. package/es/ProThemeTools/index.js +51 -55
  249. package/es/ProThemeTools/propsType.d.ts +10 -2
  250. package/es/ProThemeTools/utils/index.d.ts +5 -0
  251. package/es/ProThemeTools/utils/index.js +27 -0
  252. package/es/ProTooltip/index.d.ts +1 -2
  253. package/es/ProTooltip/index.js +232 -46
  254. package/es/ProTooltip/propsType.d.ts +3 -0
  255. package/es/ProTooltip/style/index.less +19 -8
  256. package/es/ProTree/components/CloseIcon.d.ts +3 -0
  257. package/es/ProTree/components/CloseIcon.js +30 -0
  258. package/es/ProTree/components/List.d.ts +17 -0
  259. package/es/ProTree/components/List.js +68 -0
  260. package/es/ProTree/components/ProTree.d.ts +4 -0
  261. package/es/ProTree/components/ProTree.js +446 -0
  262. package/es/ProTree/components/SearchTitle.d.ts +9 -0
  263. package/es/ProTree/components/SearchTitle.js +42 -0
  264. package/es/ProTree/components/Tree.d.ts +27 -0
  265. package/es/ProTree/components/Tree.js +344 -0
  266. package/es/ProTree/components/index.d.ts +4 -0
  267. package/es/ProTree/components/index.js +5 -0
  268. package/es/ProTree/index.d.ts +3 -0
  269. package/es/ProTree/index.js +25 -0
  270. package/es/ProTree/propsType.d.ts +217 -0
  271. package/es/ProTree/propsType.js +1 -0
  272. package/es/ProTree/style/index.less +289 -0
  273. package/es/ProTree/utils.d.ts +37 -0
  274. package/es/ProTree/utils.js +183 -0
  275. package/es/ProTreeModal/components/Cascader.d.ts +14 -0
  276. package/es/ProTreeModal/components/Cascader.js +99 -0
  277. package/es/ProTreeModal/components/CloseIcon.d.ts +2 -2
  278. package/es/ProTreeModal/components/CloseIcon.js +25 -20
  279. package/es/ProTreeModal/components/List.d.ts +11 -3
  280. package/es/ProTreeModal/components/List.js +184 -36
  281. package/es/ProTreeModal/components/SearchTitle.d.ts +3 -3
  282. package/es/ProTreeModal/components/SearchTitle.js +16 -9
  283. package/es/{ProTransferModal/components/SortableItem/index.d.ts → ProTreeModal/components/SortableItem.d.ts} +1 -0
  284. package/es/ProTreeModal/components/SortableItem.js +60 -0
  285. package/es/ProTreeModal/components/Tree.d.ts +14 -4
  286. package/es/ProTreeModal/components/Tree.js +165 -94
  287. package/es/ProTreeModal/components/Trigger.d.ts +5 -2
  288. package/es/ProTreeModal/components/Trigger.js +46 -21
  289. package/es/ProTreeModal/components/index.d.ts +1 -0
  290. package/es/ProTreeModal/components/index.js +2 -1
  291. package/es/ProTreeModal/index.d.ts +2 -2
  292. package/es/ProTreeModal/index.js +513 -146
  293. package/es/ProTreeModal/propsType.d.ts +71 -14
  294. package/es/ProTreeModal/style/index.less +231 -50
  295. package/es/ProTreeModal/utils.d.ts +26 -14
  296. package/es/ProTreeModal/utils.js +103 -40
  297. package/es/ProTreeSelect/index.d.ts +1 -1
  298. package/es/ProTreeSelect/index.js +157 -72
  299. package/es/ProTreeSelect/propsType.d.ts +11 -9
  300. package/es/ProTreeSelect/style/index.less +94 -90
  301. package/es/ProUpload/components/ButtonRender.d.ts +18 -0
  302. package/es/ProUpload/components/ButtonRender.js +71 -0
  303. package/es/ProUpload/components/DragRender.d.ts +20 -0
  304. package/es/ProUpload/components/DragRender.js +179 -0
  305. package/es/ProUpload/components/DraggableUploadListItem.d.ts +2 -0
  306. package/es/ProUpload/components/DraggableUploadListItem.js +29 -0
  307. package/es/ProUpload/components/Example.d.ts +10 -0
  308. package/es/ProUpload/components/Example.js +40 -0
  309. package/{lib/ProUpload → es/ProUpload/components}/FileItem.d.ts +2 -2
  310. package/es/ProUpload/components/FileItem.js +212 -0
  311. package/es/ProUpload/components/ImageRender.d.ts +18 -0
  312. package/es/ProUpload/components/ImageRender.js +267 -0
  313. package/es/ProUpload/index.js +183 -301
  314. package/es/ProUpload/propsType.d.ts +61 -7
  315. package/es/ProUpload/style/fileItem.less +126 -138
  316. package/es/ProUpload/style/index.less +185 -115
  317. package/es/ProUpload/uitls.d.ts +3 -0
  318. package/es/ProUpload/uitls.js +14 -0
  319. package/es/ProUtils/utils/index.js +1 -1
  320. package/es/ProViewer/index.d.ts +1 -1
  321. package/es/ProViewer/index.js +35 -29
  322. package/es/ProWaterMark/index.js +9 -7
  323. package/es/assets/delete.svg +1 -1
  324. package/es/{ProUpload/style → assets}/download.svg +1 -1
  325. package/es/assets/input-search.svg +11 -0
  326. package/es/global.less +2 -2
  327. package/es/index.d.ts +2 -3
  328. package/es/index.js +4 -4
  329. package/es/old/ProBackBtn/index.js +6 -5
  330. package/es/old/ProCertValidity/index.d.ts +3 -3
  331. package/es/old/ProCertValidity/index.js +70 -65
  332. package/es/old/ProCertValidity/propsType.d.ts +2 -2
  333. package/es/old/ProEditableTable/index.d.ts +1 -1
  334. package/es/old/ProEditableTable/index.js +90 -68
  335. package/es/old/ProEditableTable/propsType.d.ts +3 -3
  336. package/es/old/ProEditableTable/utils.js +141 -125
  337. package/es/style/components.less +3 -4
  338. package/es/style/theme/antd.less +11 -5
  339. package/es/style/theme/index.less +80 -161
  340. package/es/style/theme/tokens.less +88 -0
  341. package/es/tokens.d.ts +83 -0
  342. package/es/tokens.js +2 -3
  343. package/lib/ProAction/index.d.ts +7 -0
  344. package/lib/ProAction/index.js +224 -0
  345. package/lib/ProAction/index.less +7 -0
  346. package/lib/ProAction/propsType.d.ts +38 -0
  347. package/lib/ProConfigProvider/index.d.ts +5 -4
  348. package/lib/ProConfigProvider/index.js +11 -10
  349. package/lib/ProDownload/index.d.ts +4 -2
  350. package/lib/ProDownload/index.js +73 -60
  351. package/lib/ProDownload/propsType.d.ts +18 -6
  352. package/lib/ProDownload/style/index.less +7 -0
  353. package/lib/ProDownload/utils.d.ts +55 -0
  354. package/lib/ProDownload/{DownloadHelper.js → utils.js} +98 -78
  355. package/lib/ProDrawerForm/components/ProDrawer/index.js +54 -44
  356. package/lib/ProDrawerForm/components/ProModal/index.js +49 -31
  357. package/lib/ProDrawerForm/index.js +44 -21
  358. package/lib/ProDrawerForm/propsType.d.ts +7 -3
  359. package/lib/ProDrawerForm/style/index.less +33 -23
  360. package/lib/ProDrawerForm/utils/index.js +2 -3
  361. package/lib/ProEditLabel/components/RenderProForm.js +26 -22
  362. package/lib/ProEditLabel/index.js +24 -18
  363. package/lib/ProEditLabel/propsType.d.ts +3 -3
  364. package/lib/ProEditLabel/style/index.less +10 -12
  365. package/lib/ProEditLabel/utils/index.js +2 -3
  366. package/lib/ProEditTable/components/ActionButton/index.d.ts +1 -2
  367. package/lib/ProEditTable/components/ActionButton/index.js +84 -47
  368. package/lib/ProEditTable/components/DndWrapper/index.js +46 -36
  369. package/lib/ProEditTable/components/RenderField/index.d.ts +1 -2
  370. package/lib/ProEditTable/components/RenderField/index.js +158 -135
  371. package/lib/ProEditTable/components/RenderToolbar/index.d.ts +1 -2
  372. package/lib/ProEditTable/components/RenderToolbar/index.js +43 -33
  373. package/lib/ProEditTable/components/Summary/index.d.ts +1 -2
  374. package/lib/ProEditTable/components/Summary/index.js +22 -16
  375. package/lib/ProEditTable/components/Validator/index.d.ts +3 -3
  376. package/lib/ProEditTable/components/Validator/index.js +20 -18
  377. package/lib/ProEditTable/index.js +124 -71
  378. package/lib/ProEditTable/propsType.d.ts +47 -14
  379. package/lib/ProEditTable/style/index.less +143 -53
  380. package/lib/ProEditTable/utils/config.d.ts +2 -3
  381. package/lib/ProEditTable/utils/config.js +61 -55
  382. package/lib/ProEditTable/utils/index.d.ts +1 -2
  383. package/lib/ProEditTable/utils/index.js +98 -84
  384. package/lib/ProEditTable/utils/tools.js +7 -13
  385. package/lib/ProEditTable/utils/transform.d.ts +2 -2
  386. package/lib/ProEditTable/utils/transform.js +3 -4
  387. package/lib/ProEnum/components/Tag.d.ts +7 -0
  388. package/lib/ProEnum/components/Tag.js +47 -0
  389. package/lib/ProEnum/hooks/useEnum.d.ts +21 -0
  390. package/lib/ProEnum/{useEnum.js → hooks/useEnum.js} +18 -24
  391. package/lib/ProEnum/hooks/useEnumRequest.d.ts +4 -0
  392. package/lib/ProEnum/hooks/useEnumRequest.js +294 -0
  393. package/lib/ProEnum/index.d.ts +4 -4
  394. package/lib/ProEnum/index.js +86 -42
  395. package/lib/ProEnum/propsType.d.ts +17 -6
  396. package/lib/ProEnum/propsType.js +7 -1
  397. package/lib/ProEnum/style/index.less +23 -0
  398. package/lib/ProEnum/utils/eventCenter.d.ts +1 -0
  399. package/lib/ProEnum/utils/eventCenter.js +42 -0
  400. package/lib/ProEnum/utils/getEnumLabel.d.ts +2 -0
  401. package/lib/ProEnum/utils/getEnumLabel.js +88 -0
  402. package/{es/ProEnum/utils.d.ts → lib/ProEnum/utils/index.d.ts} +1 -1
  403. package/lib/ProForm/components/Container.js +15 -12
  404. package/lib/ProForm/components/FormFooter/index.d.ts +1 -0
  405. package/lib/ProForm/components/FormFooter/index.js +52 -18
  406. package/lib/ProForm/components/FormFooter/propsType.d.ts +3 -1
  407. package/lib/ProForm/components/base/Checkbox/index.d.ts +1 -1
  408. package/lib/ProForm/components/base/Checkbox/index.js +19 -15
  409. package/lib/ProForm/components/base/DatePicker/index.d.ts +6 -5
  410. package/lib/ProForm/components/base/DatePicker/index.js +18 -18
  411. package/lib/ProForm/components/base/Input/index.d.ts +1 -2
  412. package/lib/ProForm/components/base/Input/index.js +11 -10
  413. package/lib/ProForm/components/base/InputNumber/index.d.ts +1 -1
  414. package/lib/ProForm/components/base/InputNumber/index.js +98 -50
  415. package/lib/ProForm/components/base/ProCascader/index.d.ts +14 -0
  416. package/lib/ProForm/components/base/ProCascader/index.js +78 -0
  417. package/lib/ProForm/components/base/Radio/index.js +14 -13
  418. package/lib/ProForm/components/base/RangePicker/index.d.ts +4 -3
  419. package/lib/ProForm/components/base/RangePicker/index.js +13 -11
  420. package/lib/ProForm/components/base/Select/index.d.ts +1 -0
  421. package/lib/ProForm/components/base/Select/index.js +20 -14
  422. package/lib/ProForm/components/base/Switch/index.js +12 -10
  423. package/lib/ProForm/components/base/SwitchCheckbox/index.js +26 -20
  424. package/lib/ProForm/components/base/SwitchCheckbox/style/index.less +2 -3
  425. package/lib/ProForm/components/base/TextArea/index.d.ts +2 -1
  426. package/lib/ProForm/components/base/TextArea/index.js +21 -14
  427. package/lib/ProForm/components/base/TextArea/index.less +11 -0
  428. package/lib/ProForm/components/base/TimePicker/index.d.ts +13 -0
  429. package/lib/ProForm/components/base/TimePicker/index.js +48 -0
  430. package/lib/ProForm/components/base/TimePicker/style/index.less +3 -0
  431. package/lib/ProForm/components/combination/Container/index.d.ts +4 -0
  432. package/lib/ProForm/components/combination/Container/index.js +65 -0
  433. package/lib/ProForm/components/combination/Container/propsType.d.ts +10 -0
  434. package/lib/ProForm/components/combination/Container/style/index.less +37 -0
  435. package/{es/ProForm/components/base → lib/ProForm/components/combination}/FormList/components/ActionButton.d.ts +6 -3
  436. package/lib/ProForm/components/combination/FormList/components/ActionButton.js +243 -0
  437. package/lib/ProForm/components/combination/FormList/components/BlockFields.d.ts +19 -0
  438. package/lib/ProForm/components/{base → combination}/FormList/components/BlockFields.js +35 -33
  439. package/lib/ProForm/components/{base → combination}/FormList/components/BlockTitle.d.ts +2 -4
  440. package/lib/ProForm/components/{base → combination}/FormList/components/BlockTitle.js +7 -6
  441. package/lib/ProForm/components/{base → combination}/FormList/components/LineFields.d.ts +7 -4
  442. package/lib/ProForm/components/combination/FormList/components/LineFields.js +91 -0
  443. package/{es/ProForm/components/base → lib/ProForm/components/combination}/FormList/components/ToolbarButton.d.ts +3 -3
  444. package/lib/ProForm/components/combination/FormList/components/ToolbarButton.js +111 -0
  445. package/lib/ProForm/components/combination/FormList/index.d.ts +4 -0
  446. package/lib/ProForm/components/combination/FormList/index.js +135 -0
  447. package/lib/ProForm/components/combination/FormList/propsType.d.ts +62 -0
  448. package/lib/ProForm/components/combination/FormList/style/index.less +71 -0
  449. package/lib/ProForm/components/{base → combination}/FormList/utils.js +2 -3
  450. package/lib/ProForm/components/combination/Group/index.d.ts +4 -0
  451. package/lib/ProForm/components/combination/Group/index.js +75 -0
  452. package/lib/ProForm/components/combination/Group/propsType.d.ts +25 -0
  453. package/lib/ProForm/components/combination/Group/style/index.less +107 -0
  454. package/lib/ProForm/components/combination/Group/utils.d.ts +10 -0
  455. package/lib/ProForm/components/combination/Group/utils.js +56 -0
  456. package/lib/ProForm/components/combination/ProAddressBar/index.d.ts +2 -2
  457. package/lib/ProForm/components/combination/ProAddressBar/index.js +75 -57
  458. package/lib/ProForm/components/combination/ProAddressBar/propsType.d.ts +3 -0
  459. package/lib/ProForm/components/combination/ProCombination/index.js +46 -43
  460. package/lib/ProForm/components/combination/ProModalSelect/hooks/useRequestList.js +1 -2
  461. package/lib/ProForm/components/combination/ProModalSelect/index.d.ts +1 -1
  462. package/lib/ProForm/components/combination/ProModalSelect/index.js +161 -99
  463. package/lib/ProForm/components/combination/ProModalSelect/propsType.d.ts +2 -2
  464. package/lib/ProForm/components/combination/ProModalSelect/style/index.less +28 -9
  465. package/lib/ProForm/components/combination/ProNumberRange/index.d.ts +1 -2
  466. package/lib/ProForm/components/combination/ProNumberRange/index.js +61 -55
  467. package/lib/ProForm/components/combination/ProNumberRange/propsType.d.ts +4 -0
  468. package/lib/ProForm/components/combination/ProRangeLimit/index.d.ts +3 -2
  469. package/lib/ProForm/components/combination/ProRangeLimit/index.js +44 -36
  470. package/lib/ProForm/components/combination/ProTimeLimit/hooks/useControlled.js +1 -2
  471. package/lib/ProForm/components/combination/ProTimeLimit/index.d.ts +1 -1
  472. package/lib/ProForm/components/combination/ProTimeLimit/index.js +41 -50
  473. package/lib/ProForm/components/combination/ProTimeLimit/style/index.less +2 -1
  474. package/lib/ProForm/components/index.d.ts +7 -3
  475. package/lib/ProForm/components/index.js +40 -13
  476. package/lib/ProForm/components/old/EnumSelect/index.js +64 -58
  477. package/lib/ProForm/components/old/EnumSelect/interface.d.ts +1 -1
  478. package/lib/ProForm/components/old/InputRange/index.d.ts +1 -2
  479. package/lib/ProForm/components/old/InputRange/index.js +46 -47
  480. package/lib/ProForm/components/old/InputWithSuffix/index.d.ts +1 -2
  481. package/lib/ProForm/components/old/InputWithSuffix/index.js +23 -22
  482. package/lib/ProForm/components/old/InputWithSuffix/propsTypes.d.ts +1 -1
  483. package/lib/ProForm/components/old/ProAddress/index.d.ts +3 -3
  484. package/lib/ProForm/components/old/ProAddress/index.js +81 -72
  485. package/lib/ProForm/components/old/ProCertNo/index.d.ts +2 -2
  486. package/lib/ProForm/components/old/ProCertNo/index.js +36 -34
  487. package/lib/ProForm/components/old/ProCertNo/propsType.d.ts +1 -1
  488. package/lib/ProForm/components/old/ProCertValidity/index.d.ts +2 -2
  489. package/lib/ProForm/components/old/ProCertValidity/index.js +39 -38
  490. package/lib/ProForm/components/old/ProCertValidity/propsType.d.ts +2 -2
  491. package/lib/ProForm/components/old/ProRangeBox/index.d.ts +2 -2
  492. package/lib/ProForm/components/old/ProRangeBox/index.js +65 -57
  493. package/lib/ProForm/components/render/Render.js +152 -95
  494. package/lib/ProForm/components/render/RenderFields.d.ts +3 -1
  495. package/lib/ProForm/components/render/RenderFields.js +54 -30
  496. package/lib/ProForm/components/render/propsType.d.ts +64 -8
  497. package/lib/ProForm/components/render/propsType.js +1 -7
  498. package/lib/ProForm/index.js +101 -66
  499. package/lib/ProForm/propsType.d.ts +7 -2
  500. package/lib/ProForm/propsType.js +1 -2
  501. package/lib/ProForm/style/index.less +77 -75
  502. package/lib/ProForm/utils/contrastOriginal.js +2 -3
  503. package/lib/ProForm/utils/index.d.ts +27 -2
  504. package/lib/ProForm/utils/index.js +154 -61
  505. package/lib/ProForm/utils/rulesCreator.d.ts +1 -1
  506. package/lib/ProForm/utils/rulesCreator.js +15 -5
  507. package/lib/ProForm/utils/transformNames.d.ts +1 -1
  508. package/lib/ProForm/utils/transformNames.js +1 -2
  509. package/lib/ProForm/utils/transformValue.js +7 -12
  510. package/lib/ProForm/utils/useChanged.js +8 -5
  511. package/lib/ProForm/utils/useFieldProps.d.ts +4 -0
  512. package/lib/ProForm/utils/useFieldProps.js +13 -0
  513. package/lib/ProForm/utils/useForm.js +32 -49
  514. package/lib/ProForm/utils/useRules.d.ts +16 -0
  515. package/lib/ProForm/utils/useRules.js +69 -0
  516. package/lib/ProForm/utils/useShouldUpdate.d.ts +3 -1
  517. package/lib/ProForm/utils/useShouldUpdate.js +23 -23
  518. package/lib/ProForm/utils/valueType.js +3 -4
  519. package/lib/ProIcon/index.js +27 -29
  520. package/lib/ProIcon/style/index.less +15 -0
  521. package/lib/ProIcon/symbolIcon.js +6 -6
  522. package/lib/ProLayout/components/Layout/Header/index.js +21 -15
  523. package/lib/ProLayout/components/Layout/Header/style/index.less +6 -6
  524. package/lib/ProLayout/components/Layout/Icon/Icon.js +9 -9
  525. package/lib/ProLayout/components/Layout/Icon/index.js +1 -2
  526. package/lib/ProLayout/components/Layout/Menu/FoldMenu/index.d.ts +1 -1
  527. package/lib/ProLayout/components/Layout/Menu/FoldMenu/index.js +84 -74
  528. package/lib/ProLayout/components/Layout/Menu/FoldMenu/style/index.less +8 -8
  529. package/lib/ProLayout/components/Layout/Menu/OpenMenu/index.d.ts +1 -2
  530. package/lib/ProLayout/components/Layout/Menu/OpenMenu/index.js +78 -54
  531. package/lib/ProLayout/components/Layout/Menu/OpenMenu/propsType.d.ts +2 -0
  532. package/lib/ProLayout/components/Layout/Menu/OpenMenu/style/index.less +23 -12
  533. package/lib/ProLayout/components/Layout/Menu/SideMenu/index.js +23 -20
  534. package/lib/ProLayout/components/Layout/Menu/SideMenu/style/index.less +5 -4
  535. package/lib/ProLayout/components/Layout/Menu/index.js +37 -36
  536. package/lib/ProLayout/components/Layout/Menu/style/index.less +22 -3
  537. package/lib/ProLayout/components/Layout/Notice/index.js +16 -15
  538. package/lib/ProLayout/components/Layout/Notice/style/index.less +3 -3
  539. package/lib/ProLayout/components/ProCollapse/PropTypes.d.ts +1 -1
  540. package/lib/ProLayout/components/ProCollapse/index.d.ts +1 -2
  541. package/lib/ProLayout/components/ProCollapse/index.js +58 -45
  542. package/lib/ProLayout/components/ProCollapse/style/index.less +10 -4
  543. package/lib/ProLayout/components/ProFooter/index.d.ts +2 -2
  544. package/lib/ProLayout/components/ProFooter/index.js +11 -9
  545. package/lib/ProLayout/components/ProFooter/style/index.less +2 -2
  546. package/lib/ProLayout/components/ProHeader/PropTypes.d.ts +30 -7
  547. package/lib/ProLayout/components/ProHeader/components/Copy/index.d.ts +1 -2
  548. package/lib/ProLayout/components/ProHeader/components/Copy/index.js +5 -9
  549. package/lib/ProLayout/components/ProHeader/index.d.ts +1 -1
  550. package/lib/ProLayout/components/ProHeader/index.js +251 -161
  551. package/lib/ProLayout/components/ProHeader/style/index.less +29 -14
  552. package/lib/ProLayout/index.d.ts +10 -6
  553. package/lib/ProLayout/index.js +45 -30
  554. package/lib/ProLayout/propTypes.d.ts +2 -0
  555. package/lib/ProLayout/style/index.less +156 -1
  556. package/lib/ProLayout/utils/index.js +5 -9
  557. package/lib/ProSelect/components/AdaptiveTooltip.d.ts +4 -0
  558. package/lib/ProSelect/components/AdaptiveTooltip.js +52 -0
  559. package/lib/ProSelect/index.d.ts +2 -1
  560. package/lib/ProSelect/index.js +88 -62
  561. package/lib/ProSelect/index.less +8 -0
  562. package/lib/ProSelect/propsType.d.ts +19 -9
  563. package/lib/ProStep/components/Anchor/index.d.ts +1 -2
  564. package/lib/ProStep/components/Anchor/index.js +47 -38
  565. package/lib/ProStep/components/Item/index.d.ts +2 -6
  566. package/lib/ProStep/components/Item/index.js +25 -10
  567. package/lib/ProStep/components/Listener/index.js +2 -3
  568. package/lib/ProStep/components/Step/index.d.ts +1 -2
  569. package/lib/ProStep/components/Step/index.js +21 -18
  570. package/lib/ProStep/index.d.ts +5 -9
  571. package/lib/ProStep/index.js +97 -27
  572. package/lib/ProStep/propsType.d.ts +11 -1
  573. package/lib/ProStep/style/index.less +10 -24
  574. package/lib/ProStep/utils/index.js +2 -4
  575. package/lib/ProTable/components/RenderColumn/index.d.ts +14 -0
  576. package/lib/ProTable/components/RenderColumn/index.js +81 -0
  577. package/lib/ProTable/components/ResizableLine/index.d.ts +1 -2
  578. package/lib/ProTable/components/ResizableLine/index.js +3 -5
  579. package/lib/ProTable/components/TableResizable/index.d.ts +1 -2
  580. package/lib/ProTable/components/TableResizable/index.js +18 -16
  581. package/lib/ProTable/components/TooltipTitle/index.d.ts +11 -0
  582. package/lib/ProTable/components/TooltipTitle/index.js +29 -0
  583. package/lib/ProTable/index.d.ts +3 -3
  584. package/lib/ProTable/index.js +141 -120
  585. package/lib/ProTable/propsType.d.ts +40 -26
  586. package/lib/ProTable/style/index.less +66 -32
  587. package/lib/ProTable/useAntdTable.d.ts +11 -7
  588. package/lib/ProTable/useAntdTable.js +106 -59
  589. package/lib/ProTable/utils.d.ts +8 -0
  590. package/lib/ProTable/utils.js +169 -113
  591. package/lib/ProTabs/components/Card/index.d.ts +1 -2
  592. package/lib/ProTabs/components/Card/index.js +42 -20
  593. package/lib/ProTabs/index.d.ts +1 -1
  594. package/lib/ProTabs/index.js +39 -30
  595. package/lib/ProTabs/propType.d.ts +5 -0
  596. package/lib/ProTabs/style/index.less +15 -3
  597. package/lib/ProThemeTools/component/PrdTools/index.d.ts +1 -2
  598. package/lib/ProThemeTools/component/PrdTools/index.js +215 -157
  599. package/lib/ProThemeTools/component/PrdTools/style/index.less +3 -3
  600. package/lib/ProThemeTools/index.d.ts +1 -2
  601. package/lib/ProThemeTools/index.js +51 -57
  602. package/lib/ProThemeTools/propsType.d.ts +10 -2
  603. package/lib/ProThemeTools/utils/index.d.ts +5 -0
  604. package/lib/ProThemeTools/utils/index.js +32 -9
  605. package/lib/ProTooltip/index.d.ts +1 -2
  606. package/lib/ProTooltip/index.js +231 -47
  607. package/lib/ProTooltip/propsType.d.ts +3 -0
  608. package/lib/ProTooltip/style/index.less +19 -8
  609. package/lib/ProTree/components/CloseIcon.d.ts +3 -0
  610. package/lib/ProTree/components/CloseIcon.js +37 -0
  611. package/lib/ProTree/components/List.d.ts +17 -0
  612. package/lib/ProTree/components/List.js +74 -0
  613. package/lib/ProTree/components/ProTree.d.ts +4 -0
  614. package/lib/ProTree/components/ProTree.js +446 -0
  615. package/lib/ProTree/components/SearchTitle.d.ts +9 -0
  616. package/lib/ProTree/components/SearchTitle.js +47 -0
  617. package/lib/ProTree/components/Tree.d.ts +27 -0
  618. package/lib/ProTree/components/Tree.js +349 -0
  619. package/lib/ProTree/components/index.d.ts +4 -0
  620. package/lib/ProTree/components/index.js +34 -0
  621. package/lib/ProTree/index.d.ts +3 -0
  622. package/lib/ProTree/index.js +32 -0
  623. package/lib/ProTree/propsType.d.ts +217 -0
  624. package/lib/ProTree/propsType.js +5 -0
  625. package/lib/ProTree/style/index.less +289 -0
  626. package/lib/ProTree/utils.d.ts +37 -0
  627. package/lib/ProTree/utils.js +195 -0
  628. package/lib/ProTreeModal/components/Cascader.d.ts +14 -0
  629. package/lib/ProTreeModal/components/Cascader.js +105 -0
  630. package/lib/ProTreeModal/components/CloseIcon.d.ts +2 -2
  631. package/lib/ProTreeModal/components/CloseIcon.js +26 -22
  632. package/lib/ProTreeModal/components/List.d.ts +11 -3
  633. package/lib/ProTreeModal/components/List.js +181 -37
  634. package/lib/ProTreeModal/components/SearchTitle.d.ts +3 -3
  635. package/lib/ProTreeModal/components/SearchTitle.js +17 -12
  636. package/lib/{ProTransferModal/components/SortableItem/index.d.ts → ProTreeModal/components/SortableItem.d.ts} +1 -0
  637. package/lib/{ProTransferModal/components/SortableItem/index.js → ProTreeModal/components/SortableItem.js} +29 -26
  638. package/lib/ProTreeModal/components/Tree.d.ts +14 -4
  639. package/lib/ProTreeModal/components/Tree.js +164 -95
  640. package/lib/ProTreeModal/components/Trigger.d.ts +5 -2
  641. package/lib/ProTreeModal/components/Trigger.js +47 -23
  642. package/lib/ProTreeModal/components/index.d.ts +1 -0
  643. package/lib/ProTreeModal/components/index.js +8 -1
  644. package/lib/ProTreeModal/index.d.ts +2 -2
  645. package/lib/ProTreeModal/index.js +507 -146
  646. package/lib/ProTreeModal/propsType.d.ts +71 -14
  647. package/lib/ProTreeModal/style/index.less +231 -50
  648. package/lib/ProTreeModal/utils.d.ts +26 -14
  649. package/lib/ProTreeModal/utils.js +107 -43
  650. package/lib/ProTreeSelect/index.d.ts +1 -1
  651. package/lib/ProTreeSelect/index.js +159 -79
  652. package/lib/ProTreeSelect/propsType.d.ts +11 -9
  653. package/lib/ProTreeSelect/style/index.less +94 -90
  654. package/lib/ProUpload/components/ButtonRender.d.ts +18 -0
  655. package/lib/ProUpload/components/ButtonRender.js +75 -0
  656. package/lib/ProUpload/components/DragRender.d.ts +20 -0
  657. package/lib/ProUpload/components/DragRender.js +185 -0
  658. package/lib/ProUpload/components/DraggableUploadListItem.d.ts +2 -0
  659. package/lib/ProUpload/components/DraggableUploadListItem.js +36 -0
  660. package/lib/ProUpload/components/Example.d.ts +10 -0
  661. package/lib/ProUpload/components/Example.js +47 -0
  662. package/{es/ProUpload → lib/ProUpload/components}/FileItem.d.ts +2 -2
  663. package/lib/ProUpload/components/FileItem.js +215 -0
  664. package/lib/ProUpload/components/ImageRender.d.ts +18 -0
  665. package/lib/ProUpload/components/ImageRender.js +265 -0
  666. package/lib/ProUpload/index.js +185 -298
  667. package/lib/ProUpload/propsType.d.ts +61 -7
  668. package/lib/ProUpload/style/fileItem.less +126 -138
  669. package/lib/ProUpload/style/index.less +185 -115
  670. package/lib/ProUpload/uitls.d.ts +3 -0
  671. package/lib/ProUpload/uitls.js +20 -0
  672. package/lib/ProUtils/utils/index.js +3 -4
  673. package/lib/ProViewer/index.d.ts +1 -1
  674. package/lib/ProViewer/index.js +36 -31
  675. package/lib/ProWaterMark/index.js +10 -9
  676. package/lib/assets/delete.svg +1 -1
  677. package/lib/{ProUpload/style → assets}/download.svg +1 -1
  678. package/lib/assets/input-search.svg +11 -0
  679. package/lib/global.less +2 -2
  680. package/lib/index.d.ts +2 -3
  681. package/lib/index.js +21 -25
  682. package/lib/old/ProBackBtn/index.js +7 -8
  683. package/lib/old/ProCertValidity/index.d.ts +3 -3
  684. package/lib/old/ProCertValidity/index.js +68 -68
  685. package/lib/old/ProCertValidity/propsType.d.ts +2 -2
  686. package/lib/old/ProEditableTable/index.d.ts +1 -1
  687. package/lib/old/ProEditableTable/index.js +91 -71
  688. package/lib/old/ProEditableTable/propsType.d.ts +3 -3
  689. package/lib/old/ProEditableTable/utils.js +147 -136
  690. package/lib/style/components.less +3 -4
  691. package/lib/style/theme/antd.less +11 -5
  692. package/lib/style/theme/index.less +80 -161
  693. package/lib/style/theme/tokens.less +88 -0
  694. package/lib/tokens.d.ts +83 -0
  695. package/lib/tokens.js +6 -3
  696. package/package.json +18 -12
  697. package/typings.d.ts +16 -5
  698. package/es/ProDownload/DownloadHelper.d.ts +0 -32
  699. package/es/ProEnum/getEnumLabel.d.ts +0 -3
  700. package/es/ProEnum/getEnumLabel.js +0 -62
  701. package/es/ProEnum/useEnum.d.ts +0 -14
  702. package/es/ProEnum/useEnumRequest.d.ts +0 -3
  703. package/es/ProEnum/useEnumRequest.js +0 -227
  704. package/es/ProForm/components/base/FormList/components/ActionButton.js +0 -169
  705. package/es/ProForm/components/base/FormList/components/BlockFields.d.ts +0 -16
  706. package/es/ProForm/components/base/FormList/components/LineFields.js +0 -46
  707. package/es/ProForm/components/base/FormList/components/ToolbarButton.js +0 -79
  708. package/es/ProForm/components/base/FormList/index.d.ts +0 -44
  709. package/es/ProForm/components/base/FormList/index.js +0 -99
  710. package/es/ProForm/components/base/FormList/style/index.less +0 -39
  711. package/es/ProForm/components/combination/ProTimeLimit/hooks/useTransformDate.d.ts +0 -12
  712. package/es/ProForm/components/combination/ProTimeLimit/hooks/useTransformDate.js +0 -36
  713. package/es/ProForm/components/old/CertNo/index.d.ts +0 -19
  714. package/es/ProForm/components/old/CertNo/index.js +0 -63
  715. package/es/ProForm/components/old/CertNo/propsType.d.ts +0 -13
  716. package/es/ProLayout/images/pack.png +0 -0
  717. package/es/ProTransferModal/components/SortableItem/index.js +0 -56
  718. package/es/ProTransferModal/index.d.ts +0 -4
  719. package/es/ProTransferModal/index.js +0 -338
  720. package/es/ProTransferModal/propsType.d.ts +0 -34
  721. package/es/ProTransferModal/style/index.less +0 -169
  722. package/es/ProTreeModal/data/datasource.d.ts +0 -5
  723. package/es/ProTreeModal/data/datasource.js +0 -17
  724. package/es/ProTreeModal/data/mock.d.ts +0 -9
  725. package/es/ProTreeModal/data/mock.js +0 -39
  726. package/es/ProUpload/Example.d.ts +0 -7
  727. package/es/ProUpload/Example.js +0 -40
  728. package/es/ProUpload/FileItem.js +0 -207
  729. package/es/ProUpload/style/delete.svg +0 -1
  730. package/es/old/ProCustomColumn/LeftBody.d.ts +0 -4
  731. package/es/old/ProCustomColumn/LeftBody.js +0 -206
  732. package/es/old/ProCustomColumn/RightBody.d.ts +0 -9
  733. package/es/old/ProCustomColumn/RightBody.js +0 -145
  734. package/es/old/ProCustomColumn/index.d.ts +0 -4
  735. package/es/old/ProCustomColumn/index.js +0 -165
  736. package/es/old/ProCustomColumn/propsType.d.ts +0 -39
  737. package/es/old/ProCustomColumn/style/LeftBody.less +0 -74
  738. package/es/old/ProCustomColumn/style/RightBody.less +0 -25
  739. package/es/old/ProCustomColumn/style/index.less +0 -88
  740. package/es/old/ProEnumSelectModal/hooks/useRequestList.d.ts +0 -32
  741. package/es/old/ProEnumSelectModal/hooks/useRequestList.js +0 -110
  742. package/es/old/ProEnumSelectModal/index.d.ts +0 -12
  743. package/es/old/ProEnumSelectModal/index.js +0 -222
  744. package/es/old/ProEnumSelectModal/propsType.d.ts +0 -22
  745. package/es/old/ProEnumSelectModal/style/index.less +0 -98
  746. package/lib/ProDownload/DownloadHelper.d.ts +0 -32
  747. package/lib/ProEnum/getEnumLabel.d.ts +0 -3
  748. package/lib/ProEnum/getEnumLabel.js +0 -70
  749. package/lib/ProEnum/useEnum.d.ts +0 -14
  750. package/lib/ProEnum/useEnumRequest.d.ts +0 -3
  751. package/lib/ProEnum/useEnumRequest.js +0 -236
  752. package/lib/ProForm/components/base/FormList/components/ActionButton.js +0 -173
  753. package/lib/ProForm/components/base/FormList/components/BlockFields.d.ts +0 -16
  754. package/lib/ProForm/components/base/FormList/components/LineFields.js +0 -53
  755. package/lib/ProForm/components/base/FormList/components/ToolbarButton.js +0 -85
  756. package/lib/ProForm/components/base/FormList/index.d.ts +0 -44
  757. package/lib/ProForm/components/base/FormList/index.js +0 -107
  758. package/lib/ProForm/components/base/FormList/style/index.less +0 -39
  759. package/lib/ProForm/components/combination/ProTimeLimit/hooks/useTransformDate.d.ts +0 -12
  760. package/lib/ProForm/components/combination/ProTimeLimit/hooks/useTransformDate.js +0 -44
  761. package/lib/ProForm/components/old/CertNo/index.d.ts +0 -19
  762. package/lib/ProForm/components/old/CertNo/index.js +0 -69
  763. package/lib/ProForm/components/old/CertNo/propsType.d.ts +0 -13
  764. package/lib/ProLayout/images/pack.png +0 -0
  765. package/lib/ProTransferModal/index.d.ts +0 -4
  766. package/lib/ProTransferModal/index.js +0 -334
  767. package/lib/ProTransferModal/propsType.d.ts +0 -34
  768. package/lib/ProTransferModal/style/index.less +0 -169
  769. package/lib/ProTreeModal/data/datasource.d.ts +0 -5
  770. package/lib/ProTreeModal/data/datasource.js +0 -24
  771. package/lib/ProTreeModal/data/mock.d.ts +0 -9
  772. package/lib/ProTreeModal/data/mock.js +0 -47
  773. package/lib/ProUpload/Example.d.ts +0 -7
  774. package/lib/ProUpload/Example.js +0 -50
  775. package/lib/ProUpload/FileItem.js +0 -216
  776. package/lib/ProUpload/style/delete.svg +0 -1
  777. package/lib/old/ProCustomColumn/LeftBody.d.ts +0 -4
  778. package/lib/old/ProCustomColumn/LeftBody.js +0 -212
  779. package/lib/old/ProCustomColumn/RightBody.d.ts +0 -9
  780. package/lib/old/ProCustomColumn/RightBody.js +0 -150
  781. package/lib/old/ProCustomColumn/index.d.ts +0 -4
  782. package/lib/old/ProCustomColumn/index.js +0 -171
  783. package/lib/old/ProCustomColumn/propsType.d.ts +0 -39
  784. package/lib/old/ProCustomColumn/style/LeftBody.less +0 -74
  785. package/lib/old/ProCustomColumn/style/RightBody.less +0 -25
  786. package/lib/old/ProCustomColumn/style/index.less +0 -88
  787. package/lib/old/ProEnumSelectModal/hooks/useRequestList.d.ts +0 -32
  788. package/lib/old/ProEnumSelectModal/hooks/useRequestList.js +0 -117
  789. package/lib/old/ProEnumSelectModal/index.d.ts +0 -12
  790. package/lib/old/ProEnumSelectModal/index.js +0 -220
  791. package/lib/old/ProEnumSelectModal/propsType.d.ts +0 -22
  792. package/lib/old/ProEnumSelectModal/style/index.less +0 -98
  793. /package/es/{ProForm/components/old/CertNo → ProAction}/propsType.js +0 -0
  794. /package/es/ProEnum/{utils.js → utils/index.js} +0 -0
  795. /package/es/{ProTransferModal → ProForm/components/combination/Container}/propsType.js +0 -0
  796. /package/es/{old/ProCustomColumn → ProForm/components/combination/FormList}/propsType.js +0 -0
  797. /package/es/ProForm/components/{base → combination}/FormList/utils.d.ts +0 -0
  798. /package/es/ProForm/components/{base → combination}/FormList/utils.js +0 -0
  799. /package/es/{old/ProEnumSelectModal → ProForm/components/combination/Group}/propsType.js +0 -0
  800. /package/es/{ProUpload/style → assets}/look.svg +0 -0
  801. /package/lib/{ProForm/components/old/CertNo → ProAction}/propsType.js +0 -0
  802. /package/lib/ProEnum/{utils.js → utils/index.js} +0 -0
  803. /package/lib/{ProTransferModal → ProForm/components/combination/Container}/propsType.js +0 -0
  804. /package/lib/{old/ProCustomColumn → ProForm/components/combination/FormList}/propsType.js +0 -0
  805. /package/lib/ProForm/components/{base → combination}/FormList/utils.d.ts +0 -0
  806. /package/lib/{old/ProEnumSelectModal → ProForm/components/combination/Group}/propsType.js +0 -0
  807. /package/lib/{ProUpload/style → assets}/look.svg +0 -0
@@ -38,8 +38,6 @@
38
38
  border : 1px solid var(--zaui-line, #dddddd);
39
39
  border-left: none;
40
40
 
41
-
42
-
43
41
  .pro-tabs-card-left {
44
42
  width : 104px;
45
43
  text-shadow: none;
@@ -65,4 +63,18 @@
65
63
  }
66
64
  }
67
65
  }
68
- }
66
+ }
67
+
68
+ .pro-tabs-tab {
69
+ .pro-tabs-card {
70
+ .ant-tag {
71
+ border-radius: 10px;
72
+ padding : 0 var(--zaui-space-size-xs, 4px);
73
+ margin-right : 0;
74
+ }
75
+
76
+ .ant-space-item {
77
+ display: flex;
78
+ }
79
+ }
80
+ }
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import type { DevToolsPropsType } from '../../propsType';
3
- declare const PrdTools: ({ onReset, onClose, setState, visible, state }: DevToolsPropsType) => React.JSX.Element;
2
+ declare const PrdTools: ({ onReset, onClose, setState, visible, state, tableBorder, tableStripe, }: DevToolsPropsType) => JSX.Element;
4
3
  export default PrdTools;
@@ -1,6 +1,5 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
@@ -8,13 +7,14 @@ Object.defineProperty(exports, "__esModule", {
8
7
  exports.default = void 0;
9
8
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
10
9
  var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
11
  var _icons = require("@ant-design/icons");
12
12
  var _antd = require("antd");
13
- var _react = _interopRequireWildcard(require("react"));
13
+ var _react = require("react");
14
14
  var _index = require("../../utils/index");
15
15
  var connect = function connect(Component) {
16
16
  var ComponentWrapper = function ComponentWrapper(props) {
17
- return /*#__PURE__*/_react.default.createElement(Component, (0, _objectSpread2.default)({}, props));
17
+ return (0, _jsxRuntime.jsx)(Component, (0, _objectSpread2.default)({}, props));
18
18
  };
19
19
  return ComponentWrapper;
20
20
  };
@@ -24,7 +24,9 @@ var PrdTools = function PrdTools(_ref) {
24
24
  onClose = _ref.onClose,
25
25
  setState = _ref.setState,
26
26
  visible = _ref.visible,
27
- state = _ref.state;
27
+ state = _ref.state,
28
+ tableBorder = _ref.tableBorder,
29
+ tableStripe = _ref.tableStripe;
28
30
  var _useState = (0, _react.useState)([{
29
31
  color: '#006AFF',
30
32
  active: true
@@ -58,164 +60,220 @@ var PrdTools = function PrdTools(_ref) {
58
60
  setActive(newArray);
59
61
  }
60
62
  }, []);
61
- return /*#__PURE__*/_react.default.createElement(NewDrawer, {
63
+ return (0, _jsxRuntime.jsxs)(NewDrawer, {
62
64
  className: "pro-theme-prd-tools-drawer",
63
65
  width: 320,
64
66
  title: "\u5168\u5C40\u6837\u5F0F\u81EA\u5B9A\u4E49",
65
67
  placement: "right",
66
68
  onClose: onClose,
67
69
  open: visible,
68
- closable: false
69
- }, /*#__PURE__*/_react.default.createElement("div", {
70
- className: "pro-drawer-close",
71
- onClick: onClose
72
- }, /*#__PURE__*/_react.default.createElement(_icons.CloseOutlined, {
73
- className: "close-icon"
74
- })), /*#__PURE__*/_react.default.createElement("div", {
75
- className: "pro-theme-tools-space"
76
- }, /*#__PURE__*/_react.default.createElement("p", null, "\u4E3B\u9898\u8272"), /*#__PURE__*/_react.default.createElement("ul", {
77
- className: "pro-theme-color"
78
- }, active.map(function (item, index) {
79
- return /*#__PURE__*/_react.default.createElement("li", {
80
- key: item.color,
81
- className: item.active ? 'active' : '',
70
+ closable: false,
71
+ children: [(0, _jsxRuntime.jsx)("div", {
72
+ className: "pro-drawer-close",
73
+ onClick: onClose,
74
+ children: (0, _jsxRuntime.jsx)(_icons.CloseOutlined, {
75
+ className: "close-icon"
76
+ })
77
+ }), (0, _jsxRuntime.jsxs)("div", {
78
+ className: "pro-theme-tools-space",
79
+ children: [(0, _jsxRuntime.jsx)("p", {
80
+ children: "\u4E3B\u9898\u8272"
81
+ }), (0, _jsxRuntime.jsx)("ul", {
82
+ className: "pro-theme-color",
83
+ children: active.map(function (item, index) {
84
+ return (0, _jsxRuntime.jsx)("li", {
85
+ className: item.active ? 'active' : '',
86
+ onClick: function onClick() {
87
+ var array = active.map(function (activeItem) {
88
+ activeItem.active = false;
89
+ return {
90
+ color: activeItem.color,
91
+ active: item.color === activeItem.color
92
+ };
93
+ });
94
+ setActive(array);
95
+ setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
96
+ zauiBrand: item.color
97
+ }));
98
+ (0, _index.setThemes)({
99
+ 'zaui-brand': item.color
100
+ });
101
+ },
102
+ children: item.active ? (0, _jsxRuntime.jsx)(_icons.CheckOutlined, {}) : null
103
+ }, item.color);
104
+ })
105
+ })]
106
+ }), (0, _jsxRuntime.jsxs)("div", {
107
+ className: "pro-theme-tools-space",
108
+ children: [(0, _jsxRuntime.jsx)("div", {
109
+ className: "pro-theme-tools-item",
110
+ children: (0, _jsxRuntime.jsx)("p", {
111
+ children: "\u5E03\u5C40"
112
+ })
113
+ }), (0, _jsxRuntime.jsx)("div", {
114
+ className: "pro-theme-tools-item",
115
+ children: (0, _jsxRuntime.jsxs)(_antd.Radio.Group, {
116
+ value: state.zauiSize,
117
+ onChange: function onChange(e) {
118
+ setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
119
+ zauiSize: e.target.value
120
+ }));
121
+ (0, _index.setThemes)({
122
+ 'zaui-size': e.target.value
123
+ });
124
+ },
125
+ children: [(0, _jsxRuntime.jsx)(_antd.Radio.Button, {
126
+ value: 0.5,
127
+ children: "\u7D27\u51D1"
128
+ }), (0, _jsxRuntime.jsx)(_antd.Radio.Button, {
129
+ value: 1,
130
+ children: "\u5E38\u89C4"
131
+ }), (0, _jsxRuntime.jsx)(_antd.Radio.Button, {
132
+ value: 1.5,
133
+ children: "\u5BBD\u677E"
134
+ })]
135
+ })
136
+ })]
137
+ }), (0, _jsxRuntime.jsxs)("div", {
138
+ className: "pro-theme-tools-space pro-theme-tools-form",
139
+ children: [(0, _jsxRuntime.jsx)("div", {
140
+ className: "pro-theme-tools-item",
141
+ children: (0, _jsxRuntime.jsx)("p", {
142
+ children: "\u8868\u5355\u6807\u9898"
143
+ })
144
+ }), (0, _jsxRuntime.jsx)("div", {
145
+ className: "pro-theme-tools-item",
146
+ children: (0, _jsxRuntime.jsxs)(_antd.Radio.Group, {
147
+ value: state.zauiFormAlign,
148
+ onChange: function onChange(e) {
149
+ var after = e.target.value === 'left' ? 'inline' : 'none';
150
+ var before = e.target.value === 'right' ? 'inline' : 'none';
151
+ // 遍历添加className
152
+ var formItemLabels = document.querySelectorAll('.ant-form-item-label');
153
+ // 遍历元素列表,为每个元素添加新的 class
154
+ formItemLabels.forEach(function (label) {
155
+ var _label$classList, _label$classList$valu, _label$classList2, _label$classList2$val;
156
+ if (!label) {
157
+ return false;
158
+ }
159
+ if (e.target.value === 'left' && !((_label$classList = label.classList) === null || _label$classList === void 0 ? void 0 : (_label$classList$valu = _label$classList.value) === null || _label$classList$valu === void 0 ? void 0 : _label$classList$valu.includes('ant-form-item-label-left'))) {
160
+ label.classList.add('ant-form-item-label-left');
161
+ }
162
+ if (e.target.value === 'right' && ((_label$classList2 = label.classList) === null || _label$classList2 === void 0 ? void 0 : (_label$classList2$val = _label$classList2.value) === null || _label$classList2$val === void 0 ? void 0 : _label$classList2$val.includes('ant-form-item-label-left'))) {
163
+ label.classList.remove('ant-form-item-label-left');
164
+ }
165
+ });
166
+ setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
167
+ zauiFormAlign: e.target.value,
168
+ zauiFormRequiredAfter: after,
169
+ zauiFormRequiredBefore: before
170
+ }));
171
+ (0, _index.setThemes)({
172
+ 'zaui-form-align': e.target.value,
173
+ 'zaui-form-required-after': after,
174
+ 'zaui-form-required-before': before
175
+ });
176
+ },
177
+ children: [(0, _jsxRuntime.jsx)(_antd.Radio.Button, {
178
+ value: "left",
179
+ children: "\u5DE6\u5BF9\u9F50"
180
+ }), (0, _jsxRuntime.jsx)(_antd.Radio.Button, {
181
+ value: "right",
182
+ children: "\u53F3\u5BF9\u9F50"
183
+ })]
184
+ })
185
+ })]
186
+ }), (0, _jsxRuntime.jsxs)("div", {
187
+ className: "pro-theme-tools-box pro-theme-tools-space pro-theme-tools-small-space",
188
+ children: [(0, _jsxRuntime.jsx)("div", {
189
+ className: "pro-theme-tools-item",
190
+ children: (0, _jsxRuntime.jsx)("p", {
191
+ children: "\u5927\u5B57\u53F7\u6A21\u5F0F"
192
+ })
193
+ }), (0, _jsxRuntime.jsx)("div", {
194
+ className: "pro-theme-tools-item",
195
+ children: (0, _jsxRuntime.jsx)(_antd.Switch, {
196
+ checkedChildren: "\u5F00",
197
+ unCheckedChildren: "\u5173",
198
+ checked: state.zauiBigText,
199
+ onClick: function onClick(value) {
200
+ setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
201
+ zauiBaseFontSize: value ? 2 : 0,
202
+ zauiBigText: value
203
+ }));
204
+ (0, _index.setThemes)({
205
+ 'zaui-base-font-size': value ? '2px' : '0px'
206
+ });
207
+ }
208
+ })
209
+ })]
210
+ }), tableBorder && (0, _jsxRuntime.jsxs)("div", {
211
+ className: "pro-theme-tools-box pro-theme-tools-space pro-theme-tools-small-space",
212
+ children: [(0, _jsxRuntime.jsx)("div", {
213
+ className: "pro-theme-tools-item",
214
+ children: (0, _jsxRuntime.jsx)("p", {
215
+ children: "\u8868\u683C\u8FB9\u6846"
216
+ })
217
+ }), (0, _jsxRuntime.jsx)("div", {
218
+ className: "pro-theme-tools-item",
219
+ children: (0, _jsxRuntime.jsx)(_antd.Switch, {
220
+ checkedChildren: "\u5F00",
221
+ unCheckedChildren: "\u5173",
222
+ checked: state.zauiTableBorder,
223
+ onClick: function onClick(value) {
224
+ setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
225
+ zauiTableBorder: value
226
+ }));
227
+ (0, _index.setThemes)({
228
+ 'zaui-table-border': value
229
+ });
230
+ }
231
+ })
232
+ })]
233
+ }), tableStripe && (0, _jsxRuntime.jsxs)("div", {
234
+ className: "pro-theme-tools-box pro-theme-tools-space pro-theme-tools-small-space",
235
+ children: [(0, _jsxRuntime.jsx)("div", {
236
+ className: "pro-theme-tools-item",
237
+ children: (0, _jsxRuntime.jsx)("p", {
238
+ children: "\u8868\u683C\u6591\u9A6C\u7EB9"
239
+ })
240
+ }), (0, _jsxRuntime.jsx)("div", {
241
+ className: "pro-theme-tools-item",
242
+ children: (0, _jsxRuntime.jsx)(_antd.Switch, {
243
+ checkedChildren: "\u5F00",
244
+ unCheckedChildren: "\u5173",
245
+ checked: state.zauiStripe,
246
+ onClick: function onClick(value) {
247
+ setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
248
+ zauiStripe: value
249
+ }));
250
+ (0, _index.setTableNoStripe)(value);
251
+ (0, _index.setThemes)({
252
+ 'zaui-stripe': value
253
+ });
254
+ }
255
+ })
256
+ })]
257
+ }), (0, _jsxRuntime.jsx)(_antd.Button, {
258
+ className: "copy-btn",
82
259
  onClick: function onClick() {
83
- var array = active.map(function (activeItem) {
84
- activeItem.active = false;
85
- return {
86
- color: activeItem.color,
87
- active: item.color === activeItem.color
88
- };
89
- });
90
- setActive(array);
91
- setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
92
- zauiBrand: item.color
93
- }));
94
- (0, _index.setThemes)({
95
- 'zaui-brand': item.color
96
- });
97
- }
98
- }, item.active ? /*#__PURE__*/_react.default.createElement(_icons.CheckOutlined, null) : null);
99
- }))), /*#__PURE__*/_react.default.createElement("div", {
100
- className: "pro-theme-tools-space"
101
- }, /*#__PURE__*/_react.default.createElement("div", {
102
- className: "pro-theme-tools-item"
103
- }, /*#__PURE__*/_react.default.createElement("p", null, "\u5E03\u5C40")), /*#__PURE__*/_react.default.createElement("div", {
104
- className: "pro-theme-tools-item"
105
- }, /*#__PURE__*/_react.default.createElement(_antd.Radio.Group, {
106
- value: state.zauiSize,
107
- onChange: function onChange(e) {
108
- setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
109
- zauiSize: e.target.value
110
- }));
111
- (0, _index.setThemes)({
112
- 'zaui-size': e.target.value
113
- });
114
- }
115
- }, /*#__PURE__*/_react.default.createElement(_antd.Radio.Button, {
116
- value: 0.5
117
- }, "\u7D27\u51D1"), /*#__PURE__*/_react.default.createElement(_antd.Radio.Button, {
118
- value: 1
119
- }, "\u5E38\u89C4"), /*#__PURE__*/_react.default.createElement(_antd.Radio.Button, {
120
- value: 1.5
121
- }, "\u5BBD\u677E")))), /*#__PURE__*/_react.default.createElement("div", {
122
- className: "pro-theme-tools-space pro-theme-tools-form"
123
- }, /*#__PURE__*/_react.default.createElement("div", {
124
- className: "pro-theme-tools-item"
125
- }, /*#__PURE__*/_react.default.createElement("p", null, "\u8868\u5355\u6807\u9898")), /*#__PURE__*/_react.default.createElement("div", {
126
- className: "pro-theme-tools-item"
127
- }, /*#__PURE__*/_react.default.createElement(_antd.Radio.Group, {
128
- value: state.zauiFormAlign,
129
- onChange: function onChange(e) {
130
- var after = e.target.value === 'left' ? 'inline' : 'none';
131
- var before = e.target.value === 'right' ? 'inline' : 'none';
132
- // 遍历添加className
133
- var formItemLabels = document.querySelectorAll('.ant-form-item-label');
134
- // 遍历元素列表,为每个元素添加新的 class
135
- formItemLabels.forEach(function (label) {
136
- var _label$classList, _label$classList$valu, _label$classList2, _label$classList2$val;
137
- if (!label) {
138
- return false;
139
- }
140
- if (e.target.value === 'left' && !((_label$classList = label.classList) === null || _label$classList === void 0 ? void 0 : (_label$classList$valu = _label$classList.value) === null || _label$classList$valu === void 0 ? void 0 : _label$classList$valu.includes('ant-form-item-label-left'))) {
141
- label.classList.add('ant-form-item-label-left');
142
- }
143
- if (e.target.value === 'right' && ((_label$classList2 = label.classList) === null || _label$classList2 === void 0 ? void 0 : (_label$classList2$val = _label$classList2.value) === null || _label$classList2$val === void 0 ? void 0 : _label$classList2$val.includes('ant-form-item-label-left'))) {
144
- label.classList.remove('ant-form-item-label-left');
145
- }
146
- });
147
- setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
148
- zauiFormAlign: e.target.value,
149
- zauiFormRequiredAfter: after,
150
- zauiFormRequiredBefore: before
151
- }));
152
- (0, _index.setThemes)({
153
- 'zaui-form-align': e.target.value,
154
- 'zaui-form-required-after': after,
155
- 'zaui-form-required-before': before
156
- });
157
- }
158
- }, /*#__PURE__*/_react.default.createElement(_antd.Radio.Button, {
159
- value: "left"
160
- }, "\u5DE6\u5BF9\u9F50"), /*#__PURE__*/_react.default.createElement(_antd.Radio.Button, {
161
- value: "right"
162
- }, "\u53F3\u5BF9\u9F50")))), /*#__PURE__*/_react.default.createElement("div", {
163
- className: "pro-theme-tools-box pro-theme-tools-space pro-theme-tools-small-space"
164
- }, /*#__PURE__*/_react.default.createElement("div", {
165
- className: "pro-theme-tools-item"
166
- }, /*#__PURE__*/_react.default.createElement("p", null, "\u5927\u5B57\u53F7\u6A21\u5F0F")), /*#__PURE__*/_react.default.createElement("div", {
167
- className: "pro-theme-tools-item"
168
- }, /*#__PURE__*/_react.default.createElement(_antd.Switch, {
169
- checkedChildren: "\u5F00",
170
- unCheckedChildren: "\u5173",
171
- checked: state.zauiBigText,
172
- onClick: function onClick(value) {
173
- setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
174
- zauiBaseFontSize: value ? 2 : 0,
175
- zauiBigText: value
176
- }));
177
- (0, _index.setThemes)({
178
- 'zaui-base-font-size': value ? '2px' : '0px'
179
- });
180
- }
181
- }))), /*#__PURE__*/_react.default.createElement("div", {
182
- className: "pro-theme-tools-box pro-theme-tools-space pro-theme-tools-small-space"
183
- }, /*#__PURE__*/_react.default.createElement("div", {
184
- className: "pro-theme-tools-item"
185
- }, /*#__PURE__*/_react.default.createElement("p", null, "\u8868\u683C\u6591\u9A6C\u7EB9")), /*#__PURE__*/_react.default.createElement("div", {
186
- className: "pro-theme-tools-item"
187
- }, /*#__PURE__*/_react.default.createElement(_antd.Switch, {
188
- checkedChildren: "\u5F00",
189
- unCheckedChildren: "\u5173",
190
- checked: state.zauiStripe,
191
- onClick: function onClick(value) {
192
- setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
193
- zauiStripe: value
194
- }));
195
- (0, _index.setTableNoStripe)(value);
196
- (0, _index.setThemes)({
197
- 'zaui-stripe': value
198
- });
199
- }
200
- }))), /*#__PURE__*/_react.default.createElement(_antd.Button, {
201
- className: "copy-btn",
202
- onClick: function onClick() {
203
- setActive([{
204
- color: '#006AFF',
205
- active: true
206
- }, {
207
- color: '#00BC70',
208
- active: false
209
- }, {
210
- color: '#FF8C16',
211
- active: false
212
- }, {
213
- color: '#A00F20',
214
- active: false
215
- }]);
216
- onReset();
217
- }
218
- }, "\u91CD\u7F6E"));
260
+ setActive([{
261
+ color: '#006AFF',
262
+ active: true
263
+ }, {
264
+ color: '#00BC70',
265
+ active: false
266
+ }, {
267
+ color: '#FF8C16',
268
+ active: false
269
+ }, {
270
+ color: '#A00F20',
271
+ active: false
272
+ }]);
273
+ onReset();
274
+ },
275
+ children: "\u91CD\u7F6E"
276
+ })]
277
+ });
219
278
  };
220
- var _default = PrdTools;
221
- exports.default = _default;
279
+ var _default = exports.default = PrdTools;
@@ -29,7 +29,7 @@
29
29
  width : 4px;
30
30
  height : 14px;
31
31
  background : var(--zaui-brand, #006aff);
32
- border-radius: 1px;
32
+ border-radius: 2px;
33
33
  }
34
34
  }
35
35
 
@@ -144,7 +144,7 @@
144
144
  position : relative;
145
145
  left : 4px;
146
146
  z-index : 1;
147
- color : #343434;
147
+ color : var(--zaui-text, #343434);
148
148
  font-size: 16px;
149
149
  transform: translateZ(100px);
150
150
 
@@ -165,4 +165,4 @@
165
165
  transform : perspective(0.15em) rotateY(-2deg);
166
166
  content : '';
167
167
  }
168
- }
168
+ }
@@ -1,7 +1,6 @@
1
- import React from 'react';
2
1
  import type { ProThemeToolsProps } from './propsType';
3
2
  declare const ProThemeTools: {
4
- ({ size, className, cacheTime, color, mode, theme, ...props }: ProThemeToolsProps): React.JSX.Element;
3
+ ({ size, className, cacheTime, color, mode, theme, tableBorder, tableStripe, ...props }: ProThemeToolsProps): JSX.Element;
5
4
  defaultProps: {
6
5
  size: number;
7
6
  mode: string;
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
@@ -10,15 +9,31 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
10
9
  var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
11
10
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
12
11
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
12
+ var _jsxRuntime = require("react/jsx-runtime");
13
13
  var _icons = require("@ant-design/icons");
14
14
  var _antd = require("antd");
15
- var _react = _interopRequireWildcard(require("react"));
15
+ var _react = require("react");
16
16
  var _classnames2 = _interopRequireDefault(require("classnames"));
17
17
  var _index = require("./utils/index");
18
18
  var _component = require("./component");
19
- var _excluded = ["size", "className", "cacheTime", "color", "mode", "theme"];
19
+ var _excluded = ["size", "className", "cacheTime", "color", "mode", "theme", "tableBorder", "tableStripe"];
20
20
  /* eslint-disable prefer-const */
21
21
  var defaultCacheTime = 1; // 配置保存时间为一天
22
+ var defaultThemeConfig = {
23
+ zauiBrand: '#006AFF',
24
+ zauiText: '#343434',
25
+ zauiFontSize: 14,
26
+ zauiFormAlign: 'left',
27
+ zauiFormRequiredBefore: 'none',
28
+ zauiFormRequiredAfter: 'inline',
29
+ zauiSize: 1,
30
+ zauiSpaceSizeLg: 32,
31
+ zauiSpaceSizeMd: 16,
32
+ zauiBigText: false,
33
+ zauiBaseFontSize: 0,
34
+ zauiTableBorder: false,
35
+ zauiStripe: true
36
+ };
22
37
  var ProThemeTools = function ProThemeTools(_ref) {
23
38
  var size = _ref.size,
24
39
  className = _ref.className,
@@ -26,26 +41,16 @@ var ProThemeTools = function ProThemeTools(_ref) {
26
41
  color = _ref.color,
27
42
  mode = _ref.mode,
28
43
  theme = _ref.theme,
44
+ _ref$tableBorder = _ref.tableBorder,
45
+ tableBorder = _ref$tableBorder === void 0 ? false : _ref$tableBorder,
46
+ _ref$tableStripe = _ref.tableStripe,
47
+ tableStripe = _ref$tableStripe === void 0 ? false : _ref$tableStripe,
29
48
  props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
30
49
  var _useState = (0, _react.useState)(false),
31
50
  _useState2 = (0, _slicedToArray2.default)(_useState, 2),
32
51
  visible = _useState2[0],
33
52
  setVisible = _useState2[1];
34
- var _useState3 = (0, _react.useState)({
35
- zauiBrand: '#006AFF',
36
- zauiText: '#343434',
37
- zauiFontSize: 14,
38
- zauiFormAlign: 'left',
39
- zauiFormRequiredBefore: 'none',
40
- zauiFormRequiredAfter: 'inline',
41
- zauiSize: 1,
42
- zauiHeightCard: 32,
43
- zauiHeightBorder: 12,
44
- zauiBigText: false,
45
- zauiBaseFontSize: 0,
46
- zauiTableBorder: false,
47
- zauiStripe: true
48
- }),
53
+ var _useState3 = (0, _react.useState)((0, _objectSpread2.default)({}, defaultThemeConfig)),
49
54
  _useState4 = (0, _slicedToArray2.default)(_useState3, 2),
50
55
  state = _useState4[0],
51
56
  setState = _useState4[1];
@@ -60,21 +65,7 @@ var ProThemeTools = function ProThemeTools(_ref) {
60
65
  };
61
66
  // 重置
62
67
  var onReset = function onReset() {
63
- setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), {}, {
64
- zauiBrand: '#006AFF',
65
- zauiText: '#343434',
66
- zauiFormAlign: 'left',
67
- zauiFormRequiredBefore: 'none',
68
- zauiFormRequiredAfter: 'inline',
69
- zauiFontSize: 14,
70
- zauiSize: 1,
71
- zauiHeightCard: 32,
72
- zauiHeightBorder: 16,
73
- zauiBaseFontSize: 0,
74
- zauiBigText: false,
75
- zauiTableBorder: false,
76
- zauiStripe: true
77
- }));
68
+ setState((0, _objectSpread2.default)((0, _objectSpread2.default)({}, state), defaultThemeConfig));
78
69
  (0, _index.setThemes)({
79
70
  'zaui-brand': '#006AFF',
80
71
  'zaui-text': '#343434',
@@ -82,9 +73,9 @@ var ProThemeTools = function ProThemeTools(_ref) {
82
73
  'zaui-form-required-after': 'inline',
83
74
  'zaui-form-required-before': 'none',
84
75
  'zaui-size': 1,
85
- 'zaui-height-card': '32px',
76
+ 'zaui-space-size-lg': '32px',
86
77
  'zaui-font-size': '14px',
87
- 'zaui-height-border': '16px',
78
+ 'zaui-space-size-md': '16px',
88
79
  'zaui-base-font-size': 0,
89
80
  'zaui-big-text': false,
90
81
  'zaui-table-border': false,
@@ -153,10 +144,10 @@ var ProThemeTools = function ProThemeTools(_ref) {
153
144
  (0, _react.useEffect)(function () {
154
145
  (0, _index.setTableNoStripe)(zauiStripe);
155
146
  }, [zauiStripe]);
156
- // // 斑马纹设置
157
- // useEffect(() => {
158
- // setTableNoStripe(zauiStripe);
159
- // }, [zauiTableBorder]);
147
+ // 表格边框设置
148
+ (0, _react.useEffect)(function () {
149
+ (0, _index.setTableBorder)(zauiTableBorder);
150
+ }, [zauiTableBorder]);
160
151
  // 主题配置缓存
161
152
  (0, _react.useEffect)(function () {
162
153
  if (cacheTime) {
@@ -171,23 +162,27 @@ var ProThemeTools = function ProThemeTools(_ref) {
171
162
  'pro-theme-tools': true,
172
163
  'pro-theme-tools-follow': theme
173
164
  }, className, className));
174
- return /*#__PURE__*/_react.default.createElement("div", (0, _objectSpread2.default)({
165
+ return (0, _jsxRuntime.jsxs)("div", (0, _objectSpread2.default)((0, _objectSpread2.default)({
175
166
  className: cls
176
- }, props), /*#__PURE__*/_react.default.createElement(_icons.SettingOutlined, {
177
- style: {
178
- fontSize: "".concat(size, "px"),
179
- color: color
180
- },
181
- onClick: function onClick() {
182
- showDrawer();
183
- }
184
- }), /*#__PURE__*/_react.default.createElement(_component.PrdTools, {
185
- onReset: onReset,
186
- onClose: onClose,
187
- onCopy: onCopy,
188
- setState: setState,
189
- visible: visible,
190
- state: state
167
+ }, props), {}, {
168
+ children: [(0, _jsxRuntime.jsx)(_icons.SettingOutlined, {
169
+ style: {
170
+ fontSize: "".concat(size, "px"),
171
+ color: color
172
+ },
173
+ onClick: function onClick() {
174
+ showDrawer();
175
+ }
176
+ }), (0, _jsxRuntime.jsx)(_component.PrdTools, {
177
+ onReset: onReset,
178
+ onClose: onClose,
179
+ onCopy: onCopy,
180
+ setState: setState,
181
+ visible: visible,
182
+ state: state,
183
+ tableBorder: tableBorder,
184
+ tableStripe: tableStripe
185
+ })]
191
186
  }));
192
187
  };
193
188
  ProThemeTools.defaultProps = {
@@ -198,5 +193,4 @@ ProThemeTools.defaultProps = {
198
193
  cacheTime: false
199
194
  };
200
195
  ProThemeTools.setThemes = _index.setThemes;
201
- var _default = ProThemeTools;
202
- exports.default = _default;
196
+ var _default = exports.default = ProThemeTools;