@unicom-cloud/ui 0.8.66 → 0.8.68

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 (708) hide show
  1. package/Affix.js +15 -124
  2. package/Alert.js +13 -110
  3. package/Anchor.js +2 -2
  4. package/AutoComplete.js +15 -146
  5. package/Avatar.js +4 -154
  6. package/BackTop.js +14 -83
  7. package/Badge.js +12 -176
  8. package/Breadcrumb.js +12 -138
  9. package/Button.js +12 -149
  10. package/Calendar.js +12 -569
  11. package/Card.js +10 -136
  12. package/Carousel.js +13 -380
  13. package/Cascader.js +2 -2
  14. package/Checkbox.js +2 -2
  15. package/Collapse.js +2 -2
  16. package/ColorPicker.js +14 -582
  17. package/Comment.js +10 -71
  18. package/ConfigProvider.js +5 -6
  19. package/Copy.js +12 -60
  20. package/DatePicker.js +11 -2042
  21. package/Descriptions.js +11 -176
  22. package/Divider.js +7 -38
  23. package/Draggable.js +7 -89
  24. package/Drawer.js +2 -2
  25. package/Dropdown.js +15 -199
  26. package/Empty.js +3 -3
  27. package/Form.js +16 -1416
  28. package/Grid.js +9 -252
  29. package/Icon.js +7 -55
  30. package/IconHover.js +2 -2
  31. package/Image.js +6 -5
  32. package/Input.js +11 -10
  33. package/InputNumber.js +9 -7
  34. package/InputTag.js +2 -2
  35. package/Layout.js +16 -56
  36. package/Link.js +9 -60
  37. package/List.js +18 -312
  38. package/Loading.js +4 -59
  39. package/Mentions.js +12 -163
  40. package/Menu.js +8 -7
  41. package/Message.js +9 -7
  42. package/Modal.js +2 -2
  43. package/Notice.js +13 -3
  44. package/Notification.js +10 -7
  45. package/OverflowEllipsis.js +8 -96
  46. package/PageHeader.js +13 -113
  47. package/Pagination.js +2 -2
  48. package/Picker.js +4 -3
  49. package/Popconfirm.js +13 -128
  50. package/Popover.js +10 -76
  51. package/Portal.js +5 -33
  52. package/Progress.js +11 -363
  53. package/Radio.js +5 -6
  54. package/Rate.js +14 -125
  55. package/ResizeBox.js +16 -555
  56. package/Result.js +14 -1434
  57. package/Select.js +4 -3
  58. package/SelectView.js +9 -406
  59. package/Skeleton.js +11 -94
  60. package/Slider.js +21 -773
  61. package/Space.js +11 -94
  62. package/SpeechSynthesis.js +48 -57
  63. package/Spin.js +11 -94
  64. package/Statistic.js +15 -192
  65. package/Steps.js +11 -148
  66. package/SuspenseFallbackTest.js +3 -10
  67. package/Switch.js +13 -114
  68. package/Table.js +16 -2032
  69. package/Tabs.js +4 -4
  70. package/Tag.js +13 -134
  71. package/TimePicker.js +7 -274
  72. package/Timeline.js +4 -4
  73. package/Tooltip.js +12 -136
  74. package/Transfer.js +14 -449
  75. package/Tree.js +4 -2
  76. package/TreeSelect.js +3 -4
  77. package/Trigger.js +21 -882
  78. package/Typography.js +10 -6
  79. package/Upload.js +4 -4
  80. package/VerificationCode.js +2 -2
  81. package/VirtualList.js +2 -2
  82. package/Watermark.js +2 -2
  83. package/affix/index.js +126 -0
  84. package/alert/index.js +112 -0
  85. package/alert/interface.js +1 -0
  86. package/anchor/Anchor.js +198 -0
  87. package/anchor/Link.js +52 -0
  88. package/anchor/context.js +14 -0
  89. package/anchor/index.js +4 -0
  90. package/anchor/interface.js +1 -0
  91. package/anchor/util.js +50 -0
  92. package/auto-complete/index.js +149 -0
  93. package/auto-complete/interface.js +1 -0
  94. package/avatar/Avatar.js +83 -0
  95. package/avatar/Group.js +82 -0
  96. package/avatar/context.js +5 -0
  97. package/avatar/index.js +7 -0
  98. package/avatar/interface.js +1 -0
  99. package/back-top/index.js +85 -0
  100. package/back-top/interface.js +1 -0
  101. package/badge/Count.js +35 -0
  102. package/badge/index.js +151 -0
  103. package/badge/interface.js +1 -0
  104. package/breadcrumb/Item.js +67 -0
  105. package/breadcrumb/index.js +81 -0
  106. package/breadcrumb/interface.js +1 -0
  107. package/button/Group.js +13 -0
  108. package/button/index.js +146 -0
  109. package/button/interface.js +1 -0
  110. package/calendar/Month.js +12 -0
  111. package/calendar/WeekList.js +24 -0
  112. package/calendar/Year.js +74 -0
  113. package/calendar/index.js +320 -0
  114. package/calendar/interface.js +1 -0
  115. package/card/Grid.js +25 -0
  116. package/card/Meta.js +30 -0
  117. package/card/index.js +99 -0
  118. package/card/interface.js +1 -0
  119. package/carousel/Arrow.js +55 -0
  120. package/carousel/Indicator.js +66 -0
  121. package/carousel/index.js +278 -0
  122. package/carousel/interface.js +1 -0
  123. package/cascader/Cascader.js +26 -0
  124. package/cascader/index.js +4 -0
  125. package/cascader/interface.js +1 -0
  126. package/cascader/util.js +14 -0
  127. package/checkbox/Checkbox.js +16 -0
  128. package/checkbox/Group.js +14 -0
  129. package/checkbox/IconCheck.js +19 -0
  130. package/checkbox/index.js +4 -0
  131. package/checkbox/interface.js +1 -0
  132. package/checkbox/useCheckbox.js +45 -0
  133. package/chunk/5_U1CBIu.js +8 -0
  134. package/chunk/{B8QV6E2b.js → AwZqeapI.js} +5 -5
  135. package/chunk/B2yFlXke.js +6 -0
  136. package/chunk/B4JiMp8I.js +764 -0
  137. package/chunk/B4YRLi8r.js +11 -0
  138. package/chunk/B5RFT17G.js +15 -0
  139. package/chunk/{BnSVm1YC.js → B6X4lnd0.js} +1 -1
  140. package/chunk/B7M-FGia.js +41 -0
  141. package/chunk/BBkdXHrJ.js +24 -0
  142. package/chunk/BDB0LByj.js +98 -0
  143. package/chunk/BFTV6myl.js +19 -0
  144. package/chunk/BJ1soa2K.js +178 -0
  145. package/chunk/BKKEev13.js +11 -0
  146. package/chunk/BKT9BFf4.js +11 -0
  147. package/chunk/BSCrLtfQ.js +10 -0
  148. package/chunk/{CPvvjMwZ.js → BSaQv6mx.js} +46 -43
  149. package/chunk/BXAeh0_V.js +16 -0
  150. package/chunk/Bfq4YEcr.js +23 -0
  151. package/chunk/Bg3uJGPu.js +10 -0
  152. package/chunk/{jhQQCFMn.js → Bi4UkwOR.js} +138 -126
  153. package/chunk/BibHFOCF.js +34 -0
  154. package/chunk/Biupwn8l.js +24 -0
  155. package/chunk/BjpUSKM3.js +629 -0
  156. package/chunk/{D_-UD4vO.js → Bl7BnD1R.js} +9 -9
  157. package/chunk/BrOW642m.js +130 -0
  158. package/chunk/BsY85n3_.js +14 -0
  159. package/chunk/C48SmsN-.js +38 -0
  160. package/chunk/C4OrxKE6.js +18 -0
  161. package/chunk/C98ks5S8.js +473 -0
  162. package/chunk/CC---6jO.js +110 -0
  163. package/chunk/{DUeHQKtx.js → CCv-5KFt.js} +78 -78
  164. package/chunk/{CZOP_ZHJ.js → CD3AUpzo.js} +24 -24
  165. package/chunk/CIRG541s.js +22 -0
  166. package/chunk/CKyu68pu.js +312 -0
  167. package/chunk/CQ_WOOmf.js +8 -0
  168. package/chunk/{CANaGbGR.js → CVYWxu00.js} +54 -53
  169. package/chunk/CYhxqVkn.js +9 -0
  170. package/chunk/CbLaCJmG.js +26 -0
  171. package/chunk/CdaT1b_F.js +20 -0
  172. package/chunk/Ce1j9KTi.js +6 -0
  173. package/chunk/CftuXmo_.js +6 -0
  174. package/chunk/CgurXnoy.js +569 -0
  175. package/chunk/Clo26EcR.js +34 -0
  176. package/chunk/ClqoGc3r.js +17 -0
  177. package/chunk/CmZzBtA4.js +16 -0
  178. package/chunk/CpGBWmuz.js +1461 -0
  179. package/chunk/CzQObzKd.js +1817 -0
  180. package/chunk/D-TPB2Do.js +56 -0
  181. package/chunk/D090jlwP.js +38 -0
  182. package/chunk/D0ZWT7db.js +5 -0
  183. package/chunk/DH7HTOV_.js +11 -0
  184. package/chunk/DKHXj8Kf.js +9 -0
  185. package/chunk/Dh7Osrvr.js +27 -0
  186. package/chunk/DonYzv30.js +14 -0
  187. package/chunk/DpoumMDw.js +50 -0
  188. package/chunk/Duezix3m.js +25 -0
  189. package/chunk/DxVvggX2.js +11 -0
  190. package/chunk/DzVH9IBy.js +1413 -0
  191. package/chunk/{CwhPMMWy.js → Ey4YJCkX.js} +7 -7
  192. package/chunk/JPPo5nY_.js +9 -0
  193. package/chunk/SSK90wgo.js +209 -0
  194. package/chunk/{CSC_V_25.js → URXCKjXr.js} +8 -8
  195. package/chunk/VSe_Wq1g.js +10 -0
  196. package/chunk/XTEsYGuF.js +17 -0
  197. package/chunk/b1e8awfs.js +31 -0
  198. package/chunk/hEWZQ8Zi.js +16 -0
  199. package/chunk/k-OUstoD.js +58 -0
  200. package/chunk/ll867Bf3.js +730 -0
  201. package/chunk/oopARUrq.js +10 -0
  202. package/chunk/tamGhTJp.js +186 -0
  203. package/chunk/{4-gvEY5y.js → uKZyjtff.js} +28 -28
  204. package/chunk/vmgkWLYf.js +843 -0
  205. package/chunk/yl4BU7Sd.js +1068 -0
  206. package/chunk/zmmqLCF4.js +20 -0
  207. package/collapse/Collapse.js +15 -0
  208. package/collapse/Item.js +11 -0
  209. package/collapse/index.js +4 -0
  210. package/collapse/interface.js +1 -0
  211. package/color-picker/ControlBar.js +63 -0
  212. package/color-picker/InputAlpha.js +22 -0
  213. package/color-picker/InputHex.js +55 -0
  214. package/color-picker/InputRgb.js +61 -0
  215. package/color-picker/Mode.js +10 -0
  216. package/color-picker/Palette.js +34 -0
  217. package/color-picker/Panel.js +268 -0
  218. package/color-picker/colors.js +37 -0
  219. package/color-picker/index.js +270 -0
  220. package/color-picker/interface.js +4 -0
  221. package/color-picker/utils.js +89 -0
  222. package/comment/index.js +73 -0
  223. package/comment/interface.js +1 -0
  224. package/config-provider/ConfigProvider.js +15 -0
  225. package/config-provider/context.js +8 -0
  226. package/config-provider/index.js +8 -0
  227. package/config-provider/interface.js +1 -0
  228. package/copy/index.js +63 -0
  229. package/copy/interface.js +1 -0
  230. package/date-picker/Picker.js +410 -0
  231. package/date-picker/PickerRange.js +24 -0
  232. package/date-picker/context.js +5 -0
  233. package/date-picker/index.js +50 -0
  234. package/date-picker/interface.js +1 -0
  235. package/date-picker/util.js +76 -0
  236. package/descriptions/index.js +178 -0
  237. package/descriptions/interface.js +1 -0
  238. package/divider/index.js +40 -0
  239. package/divider/interface.js +1 -0
  240. package/draggable/Item.js +67 -0
  241. package/draggable/index.js +32 -0
  242. package/draggable/interface.js +1 -0
  243. package/{chunk/BFipyA67.js → drawer/Drawer.js} +39 -39
  244. package/drawer/index.js +4 -0
  245. package/drawer/interface.js +1 -0
  246. package/dropdown/Button.js +11 -0
  247. package/dropdown/index.js +201 -0
  248. package/dropdown/interface.js +1 -0
  249. package/empty/index.js +9 -0
  250. package/empty/interface.js +1 -0
  251. package/form/Control.js +262 -0
  252. package/form/Form.js +160 -0
  253. package/form/FormItem.js +239 -0
  254. package/form/FormLabel.js +54 -0
  255. package/form/FormList.js +100 -0
  256. package/form/FormProvider.js +48 -0
  257. package/form/IconSymbol.js +20 -0
  258. package/form/context.js +43 -0
  259. package/form/index.js +107 -0
  260. package/form/interface.js +11 -0
  261. package/form/promisify.js +32 -0
  262. package/form/store.js +360 -0
  263. package/form/useForm.js +53 -0
  264. package/form/util.js +75 -0
  265. package/grid/Col.js +85 -0
  266. package/grid/Row.js +86 -0
  267. package/grid/context.js +9 -0
  268. package/grid/grid-item.js +75 -0
  269. package/grid/grid.js +103 -0
  270. package/grid/index.js +15 -0
  271. package/grid/interface.js +1 -0
  272. package/grid/util.js +51 -0
  273. package/hooks/index.js +51 -47
  274. package/hooks/useComputedState.js +2 -10
  275. package/hooks/useCreate.js +2 -7
  276. package/hooks/useForceUpdate.js +2 -7
  277. package/hooks/useId.js +2 -10
  278. package/hooks/useInView.js +2 -30
  279. package/hooks/useIntersectionObserver.js +2 -23
  280. package/hooks/useInterval.js +2 -17
  281. package/hooks/useIsFirstRender.js +2 -9
  282. package/hooks/useIsomorphicLayoutEffect.js +2 -5
  283. package/hooks/useKeyboardEvent.js +2 -16
  284. package/hooks/useMedia.js +2 -15
  285. package/hooks/useMergeProps.js +2 -18
  286. package/hooks/useMergeValue.js +2 -19
  287. package/hooks/useOnlineStatus.js +4 -0
  288. package/hooks/useOverflowHidden.js +2 -25
  289. package/hooks/useOverrideRef.js +2 -13
  290. package/hooks/usePersistCallback.js +2 -13
  291. package/hooks/usePrefersColorSchemeDark.js +4 -0
  292. package/hooks/usePrevious.js +2 -9
  293. package/hooks/useRefs.js +2 -9
  294. package/hooks/useResizeObserver.js +2 -15
  295. package/hooks/useStateCallback.js +2 -15
  296. package/hooks/useStateWithPromise.js +2 -24
  297. package/hooks/useUpdateEffect.js +2 -9
  298. package/hooks/useVerificationCode.js +73 -0
  299. package/hooks/useWatch.js +2 -10
  300. package/hooks/{use-watermark.js → useWatermark.js} +2 -1
  301. package/hooks/useWindowSize.js +2 -20
  302. package/icon/addFromIconFontCn.js +7 -0
  303. package/icon/index.js +57 -0
  304. package/icon-hover/index.js +7 -0
  305. package/image/Image.js +191 -0
  306. package/image/ImageFooter.js +8 -0
  307. package/image/ImagePreview.js +41 -0
  308. package/image/ImagePreviewArrow.js +46 -0
  309. package/image/ImagePreviewGroup.js +125 -0
  310. package/image/ImagePreviewToolbar.js +99 -0
  311. package/image/TriggerForToolbar.js +10 -0
  312. package/image/index.js +8 -0
  313. package/image/interface.js +1 -0
  314. package/image/previewGroupContext.js +17 -0
  315. package/index.js +604 -585
  316. package/input/Group.js +18 -0
  317. package/input/Input.js +688 -0
  318. package/input/InputElement.js +235 -0
  319. package/input/Number.js +4 -0
  320. package/input/Password.js +13 -0
  321. package/input/Search.js +14 -0
  322. package/input/Tag.js +4 -0
  323. package/input/Textarea.js +16 -0
  324. package/input/autoSizeTextAreaHeight.js +65 -0
  325. package/input/index.js +15 -0
  326. package/input/interface.js +1 -0
  327. package/input/useComposition.js +39 -0
  328. package/input-number/decimal.js +154 -0
  329. package/input-number/index.js +18 -0
  330. package/input-number/interface.js +1 -0
  331. package/input-number/useSelectionRange.js +26 -0
  332. package/input-number/util.js +57 -0
  333. package/{chunk/C6QWSzsM.js → input-tag/InputTag.js} +97 -89
  334. package/input-tag/index.js +4 -0
  335. package/input-tag/interface.js +1 -0
  336. package/layout/Content.js +13 -0
  337. package/layout/Footer.js +13 -0
  338. package/layout/Header.js +13 -0
  339. package/{chunk/CssIjN1g.js → layout/Sider.js} +12 -12
  340. package/layout/index.js +43 -0
  341. package/layout/interface.js +1 -0
  342. package/link/index.js +62 -0
  343. package/link/interface.js +1 -0
  344. package/list/Item.js +44 -0
  345. package/list/Meta.js +19 -0
  346. package/list/index.js +269 -0
  347. package/list/interface.js +1 -0
  348. package/loading/index.js +61 -0
  349. package/locale/en-US.js +4 -2
  350. package/locale/interface.js +1 -4
  351. package/locale/ja-JP.js +3 -1
  352. package/locale/tr-TR.js +1 -1
  353. package/locale/zh-CN.js +3 -1
  354. package/locale/zh-HK.js +3 -1
  355. package/locale/zh-TW.js +3 -1
  356. package/mentions/index.js +146 -0
  357. package/mentions/interface.js +1 -0
  358. package/mentions/util.js +26 -0
  359. package/menu/Indent.js +17 -0
  360. package/menu/Item.js +125 -0
  361. package/menu/ItemGroup.js +39 -0
  362. package/menu/Menu.js +26 -0
  363. package/menu/OverflowWrap.js +10 -0
  364. package/menu/context.js +5 -0
  365. package/menu/index.js +11 -0
  366. package/menu/interface.js +1 -0
  367. package/menu/util.js +80 -0
  368. package/message/index.js +14 -0
  369. package/message/interface.js +1 -0
  370. package/message/useMessage.js +7 -0
  371. package/modal/Confirm.js +13 -0
  372. package/modal/Modal.js +21 -0
  373. package/modal/config.js +25 -0
  374. package/modal/index.js +4 -0
  375. package/modal/interface.js +1 -0
  376. package/notice/index.js +24 -0
  377. package/notification/index.js +16 -0
  378. package/notification/interface.js +1 -0
  379. package/notification/useNotification.js +6 -0
  380. package/notification/withNotification.js +49 -0
  381. package/overflow-ellipsis/OverflowItem.js +35 -0
  382. package/overflow-ellipsis/index.js +74 -0
  383. package/package.json +1 -1
  384. package/page-header/index.js +115 -0
  385. package/page-header/interface.js +1 -0
  386. package/pagination/PageItem.js +119 -0
  387. package/pagination/PageJumper.js +60 -0
  388. package/pagination/PageOption.js +47 -0
  389. package/pagination/Pagination.js +245 -0
  390. package/pagination/index.js +4 -0
  391. package/pagination/interface.js +1 -0
  392. package/picker/Input.js +130 -0
  393. package/picker/InputRange.js +158 -0
  394. package/picker/index.js +6 -0
  395. package/popconfirm/index.js +130 -0
  396. package/popconfirm/interface.js +1 -0
  397. package/popover/index.js +78 -0
  398. package/popover/interface.js +1 -0
  399. package/portal/Portal.js +15 -0
  400. package/portal/index.js +17 -0
  401. package/progress/CircleProgress.js +117 -0
  402. package/progress/LineProgess.js +103 -0
  403. package/progress/StepProgress.js +74 -0
  404. package/progress/index.js +99 -0
  405. package/progress/interface.js +1 -0
  406. package/radio/Group.js +16 -0
  407. package/radio/Radio.js +15 -0
  408. package/radio/index.js +8 -0
  409. package/radio/interface.js +1 -0
  410. package/rate/index.js +127 -0
  411. package/rate/interface.js +1 -0
  412. package/resize-box/ResizeTrigger.js +78 -0
  413. package/resize-box/Split.js +130 -0
  414. package/resize-box/SplitGroup.js +202 -0
  415. package/resize-box/index.js +182 -0
  416. package/resize-box/interface.js +1 -0
  417. package/result/403.js +695 -0
  418. package/result/404.js +513 -0
  419. package/result/500.js +166 -0
  420. package/result/index.js +77 -0
  421. package/result/interface.js +1 -0
  422. package/select/OptGroup.js +20 -0
  423. package/select/Option.js +95 -0
  424. package/select/Select.js +549 -0
  425. package/select/index.js +8 -0
  426. package/select/interface.js +1 -0
  427. package/select/util.js +141 -0
  428. package/select-view/Core.js +370 -0
  429. package/select-view/index.js +67 -0
  430. package/select-view/interface.js +1 -0
  431. package/skeleton/Image.js +24 -0
  432. package/skeleton/Text.js +27 -0
  433. package/skeleton/index.js +57 -0
  434. package/skeleton/interface.js +1 -0
  435. package/slider/Button.js +159 -0
  436. package/slider/Dot.js +43 -0
  437. package/slider/Input.js +75 -0
  438. package/slider/Mark.js +28 -0
  439. package/slider/Tick.js +44 -0
  440. package/slider/index.js +429 -0
  441. package/slider/interface.js +1 -0
  442. package/slider/util.js +63 -0
  443. package/space/index.js +90 -0
  444. package/space/interface.js +1 -0
  445. package/space/toArray.js +11 -0
  446. package/speech-synthesis/index.js +109 -0
  447. package/spin/DotLoading.js +24 -0
  448. package/spin/index.js +79 -0
  449. package/spin/interface.js +1 -0
  450. package/statistic/Countdown.js +55 -0
  451. package/statistic/index.js +120 -0
  452. package/statistic/interface.js +1 -0
  453. package/statistic/util.js +33 -0
  454. package/steps/Step.js +68 -0
  455. package/steps/index.js +89 -0
  456. package/steps/interface.js +1 -0
  457. package/style.css +1 -1
  458. package/suspense-fallback-test/index.js +12 -0
  459. package/switch/index.js +116 -0
  460. package/switch/interface.js +1 -0
  461. package/table/ColGroup.js +59 -0
  462. package/table/Table.js +24 -0
  463. package/table/constant.js +42 -0
  464. package/table/index.js +103 -0
  465. package/table/interface.js +1 -0
  466. package/table/util.js +121 -0
  467. package/tabs/Tab.js +18 -0
  468. package/tabs/TabContent.js +8 -0
  469. package/tabs/TabPane.js +24 -0
  470. package/tabs/index.js +9 -0
  471. package/tabs/interface.js +1 -0
  472. package/tabs/util.js +22 -0
  473. package/tag/index.js +136 -0
  474. package/tag/interface.js +1 -0
  475. package/time-picker/Picker.js +219 -0
  476. package/time-picker/RangePicker.js +56 -0
  477. package/time-picker/TimeColumn.js +65 -0
  478. package/time-picker/TimePicker.js +240 -0
  479. package/time-picker/context.js +5 -0
  480. package/time-picker/index.js +20 -0
  481. package/time-picker/interface.js +1 -0
  482. package/time-picker/util.js +43 -0
  483. package/timeline/Item.js +92 -0
  484. package/timeline/Timeline.js +79 -0
  485. package/timeline/index.js +6 -0
  486. package/timeline/interface.js +1 -0
  487. package/tooltip/index.js +140 -0
  488. package/tooltip/interface.js +1 -0
  489. package/transfer/Item.js +106 -0
  490. package/transfer/List.js +186 -0
  491. package/transfer/index.js +182 -0
  492. package/transfer/interface.js +1 -0
  493. package/tree/Animation.js +11 -0
  494. package/tree/Context.js +5 -0
  495. package/tree/Node.js +16 -0
  496. package/tree/NodeList.js +82 -0
  497. package/tree/Tree.js +580 -0
  498. package/tree/index.js +6 -0
  499. package/tree/interface.js +1 -0
  500. package/tree/util.js +76 -0
  501. package/tree-select/List.js +124 -0
  502. package/tree-select/Select.js +395 -0
  503. package/tree-select/index.js +6 -0
  504. package/tree-select/interface.js +13 -0
  505. package/tree-select/util.js +9 -0
  506. package/trigger/getPopupStyle.js +192 -0
  507. package/trigger/index.js +626 -0
  508. package/trigger/interface.js +1 -0
  509. package/types/anchor/util.d.ts +1 -1
  510. package/types/button/index.d.ts +2 -2
  511. package/types/color-picker/ControlBar.d.ts +12 -5
  512. package/types/color-picker/Mode.d.ts +7 -0
  513. package/types/color-picker/Panel.d.ts +10 -2
  514. package/types/color-picker/hooks/useColorPicker.d.ts +15 -13
  515. package/types/color-picker/hooks/useControlBlock.d.ts +10 -3
  516. package/types/color-picker/index.d.ts +1 -1
  517. package/types/color-picker/interface.d.ts +19 -7
  518. package/types/color-picker/utils.d.ts +23 -0
  519. package/types/form/Control.d.ts +2 -1
  520. package/types/form/FormItem.d.ts +1 -1
  521. package/types/form/store.d.ts +0 -1
  522. package/types/hooks/index.d.ts +2 -0
  523. package/types/hooks/useComputedState.d.ts +1 -4
  524. package/types/hooks/useCreate.d.ts +1 -2
  525. package/types/hooks/useForceUpdate.d.ts +1 -2
  526. package/types/hooks/useId.d.ts +1 -2
  527. package/types/hooks/useInView.d.ts +1 -11
  528. package/types/hooks/useIntersectionObserver.d.ts +1 -7
  529. package/types/hooks/useInterval.d.ts +1 -2
  530. package/types/hooks/useIsFirstRender.d.ts +1 -2
  531. package/types/hooks/useIsomorphicLayoutEffect.d.ts +1 -3
  532. package/types/hooks/useKeyboardEvent.d.ts +1 -8
  533. package/types/hooks/useMedia.d.ts +1 -2
  534. package/types/hooks/useMergeProps.d.ts +1 -5
  535. package/types/hooks/useMergeValue.d.ts +1 -6
  536. package/types/hooks/useOnlineStatus.d.ts +1 -0
  537. package/types/hooks/useOverflowHidden.d.ts +1 -5
  538. package/types/hooks/useOverrideRef.d.ts +1 -6
  539. package/types/hooks/usePersistCallback.d.ts +1 -2
  540. package/types/hooks/usePrefersColorSchemeDark.d.ts +1 -0
  541. package/types/hooks/usePrevious.d.ts +1 -3
  542. package/types/hooks/useRefs.d.ts +1 -2
  543. package/types/hooks/useResizeObserver.d.ts +1 -6
  544. package/types/hooks/useStateCallback.d.ts +1 -5
  545. package/types/hooks/useStateWithPromise.d.ts +1 -2
  546. package/types/hooks/useUpdateEffect.d.ts +1 -3
  547. package/types/hooks/useWatch.d.ts +1 -3
  548. package/types/hooks/useWindowSize.d.ts +1 -5
  549. package/types/image/interface.d.ts +1 -0
  550. package/types/index.d.ts +156 -86
  551. package/types/input/Input.d.ts +1 -1
  552. package/types/input/Textarea.d.ts +2 -2
  553. package/types/locale/en-US.d.ts +2 -0
  554. package/types/locale/interface.d.ts +1 -2
  555. package/types/locale/ja-JP.d.ts +2 -0
  556. package/types/locale/zh-CN.d.ts +2 -0
  557. package/types/locale/zh-HK.d.ts +2 -0
  558. package/types/locale/zh-TW.d.ts +2 -0
  559. package/types/menu/context.d.ts +1 -1
  560. package/types/message/index.d.ts +14 -14
  561. package/types/message/interface.d.ts +2 -0
  562. package/types/modal/config.d.ts +0 -1
  563. package/types/modal/interface.d.ts +0 -1
  564. package/types/notice/index.d.ts +2 -27
  565. package/types/notification/index.d.ts +15 -16
  566. package/types/notification/interface.d.ts +2 -0
  567. package/types/notification/withNotification.d.ts +2 -0
  568. package/types/select/util.d.ts +1 -2
  569. package/types/select-view/interface.d.ts +2 -1
  570. package/types/speech-synthesis/index.d.ts +1 -1
  571. package/types/table/constant.d.ts +2 -0
  572. package/types/table/hook/useThResizable.d.ts +7 -0
  573. package/types/table/index.d.ts +10 -1
  574. package/types/table/style/index.d.ts +1 -0
  575. package/types/table/th-resizable/index.d.ts +2 -0
  576. package/types/table/thead/Column.d.ts +1 -2
  577. package/types/tree/Tree.d.ts +12 -67
  578. package/types/tree-select/Select.d.ts +2 -2
  579. package/types/trigger/index.d.ts +2 -120
  580. package/types/trigger/interface.d.ts +2 -1
  581. package/types/utils/CSSTransition.d.ts +2 -3
  582. package/types/utils/caseName.d.ts +1 -1
  583. package/types/utils/className.d.ts +1 -1
  584. package/types/utils/constant.d.ts +2 -2
  585. package/types/utils/copy.d.ts +1 -1
  586. package/types/utils/dayjs.d.ts +1 -21
  587. package/types/utils/dom.d.ts +1 -6
  588. package/types/utils/fileToURL.d.ts +1 -1
  589. package/types/utils/fillNBSP.d.ts +1 -1
  590. package/types/utils/getHighlightText.d.ts +1 -5
  591. package/types/utils/getHotkeyHandler.d.ts +1 -8
  592. package/types/utils/getStringLength.d.ts +1 -1
  593. package/types/utils/include.d.ts +1 -1
  594. package/types/utils/index.d.ts +3 -4
  595. package/types/utils/is.d.ts +1 -16
  596. package/types/utils/keyboardCode.d.ts +3 -0
  597. package/types/utils/lodash.d.ts +1 -17
  598. package/types/utils/mergeProps.d.ts +1 -1
  599. package/types/utils/mergedToString.d.ts +1 -1
  600. package/types/utils/omit.d.ts +1 -1
  601. package/types/utils/pad.d.ts +1 -2
  602. package/types/utils/pick.d.ts +2 -4
  603. package/types/utils/reactDOM.d.ts +1 -7
  604. package/types/utils/resizeObserverEffect.d.ts +2 -0
  605. package/types/utils/saveAs.d.ts +1 -1
  606. package/types/utils/screenfull.d.ts +2 -0
  607. package/types/utils/scrollIntoView.d.ts +1 -2
  608. package/types/utils/style.d.ts +1 -3
  609. package/types/utils/throttleByRaf.d.ts +1 -5
  610. package/types/utils/throttleByRaf2.d.ts +1 -0
  611. package/types/utils/warning.d.ts +1 -2
  612. package/types/version/index.d.ts +1 -1
  613. package/typography/Base.js +189 -0
  614. package/typography/EditContent.js +46 -0
  615. package/typography/Ellipsis.js +124 -0
  616. package/typography/Operations.js +78 -0
  617. package/typography/Paragraph.js +24 -0
  618. package/typography/Text.js +11 -0
  619. package/typography/Title.js +12 -0
  620. package/typography/Typography.js +13 -0
  621. package/typography/index.js +278 -0
  622. package/typography/interface.js +1 -0
  623. package/typography/useCssEllipsis.js +37 -0
  624. package/typography/useEllipsis.js +150 -0
  625. package/upload/TriggerNode.js +116 -0
  626. package/upload/Upload.js +627 -0
  627. package/upload/Uploader.js +206 -0
  628. package/upload/index.js +8 -0
  629. package/upload/interface.js +9 -0
  630. package/upload/request.js +51 -0
  631. package/upload/request_.js +64 -0
  632. package/upload/util.js +61 -0
  633. package/utils/CSSTransition.js +2 -6
  634. package/utils/className.js +2 -2
  635. package/utils/constant.js +8 -9
  636. package/utils/contextHolder.js +1 -1
  637. package/utils/copy.js +1 -1
  638. package/utils/dayjs.js +14 -173
  639. package/utils/dom.js +35 -31
  640. package/utils/fillNBSP.js +2 -4
  641. package/utils/getHighlightText.js +2 -38
  642. package/utils/getHotkeyHandler.js +2 -25
  643. package/utils/getStringLength.js +2 -7
  644. package/utils/include.js +2 -7
  645. package/utils/index.js +239 -242
  646. package/utils/is.js +116 -156
  647. package/utils/keyboardCode.js +27 -0
  648. package/utils/mergeProps.js +2 -9
  649. package/utils/mergedToString.js +2 -13
  650. package/utils/omit.js +2 -9
  651. package/utils/pick.js +4 -15
  652. package/utils/reactDOM.js +3 -54
  653. package/utils/resizeObserverEffect.js +4 -0
  654. package/utils/saveAs.js +1 -1
  655. package/utils/screenfull.js +4 -0
  656. package/utils/scrollIntoView.js +2 -21
  657. package/utils/style.js +2 -1
  658. package/utils/throttleByRaf.js +13 -12
  659. package/utils/throttleByRaf2.js +5 -0
  660. package/utils/warning.js +2 -1
  661. package/{chunk/BHgJ5Y3T.js → verification-code/VerificationCode.js} +24 -23
  662. package/verification-code/index.js +4 -0
  663. package/verification-code/interface.js +1 -0
  664. package/{Version.js → version/index.js} +1 -1
  665. package/virtual-list/Filler.js +31 -0
  666. package/virtual-list/VirtualList.js +493 -0
  667. package/virtual-list/index.js +4 -0
  668. package/{chunk/Bc7t9jkb.js → watermark/Watermark.js} +17 -16
  669. package/watermark/index.js +4 -0
  670. package/watermark/interface.js +1 -0
  671. package/NotificationBase.js +0 -53
  672. package/chunk/-zpSUpGE.js +0 -1501
  673. package/chunk/BAWsPQBM.js +0 -11
  674. package/chunk/BIT0j3HT.js +0 -269
  675. package/chunk/BbLKnaNO.js +0 -871
  676. package/chunk/Bfhv56O2.js +0 -638
  677. package/chunk/Bh23P4l7.js +0 -162
  678. package/chunk/C2lIz2F9.js +0 -60
  679. package/chunk/CHnFKgbk.js +0 -445
  680. package/chunk/CLBavO5c.js +0 -912
  681. package/chunk/CVkHTbic.js +0 -995
  682. package/chunk/CcV4wQB1.js +0 -968
  683. package/chunk/CeGEvXby.js +0 -278
  684. package/chunk/D3NFxdmG.js +0 -518
  685. package/chunk/DApXtulb.js +0 -1102
  686. package/chunk/DNAigumg.js +0 -166
  687. package/chunk/DPByB1ab.js +0 -698
  688. package/chunk/DQAot004.js +0 -824
  689. package/chunk/DTBtQQ2H.js +0 -334
  690. package/chunk/DV1Ab_cG.js +0 -284
  691. package/chunk/DnvO8A0Z.js +0 -518
  692. package/chunk/Du-bw6qA.js +0 -224
  693. package/chunk/dBnNCOIU.js +0 -778
  694. package/chunk/it8qlDZ3.js +0 -1032
  695. package/chunk/te_43YrB.js +0 -776
  696. package/chunk/znkyQ-HR.js +0 -243
  697. package/hooks/use-verification-code.js +0 -73
  698. package/types/notification-base/index.d.ts +0 -15
  699. package/types/notification-base/style/index.d.ts +0 -2
  700. package/types/style/index.d.ts +0 -1
  701. package/types/trigger/Portal.d.ts +0 -7
  702. package/types/utils/keyCode.d.ts +0 -45
  703. package/types/utils/raf.d.ts +0 -3
  704. package/types/utils/throttleByRafV2.d.ts +0 -5
  705. package/utils/keyCode.js +0 -12
  706. package/utils/raf.js +0 -19
  707. package/utils/throttleByRafV2.js +0 -16
  708. /package/{chunk/l0sNRNKZ.js → affix/interface.js} +0 -0
