@zat-design/sisyphus-react 4.5.9 → 4.5.10-beta.2

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 (280) hide show
  1. package/dist/index.esm.css +1 -1
  2. package/dist/less.esm.css +1 -1
  3. package/es/FormsProvider/index.js +14 -21
  4. package/es/ProAction/components/CheckModalContent/index.js +12 -26
  5. package/es/ProAction/index.js +79 -83
  6. package/es/ProAction/propsType.js +0 -1
  7. package/es/ProConfigProvider/index.js +63 -110
  8. package/es/ProConfigProvider/propsType.js +0 -1
  9. package/es/ProDownload/index.d.ts +2 -1
  10. package/es/ProDownload/index.js +74 -69
  11. package/es/ProDownload/propsType.js +0 -1
  12. package/es/ProDownload/utils.d.ts +10 -5
  13. package/es/ProDownload/utils.js +63 -95
  14. package/es/ProDrawerForm/components/ProDrawer/index.js +83 -113
  15. package/es/ProDrawerForm/components/ProModal/index.js +77 -108
  16. package/es/ProDrawerForm/components/index.js +6 -2
  17. package/es/ProDrawerForm/hooks/useConfirmClose.js +20 -39
  18. package/es/ProDrawerForm/index.js +29 -38
  19. package/es/ProDrawerForm/propsType.js +0 -1
  20. package/es/ProDrawerForm/utils/index.js +18 -36
  21. package/es/ProEditLabel/components/RenderProForm.js +45 -49
  22. package/es/ProEditLabel/index.js +126 -163
  23. package/es/ProEditLabel/propsType.js +0 -1
  24. package/es/ProEditLabel/utils/index.js +5 -8
  25. package/es/ProEditTable/components/ActionButton/index.js +111 -119
  26. package/es/ProEditTable/components/RcTable/BaseTable.js +38 -51
  27. package/es/ProEditTable/components/RcTable/DraggableTable.js +97 -129
  28. package/es/ProEditTable/components/RcTable/index.js +6 -4
  29. package/es/ProEditTable/components/RenderField/ListChangedWrapper.js +77 -95
  30. package/es/ProEditTable/components/RenderField/index.js +490 -587
  31. package/es/ProEditTable/components/RenderField/propsType.js +0 -1
  32. package/es/ProEditTable/components/RenderField/tools.js +115 -112
  33. package/es/ProEditTable/components/RenderToolbar/index.js +47 -73
  34. package/es/ProEditTable/components/Summary/index.js +38 -64
  35. package/es/ProEditTable/components/Validator/index.js +46 -46
  36. package/es/ProEditTable/components/index.js +12 -5
  37. package/es/ProEditTable/index.js +456 -378
  38. package/es/ProEditTable/propsType.js +0 -1
  39. package/es/ProEditTable/utils/config.js +60 -122
  40. package/es/ProEditTable/utils/diffOriginal.js +45 -82
  41. package/es/ProEditTable/utils/getDefaultProps.js +19 -24
  42. package/es/ProEditTable/utils/index.js +154 -235
  43. package/es/ProEditTable/utils/tools.js +149 -286
  44. package/es/ProEditTable/utils/transform.js +25 -30
  45. package/es/ProEditTable/utils/useEditTableError.js +30 -43
  46. package/es/ProEditTable/utils/useShouldUpdateForTable.js +42 -72
  47. package/es/ProEditTable/utils/validateAll.js +87 -154
  48. package/es/ProEnum/components/Group.js +38 -30
  49. package/es/ProEnum/components/Tag.js +22 -26
  50. package/es/ProEnum/hooks/useEnum.js +48 -116
  51. package/es/ProEnum/hooks/useEnumRequest.js +182 -212
  52. package/es/ProEnum/hooks/useFrequentEnumRequest.js +40 -48
  53. package/es/ProEnum/index.js +162 -172
  54. package/es/ProEnum/propsType.js +0 -1
  55. package/es/ProEnum/utils/eventCenter.js +10 -12
  56. package/es/ProEnum/utils/frequentEnum.js +35 -92
  57. package/es/ProEnum/utils/getEnum.js +32 -90
  58. package/es/ProEnum/utils/getEnumLabel.js +44 -49
  59. package/es/ProEnum/utils/index.js +93 -207
  60. package/es/ProForm/components/Container.js +13 -28
  61. package/es/ProForm/components/FormFooter/index.js +36 -44
  62. package/es/ProForm/components/FormFooter/propsType.js +0 -1
  63. package/es/ProForm/components/base/Checkbox/index.js +32 -59
  64. package/es/ProForm/components/base/DatePicker/index.js +49 -71
  65. package/es/ProForm/components/base/Input/index.js +63 -97
  66. package/es/ProForm/components/base/Input/propsType.js +0 -1
  67. package/es/ProForm/components/base/InputNumber/index.js +118 -172
  68. package/es/ProForm/components/base/Radio/index.js +39 -52
  69. package/es/ProForm/components/base/RangePicker/index.js +109 -127
  70. package/es/ProForm/components/base/RangePicker/useDateRange.js +20 -17
  71. package/es/ProForm/components/base/Select/index.js +63 -89
  72. package/es/ProForm/components/base/Switch/index.js +27 -35
  73. package/es/ProForm/components/base/SwitchCheckbox/index.js +36 -54
  74. package/es/ProForm/components/base/TextArea/index.js +30 -41
  75. package/es/ProForm/components/base/TimePicker/index.js +27 -37
  76. package/es/ProForm/components/combination/Container/index.js +37 -47
  77. package/es/ProForm/components/combination/Container/propsType.js +0 -1
  78. package/es/ProForm/components/combination/FormList/components/ActionButton.js +165 -237
  79. package/es/ProForm/components/combination/FormList/components/BlockFields.js +98 -102
  80. package/es/ProForm/components/combination/FormList/components/Empty.js +28 -55
  81. package/es/ProForm/components/combination/FormList/components/LineFields.js +57 -54
  82. package/es/ProForm/components/combination/FormList/components/ToolbarButton.js +61 -109
  83. package/es/ProForm/components/combination/FormList/index.js +151 -161
  84. package/es/ProForm/components/combination/FormList/propsType.js +0 -1
  85. package/es/ProForm/components/combination/FormList/style/index.less +6 -0
  86. package/es/ProForm/components/combination/FormList/utils.js +22 -38
  87. package/es/ProForm/components/combination/Group/component/AddonWrapper/index.js +12 -28
  88. package/es/ProForm/components/combination/Group/component/ComRender.js +50 -111
  89. package/es/ProForm/components/combination/Group/component/FlexibleGroup.js +106 -213
  90. package/es/ProForm/components/combination/Group/hooks/index.js +69 -129
  91. package/es/ProForm/components/combination/Group/index.js +87 -126
  92. package/es/ProForm/components/combination/Group/propsType.js +0 -1
  93. package/es/ProForm/components/combination/Group/utils/index.js +124 -239
  94. package/es/ProForm/components/combination/ProCascader/index.js +156 -199
  95. package/es/ProForm/components/combination/ProCascader/propsType.js +0 -1
  96. package/es/ProForm/components/combination/ProCascader/utils/index.js +12 -21
  97. package/es/ProForm/components/combination/ProModalSelect/hooks/useRequestList.js +72 -70
  98. package/es/ProForm/components/combination/ProModalSelect/index.js +309 -347
  99. package/es/ProForm/components/combination/ProModalSelect/propsType.js +0 -1
  100. package/es/ProForm/components/combination/ProModalSelect/utils/index.js +32 -39
  101. package/es/ProForm/components/combination/ProNumberRange/index.js +100 -156
  102. package/es/ProForm/components/combination/ProNumberRange/propsType.js +0 -1
  103. package/es/ProForm/components/combination/ProRangeLimit/index.js +104 -115
  104. package/es/ProForm/components/combination/ProRangeLimit/propsType.js +0 -1
  105. package/es/ProForm/components/combination/ProTimeLimit/hooks/useControlled.js +16 -16
  106. package/es/ProForm/components/combination/ProTimeLimit/index.js +75 -109
  107. package/es/ProForm/components/index.js +56 -34
  108. package/es/ProForm/components/render/ChangedWrapper.js +85 -94
  109. package/es/ProForm/components/render/ConfirmWrapper.js +27 -39
  110. package/es/ProForm/components/render/CustomComponentViewWrapper.js +65 -82
  111. package/es/ProForm/components/render/Render.js +223 -329
  112. package/es/ProForm/components/render/RenderFields.js +76 -113
  113. package/es/ProForm/components/render/propsType.js +0 -1
  114. package/es/ProForm/hooks/useControlled.js +8 -10
  115. package/es/ProForm/hooks/useDeepCompareMemo.js +11 -11
  116. package/es/ProForm/hooks/useFieldProps.js +8 -4
  117. package/es/ProForm/hooks/useForm.js +50 -110
  118. package/es/ProForm/hooks/useRules.js +17 -33
  119. package/es/ProForm/hooks/useShouldUpdate.js +77 -152
  120. package/es/ProForm/hooks/useWatch.js +62 -134
  121. package/es/ProForm/index.js +157 -194
  122. package/es/ProForm/propsType.js +15 -7
  123. package/es/ProForm/utils/buildFormItemProps.js +51 -58
  124. package/es/ProForm/utils/diffOriginal.js +43 -73
  125. package/es/ProForm/utils/getDefaultProps.js +18 -24
  126. package/es/ProForm/utils/index.js +160 -235
  127. package/es/ProForm/utils/processDependencies.js +21 -60
  128. package/es/ProForm/utils/reactiveValues.js +20 -34
  129. package/es/ProForm/utils/rulesCreator.js +42 -40
  130. package/es/ProForm/utils/transformNames.js +10 -13
  131. package/es/ProForm/utils/transformValue.js +16 -29
  132. package/es/ProForm/utils/valueType.js +96 -178
  133. package/es/ProIcon/config/index.js +340 -274
  134. package/es/ProIcon/index.js +135 -209
  135. package/es/ProIcon/propsTypes.js +0 -1
  136. package/es/ProIcon/utils/index.js +24 -39
  137. package/es/ProLayout/components/Layout/Header/index.js +108 -141
  138. package/es/ProLayout/components/Layout/Menu/FoldMenu/index.js +134 -190
  139. package/es/ProLayout/components/Layout/Menu/OpenMenu/index.js +113 -139
  140. package/es/ProLayout/components/Layout/Menu/OpenMenu/propsType.js +0 -1
  141. package/es/ProLayout/components/Layout/Menu/SideMenu/index.js +23 -31
  142. package/es/ProLayout/components/Layout/Menu/index.js +92 -89
  143. package/es/ProLayout/components/Layout/Notice/index.js +13 -27
  144. package/es/ProLayout/components/Layout/index.js +8 -3
  145. package/es/ProLayout/components/ProCollapse/PropTypes.js +0 -1
  146. package/es/ProLayout/components/ProCollapse/index.js +89 -111
  147. package/es/ProLayout/components/ProFooter/PropTypes.js +0 -1
  148. package/es/ProLayout/components/ProFooter/index.js +27 -24
  149. package/es/ProLayout/components/ProHeader/PropTypes.js +0 -1
  150. package/es/ProLayout/components/ProHeader/components/Copy/index.js +23 -21
  151. package/es/ProLayout/components/ProHeader/components/Describe/index.js +67 -84
  152. package/es/ProLayout/components/ProHeader/components/ProBackBtn/index.js +18 -21
  153. package/es/ProLayout/components/ProHeader/components/ProBackBtn/propsType.js +0 -1
  154. package/es/ProLayout/components/ProHeader/components/index.js +6 -2
  155. package/es/ProLayout/components/ProHeader/index.js +216 -356
  156. package/es/ProLayout/components/ProHeader/utils/index.js +19 -26
  157. package/es/ProLayout/components/TabsManager/components/TabContextMenu.js +92 -85
  158. package/es/ProLayout/components/TabsManager/components/TabItem.js +53 -63
  159. package/es/ProLayout/components/TabsManager/components/TabsContext.js +5 -5
  160. package/es/ProLayout/components/TabsManager/components/TabsHeader.js +42 -52
  161. package/es/ProLayout/components/TabsManager/hooks/useActiveTab.js +8 -9
  162. package/es/ProLayout/components/TabsManager/hooks/useIframeRoute.js +19 -32
  163. package/es/ProLayout/components/TabsManager/hooks/useProLayoutTabs.js +6 -20
  164. package/es/ProLayout/components/TabsManager/hooks/useTabsCache.js +25 -42
  165. package/es/ProLayout/components/TabsManager/hooks/useTabsState.js +320 -350
  166. package/es/ProLayout/components/TabsManager/hooks/useTabsUrlSync.d.ts +19 -0
  167. package/es/ProLayout/components/TabsManager/hooks/useTabsUrlSync.js +332 -0
  168. package/es/ProLayout/components/TabsManager/index.js +407 -351
  169. package/es/ProLayout/components/TabsManager/propTypes.d.ts +4 -0
  170. package/es/ProLayout/components/TabsManager/propTypes.js +7 -15
  171. package/es/ProLayout/components/TabsManager/style/index.less +1 -1
  172. package/es/ProLayout/components/TabsManager/utils/historyObserver.d.ts +7 -0
  173. package/es/ProLayout/components/TabsManager/utils/historyObserver.js +65 -0
  174. package/es/ProLayout/components/TabsManager/utils/index.d.ts +15 -2
  175. package/es/ProLayout/components/TabsManager/utils/index.js +156 -159
  176. package/es/ProLayout/components/index.js +8 -3
  177. package/es/ProLayout/index.js +173 -228
  178. package/es/ProLayout/propTypes.d.ts +28 -1
  179. package/es/ProLayout/propTypes.js +12 -52
  180. package/es/ProLayout/utils/index.js +48 -128
  181. package/es/ProSelect/components/AdaptiveTooltip.js +26 -25
  182. package/es/ProSelect/index.js +187 -223
  183. package/es/ProSelect/propsType.js +0 -1
  184. package/es/ProSelect/style/index.less +13 -0
  185. package/es/ProSelect/utils/index.js +100 -146
  186. package/es/ProStep/components/Anchor/index.js +71 -82
  187. package/es/ProStep/components/Item/index.js +49 -56
  188. package/es/ProStep/components/LazyLoad/index.js +23 -29
  189. package/es/ProStep/components/Listener/index.js +20 -33
  190. package/es/ProStep/components/Step/index.js +31 -38
  191. package/es/ProStep/constants.js +4 -1
  192. package/es/ProStep/index.js +166 -153
  193. package/es/ProStep/propsType.js +0 -1
  194. package/es/ProStep/style/index.less +1 -1
  195. package/es/ProStep/utils/index.js +29 -55
  196. package/es/ProStepTab/index.js +83 -138
  197. package/es/ProStepTab/propsType.js +0 -1
  198. package/es/ProTable/components/EditableCell/EditIcon.js +10 -14
  199. package/es/ProTable/components/EditableCell/index.js +37 -71
  200. package/es/ProTable/components/EditableCell/propsType.js +0 -1
  201. package/es/ProTable/components/FormatColumn/index.js +209 -340
  202. package/es/ProTable/components/FormatColumn/propsType.js +0 -1
  203. package/es/ProTable/components/RcTable/components/BaseTable/index.js +35 -39
  204. package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/index.js +80 -107
  205. package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/index.js +54 -48
  206. package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/propsType.js +0 -1
  207. package/es/ProTable/components/RcTable/components/DraggableTable/index.js +47 -54
  208. package/es/ProTable/components/RcTable/index.js +6 -4
  209. package/es/ProTable/components/RenderColumn/index.js +158 -186
  210. package/es/ProTable/components/RenderEmptyText/index.js +12 -21
  211. package/es/ProTable/components/RenderFooter/index.js +15 -15
  212. package/es/ProTable/components/RenderSummary/index.js +33 -50
  213. package/es/ProTable/components/RenderTableHeader/index.js +44 -46
  214. package/es/ProTable/components/RenderTabs/index.js +47 -51
  215. package/es/ProTable/components/TableResizable/index.js +56 -72
  216. package/es/ProTable/components/TooltipTitle/index.js +13 -21
  217. package/es/ProTable/components/index.js +16 -36
  218. package/es/ProTable/hooks/useAntdTable.js +191 -224
  219. package/es/ProTable/index.js +232 -249
  220. package/es/ProTable/propsType.js +0 -1
  221. package/es/ProTable/utils/columnStorage.js +63 -88
  222. package/es/ProTable/utils/index.js +57 -90
  223. package/es/ProTabs/components/Card/index.js +20 -48
  224. package/es/ProTabs/components/index.js +4 -1
  225. package/es/ProTabs/index.js +41 -58
  226. package/es/ProTabs/propType.js +0 -1
  227. package/es/ProThemeTools/component/ProTools/index.js +106 -158
  228. package/es/ProThemeTools/component/index.js +4 -1
  229. package/es/ProThemeTools/context/ThemeContext.js +67 -146
  230. package/es/ProThemeTools/index.js +103 -156
  231. package/es/ProThemeTools/propsType.js +0 -1
  232. package/es/ProThemeTools/utils/index.js +60 -109
  233. package/es/ProTooltip/index.js +132 -168
  234. package/es/ProTooltip/propsType.js +0 -1
  235. package/es/ProTree/components/AdaptiveTooltip.js +15 -17
  236. package/es/ProTree/components/CloseIcon.js +18 -26
  237. package/es/ProTree/components/List.js +28 -47
  238. package/es/ProTree/components/ProTree.js +152 -211
  239. package/es/ProTree/components/ProTreeSelect/index.js +255 -459
  240. package/es/ProTree/components/ProTreeSelect/propsType.js +0 -1
  241. package/es/ProTree/components/SearchTitle.js +23 -42
  242. package/es/ProTree/components/Tree.js +147 -195
  243. package/es/ProTree/components/index.js +10 -5
  244. package/es/ProTree/index.js +12 -16
  245. package/es/ProTree/propsType.js +0 -1
  246. package/es/ProTree/utils.js +46 -118
  247. package/es/ProTreeModal/components/Cascader.js +56 -64
  248. package/es/ProTreeModal/components/CloseIcon.js +18 -26
  249. package/es/ProTreeModal/components/List.js +114 -180
  250. package/es/ProTreeModal/components/SearchTitle.js +15 -18
  251. package/es/ProTreeModal/components/SortableItem.js +29 -58
  252. package/es/ProTreeModal/components/Tree.js +99 -113
  253. package/es/ProTreeModal/components/Trigger.js +87 -121
  254. package/es/ProTreeModal/components/index.js +14 -6
  255. package/es/ProTreeModal/index.js +397 -438
  256. package/es/ProTreeModal/propsType.js +0 -1
  257. package/es/ProTreeModal/utils.js +52 -95
  258. package/es/ProUpload/components/ButtonRender.js +44 -54
  259. package/es/ProUpload/components/DragRender.js +94 -148
  260. package/es/ProUpload/components/DraggableUploadListItem.js +12 -25
  261. package/es/ProUpload/components/Example.js +27 -31
  262. package/es/ProUpload/components/FileItem.js +69 -163
  263. package/es/ProUpload/components/ImageRender.js +134 -170
  264. package/es/ProUpload/index.js +68 -100
  265. package/es/ProUpload/propsType.js +0 -1
  266. package/es/ProUpload/uitls.js +8 -4
  267. package/es/ProUtils/utils/index.js +17 -13
  268. package/es/ProViewer/index.js +154 -175
  269. package/es/ProViewer/propsType.js +0 -5
  270. package/es/ProWaterMark/index.js +9 -16
  271. package/es/ProWaterMark/propsType.js +0 -1
  272. package/es/hooks/useDraggableRow.js +25 -53
  273. package/es/index.js +57 -77
  274. package/es/locale/en_US.js +153 -142
  275. package/es/locale/index.js +23 -36
  276. package/es/locale/zh_CN.js +145 -142
  277. package/es/tokens.js +84 -83
  278. package/es/utils/index.js +24 -51
  279. package/package.json +4 -2
  280. package/es/ProConfigProvider/demo/locale.js +0 -58
@@ -1,20 +1,16 @@
1
- import _isBoolean from "lodash/isBoolean";
2
- import { useRef } from 'react';
3
- import { Tooltip, Typography, Space } from 'antd';
4
- import { useSetState } from 'ahooks';
5
- import classNames from 'classnames';
6
- import { CheckOutlined } from '@ant-design/icons';
7
- import { ReactSVG } from 'react-svg';
1
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
2
+ import { useRef } from "react";
3
+ import { Tooltip, Typography, Space } from "antd";
4
+ import { useSetState } from "ahooks";
5
+ import isBoolean from "lodash/isBoolean";
6
+ import classNames from "classnames";
7
+ import { CheckOutlined } from "@ant-design/icons";
8
+ import { ReactSVG } from "react-svg";
8
9
  import { isEmpty, isEllipsisActive } from "../../../utils";
9
10
  import copySvg from "../../../assets/copy.svg";
10
11
  import locale from "../../../locale";
11
- import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
12
- const {
13
- Paragraph,
14
- Text
15
- } = Typography;
16
- // @ts-ignore
17
- const RenderColumn = props => {
12
+ const { Paragraph, Text } = Typography;
13
+ const RenderColumn = (props) => {
18
14
  const {
19
15
  valueType,
20
16
  value,
@@ -30,219 +26,195 @@ const RenderColumn = props => {
30
26
  scroll
31
27
  } = props;
32
28
  const textRef = useRef(null);
33
- const [{
34
- tooltip
35
- }, setState] = useSetState({
29
+ const [{ tooltip }, setState] = useSetState({
36
30
  tooltip: false
37
31
  });
38
32
  const cellDiffCls = classNames({
39
- 'varied-cell': props?.isChanged,
40
- 'add-cell': props?.isAddCell
33
+ "varied-cell": props == null ? void 0 : props.isChanged,
34
+ "add-cell": props == null ? void 0 : props.isAddCell
41
35
  });
42
- const handleMouseOver = e => {
36
+ const handleMouseOver = (e) => {
43
37
  setState({
44
38
  tooltip: isEllipsisActive(e.target)
45
39
  });
46
40
  };
47
41
  const tooltipProps = {
48
- getPopupContainer: triggerNode => triggerNode.parentNode,
42
+ getPopupContainer: (triggerNode) => triggerNode.parentNode,
49
43
  ...toolTipProps
50
44
  };
51
-
52
- // 比对场景走的逻辑(包括新增行和变更行)
53
- if (_isBoolean(props?.isChanged) || isInNewRowFlag) {
54
- let renderNode = value ? node : '-';
55
- const isXMaxContent = scroll?.x === 'max-content';
56
-
57
- // 新增行场景:直接显示带样式的内容
45
+ if (isBoolean(props == null ? void 0 : props.isChanged) || isInNewRowFlag) {
46
+ let renderNode = value ? node : "-";
47
+ const isXMaxContent = (scroll == null ? void 0 : scroll.x) === "max-content";
58
48
  if (isInNewRowFlag) {
59
49
  if (ellipsis) {
60
- renderNode = !isXMaxContent ? /*#__PURE__*/_jsx(Text, {
61
- style: {
62
- width: currentValue === '-' ? 32.5 : width,
63
- minWidth
64
- },
65
- ellipsis: {
66
- tooltip: false
67
- },
68
- children: node
69
- }) : /*#__PURE__*/_jsx("div", {
50
+ renderNode = !isXMaxContent ? /* @__PURE__ */ jsx(
51
+ Text,
52
+ {
53
+ style: { width: currentValue === "-" ? 32.5 : width, minWidth },
54
+ ellipsis: { tooltip: false },
55
+ children: node
56
+ }
57
+ ) : /* @__PURE__ */ jsx(
58
+ "div",
59
+ {
60
+ style: {
61
+ minWidth,
62
+ width,
63
+ overflow: "hidden",
64
+ textOverflow: "ellipsis",
65
+ whiteSpace: "nowrap"
66
+ },
67
+ children: node
68
+ }
69
+ );
70
+ }
71
+ return /* @__PURE__ */ jsx("div", { className: "add-cell", style: { width, minWidth }, children: renderNode });
72
+ }
73
+ if (ellipsis || (props == null ? void 0 : props.isChanged)) {
74
+ renderNode = !isXMaxContent ? /* @__PURE__ */ jsx(
75
+ Text,
76
+ {
77
+ style: { width: currentValue === "-" ? 32.5 : width, minWidth },
78
+ ellipsis: { tooltip: false },
79
+ children: ellipsis ? node : renderNode
80
+ }
81
+ ) : /* @__PURE__ */ jsx(
82
+ "div",
83
+ {
70
84
  style: {
71
85
  minWidth,
72
86
  width,
73
- overflow: 'hidden',
74
- textOverflow: 'ellipsis',
75
- whiteSpace: 'nowrap'
87
+ overflow: "hidden",
88
+ textOverflow: "ellipsis",
89
+ whiteSpace: "nowrap"
76
90
  },
77
- children: node
78
- });
79
- }
80
- return /*#__PURE__*/_jsx("div", {
81
- className: "add-cell",
82
- style: {
83
- width,
84
- minWidth
85
- },
86
- children: renderNode
87
- });
88
- }
89
- if (ellipsis || props?.isChanged) {
90
- renderNode = !isXMaxContent ? /*#__PURE__*/_jsx(Text, {
91
- style: {
92
- width: currentValue === '-' ? 32.5 : width,
93
- minWidth
94
- },
95
- ellipsis: {
96
- tooltip: false
97
- },
98
- children: ellipsis ? node : renderNode
99
- }) : /*#__PURE__*/_jsx("div", {
100
- style: {
101
- minWidth,
102
- width,
103
- overflow: 'hidden',
104
- textOverflow: 'ellipsis',
105
- whiteSpace: 'nowrap'
106
- },
107
- children: ellipsis ? node : renderNode
108
- });
109
- if (props?.isChanged === false) {
91
+ children: ellipsis ? node : renderNode
92
+ }
93
+ );
94
+ if ((props == null ? void 0 : props.isChanged) === false) {
110
95
  if (ellipsis) {
111
- return /*#__PURE__*/_jsx(Tooltip, {
112
- title: currentValue,
113
- onOpenChange: open => {
114
- setState({
115
- tooltip: false
116
- });
117
- },
118
- open: tooltip,
119
- ...tooltipProps,
120
- children: /*#__PURE__*/_jsx(Text, {
121
- style: {
122
- width,
123
- minWidth
96
+ return /* @__PURE__ */ jsx(
97
+ Tooltip,
98
+ {
99
+ title: currentValue,
100
+ onOpenChange: (open) => {
101
+ setState({
102
+ tooltip: false
103
+ });
124
104
  },
125
- ellipsis: true,
126
- onMouseOver: handleMouseOver,
127
- onFocus: handleMouseOver,
128
- children: renderNode
129
- })
130
- });
105
+ open: tooltip,
106
+ ...tooltipProps,
107
+ children: /* @__PURE__ */ jsx(
108
+ Text,
109
+ {
110
+ style: {
111
+ width,
112
+ minWidth
113
+ },
114
+ ellipsis: true,
115
+ onMouseOver: handleMouseOver,
116
+ onFocus: handleMouseOver,
117
+ children: renderNode
118
+ }
119
+ )
120
+ }
121
+ );
131
122
  }
132
123
  return renderNode;
133
124
  }
134
125
  if (Array.isArray(originalValue)) {
135
- console.error('Error: When enabled, dataIndex corresponds to an array, which needs to be converted using viewRender');
126
+ console.error(
127
+ "Error: When enabled, dataIndex corresponds to an array, which needs to be converted using viewRender"
128
+ );
136
129
  }
137
130
  const originalValueCalc = () => {
138
131
  if (Array.isArray(originalValue)) {
139
132
  return null;
140
133
  }
141
- return !isEmpty(originalValue) ? originalValue : '-';
134
+ return !isEmpty(originalValue) ? originalValue : "-";
142
135
  };
143
- return /*#__PURE__*/_jsx(Tooltip, {
144
- style: {
145
- width,
146
- minWidth
147
- },
148
- classNames: {
149
- root: 'original-value-tooltip'
150
- },
151
- destroyOnHidden: true,
152
- placement: "topLeft",
153
- autoAdjustOverflow: false,
154
- title: /*#__PURE__*/_jsx(Space, {
155
- orientation: "vertical",
156
- className: "changed-tooltip",
157
- children: props?.isChanged && !props?.isAddCell ? /*#__PURE__*/_jsxs(_Fragment, {
158
- children: [/*#__PURE__*/_jsxs(Space, {
159
- align: "start",
160
- className: "original-value-container",
161
- children: ["\u521D\u59CB\u503C\uFF1A", originalValueCalc()]
162
- }), /*#__PURE__*/_jsx(Space, {
163
- className: "current-value-container",
164
- children: ellipsis ? /*#__PURE__*/_jsxs(Space, {
165
- children: ["\u5F53\u524D\u503C\uFF1A", currentValue]
166
- }) : null
167
- })]
168
- }) : node
169
- }),
170
- ...toolTipProps,
171
- children: /*#__PURE__*/_jsx("div", {
172
- className: cellDiffCls,
173
- children: renderNode
174
- })
175
- });
136
+ return /* @__PURE__ */ jsx(
137
+ Tooltip,
138
+ {
139
+ style: { width, minWidth },
140
+ classNames: {
141
+ root: "original-value-tooltip"
142
+ },
143
+ destroyOnHidden: true,
144
+ placement: "topLeft",
145
+ autoAdjustOverflow: false,
146
+ title: /* @__PURE__ */ jsx(Space, { orientation: "vertical", className: "changed-tooltip", children: (props == null ? void 0 : props.isChanged) && !(props == null ? void 0 : props.isAddCell) ? /* @__PURE__ */ jsxs(Fragment, { children: [
147
+ /* @__PURE__ */ jsxs(Space, { align: "start", className: "original-value-container", children: [
148
+ "初始值:",
149
+ originalValueCalc()
150
+ ] }),
151
+ /* @__PURE__ */ jsx(Space, { className: "current-value-container", children: ellipsis ? /* @__PURE__ */ jsxs(Space, { children: [
152
+ "当前值:",
153
+ currentValue
154
+ ] }) : null })
155
+ ] }) : node }),
156
+ ...toolTipProps,
157
+ children: /* @__PURE__ */ jsx("div", { className: cellDiffCls, children: renderNode })
158
+ }
159
+ );
176
160
  }
177
- return /*#__PURE__*/_jsx("div", {
178
- className: cellDiffCls,
179
- style: {
180
- width,
181
- minWidth
182
- },
183
- children: renderNode
184
- });
161
+ return /* @__PURE__ */ jsx("div", { className: cellDiffCls, style: { width, minWidth }, children: renderNode });
185
162
  }
186
163
  if (copyable) {
187
- return /*#__PURE__*/_jsx("span", {
188
- className: "copyable-table-cell",
189
- children: /*#__PURE__*/_jsx(Paragraph, {
190
- style: ellipsis ? {
191
- width
192
- } : undefined,
193
- ellipsis: ellipsis ? {
194
- tooltip: node
195
- } : false,
164
+ return /* @__PURE__ */ jsx("span", { className: "copyable-table-cell", children: /* @__PURE__ */ jsx(
165
+ Paragraph,
166
+ {
167
+ style: ellipsis ? { width } : void 0,
168
+ ellipsis: ellipsis ? { tooltip: node } : false,
196
169
  copyable: {
197
170
  text: node,
198
- icon: [/*#__PURE__*/_jsx(ReactSVG, {
199
- className: "drag-icon",
200
- src: copySvg
201
- }, "copy-icon"), /*#__PURE__*/_jsx(CheckOutlined, {}, "copied-icon")],
171
+ icon: [
172
+ /* @__PURE__ */ jsx(ReactSVG, { className: "drag-icon", src: copySvg }, "copy-icon"),
173
+ /* @__PURE__ */ jsx(CheckOutlined, {}, "copied-icon")
174
+ ],
202
175
  tooltips: locale.ProHeader.copyTooltips
203
176
  },
204
177
  children: node
205
- })
206
- });
178
+ }
179
+ ) });
207
180
  }
208
181
  if (ellipsis) {
209
182
  if (!value) {
210
- return /*#__PURE__*/_jsx("div", {
211
- style: {
212
- minWidth
213
- },
214
- children: "-"
215
- });
183
+ return /* @__PURE__ */ jsx("div", { style: { minWidth }, children: "-" });
216
184
  }
217
- return /*#__PURE__*/_jsx(Tooltip, {
218
- title: value,
219
- destroyOnHidden: true,
220
- onOpenChange: () => {
221
- setState({
222
- tooltip: false
223
- });
224
- },
225
- open: tooltip,
226
- ...tooltipProps,
227
- getPopupContainer: () => document.body,
228
- children: /*#__PURE__*/_jsx(Text, {
229
- ref: textRef,
230
- style: {
231
- width,
232
- minWidth
185
+ return /* @__PURE__ */ jsx(
186
+ Tooltip,
187
+ {
188
+ title: value,
189
+ destroyOnHidden: true,
190
+ onOpenChange: () => {
191
+ setState({
192
+ tooltip: false
193
+ });
233
194
  },
234
- ellipsis: true,
235
- onMouseOver: handleMouseOver,
236
- onFocus: handleMouseOver,
237
- children: node
238
- })
239
- });
195
+ open: tooltip,
196
+ ...tooltipProps,
197
+ getPopupContainer: () => document.body,
198
+ children: /* @__PURE__ */ jsx(
199
+ Text,
200
+ {
201
+ ref: textRef,
202
+ style: {
203
+ width,
204
+ minWidth
205
+ },
206
+ ellipsis: true,
207
+ onMouseOver: handleMouseOver,
208
+ onFocus: handleMouseOver,
209
+ children: node
210
+ }
211
+ )
212
+ }
213
+ );
240
214
  }
241
- return /*#__PURE__*/_jsx("div", {
242
- style: {
243
- minWidth
244
- },
245
- children: value || value === 0 ? node : '-'
246
- });
215
+ return /* @__PURE__ */ jsx("div", { style: { minWidth }, children: value || value === 0 ? node : "-" });
216
+ };
217
+ var RenderColumn_default = RenderColumn;
218
+ export {
219
+ RenderColumn_default as default
247
220
  };
248
- export default RenderColumn;
@@ -1,22 +1,13 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const RenderEmptyText = props => {
3
- const {
4
- empty,
5
- locale,
6
- emptyText
7
- } = props || {};
8
- return /*#__PURE__*/_jsxs("div", {
9
- className: "pro-table-empty",
10
- children: [/*#__PURE__*/_jsx("div", {
11
- className: "empty-image",
12
- children: /*#__PURE__*/_jsx("img", {
13
- src: empty,
14
- alt: locale?.ProTable?.noData
15
- })
16
- }), /*#__PURE__*/_jsx("div", {
17
- className: "empty-description",
18
- children: typeof emptyText === 'function' ? emptyText() : emptyText
19
- })]
20
- });
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ const RenderEmptyText = (props) => {
3
+ var _a;
4
+ const { empty, locale, emptyText } = props || {};
5
+ return /* @__PURE__ */ jsxs("div", { className: "pro-table-empty", children: [
6
+ /* @__PURE__ */ jsx("div", { className: "empty-image", children: /* @__PURE__ */ jsx("img", { src: empty, alt: (_a = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _a.noData }) }),
7
+ /* @__PURE__ */ jsx("div", { className: "empty-description", children: typeof emptyText === "function" ? emptyText() : emptyText })
8
+ ] });
9
+ };
10
+ var RenderEmptyText_default = RenderEmptyText;
11
+ export {
12
+ RenderEmptyText_default as default
21
13
  };
22
- export default RenderEmptyText;
@@ -1,16 +1,16 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const RenderFooter = props => {
3
- const {
4
- dataSource
5
- } = props || {};
6
- const {
7
- footerRender,
8
- pagination,
9
- _dataSource
10
- } = dataSource || {};
11
- return footerRender ? /*#__PURE__*/_jsx("div", {
12
- className: `pro-table-footer ${pagination && !!_dataSource?.length ? 'has-page' : 'no-page'}`,
13
- children: typeof footerRender === 'function' ? footerRender() : footerRender
14
- }) : null;
1
+ import { jsx } from "react/jsx-runtime";
2
+ const RenderFooter = (props) => {
3
+ const { dataSource } = props || {};
4
+ const { footerRender, pagination, _dataSource } = dataSource || {};
5
+ return footerRender ? /* @__PURE__ */ jsx(
6
+ "div",
7
+ {
8
+ className: `pro-table-footer ${pagination && !!(_dataSource == null ? void 0 : _dataSource.length) ? "has-page" : "no-page"}`,
9
+ children: typeof footerRender === "function" ? footerRender() : footerRender
10
+ }
11
+ ) : null;
12
+ };
13
+ var RenderFooter_default = RenderFooter;
14
+ export {
15
+ RenderFooter_default as default
15
16
  };
16
- export default RenderFooter;
@@ -1,55 +1,38 @@
1
- import _isObject from "lodash/isObject";
2
- import _get from "lodash/get";
3
- import { Table } from 'antd';
4
- import { tools } from '@zat-design/utils';
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { Table } from "antd";
3
+ import get from "lodash/get";
4
+ import isObject from "lodash/isObject";
5
+ import { tools } from "@zat-design/utils";
5
6
  import { valueTypeRender } from "../../../ProUtils/utils";
6
- import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
7
- const renderSummary = props => {
8
- const {
9
- summary,
10
- dataSource
11
- } = props;
12
- const {
13
- columns,
14
- total = true,
15
- fixed = true
16
- } = summary || {};
17
- // 没有数据时,不展示合计栏
18
- if (!dataSource?.length) {
7
+ const renderSummary = (props) => {
8
+ const { summary, dataSource } = props;
9
+ const { columns, total = true, fixed = true } = summary || {};
10
+ if (!(dataSource == null ? void 0 : dataSource.length)) {
19
11
  return null;
20
12
  }
21
- return _isObject(summary) ? /*#__PURE__*/_jsx(Table.Summary, {
22
- fixed: fixed,
23
- children: /*#__PURE__*/_jsx(Table.Summary.Row, {
24
- children: columns?.map(({
25
- key,
26
- dataIndex,
27
- index,
28
- colSpan,
13
+ return isObject(summary) ? /* @__PURE__ */ jsx(Table.Summary, { fixed, children: /* @__PURE__ */ jsx(Table.Summary.Row, { children: columns == null ? void 0 : columns.map(
14
+ ({ key, dataIndex, index, colSpan, prefix, suffix, title, precision, valueType }) => {
15
+ var _a, _b;
16
+ const _key = key || dataIndex;
17
+ let text = null;
18
+ if (title) {
19
+ text = title;
20
+ } else if (total && _key) {
21
+ const format = (_a = valueTypeRender) == null ? void 0 : _a[valueType];
22
+ const sum = (_b = dataSource == null ? void 0 : dataSource.reduce) == null ? void 0 : _b.call(dataSource, (pre, cur) => {
23
+ return tools.calc(pre, "+", get(cur, _key) ?? 0);
24
+ }, 0);
25
+ text = format ? format(sum, precision ?? 2) : sum;
26
+ }
27
+ return /* @__PURE__ */ jsxs(Table.Summary.Cell, { index, colSpan, children: [
29
28
  prefix,
30
- suffix,
31
- title,
32
- precision,
33
- valueType
34
- }) => {
35
- const _key = key || dataIndex;
36
- let text = null;
37
- if (title) {
38
- text = title;
39
- } else if (total && _key) {
40
- const format = valueTypeRender?.[valueType];
41
- const sum = dataSource?.reduce?.((pre, cur) => {
42
- return tools.calc(pre, '+', _get(cur, _key) ?? 0);
43
- }, 0);
44
- text = format ? format(sum, precision ?? 2) : sum;
45
- }
46
- return /*#__PURE__*/_jsxs(Table.Summary.Cell, {
47
- index: index,
48
- colSpan: colSpan,
49
- children: [prefix, text, suffix]
50
- }, _key);
51
- })
52
- })
53
- }) : summary;
29
+ text,
30
+ suffix
31
+ ] }, _key);
32
+ }
33
+ ) }) }) : summary;
34
+ };
35
+ var RenderSummary_default = renderSummary;
36
+ export {
37
+ RenderSummary_default as default
54
38
  };
55
- export default renderSummary;
@@ -1,11 +1,10 @@
1
- import { Button } from 'antd';
2
- import { ReactSVG } from 'react-svg';
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { Button } from "antd";
3
+ import { ReactSVG } from "react-svg";
3
4
  import { ProTreeModal } from "../../../index";
4
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
5
- const RenderTableHeader = props => {
6
- const {
7
- dataSource
8
- } = props;
5
+ const RenderTableHeader = (props) => {
6
+ var _a, _b, _c;
7
+ const { dataSource } = props;
9
8
  const {
10
9
  headerRender,
11
10
  columnConfig,
@@ -18,46 +17,45 @@ const RenderTableHeader = props => {
18
17
  handleColumnConfig,
19
18
  customColumnSvg
20
19
  } = dataSource || {};
21
-
22
- // 没有数据时,不展示tableHeader
23
20
  if (!(headerRender || columnConfig || resizeColumn)) {
24
21
  return null;
25
22
  }
26
- return /*#__PURE__*/_jsxs("div", {
27
- className: "column-config",
28
- children: [/*#__PURE__*/_jsx("div", {
29
- className: "left-contain",
30
- children: headerRender ? typeof headerRender === 'function' ? headerRender() : headerRender : null
31
- }), /*#__PURE__*/_jsxs("div", {
32
- className: "right-actions",
33
- children: [resizeColumn && /*#__PURE__*/_jsx(Button, {
34
- icon: /*#__PURE__*/_jsx(ReactSVG, {
35
- className: "anticon",
36
- wrapper: "span",
37
- src: resetSvg
38
- }),
39
- onClick: resetColumnWidth,
40
- children: locale?.ProTable?.resetColumnWidth
41
- }), columnConfig && /*#__PURE__*/_jsx(ProTreeModal, {
42
- title: locale?.ProTable?.customColumns,
43
- span: 8,
44
- mode: "list",
45
- draggable: true,
46
- dataSource: customColumns,
47
- value: checkColumns,
48
- allValue: "all",
49
- onChange: handleColumnConfig,
50
- trigger: /*#__PURE__*/_jsx(Button, {
51
- className: "custom-column-btn",
52
- icon: /*#__PURE__*/_jsx(ReactSVG, {
53
- className: "anticon",
54
- wrapper: "span",
55
- src: customColumnSvg
56
- }),
57
- children: locale?.ProTable?.customColumns
58
- })
59
- })]
60
- })]
61
- });
23
+ return /* @__PURE__ */ jsxs("div", { className: "column-config", children: [
24
+ /* @__PURE__ */ jsx("div", { className: "left-contain", children: headerRender ? typeof headerRender === "function" ? headerRender() : headerRender : null }),
25
+ /* @__PURE__ */ jsxs("div", { className: "right-actions", children: [
26
+ resizeColumn && /* @__PURE__ */ jsx(
27
+ Button,
28
+ {
29
+ icon: /* @__PURE__ */ jsx(ReactSVG, { className: "anticon", wrapper: "span", src: resetSvg }),
30
+ onClick: resetColumnWidth,
31
+ children: (_a = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _a.resetColumnWidth
32
+ }
33
+ ),
34
+ columnConfig && /* @__PURE__ */ jsx(
35
+ ProTreeModal,
36
+ {
37
+ title: (_b = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _b.customColumns,
38
+ span: 8,
39
+ mode: "list",
40
+ draggable: true,
41
+ dataSource: customColumns,
42
+ value: checkColumns,
43
+ allValue: "all",
44
+ onChange: handleColumnConfig,
45
+ trigger: /* @__PURE__ */ jsx(
46
+ Button,
47
+ {
48
+ className: "custom-column-btn",
49
+ icon: /* @__PURE__ */ jsx(ReactSVG, { className: "anticon", wrapper: "span", src: customColumnSvg }),
50
+ children: (_c = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _c.customColumns
51
+ }
52
+ )
53
+ }
54
+ )
55
+ ] })
56
+ ] });
57
+ };
58
+ var RenderTableHeader_default = RenderTableHeader;
59
+ export {
60
+ RenderTableHeader_default as default
62
61
  };
63
- export default RenderTableHeader;