@@ -0,0 +1,1817 @@
1
+ import { jsx as c, jsxs as fe, Fragment as ht } from "react/jsx-runtime";
2
+ import { I as Fn, f as In } from "./uKZyjtff.js";
3
+ import Pn from "lodash/debounce";
4
+ import we from "lodash/isArray";
5
+ import ze from "lodash/isNumber";
6
+ import te from "lodash/isPlainObject";
7
+ import Kn from "lodash/throttle";
8
+ import Ve, { useMemo as ae, useCallback as Xe, useState as xe, useRef as me, useContext as Qe, useEffect as yt, forwardRef as It, createElement as Je, createContext as On, useImperativeHandle as Dn } from "react";
9
+ import { a as Ze } from "./ll867Bf3.js";
10
+ import { u as _n } from "./B2yFlXke.js";
11
+ import { u as Xt } from "./BFTV6myl.js";
12
+ import { u as vt } from "./BSCrLtfQ.js";
13
+ import Gt from "../pagination/Pagination.js";
14
+ import Bn from "../spin/index.js";
15
+ import { m as Z } from "./JPPo5nY_.js";
16
+ import { on as ft, off as pt } from "../utils/dom.js";
17
+ import { p as Ln, a as Hn } from "./ClqoGc3r.js";
18
+ import { r as An } from "./CIRG541s.js";
19
+ import ut from "../table/ColGroup.js";
20
+ import { defaultComponent as Jt, INTERNAL_EXPAND_KEY as xt, INTERNAL_SELECTION_KEY as gt } from "../table/constant.js";
21
+ import Mn from "lodash/merge";
22
+ import { getOriginData as Q, isChildrenNotEmpty as Tt, getSelectedKeysByData as Wn, getSelectedKeys as zn, getSorterPriority as Et, getSorterFn as Ft, px2Number as kt, deepCloneData as Vn, getScrollBarHeight as Un, getScrollBarWidth as jn } from "../table/util.js";
23
+ import Yn from "../virtual-list/VirtualList.js";
24
+ import qn from "@unicom-cloud/icons/IconUiMinus";
25
+ import Xn from "@unicom-cloud/icons/IconUiPlus";
26
+ import Ge from "lodash/isString";
27
+ import { C as Pt } from "./SSK90wgo.js";
28
+ import { R as on } from "./CD3AUpzo.js";
29
+ import Qt from "lodash/get";
30
+ import mt from "lodash/isFunction";
31
+ import { u as Gn } from "./CQ_WOOmf.js";
32
+ import rn from "../tooltip/index.js";
33
+ import { m as Jn } from "./B5RFT17G.js";
34
+ import Qn from "@unicom-cloud/icons/IconUiCaretDown";
35
+ import Zn from "@unicom-cloud/icons/IconUiCaretUp";
36
+ import eo from "@unicom-cloud/icons/IconUiFilter";
37
+ import Zt from "../button/index.js";
38
+ import { u as to } from "./CdaT1b_F.js";
39
+ import no from "../space/index.js";
40
+ import oo from "../trigger/index.js";
41
+ function _e(s) {
42
+ const f = ae(
43
+ () => te(s) ? Mn({}, Jt, s) : Jt,
44
+ [s]
45
+ );
46
+ return {
47
+ getHeaderComponentOperations: f.header.operations,
48
+ getBodyComponentOperations: f.body.operations,
49
+ ComponentTable: f.table,
50
+ ComponentHeaderWrapper: f.header.wrapper,
51
+ ComponentThead: f.header.thead,
52
+ ComponentHeaderRow: f.header.row,
53
+ ComponentTh: f.header.th,
54
+ ComponentHeaderCell: f.header.cell,
55
+ ComponentBodyWrapper: f.body.wrapper,
56
+ ComponentTbody: f.body.tbody,
57
+ ComponentBodyRow: f.body.row,
58
+ ComponentTd: f.body.td,
59
+ ComponentBodyCell: f.body.cell
60
+ };
61
+ }
62
+ function en(s, f) {
63
+ const u = [];
64
+ function $(e) {
65
+ e && e.length > 0 && e.forEach((F) => {
66
+ F[f] ? $(F[f]) : u.push({ ...F, key: F.dataIndex || F.key });
67
+ });
68
+ }
69
+ return $(s), u;
70
+ }
71
+ function sn(s, f) {
72
+ let u = 0;
73
+ return s && s.length > 0 && s.forEach(($) => {
74
+ const e = sn($[f], f) + 1;
75
+ u = Math.max(e, u);
76
+ }), u;
77
+ }
78
+ function ro(s) {
79
+ const {
80
+ component: f,
81
+ rowSelection: u,
82
+ expandedRowRender: $,
83
+ expandProps: e = {},
84
+ columns: F = [],
85
+ childrenColumnName: i
86
+ } = s, h = ae(() => F || [], [F]), d = ae(
87
+ () => en(h, i),
88
+ [h, i]
89
+ ), N = u && u.type === "checkbox" || u && !("type" in u), R = u && u.type === "radio", { width: p } = e, C = !!$, g = N || R, { getHeaderComponentOperations: k, getBodyComponentOperations: K } = _e(f), w = ae(
90
+ () => k({
91
+ selectionNode: g ? "holder_node" : "",
92
+ expandNode: C ? "holder_node" : ""
93
+ }),
94
+ [
95
+ g,
96
+ C,
97
+ k
98
+ ]
99
+ ), m = ae(
100
+ () => K({
101
+ selectionNode: g ? "holder_node" : "",
102
+ expandNode: C ? "holder_node" : ""
103
+ }),
104
+ [
105
+ g,
106
+ C,
107
+ K
108
+ ]
109
+ ), l = u && u.fixed, B = u && u.columnWidth, S = Xe(
110
+ (D, I, v) => {
111
+ const _ = {}, P = [];
112
+ D.forEach((r, E) => {
113
+ const b = { ...r };
114
+ (!("key" in r) || typeof r.key > "u") && (b.key = b.dataIndex || E), E === 0 ? (b.$$isFirstColumn = !0, b.fixed === "left" && (_.fixed = b.fixed)) : b.$$isFirstColumn = !1, P.push(b);
115
+ });
116
+ const M = C && {
117
+ key: xt,
118
+ title: xt,
119
+ width: p,
120
+ $$isOperation: !0
121
+ }, W = g && {
122
+ key: gt,
123
+ title: gt,
124
+ width: B,
125
+ $$isOperation: !0
126
+ };
127
+ return l && (_.fixed = "left"), (typeof v != "number" || v === 0) && [...I].reverse().forEach((r, E) => {
128
+ if (r.node) {
129
+ const b = w.filter((T) => T.node).length - E - 1;
130
+ r.name === "expandNode" ? P.unshift({
131
+ ...M,
132
+ ..._,
133
+ $$columnIndex: b
134
+ }) : r.name === "selectionNode" ? P.unshift({
135
+ ...W,
136
+ ..._,
137
+ $$columnIndex: b
138
+ }) : P.unshift({
139
+ ...r,
140
+ ..._,
141
+ title: r.name,
142
+ key: r.name,
143
+ $$isOperation: !0,
144
+ width: r.width || 40,
145
+ $$columnIndex: b
146
+ });
147
+ }
148
+ }), P;
149
+ },
150
+ [
151
+ p,
152
+ C,
153
+ g,
154
+ B,
155
+ l,
156
+ w
157
+ ]
158
+ ), U = ae(
159
+ () => S(d, m),
160
+ [d, S, m]
161
+ ), ee = ae(
162
+ () => sn(h, i),
163
+ [h, i]
164
+ );
165
+ return [ae(() => {
166
+ const D = Array.isArray(w) ? w.filter((P) => P.node).length : 0;
167
+ if (ee === 1) {
168
+ const P = h.map((M, W) => ({
169
+ ...M,
170
+ $$columnIndex: W + D
171
+ }));
172
+ return [S(P, w, 0)];
173
+ }
174
+ let I = D;
175
+ const v = [], _ = (P, M = 0) => {
176
+ v[M] = v[M] || [], P.forEach((W) => {
177
+ const r = { ...W };
178
+ r[i] ? (r.colSpan = en(
179
+ W[i],
180
+ i
181
+ ).length, r.$$columnIndex = [I], v[M].push(r), _(r[i], M + 1), r.$$columnIndex.push(I - 1)) : (r.rowSpan = ee - M, r.$$columnIndex = I++, v[M].push(r));
182
+ }), v[M] = S(
183
+ v[M],
184
+ w,
185
+ M
186
+ );
187
+ };
188
+ return _(h), v;
189
+ }, [
190
+ h,
191
+ i,
192
+ ee,
193
+ S,
194
+ w
195
+ ]), U];
196
+ }
197
+ function so(s, f, u) {
198
+ const {
199
+ defaultExpandedRowKeys: $,
200
+ defaultExpandAllRows: e,
201
+ expandedRowRender: F,
202
+ onExpand: i,
203
+ onExpandedRowsChange: h,
204
+ childrenColumnName: d = "children",
205
+ expandProps: N
206
+ } = s, [R, p] = xe(
207
+ g()
208
+ ), C = s.expandedRowKeys || R;
209
+ function g() {
210
+ let w = [];
211
+ return s.expandedRowKeys ? w = s.expandedRowKeys : $ ? w = $ : e && (w = f.map((m, l) => {
212
+ const B = Q(m);
213
+ return N && "rowExpandable" in N && typeof N.rowExpandable == "function" ? N.rowExpandable(B) && u(m) : typeof F == "function" ? F(B, l) && u(m) : Tt(m, d) && u(m);
214
+ }).filter((m) => m)), w;
215
+ }
216
+ function k(w) {
217
+ const m = C.indexOf(w) === -1, l = m ? C.concat(w) : C.filter((S) => w !== S), B = f.filter((S) => l.indexOf(u(S)) !== -1).map((S) => u(S));
218
+ p(B), K(w, m), h == null || h(B);
219
+ }
220
+ function K(w, m) {
221
+ i == null || i(
222
+ Q(f.find((l) => u(l) === w)),
223
+ m
224
+ );
225
+ }
226
+ return [C, k];
227
+ }
228
+ function tn(s) {
229
+ return [...new Set(s)];
230
+ }
231
+ function io(s, f, u, $) {
232
+ const { rowSelection: e, childrenColumnName: F } = s, i = e == null ? void 0 : e.selectedRowKeys, h = e == null ? void 0 : e.onSelectAll, d = e == null ? void 0 : e.onSelect, N = e == null ? void 0 : e.onChange, R = e == null ? void 0 : e.pureKeys, p = typeof (e == null ? void 0 : e.checkStrictly) == "boolean" ? !e.checkStrictly : !1, C = e == null ? void 0 : e.preserveSelectedRowKeys;
233
+ function g() {
234
+ const r = [], E = [], b = (y) => {
235
+ we(y) && y.length && y.forEach((H) => {
236
+ const n = $(H);
237
+ (e && typeof e.checkboxProps == "function" ? e.checkboxProps(Q(H)) : {}).disabled || r.push(n), Tt(H, s.childrenColumnName) && b(H[s.childrenColumnName]);
238
+ });
239
+ };
240
+ b(f);
241
+ const T = (y, H) => {
242
+ we(y) && y.length && y.forEach((n) => {
243
+ if (H && p && (n.__INTERNAL_PARENT = H), E.push(n), Tt(n, s.childrenColumnName)) {
244
+ const ne = { ...n };
245
+ T(n[s.childrenColumnName], ne);
246
+ }
247
+ });
248
+ };
249
+ return T(u, void 0), {
250
+ allSelectedRowKeys: r,
251
+ flattenData: E
252
+ };
253
+ }
254
+ const { allSelectedRowKeys: k, flattenData: K } = g(), [w, m] = xe([]), [l, B] = xe([]), S = Wn(
255
+ K,
256
+ tn(i || w),
257
+ $,
258
+ F,
259
+ p
260
+ ), U = p && !i ? w : S.selectedRowKeys, ee = p && !i ? l : S.indeterminateKeys, [Y, D] = xe(
261
+ R ? [] : I(U)
262
+ );
263
+ function I(r, E) {
264
+ const b = E ? Y.concat(K) : K, T = new Map(b.map((y) => [$(y), y]));
265
+ return r.map((y) => T.get(y)).filter((y) => y);
266
+ }
267
+ const v = new Set(K.map((r) => $(r)));
268
+ function _(r) {
269
+ return C ? r : r.filter((E) => v.has(E));
270
+ }
271
+ function P(r) {
272
+ let E = [], b = [];
273
+ if (r)
274
+ E = _(
275
+ tn(U.concat(k))
276
+ );
277
+ else {
278
+ const y = new Set(k);
279
+ E = _(
280
+ U.filter((H) => !y.has(H))
281
+ );
282
+ }
283
+ R || (b = I(E, !0));
284
+ const T = Q(b);
285
+ m(E), D(b), B([]), N == null || N(E, T), h == null || h(r, T);
286
+ }
287
+ function M(r, E) {
288
+ const { selectedRowKeys: b, indeterminateKeys: T } = zn(
289
+ E,
290
+ r,
291
+ U,
292
+ l,
293
+ $,
294
+ F,
295
+ p
296
+ ), y = _(b), H = I(y, !0), n = Q(H);
297
+ m(y), D(H), B(T), d == null || d(r, Q(E), n), N == null || N(y, n);
298
+ }
299
+ function W(r, E) {
300
+ const b = [K.find((y) => $(y) === r)], T = Q(b);
301
+ m([r]), d == null || d(!0, Q(E), T), N == null || N([r], T);
302
+ }
303
+ return {
304
+ selectedRowKeys: U,
305
+ indeterminateKeys: ee,
306
+ onCheckAll: P,
307
+ onCheck: M,
308
+ onCheckRadio: W,
309
+ setSelectedRowKeys: m,
310
+ allSelectedRowKeys: k,
311
+ flattenData: K
312
+ };
313
+ }
314
+ function lo(s, f) {
315
+ const [u, $] = xe(f), [e, F] = xe({}), i = me(s), h = Xe(
316
+ (R) => {
317
+ const { field: p, direction: C } = R;
318
+ return u.find((g) => g.field === p) ? C ? u.map(
319
+ (g) => g.field === p ? R : g
320
+ ) : u.filter((g) => g.field !== p) : C ? !ze(R.priority) || u.find((g) => !ze(g.priority)) ? [R] : [...u, R] : [...u];
321
+ },
322
+ [u]
323
+ ), d = Xe((R) => {
324
+ const p = R.filter((g) => "sortOrder" in g);
325
+ let C = [];
326
+ return p.forEach((g) => {
327
+ const k = Et(g.sorter), K = g.sortOrder, w = {
328
+ field: g.dataIndex || g.key,
329
+ direction: K,
330
+ sorterFn: Ft(g.sorter),
331
+ priority: k
332
+ };
333
+ K ? ze(k) ? C.every((m) => ze(m.priority) || !m.direction) && C.push(w) : C.every((m) => !m.direction) ? C.push(w) : C = [w] : C.push(w);
334
+ }), C;
335
+ }, []), N = Xe(
336
+ (R, p) => {
337
+ d(s).length || ($(p), F(R));
338
+ },
339
+ [s, d, $, F]
340
+ );
341
+ return vt(() => {
342
+ const R = i.current, p = d(R), C = d(s), g = p.map(
343
+ (K) => K.field
344
+ ), k = C.filter((K) => p.find(
345
+ ({ field: m, direction: l }) => K.field === m && K.direction !== l
346
+ ) ? !0 : !g.includes(K.field));
347
+ k && k.length && ($(C), F({})), i.current = s;
348
+ }, [
349
+ s,
350
+ d,
351
+ h,
352
+ F,
353
+ $
354
+ ]), {
355
+ currentSorter: e,
356
+ activeSorters: u,
357
+ getNextActiveSorters: h,
358
+ updateStateSorters: N
359
+ };
360
+ }
361
+ function ao(s, f, u) {
362
+ const $ = f.map((h) => h.fixed);
363
+ function e(h, d) {
364
+ return Z({
365
+ [`${u}-col-fixed-left`]: h.fixed === "left",
366
+ [`${u}-col-fixed-right`]: h.fixed === "right",
367
+ [`${u}-col-fixed-left-last`]: h.fixed === "left" && (te(f[d + 1]) ? f[d + 1].fixed !== "left" : !0),
368
+ [`${u}-col-fixed-right-first`]: h.fixed === "right" && (te(f[d - 1]) ? f[d - 1].fixed !== "right" : !0)
369
+ });
370
+ }
371
+ const F = ae(() => f.map(
372
+ (h, d) => e(h, d)
373
+ ), [$.join("-")]);
374
+ return [ae(
375
+ () => s.map((h) => h.map((d, N) => {
376
+ let R = N;
377
+ const p = d.$$columnIndex;
378
+ return Array.isArray(p) && p.length === 2 ? R = d.fixed === "right" ? p[0] : p[1] : typeof p == "number" && (R = p), e(d, R);
379
+ })),
380
+ [
381
+ s.map((h) => `|${h.map((d) => d.fixed || "undefined").join("-")}|`).join("_")
382
+ ]
383
+ ), F];
384
+ }
385
+ function co(s) {
386
+ const f = s.map((e) => kt(e.width)), u = s.map((e) => e.fixed);
387
+ return ae(() => s.map((e) => {
388
+ let F = 0;
389
+ return e.fixed === "left" && s.some((i) => {
390
+ if (i.fixed === "left") {
391
+ if (i.key === e.key)
392
+ return !0;
393
+ let h = kt(i.width);
394
+ const d = i.$$isOperation ? h || 40 : h;
395
+ return F += d, !1;
396
+ }
397
+ return !1;
398
+ }), e.fixed === "right" && [...s].reverse().some((i) => {
399
+ if (i.fixed === "right") {
400
+ if (i.key === e.key)
401
+ return !0;
402
+ let h = kt(i.width);
403
+ const d = i.$$isOperation ? h || 40 : h;
404
+ return F += d, !1;
405
+ }
406
+ return !1;
407
+ }), F;
408
+ }), [f.join("-"), u.join("-")]);
409
+ }
410
+ function fo(s) {
411
+ return s && !Ve.isValidElement(s) && te(s);
412
+ }
413
+ function po(s) {
414
+ var he;
415
+ const f = Gn(), {
416
+ component: u,
417
+ InnerComponentTd: $,
418
+ column: e,
419
+ columnIndex: F,
420
+ prefixCls: i,
421
+ stickyClassName: h,
422
+ stickyOffset: d,
423
+ currentSorter: N,
424
+ virtualized: R,
425
+ record: p,
426
+ trIndex: C,
427
+ level: g,
428
+ placeholder: k = "-",
429
+ indentSize: K,
430
+ renderExpandIcon: w,
431
+ rowKey: m,
432
+ recordHaveChildren: l,
433
+ haveTreeData: B
434
+ } = s, { rtl: S } = Qe(Ze), { ComponentBodyCell: U } = _e(u), ee = me(null), Y = me(null), D = me(null), I = me(null), v = (e == null ? void 0 : e.showTooltip) !== !1 && (e == null ? void 0 : e.ellipsis), _ = Z(
435
+ `${i}-td`,
436
+ h,
437
+ {
438
+ [`${i}-col-sorted`]: N && N.direction && N.field === (e == null ? void 0 : e.dataIndex)
439
+ },
440
+ e == null ? void 0 : e.className
441
+ );
442
+ let P = {}, M, W, r = {};
443
+ (e == null ? void 0 : e.fixed) === "left" && (r[S ? "right" : "left"] = d), (e == null ? void 0 : e.fixed) === "right" && (r[S ? "left" : "right"] = d), te(e == null ? void 0 : e.cellStyle) && (r = {
444
+ ...r,
445
+ ...e == null ? void 0 : e.cellStyle
446
+ }), te(e == null ? void 0 : e.bodyCellStyle) && (r = {
447
+ ...r,
448
+ ...e == null ? void 0 : e.bodyCellStyle
449
+ }), mt(e == null ? void 0 : e.bodyCellStyle) && (r = {
450
+ ...r,
451
+ ...((he = e == null ? void 0 : e.bodyCellStyle) == null ? void 0 : he.call(e, p, C)) ?? {}
452
+ }), e != null && e.align && (r.textAlign = e == null ? void 0 : e.align), R && e.width && (r.width = e.width, r.minWidth = e.width, r.maxWidth = e.width);
453
+ const { onHandleSave: E, ...b } = e != null && e.onCell ? (e == null ? void 0 : e.onCell(
454
+ p,
455
+ C,
456
+ e,
457
+ { rowKey: m }
458
+ )) ?? {} : { onHandleSave: () => {
459
+ } }, T = e == null ? void 0 : e.render;
460
+ let y = ae(() => T == null ? void 0 : T(
461
+ Qt(p, e == null ? void 0 : e.dataIndex),
462
+ Q(p),
463
+ C,
464
+ e,
465
+ // 潘启宝添加
466
+ { rowKey: m }
467
+ ), [p, e, C]);
468
+ if (mt(T) || (y = Qt(p, (e == null ? void 0 : e.dataIndex) ?? "")), fo(y) && (P = y == null ? void 0 : y.props, M = P == null ? void 0 : P.rowSpan, W = P == null ? void 0 : P.colSpan, y = y == null ? void 0 : y.children), M === 0 || W === 0)
469
+ return null;
470
+ Ge(y) && (y = y.trim()), !y && y !== 0 && (y = (e == null ? void 0 : e.placeholder) ?? k ?? "-");
471
+ const H = e != null && e.ellipsis && Ge(y) ? {
472
+ // title: cellChildren // 暂时不需要title属性了,因为单独加了tooltip组件,潘启宝2023年4月1日于广东省惠州市
473
+ } : {}, n = B && (e == null ? void 0 : e.$$isFirstColumn), ne = n && l;
474
+ let G = n && g > 0 ? K * g : 0;
475
+ n && !l && (G += 20);
476
+ function V(le) {
477
+ f();
478
+ }
479
+ const pe = `${F}-${C}-${G}-${ne}`, J = /* @__PURE__ */ c(
480
+ "div",
481
+ {
482
+ ref: ee,
483
+ className: Z(`${i}-cell`, {
484
+ [`${i}-cell-text-ellipsis`]: e == null ? void 0 : e.ellipsis
485
+ }),
486
+ ...H,
487
+ onMouseEnter: v ? V : void 0,
488
+ children: /* @__PURE__ */ fe(
489
+ U,
490
+ {
491
+ ref: Y,
492
+ className: `${i}-cell-wrap-value`,
493
+ ...Ge(U) ? {} : {
494
+ rowData: Q(p),
495
+ column: e,
496
+ onHandleSave: E,
497
+ ...b
498
+ },
499
+ children: [
500
+ !!G && /* @__PURE__ */ c(
501
+ "span",
502
+ {
503
+ ref: D,
504
+ className: `${i}-cell-indent`,
505
+ style: { paddingLeft: G }
506
+ }
507
+ ),
508
+ !!ne && /* @__PURE__ */ c(
509
+ "span",
510
+ {
511
+ ref: I,
512
+ className: `${i}-cell-expand-icon`,
513
+ children: w(p, m)
514
+ }
515
+ ),
516
+ s.___dangerouslySetInnerHTML___ ? /* @__PURE__ */ c(
517
+ "span",
518
+ {
519
+ dangerouslySetInnerHTML: {
520
+ __html: y
521
+ }
522
+ }
523
+ ) : y
524
+ ]
525
+ },
526
+ pe
527
+ )
528
+ },
529
+ pe
530
+ );
531
+ let re = /* @__PURE__ */ c(
532
+ $,
533
+ {
534
+ className: _,
535
+ style: r,
536
+ ...Ln(b, [
537
+ "onClick",
538
+ "onDoubleClick",
539
+ "onContextMenu",
540
+ "onMouseOver",
541
+ "onMouseEnter",
542
+ "onMouseLeave",
543
+ "onMouseMove",
544
+ "onMouseDown",
545
+ "onMouseUp"
546
+ ]),
547
+ ...P,
548
+ children: J
549
+ },
550
+ (e == null ? void 0 : e.key) || (e == null ? void 0 : e.dataIndex) || F
551
+ );
552
+ if (v) {
553
+ let le = 0, ue = 0, ce = 0, ye = 0;
554
+ if (ee.current instanceof Element && (le = ee.current.getBoundingClientRect().width), Y.current instanceof Element && (ue = Y.current.getBoundingClientRect().width), D.current instanceof Element && (ce = D.current.getBoundingClientRect().width), I.current instanceof Element && (ye = I.current.getBoundingClientRect().width), le < ue + ce + ye) {
555
+ const X = mt(e == null ? void 0 : e.tooltipContentRender) ? e.tooltipContentRender(p, C, e) : Jn(re);
556
+ re = /* @__PURE__ */ c(
557
+ rn,
558
+ {
559
+ className: Z(`${i}-cell-tooltip`, e.tooltipClassName),
560
+ style: e.tooltipStyle,
561
+ content: X,
562
+ children: re
563
+ }
564
+ );
565
+ }
566
+ }
567
+ return yt(() => (f(), () => {
568
+ }), [ee.current, Y.current]), re;
569
+ }
570
+ const uo = Ve.memo(po);
571
+ function ho(s, f) {
572
+ const {
573
+ expandedRowRender: u,
574
+ onClickExpandBtn: $,
575
+ columns: e,
576
+ component: F,
577
+ onCheck: i,
578
+ onCheckRadio: h,
579
+ prefixCls: d,
580
+ selectedRowKeys: N,
581
+ indeterminateKeys: R,
582
+ rowClassName: p,
583
+ onRow: C,
584
+ rowSelection: g,
585
+ indentSize: k = 16,
586
+ activeSorters: K,
587
+ virtualized: w,
588
+ stickyOffsets: m,
589
+ stickyClassNames: l,
590
+ getRowKey: B,
591
+ placeholder: S,
592
+ expandProps: U = { strictTreeData: !0 },
593
+ data: ee,
594
+ expandedRowKeys: Y,
595
+ childrenColumnName: D,
596
+ record: I,
597
+ index: v,
598
+ type: _,
599
+ shouldRowExpand: P,
600
+ level: M
601
+ } = s, { rtl: W } = Qe(Ze), r = Q(I), { ...E } = (C == null ? void 0 : C(r, v)) || {}, b = B(I), T = _ === "radio" ? N.slice(0, 1) : N, y = b || v, H = T.indexOf(b) > -1, n = Y.indexOf(b) > -1, ne = R.indexOf(b) > -1, G = Z(
602
+ `${d}-tr`,
603
+ {
604
+ [`${d}-row-checked`]: H,
605
+ [`${d}-row-expanded`]: n
606
+ },
607
+ p == null ? void 0 : p(r, v)
608
+ ), V = g && typeof g.checkboxProps == "function" ? g.checkboxProps(r) : {}, pe = Z(`${d}-td`, `${d}-operation`), J = (L) => Z(pe, `${d}-${L}`, {
609
+ [`${d}-selection-col`]: w && _ === "checkbox" || _ === "radio",
610
+ [`${d}-expand-icon-col`]: w && u
611
+ });
612
+ function re(L) {
613
+ return U.strictTreeData ? we(L[D]) && L[D].length : L[D] !== void 0;
614
+ }
615
+ function he() {
616
+ return ee.find((L) => re(L));
617
+ }
618
+ const le = P(I, v), ue = re(I), ce = he() && !u, ye = ce && ue, $e = U.expandRowByClick && (le || ye) ? {
619
+ onClick: (L) => {
620
+ var j;
621
+ $(b), (j = E == null ? void 0 : E.onClick) == null || j.call(E, L);
622
+ }
623
+ } : {}, { ComponentBodyRow: Se, ComponentTd: se, getBodyComponentOperations: ie } = _e(F), ve = w ? "div" : Se, Te = w ? "div" : se, Ee = {
624
+ className: G,
625
+ key: y,
626
+ ...E,
627
+ ...$e
628
+ }, Fe = Ge(Se) ? Ee : { ...Ee, record: I, index: v };
629
+ function Pe(L, j) {
630
+ const { icon: Oe } = U, De = !!~Y.indexOf(j), be = {
631
+ onClick: (Be) => {
632
+ Be.stopPropagation(), $(j);
633
+ }
634
+ };
635
+ return typeof Oe == "function" ? Oe({ expanded: De, record: L, ...be }) : /* @__PURE__ */ c("button", { ...be, type: "button", children: De ? /* @__PURE__ */ c(qn, {}) : /* @__PURE__ */ c(Xn, {}) });
636
+ }
637
+ const Ue = u && /* @__PURE__ */ c(Te, { className: J("expand-icon-cell"), children: le && Pe(I, b) }), Ie = g && g.renderCell;
638
+ let Ke;
639
+ const A = /* @__PURE__ */ c(
640
+ Pt,
641
+ {
642
+ value: b,
643
+ onChange: (L) => i(L, I),
644
+ checked: H,
645
+ indeterminate: ne,
646
+ ...V
647
+ }
648
+ ), de = /* @__PURE__ */ c(
649
+ on,
650
+ {
651
+ onChange: () => h(b, I),
652
+ value: b,
653
+ checked: H,
654
+ ...V
655
+ }
656
+ );
657
+ _ === "checkbox" && (Ke = /* @__PURE__ */ c(Te, { className: J("checkbox"), children: Ie ? Ie(A, H, r) : A })), _ === "radio" && (Ke = /* @__PURE__ */ c(Te, { className: J("radio"), children: Ie ? Ie(de, H, r) : de }));
658
+ const oe = ie({
659
+ selectionNode: Ke,
660
+ expandNode: Ue
661
+ });
662
+ return /* @__PURE__ */ Je(ve, { ...Fe, key: Fe.key, ref: f }, e.map((L, j) => {
663
+ var Be, et, Le, tt;
664
+ const Oe = `${L.key}-${L.dataIndex}-${L.title}-${j}`, De = m[j], be = l[j];
665
+ if (L.$$isOperation) {
666
+ let ge = L.node, Ne = !0;
667
+ L.title === gt && (ge = (Be = oe.find((je) => je.name === "selectionNode")) == null ? void 0 : Be.node, Ne = !1), L.title === xt && (ge = (et = oe.find((je) => je.name === "expandNode")) == null ? void 0 : et.node, Ne = !1);
668
+ const Re = typeof ge == "function" ? ge(I) : ge;
669
+ return Ve.cloneElement(Re, {
670
+ key: Oe || j,
671
+ ...Re.props,
672
+ className: Z(
673
+ Ne ? pe : "",
674
+ (Le = Re == null ? void 0 : Re.props) == null ? void 0 : Le.className,
675
+ be
676
+ ),
677
+ style: {
678
+ ...(tt = Re == null ? void 0 : Re.props) == null ? void 0 : tt.style,
679
+ ...L.fixed === "left" ? {
680
+ [W ? "right" : "left"]: De
681
+ } : {},
682
+ width: L.width,
683
+ minWidth: L.width
684
+ }
685
+ });
686
+ }
687
+ return /* @__PURE__ */ c(
688
+ uo,
689
+ {
690
+ prefixCls: d,
691
+ virtualized: w,
692
+ component: F,
693
+ currentSorter: K.find(
694
+ (ge) => ge.field === (L.dataIndex || L.key)
695
+ ),
696
+ placeholder: S,
697
+ indentSize: k,
698
+ stickyClassName: be,
699
+ stickyOffset: De,
700
+ InnerComponentTd: Te,
701
+ column: L,
702
+ columnIndex: j,
703
+ record: I,
704
+ trIndex: v,
705
+ level: M,
706
+ haveTreeData: ce,
707
+ recordHaveChildren: ue,
708
+ rowKey: b,
709
+ renderExpandIcon: Pe,
710
+ ___dangerouslySetInnerHTML___: s.___dangerouslySetInnerHTML___
711
+ },
712
+ Oe
713
+ );
714
+ }));
715
+ }
716
+ const nn = It(ho), mo = It(function({
717
+ record: f,
718
+ index: u,
719
+ virtualized: $,
720
+ tbodyProps: e
721
+ }, F) {
722
+ const {
723
+ prefixCls: i,
724
+ columns: h,
725
+ indentSize: d = 16,
726
+ childrenColumnName: N = "children",
727
+ expandProps: R = {},
728
+ rowSelection: p,
729
+ hasFixedColumn: C,
730
+ tableViewWidth: g,
731
+ getRowKey: k,
732
+ expandedRowKeys: K,
733
+ expandedRowRender: w
734
+ } = e;
735
+ let m;
736
+ p && "type" in p ? m = p.type : p && !("type" in p) && (m = "checkbox");
737
+ const l = w && ((v, _) => w(Q(v), _)), B = (v) => we(v[N]) && v[N].length, S = (v, _) => "rowExpandable" in R && typeof R.rowExpandable == "function" ? R.rowExpandable(v) : (l == null ? void 0 : l(v, _)) !== null, U = (v, _) => {
738
+ const P = [], M = {
739
+ ...e,
740
+ type: m,
741
+ shouldRowExpand: S
742
+ };
743
+ P.push(
744
+ /* @__PURE__ */ c(
745
+ nn,
746
+ {
747
+ ref: F,
748
+ ...M,
749
+ record: v,
750
+ level: 0,
751
+ index: _
752
+ },
753
+ k(v)
754
+ )
755
+ );
756
+ const W = (r, E, b = 0) => {
757
+ we(r) && r.length && r.forEach((T, y) => {
758
+ K.indexOf(E) !== -1 && (P.push(
759
+ /* @__PURE__ */ Je(
760
+ nn,
761
+ {
762
+ ...M,
763
+ key: k(T),
764
+ record: T,
765
+ level: b + 1,
766
+ index: y
767
+ }
768
+ )
769
+ ), B(T) && W(T[N], k(T), b + 1));
770
+ });
771
+ };
772
+ return l || W(v[N], k(v)), P;
773
+ }, ee = k(f), Y = S(f, u) && K.indexOf(ee) !== -1, D = $ ? "div" : "tr", I = $ ? "div" : "td";
774
+ return /* @__PURE__ */ fe(Ve.Fragment, { children: [
775
+ U(f, u),
776
+ Y && /* @__PURE__ */ c(
777
+ D,
778
+ {
779
+ className: Z(`${i}-tr`, `${i}-expand-content`),
780
+ children: /* @__PURE__ */ c(
781
+ I,
782
+ {
783
+ className: Z(`${i}-td`),
784
+ style: { paddingLeft: d },
785
+ colSpan: h.length,
786
+ children: C ? /* @__PURE__ */ c(
787
+ "div",
788
+ {
789
+ className: `${i}-expand-fixed-row`,
790
+ style: { width: g },
791
+ children: l == null ? void 0 : l(f, u)
792
+ }
793
+ ) : l == null ? void 0 : l(f, u)
794
+ }
795
+ )
796
+ },
797
+ `${ee}-expanded`
798
+ )
799
+ ] }, ee);
800
+ });
801
+ function yo(s) {
802
+ const {
803
+ data: f,
804
+ columns: u,
805
+ prefixCls: $,
806
+ component: e,
807
+ noDataElement: F,
808
+ scroll: i,
809
+ tableViewWidth: h,
810
+ virtualized: d,
811
+ virtualListProps: N,
812
+ getRowKey: R,
813
+ saveVirtualListRef: p
814
+ } = s, C = (B) => {
815
+ var S;
816
+ (S = s.saveRef) == null || S.call(s, B);
817
+ }, { ComponentTbody: g } = _e(e);
818
+ let k = {}, K = {};
819
+ i && (i.x && (typeof i.x == "number" || typeof i.x == "string") && (k = {
820
+ width: i.x
821
+ }), i.y && (typeof i.y == "number" || typeof i.y == "string") && (K = {
822
+ maxHeight: i.y
823
+ }));
824
+ const w = {
825
+ className: `${$}-no-data`
826
+ };
827
+ h && (w.className = `${$}-no-data ${$}-expand-fixed-row`, w.style = { width: h });
828
+ const m = /* @__PURE__ */ c("tr", { className: Z(`${$}-tr`, `${$}-empty-row`), children: /* @__PURE__ */ c("td", { className: `${$}-td`, colSpan: u.length, children: /* @__PURE__ */ c("div", { ...w, children: F }) }) }), l = (B, S) => {
829
+ const U = R(B) || S;
830
+ return /* @__PURE__ */ c(
831
+ mo,
832
+ {
833
+ record: B,
834
+ index: S,
835
+ virtualized: d,
836
+ tbodyProps: s
837
+ },
838
+ U
839
+ );
840
+ };
841
+ return d ? f.length > 0 ? /* @__PURE__ */ c(
842
+ Yn,
843
+ {
844
+ data: f,
845
+ height: K.maxHeight,
846
+ isStaticItemHeight: !1,
847
+ outerStyle: { ...k, minWidth: "100%", overflow: "visible" },
848
+ innerStyle: { right: "auto", minWidth: "100%" },
849
+ className: `${$}-body`,
850
+ ref: (B) => {
851
+ p(B), C(B == null ? void 0 : B.dom);
852
+ },
853
+ itemKey: R,
854
+ ...N,
855
+ children: l
856
+ }
857
+ ) : /* @__PURE__ */ c("div", { className: `${$}-body`, ref: C, children: /* @__PURE__ */ c("table", { children: /* @__PURE__ */ c("tbody", { children: m }) }) }) : /* @__PURE__ */ c(g, { ref: C, children: f.length > 0 ? f.map(l) : m });
858
+ }
859
+ const xo = On({});
860
+ function go(s) {
861
+ const { summary: f, data: u, prefixCls: $, columns: e, stickyOffsets: F, stickyClassNames: i } = s;
862
+ return /* @__PURE__ */ c("tfoot", { className: `${$}-tfoot`, children: /* @__PURE__ */ c(
863
+ xo.Provider,
864
+ {
865
+ value: { columns: e, stickyOffsets: F, stickyClassNames: i, prefixCls: $ },
866
+ children: f(Q(u))
867
+ }
868
+ ) });
869
+ }
870
+ function Co(s, f) {
871
+ return s === "ascend" ? f.Table.sortAscend : s === "descend" ? f.Table.sortDescend : f.Table.cancelSort;
872
+ }
873
+ const wo = { bottom: 0 };
874
+ function $o(s) {
875
+ const {
876
+ onSort: f,
877
+ onFilter: u,
878
+ onHandleFilter: $,
879
+ onHandleFilterReset: e,
880
+ currentFilters: F = {},
881
+ currentSorter: i,
882
+ _key: h,
883
+ dataIndex: d,
884
+ title: N,
885
+ sorter: R,
886
+ sortDirections: p = ["ascend", "descend"],
887
+ filters: C = [],
888
+ columnFixedStyle: g,
889
+ className: k,
890
+ cellStyle: K,
891
+ headerCellStyle: w,
892
+ rowSpan: m,
893
+ colSpan: l,
894
+ headerCellProps: B,
895
+ prefixCls: S,
896
+ align: U = "left",
897
+ component: ee,
898
+ filterIcon: Y,
899
+ filterDropdown: D,
900
+ filterMultiple: I = !0,
901
+ ellipsis: v,
902
+ filterDropdownProps: _,
903
+ onFilterDropdownVisibleChange: P,
904
+ column: M,
905
+ showSorterTooltip: W,
906
+ index: r
907
+ } = s, { locale: E, rtl: b } = Qe(Ze), T = h || d || r, [y, H, n] = to([], {
908
+ value: F[T] || []
909
+ }), [ne, G] = xe(!1), [V, pe] = xe(!1), J = R && we(p) && p.length, re = J ? he() : void 0;
910
+ yt(() => {
911
+ H(F[T] || []);
912
+ }, [F, T]), yt(() => {
913
+ y && y !== n && H(y);
914
+ }, [ne]);
915
+ function he() {
916
+ const A = i && i.direction;
917
+ if (!A || i && i.field !== T)
918
+ return p[0];
919
+ const de = p.indexOf(A);
920
+ if (de < p.length)
921
+ return p[de + 1];
922
+ }
923
+ function le() {
924
+ y && ($ == null || $(
925
+ { onFilter: u, filters: C, dataIndex: T },
926
+ n
927
+ ), ce(!1));
928
+ }
929
+ function ue() {
930
+ e({ dataIndex: T }), ce(!1);
931
+ }
932
+ function ce(A) {
933
+ G(A), P == null || P(A);
934
+ }
935
+ function ye(A, de) {
936
+ let oe = [...n];
937
+ if (I)
938
+ de ? oe = oe.concat(A) : oe.splice(
939
+ oe.findIndex((L) => L === A),
940
+ 1
941
+ );
942
+ else if (oe.length > 0)
943
+ if (oe[0] !== A)
944
+ oe = [A];
945
+ else
946
+ return;
947
+ else
948
+ oe = [A];
949
+ H(oe);
950
+ }
951
+ function X(A) {
952
+ H(A || n), G(!1), $ == null || $(
953
+ { filters: C, onFilter: u, dataIndex: T },
954
+ A || n
955
+ );
956
+ }
957
+ function $e() {
958
+ return typeof D == "function" ? D({
959
+ filterKeys: n,
960
+ setFilterKeys: (A, de) => {
961
+ H(A), de == null || de();
962
+ },
963
+ confirm: X
964
+ }) : /* @__PURE__ */ fe("div", { className: `${S}-filters-popup`, children: [
965
+ /* @__PURE__ */ c("div", { className: `${S}-filters-list`, children: C.map((A) => {
966
+ const de = n.findIndex((oe) => oe === A.value) !== -1;
967
+ return /* @__PURE__ */ c("div", { className: `${S}-filters-item`, children: I ? /* @__PURE__ */ c(
968
+ Pt,
969
+ {
970
+ checked: de,
971
+ onChange: (oe) => ye(A.value, oe),
972
+ children: A.text
973
+ }
974
+ ) : /* @__PURE__ */ c(
975
+ on,
976
+ {
977
+ checked: de,
978
+ onChange: (oe) => ye(A.value, oe),
979
+ children: A.text
980
+ }
981
+ ) }, A.value);
982
+ }) }),
983
+ /* @__PURE__ */ fe(no, { className: `${S}-filters-btn`, children: [
984
+ /* @__PURE__ */ c(Zt, { onClick: ue, size: "mini", children: E.Table.resetText }),
985
+ /* @__PURE__ */ c(Zt, { onClick: le, type: "primary", size: "mini", children: E.Table.okText })
986
+ ] })
987
+ ] });
988
+ }
989
+ const Se = (A) => Z(`${S}-sorter-icon`, {
990
+ [`${S}-sorter-icon-active`]: i && i.direction === A && i.field === T
991
+ }), se = Z(`${S}-filters`, {
992
+ [`${S}-filters-open`]: ne,
993
+ [`${S}-filters-active`]: y && y.length
994
+ });
995
+ let ie = {
996
+ ...g
997
+ };
998
+ te(K) && (ie = {
999
+ ...ie,
1000
+ ...K
1001
+ }), te(w) && (ie = {
1002
+ ...ie,
1003
+ ...w
1004
+ }), mt(w) && (ie = {
1005
+ ...ie,
1006
+ ...w()
1007
+ }), U && U !== "left" && (ie.textAlign = U);
1008
+ const ve = {
1009
+ style: ie,
1010
+ key: h || T
1011
+ };
1012
+ l && l > 1 && (ve.colSpan = l), m && m > 1 && (ve.rowSpan = m);
1013
+ const { ComponentTh: Te, ComponentHeaderCell: Ee } = _e(ee), Fe = we(C) && C.length > 0 || typeof D == "function", Pe = v && typeof N == "string" ? { title: N } : {}, Ue = _ && _.triggerProps, Ie = /* @__PURE__ */ fe(ht, { children: [
1014
+ J ? /* @__PURE__ */ c(
1015
+ rn,
1016
+ {
1017
+ content: Co(re, E),
1018
+ disabled: !W,
1019
+ ...te(W) ? W : {},
1020
+ children: /* @__PURE__ */ fe(
1021
+ "div",
1022
+ {
1023
+ className: `${S}-cell-with-sorter`,
1024
+ onMouseEnter: () => {
1025
+ pe(!0);
1026
+ },
1027
+ onMouseLeave: () => {
1028
+ pe(!1);
1029
+ },
1030
+ onClick: () => f(re, T),
1031
+ children: [
1032
+ /* @__PURE__ */ c("span", { className: `${S}-th-item-title`, ...Pe, children: N }),
1033
+ J && /* @__PURE__ */ fe(
1034
+ "div",
1035
+ {
1036
+ className: Z(`${S}-sorter`, {
1037
+ [`${S}-sorter-direction-one`]: p.length === 1
1038
+ }),
1039
+ children: [
1040
+ p.indexOf("ascend") !== -1 && /* @__PURE__ */ c("div", { className: Se("ascend"), children: /* @__PURE__ */ c(Zn, {}) }),
1041
+ p.indexOf("descend") !== -1 && /* @__PURE__ */ c("div", { className: Se("descend"), children: /* @__PURE__ */ c(Qn, {}) })
1042
+ ]
1043
+ }
1044
+ )
1045
+ ]
1046
+ }
1047
+ )
1048
+ }
1049
+ ) : /* @__PURE__ */ c("span", { className: `${S}-th-item-title`, ...Pe, children: N }),
1050
+ Fe && /* @__PURE__ */ c(
1051
+ oo,
1052
+ {
1053
+ popup: $e,
1054
+ trigger: "click",
1055
+ classNames: "slideDynamicOrigin",
1056
+ position: b ? "bl" : "br",
1057
+ popupAlign: wo,
1058
+ popupVisible: ne,
1059
+ onVisibleChange: ce,
1060
+ ...Ue,
1061
+ children: /* @__PURE__ */ c("div", { className: se, children: Y || /* @__PURE__ */ c(eo, {}) })
1062
+ }
1063
+ )
1064
+ ] }), Ke = Z(`${S}-th-item`, {
1065
+ [`${S}-cell-text-ellipsis`]: v,
1066
+ [`${S}-cell-mouseenter`]: V,
1067
+ [`${S}-cell-next-${re}`]: V && re,
1068
+ [`${S}-col-has-sorter`]: J,
1069
+ [`${S}-col-has-filter`]: Fe
1070
+ });
1071
+ return l !== 0 && /* @__PURE__ */ Je(
1072
+ Te,
1073
+ {
1074
+ className: Z(
1075
+ `${S}-th`,
1076
+ {
1077
+ [`${S}-col-sorted`]: (i == null ? void 0 : i.direction) && i.field === T
1078
+ },
1079
+ k
1080
+ ),
1081
+ index: r,
1082
+ ...ve,
1083
+ key: ve.key,
1084
+ ...B
1085
+ },
1086
+ /* @__PURE__ */ c(
1087
+ Ee,
1088
+ {
1089
+ className: Ke,
1090
+ column: Ge(Ee) ? void 0 : M,
1091
+ children: Ie
1092
+ }
1093
+ )
1094
+ );
1095
+ }
1096
+ function So(s) {
1097
+ const {
1098
+ activeSorters: f,
1099
+ expandedRowRender: u,
1100
+ expandProps: $ = {},
1101
+ onSort: e,
1102
+ onHandleFilter: F,
1103
+ onHandleFilterReset: i,
1104
+ onHeaderRow: h,
1105
+ prefixCls: d,
1106
+ currentFilters: N,
1107
+ component: R,
1108
+ data: p,
1109
+ selectedRowKeys: C,
1110
+ rowSelection: g,
1111
+ allSelectedRowKeys: k = [],
1112
+ groupColumns: K,
1113
+ stickyOffsets: w,
1114
+ groupStickyClassNames: m,
1115
+ showSorterTooltip: l
1116
+ } = s, { rtl: B } = Qe(Ze), { ComponentThead: S, ComponentHeaderRow: U, getHeaderComponentOperations: ee } = _e(R), Y = g && (g.type === "checkbox" || !("type" in g)), D = g && "checkAll" in g ? g.checkAll : !0, I = g && g.type === "radio", { columnTitle: v } = $, _ = ae(() => {
1117
+ const W = new Set(k);
1118
+ return C.filter((r) => W.has(r));
1119
+ }, [C, k]), P = K.length > 1 ? { rowSpan: K.length } : {}, M = Z(`${d}-th`, `${d}-operation`);
1120
+ return /* @__PURE__ */ c(S, { children: K.map((W, r) => {
1121
+ const E = h == null ? void 0 : h(W, r), b = (Y || I) && r === 0 && /* @__PURE__ */ c(
1122
+ "th",
1123
+ {
1124
+ className: Z(
1125
+ M,
1126
+ `${d}-${I ? "radio" : "checkbox"}`
1127
+ ),
1128
+ children: /* @__PURE__ */ fe("div", { className: `${d}-th-item`, children: [
1129
+ D && !I ? /* @__PURE__ */ c(
1130
+ Pt,
1131
+ {
1132
+ indeterminate: p && _.length > 0 && _.length !== k.length,
1133
+ checked: p && _.length !== 0 && _.length === k.length,
1134
+ disabled: !k.length,
1135
+ onChange: s.onCheckAll
1136
+ }
1137
+ ) : null,
1138
+ g && g.columnTitle
1139
+ ] })
1140
+ }
1141
+ ), T = u && /* @__PURE__ */ c("th", { className: Z(M, `${d}-expand`), children: v && /* @__PURE__ */ c("div", { className: `${d}-th-item`, children: v }) }), y = m[r], H = ee({
1142
+ selectionNode: b,
1143
+ expandNode: T
1144
+ });
1145
+ return /* @__PURE__ */ Je(
1146
+ U,
1147
+ {
1148
+ ...E,
1149
+ key: r,
1150
+ className: `${d}-tr`
1151
+ },
1152
+ W.map((n, ne) => {
1153
+ var le, ue, ce, ye, X;
1154
+ const G = n.$$columnIndex;
1155
+ let V = 0;
1156
+ Array.isArray(G) && G.length === 2 ? V = n.fixed === "right" ? w[G[1]] : w[G[0]] : typeof G == "number" && (V = w[G] || 0);
1157
+ const pe = y[ne];
1158
+ if (n.$$isOperation) {
1159
+ let $e = n.node, Se = !0;
1160
+ n.title === gt && ($e = (le = H.find(
1161
+ (ie) => ie.name === "selectionNode"
1162
+ )) == null ? void 0 : le.node, Se = !1), n.title === xt && ($e = (ue = H.find(
1163
+ (ie) => ie.name === "expandNode"
1164
+ )) == null ? void 0 : ue.node, Se = !1);
1165
+ const se = $e;
1166
+ return Ve.cloneElement(se, {
1167
+ key: n.key || ne,
1168
+ ...se.props,
1169
+ ...P,
1170
+ className: Z(
1171
+ Se ? M : "",
1172
+ (ce = se == null ? void 0 : se.props) == null ? void 0 : ce.className,
1173
+ pe
1174
+ ),
1175
+ style: {
1176
+ ...(ye = se == null ? void 0 : se.props) == null ? void 0 : ye.style,
1177
+ ...n.fixed === "left" ? {
1178
+ [B ? "right" : "left"]: V
1179
+ } : {},
1180
+ width: n.width,
1181
+ minWidth: n.width
1182
+ }
1183
+ });
1184
+ }
1185
+ const J = (X = n == null ? void 0 : n.onHeaderCell) == null ? void 0 : X.call(n, n, ne), re = Z(pe, n.className), he = {};
1186
+ return n.fixed === "left" && (he[B ? "right" : "left"] = V), n.fixed === "right" && (he[B ? "left" : "right"] = V), /* @__PURE__ */ Je(
1187
+ $o,
1188
+ {
1189
+ index: ne,
1190
+ onSort: e,
1191
+ onHandleFilter: F,
1192
+ onHandleFilterReset: i,
1193
+ currentSorter: f.find(
1194
+ ($e) => $e.field === (n.dataIndex || n.key)
1195
+ ),
1196
+ currentFilters: N,
1197
+ _key: n.key || n.dataIndex || ne,
1198
+ ...n,
1199
+ key: n.key,
1200
+ column: n,
1201
+ headerCellProps: J,
1202
+ prefixCls: d,
1203
+ component: R,
1204
+ className: re,
1205
+ columnFixedStyle: he,
1206
+ showSorterTooltip: l
1207
+ }
1208
+ );
1209
+ })
1210
+ );
1211
+ }) });
1212
+ }
1213
+ const No = [], bo = [], Ro = {
1214
+ showHeader: !0,
1215
+ border: !0,
1216
+ hover: !0,
1217
+ rowKey: "key",
1218
+ pagePosition: "br",
1219
+ childrenColumnName: "children",
1220
+ indentSize: 15,
1221
+ showSorterTooltip: !0
1222
+ };
1223
+ function ko(s, f) {
1224
+ var Yt, qt;
1225
+ const {
1226
+ getPrefixCls: u,
1227
+ loadingElement: $,
1228
+ size: e,
1229
+ tablePagination: F,
1230
+ renderEmpty: i,
1231
+ componentConfig: h,
1232
+ rtl: d
1233
+ } = Qe(Ze), N = Xt(
1234
+ s,
1235
+ Ro,
1236
+ h == null ? void 0 : h.Table
1237
+ ), R = Xt(
1238
+ te(s == null ? void 0 : s.pagination) ? s == null ? void 0 : s.pagination : {},
1239
+ te((Yt = h == null ? void 0 : h.Table) == null ? void 0 : Yt.pagination) ? (qt = h == null ? void 0 : h.Table) == null ? void 0 : qt.pagination : {},
1240
+ F || {}
1241
+ ), {
1242
+ style: p,
1243
+ className: C,
1244
+ component: g,
1245
+ border: k,
1246
+ borderCell: K,
1247
+ columns: w = bo,
1248
+ data: m = No,
1249
+ scroll: l,
1250
+ noDataElement: B,
1251
+ showHeader: S,
1252
+ stripe: U,
1253
+ hover: ee,
1254
+ pagination: Y,
1255
+ onChange: D,
1256
+ pagePosition: I,
1257
+ childrenColumnName: v,
1258
+ indentSize: _,
1259
+ rowSelection: P,
1260
+ tableLayoutFixed: M,
1261
+ header: W,
1262
+ // 潘启宝添加
1263
+ footer: r,
1264
+ virtualized: E,
1265
+ renderPagination: b,
1266
+ summary: T,
1267
+ rowKey: y
1268
+ } = N, H = ae(
1269
+ () => Vn(m, v),
1270
+ [m, v]
1271
+ ), n = u("table"), ne = N.size || (["default", "middle", "small"].indexOf(e) > -1 ? e : "default"), G = me(null), V = me(null), pe = me(null), J = me(null), re = me(null), he = me(null), le = me(null), ue = me(0), ce = me(!1), [ye, X] = ro(N), { currentFilters: $e, defaultSorters: Se } = tt(), [se, ie] = xe(1), [ve, Te] = xe(
1272
+ R.pageSize || R.defaultPageSize || 10
1273
+ ), [Ee, Fe] = xe($e), [Pe, Ue] = xe(0), [Ie, Ke] = xe([]), A = co(X), [de, oe] = ao(
1274
+ ye,
1275
+ X,
1276
+ n
1277
+ ), {
1278
+ currentSorter: L,
1279
+ activeSorters: j,
1280
+ getNextActiveSorters: Oe,
1281
+ updateStateSorters: De
1282
+ } = lo(X, Se), { ComponentTable: be, ComponentBodyWrapper: Be, ComponentHeaderWrapper: et } = _e(g), Le = ae(() => typeof y == "function" ? (t) => y(Q(t)) : (t) => t[y], [y]);
1283
+ function tt() {
1284
+ const t = {};
1285
+ let o = [];
1286
+ return X.forEach((a) => {
1287
+ const x = a.dataIndex || a.key;
1288
+ if (a.defaultFilters && (t[x] = a.defaultFilters), a.filteredValue && (t[x] = a.filteredValue), "defaultSortOrder" in a || "sortOrder" in a) {
1289
+ const O = Et(a.sorter), q = "sortOrder" in a ? a.sortOrder : a.defaultSortOrder, z = {
1290
+ field: x,
1291
+ direction: q,
1292
+ sorterFn: Ft(a.sorter),
1293
+ priority: O
1294
+ };
1295
+ q ? ze(O) ? o.every(
1296
+ (Ce) => ze(Ce.priority) || !Ce.direction
1297
+ ) && o.push(z) : o.every((Ce) => !Ce.direction) ? o.push(z) : o = [z] : o.push(z);
1298
+ }
1299
+ }), { currentFilters: t, defaultSorters: o };
1300
+ }
1301
+ const ge = ae(() => {
1302
+ const t = X.filter(
1303
+ (a) => "filteredValue" in a
1304
+ ), o = {};
1305
+ return t.length && t.forEach((a, x) => {
1306
+ const O = a.key || a.dataIndex || x;
1307
+ O !== void 0 && (o[O] = a.filteredValue);
1308
+ }), o;
1309
+ }, [X]), Ne = ae(() => Object.keys(ge).length ? ge : Ee, [Ee, ge]);
1310
+ function Re(t, o) {
1311
+ const a = Lt(o);
1312
+ if (!a)
1313
+ return;
1314
+ const x = {
1315
+ direction: t,
1316
+ field: o,
1317
+ sorterFn: Ft(a.sorter),
1318
+ priority: Et(a.sorter)
1319
+ }, O = Oe(x);
1320
+ De(x, O);
1321
+ const q = st(
1322
+ x,
1323
+ O,
1324
+ Ne
1325
+ ), z = Ye(q);
1326
+ D == null || D(Ae(q), x, Ne, {
1327
+ currentData: Q(z),
1328
+ currentAllData: Q(q),
1329
+ action: "sort"
1330
+ });
1331
+ }
1332
+ function je(t) {
1333
+ const o = function(x, O) {
1334
+ return (q, z) => {
1335
+ const Ce = x(q, z);
1336
+ return O === "descend" ? -Ce : Ce;
1337
+ };
1338
+ }, a = [...t];
1339
+ return a.sort((x, O) => O.priority - x.priority), (x, O) => {
1340
+ for (let q = 0, z = a.length; q < z; q++) {
1341
+ const { sorterFn: Ce, direction: Rt } = a[q];
1342
+ if (typeof Ce != "function")
1343
+ continue;
1344
+ const dt = o(Ce, Rt)(x, O);
1345
+ if (dt !== 0)
1346
+ return dt;
1347
+ }
1348
+ return 0;
1349
+ };
1350
+ }
1351
+ function ln(t, o) {
1352
+ const a = {
1353
+ ...Ne,
1354
+ [t.dataIndex]: o
1355
+ }, x = {
1356
+ ...a,
1357
+ ...ge
1358
+ };
1359
+ if (we(o) && o.length) {
1360
+ Fe(x);
1361
+ const O = st(
1362
+ L,
1363
+ j,
1364
+ a
1365
+ ), q = Ye(O);
1366
+ D == null || D(
1367
+ Ae(O),
1368
+ j.length === 1 ? j[0] : j,
1369
+ a,
1370
+ {
1371
+ currentData: Q(q),
1372
+ currentAllData: Q(O),
1373
+ action: "filter"
1374
+ }
1375
+ );
1376
+ } else we(o) && !o.length && Kt(t);
1377
+ }
1378
+ function Kt({ dataIndex: t }) {
1379
+ const o = {
1380
+ ...Ne
1381
+ };
1382
+ delete o[t], Fe(o);
1383
+ const a = st(
1384
+ L,
1385
+ j,
1386
+ o
1387
+ ), x = Ye(a);
1388
+ D == null || D(
1389
+ Ae(a),
1390
+ j.length === 1 ? j[0] : j,
1391
+ o,
1392
+ {
1393
+ currentData: Q(x),
1394
+ currentAllData: Q(a),
1395
+ action: "filter"
1396
+ }
1397
+ );
1398
+ }
1399
+ const nt = !!X.find((t) => t.fixed === "left"), ot = !!X.find((t) => t.fixed === "right"), rt = nt || ot;
1400
+ function st(t, o, a) {
1401
+ let x = (H || []).slice();
1402
+ Object.keys(a).forEach((q) => {
1403
+ if (a[q] && a[q].length) {
1404
+ const z = Lt(q);
1405
+ z && typeof z.onFilter == "function" && (x = x.filter((Ce) => a[q].reduce(
1406
+ (Rt, dt) => Rt || z.onFilter(dt, Ce),
1407
+ !1
1408
+ )));
1409
+ }
1410
+ });
1411
+ const O = (q) => q.slice().sort(je(o)).map((z) => we(z[v]) ? {
1412
+ ...z,
1413
+ [v]: O(z[v])
1414
+ } : z);
1415
+ return t.direction && typeof t.sorterFn == "function" || o.length ? O(x) : x;
1416
+ }
1417
+ const He = st(
1418
+ L,
1419
+ j,
1420
+ Ne
1421
+ );
1422
+ function Ae(t = He) {
1423
+ const o = R.pageSize || ve || 10, a = ne === "middle" ? "default" : ne;
1424
+ let x = "top";
1425
+ I === "tl" || I === "bl" ? x = "bottom" : x = "top";
1426
+ const O = we(t) ? t.length : 0, q = Math.ceil(O / o) < se ? 1 : se;
1427
+ q !== se && ie(q);
1428
+ let z = {
1429
+ size: a,
1430
+ total: O,
1431
+ pageSize: o,
1432
+ current: q,
1433
+ selectProps: {
1434
+ triggerProps: {
1435
+ position: x
1436
+ }
1437
+ }
1438
+ };
1439
+ return typeof Y == "object" && Y.selectProps && (z.selectProps = {
1440
+ ...z.selectProps,
1441
+ ...Y.selectProps
1442
+ }), te(Y) && (z = {
1443
+ ...z,
1444
+ ...Y
1445
+ }), te(R) && (z = {
1446
+ ...z,
1447
+ ...R
1448
+ }), z.onChange = xn, z;
1449
+ }
1450
+ const it = Ae(), Me = Ye();
1451
+ function Ye(t = He, o = it) {
1452
+ const { current: a = 0, pageSize: x = 10 } = o;
1453
+ return Y === !1 || te(Y) && m.length <= x ? t : t.slice((a - 1) * x, a * x);
1454
+ }
1455
+ const Ot = Pn(Dt, 100), ke = !!(l && l.y), qe = T == null ? void 0 : T(Q(He)), Ct = T && Ve.isValidElement(qe) && qe.props.fixed, an = ke && Ct;
1456
+ _n(() => {
1457
+ Dt(), ft(window, "resize", Ot);
1458
+ const t = G.current, o = V.current, a = J.current;
1459
+ o && ft(o, "scroll", We);
1460
+ const x = t && t.parentNode;
1461
+ return t && x && ft(x, "scroll", We), a && ft(a, "scroll", We), () => {
1462
+ pt(window, "resize", Ot), o && pt(o, "scroll", We), x && pt(x, "scroll", We), a && pt(a, "scroll", We);
1463
+ };
1464
+ }, [
1465
+ nt,
1466
+ ot,
1467
+ l == null ? void 0 : l.x,
1468
+ l == null ? void 0 : l.y,
1469
+ X.length,
1470
+ m
1471
+ ]), vt(() => {
1472
+ const { total: t, pageSize: o } = Ae(m);
1473
+ Math.ceil(t / o) < se && ie(1);
1474
+ }, [m == null ? void 0 : m.length]), vt(() => {
1475
+ lt();
1476
+ }, [m, nt, ot, d]), Dn(f, () => ({
1477
+ getRootDomElement: wt,
1478
+ scrollIntoView: (t) => {
1479
+ he.current && he.current.scrollTo({ key: t });
1480
+ },
1481
+ getRootDOMNode: wt
1482
+ }));
1483
+ function wt() {
1484
+ return re.current;
1485
+ }
1486
+ function Dt() {
1487
+ var o, a;
1488
+ lt();
1489
+ const t = wt();
1490
+ if (t && (rt || l && l.x)) {
1491
+ const x = t.querySelector(`.${n}-body`) || t.querySelector(`.${n}-content-inner`), O = (a = (o = x == null ? void 0 : x.getBoundingClientRect) == null ? void 0 : o.call(x)) == null ? void 0 : a.width;
1492
+ Ue(O);
1493
+ }
1494
+ }
1495
+ const cn = Xe(
1496
+ Kn(() => {
1497
+ const t = re.current, o = ke ? V.current : le.current && le.current.parentNode;
1498
+ if (o) {
1499
+ const a = d ? -o.scrollLeft : o.scrollLeft, x = a === 0, O = a + 1 >= o.children[0].getBoundingClientRect().width - o.getBoundingClientRect().width;
1500
+ x && O ? at(
1501
+ t.classList,
1502
+ `${n}-scroll-position-both`
1503
+ ) : x ? at(
1504
+ t.classList,
1505
+ `${n}-scroll-position-${d ? "right" : "left"}`
1506
+ ) : O ? at(
1507
+ t.classList,
1508
+ `${n}-scroll-position-${d ? "left" : "right"}`
1509
+ ) : at(
1510
+ t.classList,
1511
+ `${n}-scroll-position-middle`
1512
+ );
1513
+ } else
1514
+ t && Bt(t.classList);
1515
+ }, 100),
1516
+ [re.current, V.current, ke, d]
1517
+ );
1518
+ function lt() {
1519
+ if (rt || l && te(l) && l.x) {
1520
+ const t = re.current;
1521
+ t && (nt && _t(
1522
+ t.classList,
1523
+ `${n}-has-fixed-col-left`
1524
+ ), ot && _t(
1525
+ t.classList,
1526
+ `${n}-has-fixed-col-right`
1527
+ )), cn();
1528
+ }
1529
+ }
1530
+ function _t(t, o) {
1531
+ t.contains(o) || t.add(o);
1532
+ }
1533
+ function Bt(t) {
1534
+ t.remove(`${n}-scroll-position-both`), t.remove(`${n}-scroll-position-left`), t.remove(`${n}-scroll-position-right`), t.remove(`${n}-scroll-position-middle`);
1535
+ }
1536
+ function at(t, o) {
1537
+ t.contains(o) || (Bt(t), t.add(o));
1538
+ }
1539
+ const {
1540
+ selectedRowKeys: $t,
1541
+ indeterminateKeys: dn,
1542
+ onCheckAll: fn,
1543
+ onCheck: pn,
1544
+ onCheckRadio: un,
1545
+ setSelectedRowKeys: hn,
1546
+ allSelectedRowKeys: mn,
1547
+ flattenData: yn
1548
+ } = io(N, Me, H, Le);
1549
+ function Lt(t) {
1550
+ return X.find((o, a) => typeof o.key < "u" ? typeof o.key == "number" && typeof t == "string" ? o.key.toString() === t : o.key === t : typeof o.dataIndex < "u" ? o.dataIndex === t : typeof t == "number" ? a === t : !1);
1551
+ }
1552
+ function xn(t, o) {
1553
+ var x, O;
1554
+ ie(t), Te(o), t !== se && gn(), P && !P.checkCrossPage && $t.length && (hn([]), (x = P.onChange) == null || x.call(P, [], []));
1555
+ const a = { ...Ae(), current: t, pageSize: o };
1556
+ D == null || D(
1557
+ a,
1558
+ j.length === 1 ? j[0] : j,
1559
+ Ne,
1560
+ {
1561
+ currentData: Q(
1562
+ Ye(He, a)
1563
+ ),
1564
+ currentAllData: Q(He),
1565
+ action: "paginate"
1566
+ }
1567
+ ), (O = R.onChange) == null || O.call(R, t, o);
1568
+ }
1569
+ function gn() {
1570
+ if (!V.current)
1571
+ return;
1572
+ const o = V.current.scrollTop;
1573
+ new Fn({
1574
+ from: { scrollTop: o },
1575
+ to: { scrollTop: 0 },
1576
+ easing: In,
1577
+ duration: 300,
1578
+ onUpdate: (x) => {
1579
+ V.current && (V.current.scrollTop = x.scrollTop);
1580
+ }
1581
+ }).start();
1582
+ }
1583
+ function We(t) {
1584
+ const { target: o } = t, a = V.current, x = G.current && G.current.parentNode, O = J.current;
1585
+ o.scrollLeft !== ue.current && (x && (x.scrollLeft = o.scrollLeft), a && (a.scrollLeft = o.scrollLeft), O && (O.scrollLeft = o.scrollLeft), lt()), ue.current = t.target.scrollLeft;
1586
+ }
1587
+ function Cn(t) {
1588
+ const { target: o } = t, a = le.current;
1589
+ o.scrollLeft !== ue.current && (a.scrollLeft = o.scrollLeft, lt()), ue.current = t.target.scrollLeft;
1590
+ }
1591
+ const [Ht, wn] = so(
1592
+ N,
1593
+ yn,
1594
+ Le
1595
+ );
1596
+ let At = {}, St = {};
1597
+ l && (l.x && (typeof l.x == "number" || typeof l.x == "string") && (St = {
1598
+ width: l.x
1599
+ }), l.y && (typeof l.y == "number" || typeof l.y == "string") && (At = {
1600
+ maxHeight: l.y
1601
+ }));
1602
+ function $n() {
1603
+ requestAnimationFrame((t) => {
1604
+ const o = G.current && G.current.parentNode, a = Un(o);
1605
+ a && a > 0 && (o.style.marginBottom = `-${a}px`, o.style.paddingBottom = "0px", J.current && (J.current.style.marginBottom = `-${a}px`, J.current.style.paddingBottom = "0px")), setTimeout(() => {
1606
+ const x = V.current;
1607
+ jn(x) ? (ce.current = !0, o && (o.style.overflowY = "scroll"), J.current && (J.current.style.overflowY = "scroll")) : o && ce.current && (ce.current = !1, o.style.overflowY = "auto", J.current && (J.current.style.overflowY = "auto"));
1608
+ }, 0);
1609
+ });
1610
+ }
1611
+ const Mt = /* @__PURE__ */ c(
1612
+ So,
1613
+ {
1614
+ ...N,
1615
+ activeSorters: j,
1616
+ currentSorter: L,
1617
+ selectedRowKeys: $t,
1618
+ currentFilters: Ne,
1619
+ onCheckAll: fn,
1620
+ onSort: Re,
1621
+ data: Me,
1622
+ onHandleFilter: ln,
1623
+ onHandleFilterReset: Kt,
1624
+ prefixCls: n,
1625
+ allSelectedRowKeys: mn,
1626
+ groupColumns: ye,
1627
+ stickyOffsets: A,
1628
+ groupStickyClassNames: de
1629
+ }
1630
+ );
1631
+ function Sn() {
1632
+ const t = te(l) && l.x === "max-content";
1633
+ return ke || E ? /* @__PURE__ */ c(et, { className: `${n}-header`, children: /* @__PURE__ */ fe(
1634
+ be,
1635
+ {
1636
+ ref: G,
1637
+ style: t ? {} : St,
1638
+ children: [
1639
+ /* @__PURE__ */ c(
1640
+ ut,
1641
+ {
1642
+ columns: X,
1643
+ prefixCls: n,
1644
+ producer: !1,
1645
+ columnWidths: t && l.y ? Ie : null
1646
+ }
1647
+ ),
1648
+ Mt
1649
+ ]
1650
+ }
1651
+ ) }) : Mt;
1652
+ }
1653
+ const Wt = qe && /* @__PURE__ */ c(
1654
+ go,
1655
+ {
1656
+ prefixCls: n,
1657
+ summary: T,
1658
+ data: Me,
1659
+ columns: X,
1660
+ stickyOffsets: A,
1661
+ stickyClassNames: oe
1662
+ }
1663
+ ), zt = /* @__PURE__ */ c(
1664
+ yo,
1665
+ {
1666
+ ...N,
1667
+ saveRef: (t) => pe.current = t,
1668
+ selectedRowKeys: $t,
1669
+ indeterminateKeys: dn,
1670
+ expandedRowKeys: Ht,
1671
+ onCheck: pn,
1672
+ onCheckRadio: un,
1673
+ onClickExpandBtn: wn,
1674
+ columns: X,
1675
+ data: Me,
1676
+ prefixCls: n,
1677
+ hasFixedColumn: rt,
1678
+ tableViewWidth: Pe,
1679
+ indentSize: _,
1680
+ noDataElement: B || i("Table"),
1681
+ activeSorters: j,
1682
+ currentSorter: L,
1683
+ stickyOffsets: A,
1684
+ stickyClassNames: oe,
1685
+ getRowKey: Le,
1686
+ saveVirtualListRef: (t) => {
1687
+ E && (he.current = t, V.current = t == null ? void 0 : t.dom);
1688
+ },
1689
+ ___dangerouslySetInnerHTML___: N.___dangerouslySetInnerHTML___
1690
+ }
1691
+ ), Vt = !E && !an ? /* @__PURE__ */ fe(ht, { children: [
1692
+ zt,
1693
+ Wt
1694
+ ] }) : zt;
1695
+ yt(() => {
1696
+ const t = V.current || pe.current, o = An([t], $n);
1697
+ return () => {
1698
+ o();
1699
+ };
1700
+ }, [V.current, pe.current]);
1701
+ function Nn() {
1702
+ const t = te(l) && l.x === "max-content" && !!l.y && we(m) && m.length > 0;
1703
+ return ke && !E ? /* @__PURE__ */ c(
1704
+ Be,
1705
+ {
1706
+ ref: V,
1707
+ className: `${n}-body`,
1708
+ style: At,
1709
+ children: /* @__PURE__ */ fe(be, { style: St, children: [
1710
+ /* @__PURE__ */ c(
1711
+ ut,
1712
+ {
1713
+ columns: X,
1714
+ prefixCls: n,
1715
+ producer: t,
1716
+ onSetColumnWidths: Ke,
1717
+ expandedRowKeys: Ht,
1718
+ data: m
1719
+ }
1720
+ ),
1721
+ Vt
1722
+ ] })
1723
+ }
1724
+ ) : Vt;
1725
+ }
1726
+ function bn() {
1727
+ let t = {};
1728
+ l && te(l) && l.x && (t = {
1729
+ width: l.x
1730
+ });
1731
+ const o = /* @__PURE__ */ c("div", { className: `${n}-tfoot`, ref: J, children: /* @__PURE__ */ fe(be, { style: t, children: [
1732
+ /* @__PURE__ */ c(ut, { columns: X, prefixCls: n }),
1733
+ Wt
1734
+ ] }) }), a = qe && ke && Ct === "top", x = qe && ke && Ct === "bottom", O = /* @__PURE__ */ fe(ht, { children: [
1735
+ S ? Sn() : null,
1736
+ a && o,
1737
+ Nn(),
1738
+ x && o
1739
+ ] });
1740
+ return /* @__PURE__ */ fe(ht, { children: [
1741
+ typeof W == "function" && /* @__PURE__ */ c("div", { className: `${n}-header-`, children: W(Me) }),
1742
+ /* @__PURE__ */ c("div", { className: `${n}-container`, children: /* @__PURE__ */ c("div", { className: `${n}-content-scroll`, children: /* @__PURE__ */ c(
1743
+ "div",
1744
+ {
1745
+ className: `${n}-content-inner`,
1746
+ onScroll: ke ? void 0 : Cn,
1747
+ children: ke || E ? O : /* @__PURE__ */ fe(be, { ref: le, style: t, children: [
1748
+ /* @__PURE__ */ c(ut, { prefixCls: n, columns: X }),
1749
+ O
1750
+ ] })
1751
+ }
1752
+ ) }) }),
1753
+ typeof r == "function" && /* @__PURE__ */ c("div", { className: `${n}-footer`, children: r(Me) })
1754
+ ] });
1755
+ }
1756
+ if (!w.length) return null;
1757
+ const Rn = te(k) ? k.wrapper : k, Nt = te(k) ? k.cell : K, kn = te(k) ? k.cell || k.headerCell : K, vn = te(k) ? k.cell || k.bodyCell : K, Tn = Z(
1758
+ n,
1759
+ `${n}-size-${ne}`,
1760
+ {
1761
+ [`${n}-border`]: Rn,
1762
+ [`${n}-border-cell`]: Nt,
1763
+ [`${n}-border-header-cell`]: !Nt && kn,
1764
+ [`${n}-border-body-cell`]: !Nt && vn,
1765
+ [`${n}-stripe`]: U,
1766
+ [`${n}-hover`]: ee,
1767
+ [`${n}-type-radio`]: P && P.type === "radio",
1768
+ [`${n}-layout-fixed`]: M || l && (l.x || l.y) || w.find((t) => t.ellipsis),
1769
+ [`${n}-fixed-column`]: rt,
1770
+ [`${n}-virtualized`]: E,
1771
+ [`${n}-rtl`]: d
1772
+ },
1773
+ C
1774
+ ), bt = I === "tl" || I === "tr" || I === "topCenter", En = Z(`${n}-pagination`, {
1775
+ [`${n}-pagination-left`]: I === "tl" || I === "bl",
1776
+ [`${n}-pagination-center`]: I === "topCenter" || I === "bottomCenter",
1777
+ [`${n}-pagination-top`]: bt
1778
+ });
1779
+ let ct = N.loading;
1780
+ typeof ct == "boolean" && (ct = { loading: ct });
1781
+ const Ut = typeof b == "function" ? b(/* @__PURE__ */ c(Gt, { ...it })) : /* @__PURE__ */ c("div", { className: En, children: /* @__PURE__ */ c(Gt, { ...it }) }), jt = Y !== !1 && (He.length !== 0 || it.total > 0);
1782
+ return /* @__PURE__ */ c(
1783
+ "div",
1784
+ {
1785
+ ref: re,
1786
+ style: p,
1787
+ className: Tn,
1788
+ ...Hn(N),
1789
+ children: /* @__PURE__ */ fe(
1790
+ Bn,
1791
+ {
1792
+ className: `${n}-spin`,
1793
+ element: $,
1794
+ ...ct,
1795
+ children: [
1796
+ jt && bt && Ut,
1797
+ bn(),
1798
+ jt && !bt && Ut
1799
+ ]
1800
+ }
1801
+ )
1802
+ }
1803
+ );
1804
+ }
1805
+ const vo = It(ko);
1806
+ vo.displayName = "Table";
1807
+ export {
1808
+ xo as S,
1809
+ vo as T,
1810
+ _e as a,
1811
+ so as b,
1812
+ io as c,
1813
+ lo as d,
1814
+ ao as e,
1815
+ co as f,
1816
+ ro as u
1817
+ };