@vtx/components 4.0.0-beta.3 → 4.0.0-beta.31

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 (463) hide show
  1. package/es/index.js +76 -0
  2. package/es/utils/columnSort.js +23 -0
  3. package/es/utils/components/DropdownFooter/index.js +53 -0
  4. package/es/utils/components/DropdownFooter/style.js +25 -0
  5. package/es/utils/components/ErrorBoundary/index.js +53 -0
  6. package/es/utils/components/FieldLabel/index.js +144 -0
  7. package/es/utils/components/FieldLabel/style.js +93 -0
  8. package/es/utils/components/FilterDropdown/index.js +62 -0
  9. package/es/utils/components/FilterDropdown/style.js +26 -0
  10. package/es/utils/components/InlineErrorFormItem/index.js +156 -0
  11. package/es/utils/components/InlineErrorFormItem/style.js +47 -0
  12. package/es/utils/components/LabelIconTip/index.js +68 -0
  13. package/es/utils/components/LabelIconTip/style.js +47 -0
  14. package/es/utils/components/ProFormContext/index.js +41 -0
  15. package/es/utils/conversionMomentValue/index.js +163 -0
  16. package/es/utils/dateArrayFormatter/index.js +36 -0
  17. package/es/utils/filterSpecialCharacters.js +83 -0
  18. package/es/utils/genColumnKey.js +6 -0
  19. package/es/utils/genCopyable/index.js +59 -0
  20. package/es/utils/getComponentProps.js +7 -0
  21. package/es/utils/getFieldPropsOrFormItemProps/index.js +16 -0
  22. package/es/utils/getPlaceholder.js +5 -0
  23. package/es/utils/getToken.js +6 -0
  24. package/es/utils/hooks/useDebounceFn/index.js +71 -0
  25. package/es/utils/hooks/useDebounceValue/index.js +40 -0
  26. package/es/utils/hooks/useDeepCompareEffect/index.js +24 -0
  27. package/es/utils/hooks/useDeepCompareMemo/index.js +15 -0
  28. package/es/utils/hooks/useDocumentTitle/index.js +10 -0
  29. package/es/utils/hooks/useForceRender/index.js +18 -0
  30. package/es/utils/hooks/useLatest/index.js +10 -0
  31. package/es/utils/hooks/usePrevious/index.js +8 -0
  32. package/es/utils/hooks/useReactiveRef/index.js +7 -0
  33. package/es/utils/hooks/useRefCallback/index.js +26 -0
  34. package/es/utils/hooks/useRefFunction/index.js +13 -0
  35. package/es/utils/index.js +72 -0
  36. package/es/utils/isBrowser/index.d.ts +9 -0
  37. package/es/utils/isBrowser/index.js +16 -0
  38. package/es/utils/isDeepEqualReact/index.js +95 -0
  39. package/es/utils/isDropdownValueType/index.js +7 -0
  40. package/es/utils/isFunction.js +3 -0
  41. package/es/utils/isImg/index.js +4 -0
  42. package/es/utils/isNil/index.js +3 -0
  43. package/es/utils/isObject/index.js +3 -0
  44. package/es/utils/isObject.js +3 -0
  45. package/es/utils/isUrl/index.js +17 -0
  46. package/es/utils/merge/index.js +36 -0
  47. package/es/utils/nanoid/index.js +29 -0
  48. package/es/utils/omitBoolean/index.js +11 -0
  49. package/es/utils/omitUndefined/index.js +12 -0
  50. package/es/utils/omitUndefinedAndEmptyArr/index.js +14 -0
  51. package/es/utils/parseValueToMoment/index.js +28 -0
  52. package/es/utils/pickProFormItemProps/index.js +15 -0
  53. package/es/utils/pickProProps/index.js +15 -0
  54. package/es/utils/proFieldParsingText/index.js +161 -0
  55. package/es/utils/runFunction/index.js +10 -0
  56. package/es/utils/sortByGivenOrder.js +36 -0
  57. package/es/utils/sortByKeyArrayExtract.js +38 -0
  58. package/es/utils/stringify/index.js +10 -0
  59. package/es/utils/transformKeySubmitValue/index.js +330 -0
  60. package/es/utils/useColSize.js +20 -0
  61. package/es/utils/useEditableArray/index.js +906 -0
  62. package/es/utils/useEditableMap/index.js +214 -0
  63. package/es/utils/useInterval.js +12 -0
  64. package/es/utils/useMediaQuery/index.js +106 -0
  65. package/es/utils/useMediaQuery/query.js +30 -0
  66. package/es/utils/useMountMergeState/index.js +2 -0
  67. package/es/utils/useSet.js +38 -0
  68. package/es/version.js +3 -0
  69. package/es/vtx-color-picker/index.js +175 -0
  70. package/es/vtx-color-picker/style/index.js +54 -0
  71. package/es/vtx-combogrid/Combogrid.js +252 -0
  72. package/es/vtx-combogrid/index.js +121 -0
  73. package/es/vtx-combogrid/style/index.js +42 -0
  74. package/es/vtx-datagrid/Alert/index.js +49 -0
  75. package/es/vtx-datagrid/Alert/style.js +44 -0
  76. package/es/vtx-datagrid/Store/Provide.js +442 -0
  77. package/es/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +531 -0
  78. package/es/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +86 -0
  79. package/es/vtx-datagrid/ToolBar/components/Density/index.js +51 -0
  80. package/es/vtx-datagrid/ToolBar/components/Fullscreen/index.js +77 -0
  81. package/es/vtx-datagrid/ToolBar/components/TableStyle/index.js +74 -0
  82. package/es/vtx-datagrid/ToolBar/index.js +88 -0
  83. package/es/vtx-datagrid/ToolBar/style.js +59 -0
  84. package/es/vtx-datagrid/index.js +421 -0
  85. package/es/vtx-datagrid/renderColumnButtons.js +117 -0
  86. package/es/vtx-datagrid/style/index.js +94 -0
  87. package/es/vtx-datagrid/style/index.less +242 -0
  88. package/es/vtx-date-picker/QdatePicker.js +152 -0
  89. package/es/vtx-date-picker/generatePicker.js +104 -0
  90. package/es/vtx-date-picker/index.js +49 -0
  91. package/es/vtx-date-picker/style/index.js +39 -0
  92. package/es/vtx-date-picker/style/index.less +39 -0
  93. package/es/vtx-descriptions/Descriptions.js +30 -0
  94. package/es/vtx-descriptions/index.js +3 -0
  95. package/es/vtx-descriptions/style/index.js +19 -0
  96. package/es/vtx-ellipsis-text/index.js +57 -0
  97. package/es/vtx-ellipsis-text/style/index.js +29 -0
  98. package/es/vtx-export/index.js +196 -0
  99. package/es/vtx-export/style/index.js +24 -0
  100. package/es/vtx-export-async/ColumnsSelect.js +63 -0
  101. package/es/vtx-export-async/History.js +260 -0
  102. package/es/vtx-export-async/index.js +427 -0
  103. package/es/vtx-export-async/style/index.js +49 -0
  104. package/es/vtx-export-async/util.js +51 -0
  105. package/es/vtx-form-layout/Card.js +74 -0
  106. package/es/vtx-form-layout/Divider.js +22 -0
  107. package/es/vtx-form-layout/FormItem.js +136 -0
  108. package/es/vtx-form-layout/Pane.js +52 -0
  109. package/es/vtx-form-layout/Row.js +19 -0
  110. package/es/vtx-form-layout/context.js +2 -0
  111. package/es/vtx-form-layout/index.js +80 -0
  112. package/es/vtx-form-layout/style/index.js +261 -0
  113. package/es/vtx-icon/index.js +115 -0
  114. package/es/vtx-icon/svg/alignRightOutlined.js +29 -0
  115. package/es/vtx-icon/svg/columnHeightOutlined.js +25 -0
  116. package/es/vtx-icon/svg/downOutlined.js +24 -0
  117. package/es/vtx-icon/svg/fullscreen.js +25 -0
  118. package/es/vtx-icon/svg/redoOutlined.js +29 -0
  119. package/es/vtx-icon/svg/rightOutlined.js +24 -0
  120. package/es/vtx-icon/svg/settingOutlined.js +29 -0
  121. package/es/vtx-image/Image.js +257 -0
  122. package/es/vtx-image/Preview.js +145 -0
  123. package/es/vtx-image/PreviewGroup.js +81 -0
  124. package/es/vtx-image/index.js +4 -0
  125. package/es/vtx-image/style/index.js +91 -0
  126. package/es/vtx-import/index.js +457 -0
  127. package/es/vtx-import/result.js +82 -0
  128. package/es/vtx-import/style/index.js +29 -0
  129. package/es/vtx-import2/CheckResult.js +45 -0
  130. package/es/vtx-import2/Content.js +104 -0
  131. package/es/vtx-import2/DownloadSvg.js +41 -0
  132. package/es/vtx-import2/ImportResult.js +57 -0
  133. package/es/vtx-import2/UploadSvg.js +41 -0
  134. package/es/vtx-import2/index.js +459 -0
  135. package/es/vtx-import2/style/index.js +151 -0
  136. package/es/vtx-input/TextArea/index.js +66 -0
  137. package/es/vtx-input/TextArea/style.js +30 -0
  138. package/es/vtx-input/index.js +92 -0
  139. package/es/vtx-input/style/index.js +24 -0
  140. package/es/vtx-input/useLength.js +21 -0
  141. package/es/vtx-modal/Title.js +34 -0
  142. package/es/vtx-modal/index.js +243 -0
  143. package/es/vtx-modal/style/index.js +111 -0
  144. package/es/vtx-page-layout/Basic.js +28 -0
  145. package/es/vtx-page-layout/Content.js +43 -0
  146. package/es/vtx-page-layout/Pane.js +40 -0
  147. package/es/vtx-page-layout/TabLayout.js +59 -0
  148. package/es/vtx-page-layout/TableLayout.js +173 -0
  149. package/es/vtx-page-layout/TableWrap.js +37 -0
  150. package/es/vtx-page-layout/TreeLayout.js +73 -0
  151. package/es/vtx-page-layout/container.js +69 -0
  152. package/es/vtx-page-layout/index.js +26 -0
  153. package/es/vtx-page-layout/style/index.js +129 -0
  154. package/es/vtx-provider/index.js +324 -0
  155. package/es/vtx-provider/intl.js +140 -0
  156. package/es/vtx-provider/locale/ar_EG.js +71 -0
  157. package/es/vtx-provider/locale/ca_ES.js +71 -0
  158. package/es/vtx-provider/locale/cs_CZ.js +74 -0
  159. package/es/vtx-provider/locale/de_DE.js +71 -0
  160. package/es/vtx-provider/locale/en_GB.js +73 -0
  161. package/es/vtx-provider/locale/en_US.js +189 -0
  162. package/es/vtx-provider/locale/es_ES.js +71 -0
  163. package/es/vtx-provider/locale/fa_IR.js +71 -0
  164. package/es/vtx-provider/locale/fr_FR.js +71 -0
  165. package/es/vtx-provider/locale/he_IL.js +74 -0
  166. package/es/vtx-provider/locale/hr_HR.js +71 -0
  167. package/es/vtx-provider/locale/id_ID.js +71 -0
  168. package/es/vtx-provider/locale/it_IT.js +71 -0
  169. package/es/vtx-provider/locale/ja_JP.js +71 -0
  170. package/es/vtx-provider/locale/ko_KR.js +71 -0
  171. package/es/vtx-provider/locale/mn_MN.js +71 -0
  172. package/es/vtx-provider/locale/ms_MY.js +71 -0
  173. package/es/vtx-provider/locale/nl_NL.js +74 -0
  174. package/es/vtx-provider/locale/pl_PL.js +71 -0
  175. package/es/vtx-provider/locale/pt_BR.js +71 -0
  176. package/es/vtx-provider/locale/ro_RO.js +74 -0
  177. package/es/vtx-provider/locale/ru_RU.js +71 -0
  178. package/es/vtx-provider/locale/sk_SK.js +74 -0
  179. package/es/vtx-provider/locale/sr_RS.js +71 -0
  180. package/es/vtx-provider/locale/sv_SE.js +74 -0
  181. package/es/vtx-provider/locale/th_TH.js +74 -0
  182. package/es/vtx-provider/locale/tr_TR.js +71 -0
  183. package/es/vtx-provider/locale/uk_UA.js +74 -0
  184. package/es/vtx-provider/locale/uz_UZ.js +71 -0
  185. package/es/vtx-provider/locale/vi_VN.js +71 -0
  186. package/es/vtx-provider/locale/zh_CN.js +201 -0
  187. package/es/vtx-provider/locale/zh_HK.js +83 -0
  188. package/es/vtx-provider/locale/zh_TW.js +74 -0
  189. package/es/vtx-provider/typing/layoutToken.js +60 -0
  190. package/es/vtx-provider/useStyle/index.js +110 -0
  191. package/es/vtx-provider/utils/merge.js +27 -0
  192. package/es/vtx-rps-frame/index.js +164 -0
  193. package/es/vtx-rps-frame/style/index.js +26 -0
  194. package/es/vtx-scrollable-row/index.js +193 -0
  195. package/es/vtx-scrollable-row/style/index.js +108 -0
  196. package/es/vtx-search/index.js +351 -0
  197. package/es/vtx-search/style/index.js +95 -0
  198. package/es/vtx-select/index.js +266 -0
  199. package/es/vtx-select/style/index.js +75 -0
  200. package/es/vtx-signature/index.js +120 -0
  201. package/es/vtx-signature/style/index.js +47 -0
  202. package/es/vtx-split-pane/Resizer.js +47 -0
  203. package/es/vtx-split-pane/SplitPane.js +70 -0
  204. package/es/vtx-split-pane/index.js +3 -0
  205. package/es/vtx-split-pane/style/index.js +28 -0
  206. package/es/vtx-statistics-column/Back.js +27 -0
  207. package/es/vtx-statistics-column/Item.js +54 -0
  208. package/es/vtx-statistics-column/Total.js +54 -0
  209. package/es/vtx-statistics-column/context.js +2 -0
  210. package/es/vtx-statistics-column/index.js +54 -0
  211. package/es/vtx-statistics-column/style/index.js +72 -0
  212. package/es/vtx-time-picker/index.js +63 -0
  213. package/es/vtx-time-picker/style/index.js +0 -0
  214. package/es/vtx-transfer/Transfer.js +30 -0
  215. package/es/vtx-transfer/index.js +3 -0
  216. package/es/vtx-transfer/style/index.js +19 -0
  217. package/es/vtx-transfer-select/TransferSelect.js +143 -0
  218. package/es/vtx-transfer-select/index.js +3 -0
  219. package/es/vtx-transfer-select/style/index.js +19 -0
  220. package/es/vtx-tree/index.js +405 -0
  221. package/es/vtx-tree/style/index.js +50 -0
  222. package/es/vtx-tree/utils.js +73 -0
  223. package/es/vtx-tree-select/index.js +253 -0
  224. package/es/vtx-tree-select/style/index.js +76 -0
  225. package/es/vtx-upload/FilePreview.js +112 -0
  226. package/es/vtx-upload/index.js +468 -0
  227. package/es/vtx-upload/style/index.js +83 -0
  228. package/es/vtx-wang-editor/index.js +421 -0
  229. package/es/vtx-wang-editor/style/index.js +33 -0
  230. package/es/vtx-wang-editor/style/index.less +12 -0
  231. package/es/vtx-wang-editor/wangEditorUtil.js +276 -0
  232. package/lib/index.js +399 -0
  233. package/lib/utils/columnSort.js +29 -0
  234. package/lib/utils/components/DropdownFooter/index.js +62 -0
  235. package/lib/utils/components/DropdownFooter/style.js +31 -0
  236. package/lib/utils/components/ErrorBoundary/index.js +59 -0
  237. package/lib/utils/components/FieldLabel/index.js +152 -0
  238. package/lib/utils/components/FieldLabel/style.js +99 -0
  239. package/lib/utils/components/FilterDropdown/index.js +70 -0
  240. package/lib/utils/components/FilterDropdown/style.js +32 -0
  241. package/lib/utils/components/InlineErrorFormItem/index.js +162 -0
  242. package/lib/utils/components/InlineErrorFormItem/style.js +53 -0
  243. package/lib/utils/components/LabelIconTip/index.js +73 -0
  244. package/lib/utils/components/LabelIconTip/style.js +53 -0
  245. package/lib/utils/components/ProFormContext/index.js +48 -0
  246. package/lib/utils/conversionMomentValue/index.js +170 -0
  247. package/lib/utils/dateArrayFormatter/index.js +43 -0
  248. package/lib/utils/filterSpecialCharacters.js +91 -0
  249. package/lib/utils/genColumnKey.js +12 -0
  250. package/lib/utils/genCopyable/index.js +66 -0
  251. package/lib/utils/getComponentProps.js +13 -0
  252. package/lib/utils/getFieldPropsOrFormItemProps/index.js +21 -0
  253. package/lib/utils/getPlaceholder.js +11 -0
  254. package/lib/utils/getToken.js +12 -0
  255. package/lib/utils/hooks/useDebounceFn/index.js +77 -0
  256. package/lib/utils/hooks/useDebounceValue/index.js +45 -0
  257. package/lib/utils/hooks/useDeepCompareEffect/index.js +33 -0
  258. package/lib/utils/hooks/useDeepCompareMemo/index.js +21 -0
  259. package/lib/utils/hooks/useDocumentTitle/index.js +16 -0
  260. package/lib/utils/hooks/useForceRender/index.js +24 -0
  261. package/lib/utils/hooks/useLatest/index.js +15 -0
  262. package/lib/utils/hooks/usePrevious/index.js +14 -0
  263. package/lib/utils/hooks/useReactiveRef/index.js +14 -0
  264. package/lib/utils/hooks/useRefCallback/index.js +31 -0
  265. package/lib/utils/hooks/useRefFunction/index.js +18 -0
  266. package/lib/utils/index.js +429 -0
  267. package/lib/utils/isBrowser/index.d.ts +9 -0
  268. package/lib/utils/isBrowser/index.js +22 -0
  269. package/lib/utils/isDeepEqualReact/index.js +101 -0
  270. package/lib/utils/isDropdownValueType/index.js +13 -0
  271. package/lib/utils/isFunction.js +9 -0
  272. package/lib/utils/isImg/index.js +10 -0
  273. package/lib/utils/isNil/index.js +9 -0
  274. package/lib/utils/isObject/index.js +9 -0
  275. package/lib/utils/isObject.js +9 -0
  276. package/lib/utils/isUrl/index.js +23 -0
  277. package/lib/utils/merge/index.js +41 -0
  278. package/lib/utils/nanoid/index.js +35 -0
  279. package/lib/utils/omitBoolean/index.js +17 -0
  280. package/lib/utils/omitUndefined/index.js +18 -0
  281. package/lib/utils/omitUndefinedAndEmptyArr/index.js +20 -0
  282. package/lib/utils/parseValueToMoment/index.js +35 -0
  283. package/lib/utils/pickProFormItemProps/index.js +21 -0
  284. package/lib/utils/pickProProps/index.js +21 -0
  285. package/lib/utils/proFieldParsingText/index.js +166 -0
  286. package/lib/utils/runFunction/index.js +16 -0
  287. package/lib/utils/sortByGivenOrder.js +42 -0
  288. package/lib/utils/sortByKeyArrayExtract.js +44 -0
  289. package/lib/utils/stringify/index.js +21 -0
  290. package/lib/utils/transformKeySubmitValue/index.js +337 -0
  291. package/lib/utils/useColSize.js +26 -0
  292. package/lib/utils/useEditableArray/index.js +918 -0
  293. package/lib/utils/useEditableMap/index.js +219 -0
  294. package/lib/utils/useInterval.js +18 -0
  295. package/lib/utils/useMediaQuery/index.js +112 -0
  296. package/lib/utils/useMediaQuery/query.js +36 -0
  297. package/lib/utils/useMountMergeState/index.js +12 -0
  298. package/lib/utils/useSet.js +43 -0
  299. package/lib/version.js +9 -0
  300. package/lib/vtx-color-picker/index.js +182 -0
  301. package/lib/vtx-color-picker/style/index.js +60 -0
  302. package/lib/vtx-combogrid/Combogrid.js +260 -0
  303. package/lib/vtx-combogrid/index.js +129 -0
  304. package/lib/vtx-combogrid/style/index.js +48 -0
  305. package/lib/vtx-datagrid/Alert/index.js +57 -0
  306. package/lib/vtx-datagrid/Alert/style.js +50 -0
  307. package/lib/vtx-datagrid/Store/Provide.js +448 -0
  308. package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +535 -0
  309. package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +92 -0
  310. package/lib/vtx-datagrid/ToolBar/components/Density/index.js +57 -0
  311. package/lib/vtx-datagrid/ToolBar/components/Fullscreen/index.js +83 -0
  312. package/lib/vtx-datagrid/ToolBar/components/TableStyle/index.js +80 -0
  313. package/lib/vtx-datagrid/ToolBar/index.js +96 -0
  314. package/lib/vtx-datagrid/ToolBar/style.js +65 -0
  315. package/lib/vtx-datagrid/index.js +430 -0
  316. package/lib/vtx-datagrid/renderColumnButtons.js +123 -0
  317. package/lib/vtx-datagrid/style/index.js +100 -0
  318. package/lib/vtx-datagrid/style/index.less +242 -0
  319. package/lib/vtx-date-picker/QdatePicker.js +157 -0
  320. package/lib/vtx-date-picker/generatePicker.js +111 -0
  321. package/lib/vtx-date-picker/index.js +55 -0
  322. package/lib/vtx-date-picker/style/index.js +45 -0
  323. package/lib/vtx-date-picker/style/index.less +39 -0
  324. package/lib/vtx-descriptions/Descriptions.js +39 -0
  325. package/lib/vtx-descriptions/index.js +15 -0
  326. package/lib/vtx-descriptions/style/index.js +25 -0
  327. package/lib/vtx-ellipsis-text/index.js +65 -0
  328. package/lib/vtx-ellipsis-text/style/index.js +35 -0
  329. package/lib/vtx-export/index.js +202 -0
  330. package/lib/vtx-export/style/index.js +30 -0
  331. package/lib/vtx-export-async/ColumnsSelect.js +69 -0
  332. package/lib/vtx-export-async/History.js +268 -0
  333. package/lib/vtx-export-async/index.js +434 -0
  334. package/lib/vtx-export-async/style/index.js +55 -0
  335. package/lib/vtx-export-async/util.js +57 -0
  336. package/lib/vtx-form-layout/Card.js +83 -0
  337. package/lib/vtx-form-layout/Divider.js +31 -0
  338. package/lib/vtx-form-layout/FormItem.js +142 -0
  339. package/lib/vtx-form-layout/Pane.js +61 -0
  340. package/lib/vtx-form-layout/Row.js +26 -0
  341. package/lib/vtx-form-layout/context.js +8 -0
  342. package/lib/vtx-form-layout/index.js +89 -0
  343. package/lib/vtx-form-layout/style/index.js +267 -0
  344. package/lib/vtx-icon/index.js +135 -0
  345. package/lib/vtx-icon/svg/alignRightOutlined.js +34 -0
  346. package/lib/vtx-icon/svg/columnHeightOutlined.js +31 -0
  347. package/lib/vtx-icon/svg/downOutlined.js +30 -0
  348. package/lib/vtx-icon/svg/fullscreen.js +31 -0
  349. package/lib/vtx-icon/svg/redoOutlined.js +34 -0
  350. package/lib/vtx-icon/svg/rightOutlined.js +30 -0
  351. package/lib/vtx-icon/svg/settingOutlined.js +34 -0
  352. package/lib/vtx-image/Image.js +264 -0
  353. package/lib/vtx-image/Preview.js +151 -0
  354. package/lib/vtx-image/PreviewGroup.js +91 -0
  355. package/lib/vtx-image/index.js +31 -0
  356. package/lib/vtx-image/style/index.js +97 -0
  357. package/lib/vtx-import/index.js +465 -0
  358. package/lib/vtx-import/result.js +89 -0
  359. package/lib/vtx-import/style/index.js +35 -0
  360. package/lib/vtx-import2/CheckResult.js +50 -0
  361. package/lib/vtx-import2/Content.js +113 -0
  362. package/lib/vtx-import2/DownloadSvg.js +47 -0
  363. package/lib/vtx-import2/ImportResult.js +62 -0
  364. package/lib/vtx-import2/UploadSvg.js +47 -0
  365. package/lib/vtx-import2/index.js +464 -0
  366. package/lib/vtx-import2/style/index.js +157 -0
  367. package/lib/vtx-input/TextArea/index.js +75 -0
  368. package/lib/vtx-input/TextArea/style.js +36 -0
  369. package/lib/vtx-input/index.js +100 -0
  370. package/lib/vtx-input/style/index.js +30 -0
  371. package/lib/vtx-input/useLength.js +27 -0
  372. package/lib/vtx-modal/Title.js +42 -0
  373. package/lib/vtx-modal/index.js +249 -0
  374. package/lib/vtx-modal/style/index.js +117 -0
  375. package/lib/vtx-page-layout/Basic.js +36 -0
  376. package/lib/vtx-page-layout/Content.js +50 -0
  377. package/lib/vtx-page-layout/Pane.js +47 -0
  378. package/lib/vtx-page-layout/TabLayout.js +64 -0
  379. package/lib/vtx-page-layout/TableLayout.js +182 -0
  380. package/lib/vtx-page-layout/TableWrap.js +44 -0
  381. package/lib/vtx-page-layout/TreeLayout.js +78 -0
  382. package/lib/vtx-page-layout/container.js +75 -0
  383. package/lib/vtx-page-layout/index.js +32 -0
  384. package/lib/vtx-page-layout/style/index.js +136 -0
  385. package/lib/vtx-provider/index.js +359 -0
  386. package/lib/vtx-provider/intl.js +145 -0
  387. package/lib/vtx-provider/locale/ar_EG.js +77 -0
  388. package/lib/vtx-provider/locale/ca_ES.js +77 -0
  389. package/lib/vtx-provider/locale/cs_CZ.js +80 -0
  390. package/lib/vtx-provider/locale/de_DE.js +77 -0
  391. package/lib/vtx-provider/locale/en_GB.js +79 -0
  392. package/lib/vtx-provider/locale/en_US.js +195 -0
  393. package/lib/vtx-provider/locale/es_ES.js +77 -0
  394. package/lib/vtx-provider/locale/fa_IR.js +77 -0
  395. package/lib/vtx-provider/locale/fr_FR.js +77 -0
  396. package/lib/vtx-provider/locale/he_IL.js +80 -0
  397. package/lib/vtx-provider/locale/hr_HR.js +77 -0
  398. package/lib/vtx-provider/locale/id_ID.js +77 -0
  399. package/lib/vtx-provider/locale/it_IT.js +77 -0
  400. package/lib/vtx-provider/locale/ja_JP.js +77 -0
  401. package/lib/vtx-provider/locale/ko_KR.js +77 -0
  402. package/lib/vtx-provider/locale/mn_MN.js +77 -0
  403. package/lib/vtx-provider/locale/ms_MY.js +77 -0
  404. package/lib/vtx-provider/locale/nl_NL.js +80 -0
  405. package/lib/vtx-provider/locale/pl_PL.js +77 -0
  406. package/lib/vtx-provider/locale/pt_BR.js +77 -0
  407. package/lib/vtx-provider/locale/ro_RO.js +80 -0
  408. package/lib/vtx-provider/locale/ru_RU.js +77 -0
  409. package/lib/vtx-provider/locale/sk_SK.js +80 -0
  410. package/lib/vtx-provider/locale/sr_RS.js +77 -0
  411. package/lib/vtx-provider/locale/sv_SE.js +80 -0
  412. package/lib/vtx-provider/locale/th_TH.js +80 -0
  413. package/lib/vtx-provider/locale/tr_TR.js +77 -0
  414. package/lib/vtx-provider/locale/uk_UA.js +80 -0
  415. package/lib/vtx-provider/locale/uz_UZ.js +77 -0
  416. package/lib/vtx-provider/locale/vi_VN.js +77 -0
  417. package/lib/vtx-provider/locale/zh_CN.js +207 -0
  418. package/lib/vtx-provider/locale/zh_HK.js +89 -0
  419. package/lib/vtx-provider/locale/zh_TW.js +80 -0
  420. package/lib/vtx-provider/typing/layoutToken.js +66 -0
  421. package/lib/vtx-provider/useStyle/index.js +116 -0
  422. package/lib/vtx-provider/utils/merge.js +33 -0
  423. package/lib/vtx-rps-frame/index.js +173 -0
  424. package/lib/vtx-rps-frame/style/index.js +32 -0
  425. package/lib/vtx-scrollable-row/index.js +203 -0
  426. package/lib/vtx-scrollable-row/style/index.js +114 -0
  427. package/lib/vtx-search/index.js +356 -0
  428. package/lib/vtx-search/style/index.js +102 -0
  429. package/lib/vtx-select/index.js +273 -0
  430. package/lib/vtx-select/style/index.js +81 -0
  431. package/lib/vtx-signature/index.js +128 -0
  432. package/lib/vtx-signature/style/index.js +53 -0
  433. package/lib/vtx-split-pane/Resizer.js +52 -0
  434. package/lib/vtx-split-pane/SplitPane.js +78 -0
  435. package/lib/vtx-split-pane/index.js +15 -0
  436. package/lib/vtx-split-pane/style/index.js +34 -0
  437. package/lib/vtx-statistics-column/Back.js +36 -0
  438. package/lib/vtx-statistics-column/Item.js +62 -0
  439. package/lib/vtx-statistics-column/Total.js +62 -0
  440. package/lib/vtx-statistics-column/context.js +8 -0
  441. package/lib/vtx-statistics-column/index.js +63 -0
  442. package/lib/vtx-statistics-column/style/index.js +78 -0
  443. package/lib/vtx-time-picker/index.js +71 -0
  444. package/lib/vtx-time-picker/style/index.js +1 -0
  445. package/lib/vtx-transfer/Transfer.js +39 -0
  446. package/lib/vtx-transfer/index.js +15 -0
  447. package/lib/vtx-transfer/style/index.js +25 -0
  448. package/lib/vtx-transfer-select/TransferSelect.js +151 -0
  449. package/lib/vtx-transfer-select/index.js +15 -0
  450. package/lib/vtx-transfer-select/style/index.js +25 -0
  451. package/lib/vtx-tree/index.js +412 -0
  452. package/lib/vtx-tree/style/index.js +56 -0
  453. package/lib/vtx-tree/utils.js +80 -0
  454. package/lib/vtx-tree-select/index.js +259 -0
  455. package/lib/vtx-tree-select/style/index.js +82 -0
  456. package/lib/vtx-upload/FilePreview.js +117 -0
  457. package/lib/vtx-upload/index.js +474 -0
  458. package/lib/vtx-upload/style/index.js +89 -0
  459. package/lib/vtx-wang-editor/index.js +425 -0
  460. package/lib/vtx-wang-editor/style/index.js +39 -0
  461. package/lib/vtx-wang-editor/style/index.less +12 -0
  462. package/lib/vtx-wang-editor/wangEditorUtil.js +285 -0
  463. package/package.json +44 -29
@@ -0,0 +1,430 @@
1
+ "use strict";
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.DEFAULT_HEIGHTS = void 0;
8
+ exports.VtxDatagrid = VtxDatagrid;
9
+ exports.indexColumnKey = exports.default = void 0;
10
+ var _ahooks = require("ahooks");
11
+ var _antd = require("antd");
12
+ var _classnames2 = _interopRequireDefault(require("classnames"));
13
+ var _propTypes = _interopRequireDefault(require("prop-types"));
14
+ var _react = _interopRequireWildcard(require("react"));
15
+ var _utils = require("../utils");
16
+ var _useSet3 = _interopRequireDefault(require("../utils/useSet"));
17
+ var _Alert = _interopRequireDefault(require("./Alert"));
18
+ var _ToolBar = _interopRequireDefault(require("./ToolBar"));
19
+ var _Provide = require("./Store/Provide");
20
+ var _index = require("./style/index");
21
+ var _reactAntdColumnResize = require("react-antd-column-resize");
22
+ var _vtxProvider = require("../vtx-provider");
23
+ var _jsxRuntime = require("react/jsx-runtime");
24
+ var _excluded = ["toolbar", "toolbarClassName", "toolbarTilte", "buttonGroup", "refreshIconVisible", "hideColumnSetting", "hideColumnHeight", "onRefresh", "bordered", "startIndex", "autoFit", "headFootHeight", "columnResizable", "components", "className", "style", "emptyText", "onRowSelectionClear", "onColumnsSave", "uniqueKey", "prefixUrl", "hideSelectionClear", "customEnumText"];
25
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
26
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
27
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
28
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
29
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
30
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
31
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
32
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
33
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
34
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
35
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
36
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
37
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
38
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
39
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
40
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
41
+ var isMac = navigator.userAgent.indexOf('Mac OS') !== -1;
42
+ var indexColumnKey = exports.indexColumnKey = '_serialNum';
43
+ var DEFAULT_HEIGHTS = exports.DEFAULT_HEIGHTS = {
44
+ HEAD_FOOT: 115,
45
+ ALERT: 49,
46
+ TOOLBAR: 56
47
+ };
48
+ function VtxTable(props) {
49
+ var _rest$dataSource, _rest$rowSelection, _rest$rowSelection3, _rest$rowSelection4;
50
+ var intl = (0, _vtxProvider.useIntl)();
51
+ var _useContext = (0, _react.useContext)(_antd.ConfigProvider.ConfigContext),
52
+ getPrefixCls = _useContext.getPrefixCls;
53
+ var prefixCls = getPrefixCls('', 'vtx-datagrid');
54
+ var _useStyle = (0, _index.useStyle)(prefixCls),
55
+ wrapSSR = _useStyle.wrapSSR,
56
+ hashId = _useStyle.hashId;
57
+ var counter = (0, _react.useContext)(_Provide.TableContext);
58
+ var _useContext2 = (0, _react.useContext)(_Provide.TableContext),
59
+ columnsMap = _useContext2.columnsMap,
60
+ tableStyles = _useContext2.tableStyles,
61
+ showTable = _useContext2.showTable,
62
+ isDragRef = _useContext2.isDragRef,
63
+ rootDomRef = _useContext2.rootDomRef,
64
+ sortKeyColumns = _useContext2.sortKeyColumns,
65
+ TextEnum = _useContext2.TextEnum;
66
+ var _useSet = (0, _useSet3.default)({
67
+ // 表格id
68
+ datagridId: "vtx-datagrid-".concat(new Date().getTime()),
69
+ scrollY: 0
70
+ }),
71
+ _useSet2 = _slicedToArray(_useSet, 2),
72
+ _useSet2$ = _useSet2[0],
73
+ datagridId = _useSet2$.datagridId,
74
+ scrollY = _useSet2$.scrollY,
75
+ setState = _useSet2[1];
76
+ // 列设置提示高度
77
+ var alertHeight = (0, _react.useRef)(0);
78
+ // 工具栏高度
79
+ var toolbarHeight = (0, _react.useRef)(0);
80
+ // 列接口显示字段
81
+ var settingRef = (0, _react.useRef)();
82
+ var _props$toolbar = props.toolbar,
83
+ toolbar = _props$toolbar === void 0 ? true : _props$toolbar,
84
+ toolbarClassName = props.toolbarClassName,
85
+ _props$toolbarTilte = props.toolbarTilte,
86
+ toolbarTilte = _props$toolbarTilte === void 0 ? intl.getMessage('datagrid.queryResults', '查询结果') : _props$toolbarTilte,
87
+ buttonGroup = props.buttonGroup,
88
+ _props$refreshIconVis = props.refreshIconVisible,
89
+ refreshIconVisible = _props$refreshIconVis === void 0 ? true : _props$refreshIconVis,
90
+ hideColumnSetting = props.hideColumnSetting,
91
+ hideColumnHeight = props.hideColumnHeight,
92
+ onRefresh = props.onRefresh,
93
+ _props$bordered = props.bordered,
94
+ bordered = _props$bordered === void 0 ? true : _props$bordered,
95
+ _props$startIndex = props.startIndex,
96
+ startIndex = _props$startIndex === void 0 ? 1 : _props$startIndex,
97
+ _props$autoFit = props.autoFit,
98
+ autoFit = _props$autoFit === void 0 ? true : _props$autoFit,
99
+ _props$headFootHeight = props.headFootHeight,
100
+ headFootHeight = _props$headFootHeight === void 0 ? DEFAULT_HEIGHTS.HEAD_FOOT : _props$headFootHeight,
101
+ _props$columnResizabl = props.columnResizable,
102
+ columnResizable = _props$columnResizabl === void 0 ? true : _props$columnResizabl,
103
+ components = props.components,
104
+ className = props.className,
105
+ style = props.style,
106
+ _props$emptyText = props.emptyText,
107
+ emptyText = _props$emptyText === void 0 ? intl.getMessage('select.empty', '暂无数据') : _props$emptyText,
108
+ onRowSelectionClear = props.onRowSelectionClear,
109
+ onColumnsSave = props.onColumnsSave,
110
+ uniqueKey = props.uniqueKey,
111
+ prefixUrl = props.prefixUrl,
112
+ _props$hideSelectionC = props.hideSelectionClear,
113
+ hideSelectionClear = _props$hideSelectionC === void 0 ? false : _props$hideSelectionC,
114
+ _props$customEnumText = props.customEnumText,
115
+ customEnumText = _props$customEnumText === void 0 ? {} : _props$customEnumText,
116
+ rest = _objectWithoutProperties(props, _excluded);
117
+
118
+ // 高度计算
119
+ var _useThrottleFn = (0, _ahooks.useThrottleFn)(function () {
120
+ var _rootDomRef$current, _bodyDiv$getElementsB;
121
+ if (!rootDomRef.current) {
122
+ return null;
123
+ }
124
+ var bodyHeight = ((_rootDomRef$current = rootDomRef.current) === null || _rootDomRef$current === void 0 ? void 0 : _rootDomRef$current.clientHeight) - headFootHeight - toolbarHeight.current - alertHeight.current;
125
+ var divs = rootDomRef.current.getElementsByTagName('div');
126
+ var bodyDiv = Array.prototype.filter.call(divs, function (dom) {
127
+ return dom.className.includes('ant-table-body') || dom.className.includes('ant-table-content');
128
+ })[0];
129
+ var tablePlaceholder = Array.prototype.filter.call(rootDomRef.current.getElementsByTagName('tr'), function (dom) {
130
+ return dom.className.includes('ant-table-placeholder');
131
+ })[0];
132
+ if (bodyDiv) {
133
+ bodyDiv.style.minHeight = "".concat(bodyHeight - (rest.scrollY || 0), "px");
134
+ }
135
+ var tableHeight = (_bodyDiv$getElementsB = bodyDiv.getElementsByTagName('table')) === null || _bodyDiv$getElementsB === void 0 || (_bodyDiv$getElementsB = _bodyDiv$getElementsB[0]) === null || _bodyDiv$getElementsB === void 0 ? void 0 : _bodyDiv$getElementsB.clientHeight;
136
+ if (tablePlaceholder) {
137
+ tablePlaceholder.style.height = "".concat(bodyHeight - (rest.scrollY || 0) - 12, "px");
138
+ var tableCell = Array.prototype.filter.call(tablePlaceholder.getElementsByTagName('td'), function (dom) {
139
+ return dom.className.includes('ant-table-cell');
140
+ })[0];
141
+ tableCell.style.height = "".concat(bodyHeight - (rest.scrollY || 0) - 12, "px");
142
+ }
143
+ // antd6.x 的bug 如果table的高度 没有body 高 则没有滚动条
144
+
145
+ setState({
146
+ scrollY: tableHeight > bodyHeight ? bodyHeight : undefined
147
+ });
148
+ }, {
149
+ wait: 350
150
+ }),
151
+ calculateHeight = _useThrottleFn.run;
152
+ (0, _react.useEffect)(function () {
153
+ var resizeObserver = new ResizeObserver(function () {
154
+ calculateHeight();
155
+ });
156
+ if (autoFit && rootDomRef.current) {
157
+ resizeObserver.observe(rootDomRef.current, {
158
+ box: 'border-box'
159
+ });
160
+ }
161
+ return function () {
162
+ if (autoFit) {
163
+ resizeObserver.disconnect();
164
+ }
165
+ };
166
+ }, [autoFit]);
167
+ (0, _react.useLayoutEffect)(function () {
168
+ if (autoFit) {
169
+ calculateHeight();
170
+ }
171
+ }, [(_rest$dataSource = rest.dataSource) === null || _rest$dataSource === void 0 ? void 0 : _rest$dataSource.length, (((_rest$rowSelection = rest.rowSelection) === null || _rest$rowSelection === void 0 ? void 0 : _rest$rowSelection.selectedRowKeys) || []).join(',')]);
172
+
173
+ // 分页
174
+ var getPagination = function getPagination(pagination) {
175
+ if (typeof pagination === 'boolean' && !pagination) {
176
+ return pagination;
177
+ }
178
+ return _objectSpread({
179
+ pageSizeOptions: ['10', '20', '30', '40', '50'],
180
+ showSizeChanger: true,
181
+ showQuickJumper: true,
182
+ showTotal: function showTotal(total) {
183
+ return "".concat(TextEnum.paginationTotalText, " ").concat(total, " ").concat(TextEnum.paginationItemText);
184
+ }
185
+ }, pagination);
186
+ };
187
+ // 先排序,排序的结果给列设置作用
188
+ var tableColumn = (0, _react.useMemo)(function () {
189
+ var loopFilter = function loopFilter(column) {
190
+ return column.map(function (item) {
191
+ var columnKey = (0, _utils.genColumnKey)(item.key, item.index);
192
+ var config = columnsMap[columnKey];
193
+ if (item.children) {
194
+ return _objectSpread(_objectSpread({}, item), {}, {
195
+ fixed: config === null || config === void 0 ? void 0 : config.fixed,
196
+ width: config === null || config === void 0 ? void 0 : config.width,
197
+ children: loopFilter(item.children)
198
+ });
199
+ }
200
+ return _objectSpread(_objectSpread({}, item), {}, {
201
+ fixed: config === null || config === void 0 ? void 0 : config.fixed,
202
+ width: config === null || config === void 0 ? void 0 : config.width
203
+ });
204
+ });
205
+ };
206
+ var _tableColumn = loopFilter(counter.tableColumn);
207
+ return (0, _utils.sortByKeyArrayExtract)(_tableColumn, sortKeyColumns, columnsMap, 'key');
208
+ }, [columnsMap, counter.tableColumn, sortKeyColumns]);
209
+
210
+ // 再过滤,过滤的给table用
211
+ var columns = (0, _react.useMemo)(function () {
212
+ var loopFilter = function loopFilter(column) {
213
+ return column.map(function (item) {
214
+ var columnKey = (0, _utils.genColumnKey)(item.key, item.index);
215
+ var config = counter.columnsMap[columnKey];
216
+ if (config && config.show === false) {
217
+ return false;
218
+ }
219
+ if (item.children) {
220
+ return _objectSpread(_objectSpread({}, item), {}, {
221
+ children: loopFilter(item.children)
222
+ });
223
+ }
224
+ return item;
225
+ }).filter(Boolean);
226
+ };
227
+ return loopFilter(tableColumn);
228
+ }, [tableColumn, counter.columnsMap]);
229
+ var dataSource = (0, _react.useMemo)(function () {
230
+ var _rest$dataSource2;
231
+ return ((_rest$dataSource2 = rest.dataSource) === null || _rest$dataSource2 === void 0 ? void 0 : _rest$dataSource2.map(function (item, i) {
232
+ return _objectSpread(_objectSpread({}, item), {}, {
233
+ // 有无序号都会加上这个字段, 有无序号靠columns控制
234
+ _serialNum: i + startIndex
235
+ });
236
+ })) || [];
237
+ }, [rest.dataSource, startIndex]);
238
+ var scroll = (0, _react.useMemo)(function () {
239
+ var result = rest.scroll || {};
240
+ if (autoFit) {
241
+ result = _objectSpread(_objectSpread({}, result), {}, {
242
+ y: scrollY - (rest.scrollY || 0)
243
+ });
244
+ if (scrollY == undefined) {
245
+ result.y = undefined;
246
+ }
247
+ }
248
+ return result;
249
+ }, [rest.scroll, rest.scrollY, scrollY, autoFit]);
250
+ var hasAlert = (0, _react.useMemo)(function () {
251
+ var _rest$rowSelection2;
252
+ return (((_rest$rowSelection2 = rest.rowSelection) === null || _rest$rowSelection2 === void 0 ? void 0 : _rest$rowSelection2.selectedRowKeys) || []).length > 0;
253
+ }, [(_rest$rowSelection3 = rest.rowSelection) === null || _rest$rowSelection3 === void 0 ? void 0 : _rest$rowSelection3.selectedRowKeys]);
254
+ var alertRender = !hideSelectionClear && hasAlert ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_Alert.default, {
255
+ selectedRowKeys: (_rest$rowSelection4 = rest.rowSelection) === null || _rest$rowSelection4 === void 0 ? void 0 : _rest$rowSelection4.selectedRowKeys,
256
+ onRowSelectionClear: onRowSelectionClear
257
+ }) : null;
258
+ alertHeight.current = !hideSelectionClear && hasAlert ? DEFAULT_HEIGHTS.ALERT : 0;
259
+ toolbarHeight.current = toolbar ? DEFAULT_HEIGHTS.TOOLBAR : 0;
260
+ var _useAntdColumnResize = (0, _reactAntdColumnResize.useAntdColumnResize)(function () {
261
+ return {
262
+ columns: columns,
263
+ minWidth: 20
264
+ };
265
+ }, [columns]),
266
+ resizableColumns = _useAntdColumnResize.resizableColumns,
267
+ resizeComponents = _useAntdColumnResize.components,
268
+ tableWidth = _useAntdColumnResize.tableWidth,
269
+ resetColumns = _useAntdColumnResize.resetColumns;
270
+
271
+ // const _columns = useMemo(() => {
272
+ // let result = [];
273
+ // if (!showTable) {
274
+ // result = []
275
+ // } else if (isDragRef) {
276
+ // result = resizableColumns
277
+ // } else {
278
+ // result = columns
279
+ // }
280
+ // let flag = false;
281
+ // result?.map((v) => {
282
+ // if (columnsMap[v.key].width !== v.width) {
283
+ // flag = true;
284
+ // columnsMap[v.key] = {
285
+ // ...columnsMap[v.key],
286
+ // width: v.width
287
+ // };
288
+ // }
289
+ // })
290
+ // if (flag) {
291
+ // counter.setColumnsMap(
292
+ // columnsMap
293
+ // )
294
+ // }
295
+ // return result;
296
+
297
+ // }, [isDragRef, resizableColumns, showTable, columns, columnsMap])
298
+
299
+ // 1. 先计算列配置
300
+ var _columns = (0, _react.useMemo)(function () {
301
+ var result = [];
302
+ if (!showTable) {
303
+ result = [];
304
+ } else if (isDragRef) {
305
+ result = resizableColumns;
306
+ } else {
307
+ result = columns;
308
+ }
309
+ return result;
310
+ }, [isDragRef, resizableColumns, showTable, columns]);
311
+
312
+ // 2. 在 effect 中同步列宽到 columnsMap
313
+ (0, _react.useEffect)(function () {
314
+ if (!showTable || !_columns.length) return;
315
+ var flag = false;
316
+ var newColumnsMap = _objectSpread({}, columnsMap); // 创建副本避免直接修改
317
+
318
+ _columns.forEach(function (v) {
319
+ var _columnsMap$v$key;
320
+ if (((_columnsMap$v$key = columnsMap[v.key]) === null || _columnsMap$v$key === void 0 ? void 0 : _columnsMap$v$key.width) !== v.width) {
321
+ flag = true;
322
+ newColumnsMap[v.key] = _objectSpread(_objectSpread({}, newColumnsMap[v.key]), {}, {
323
+ width: v.width
324
+ });
325
+ }
326
+ });
327
+ if (flag) {
328
+ counter.setColumnsMap(newColumnsMap);
329
+ }
330
+ }, [_columns, columnsMap, counter, showTable]);
331
+ var _components = (0, _react.useMemo)(function () {
332
+ if (isDragRef) {
333
+ return resizeComponents;
334
+ } else {
335
+ return components;
336
+ }
337
+ }, [isDragRef, resizeComponents, components]);
338
+
339
+ // 工具栏
340
+ var toolbarRender = toolbar ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_ToolBar.default, {
341
+ prefix: prefixCls,
342
+ toolbarClassName: toolbarClassName,
343
+ toolbarTilte: toolbarTilte,
344
+ buttonGroup: buttonGroup,
345
+ refreshIconVisible: refreshIconVisible,
346
+ hideColumnHeight: hideColumnHeight,
347
+ hideColumnSetting: hideColumnSetting,
348
+ onRefresh: onRefresh,
349
+ columns: tableColumn,
350
+ onColumnsSave: onColumnsSave,
351
+ uniqueKey: uniqueKey,
352
+ prefixUrl: prefixUrl,
353
+ settingRef: settingRef,
354
+ TextEnum: TextEnum
355
+ }) : null;
356
+ return wrapSSR( /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
357
+ id: datagridId,
358
+ className: (0, _classnames2.default)(prefixCls, className, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, "".concat(prefixCls, "-fit"), autoFit), "".concat(prefixCls, "-noFit"), !autoFit), "".concat(prefixCls, "-nodata"), !(dataSource !== null && dataSource !== void 0 && dataSource.length)), "".concat(prefixCls, "-userAgent-mac"), isMac), "".concat(prefixCls, "-striped"), tableStyles.includes('striped')), "".concat(prefixCls, "-no-border"), !tableStyles.includes('border')), "".concat(prefixCls, "-header-background"), tableStyles.includes('header-background')), hashId),
359
+ ref: rootDomRef,
360
+ style: style,
361
+ children: [toolbarRender, alertRender, /*#__PURE__*/(0, _jsxRuntime.jsx)(_antd.Table, _objectSpread(_objectSpread({
362
+ size: counter.tableSize,
363
+ bordered: true
364
+ // virtual
365
+ }, rest), {}, {
366
+ dataSource: dataSource,
367
+ scroll: _objectSpread({
368
+ x: 'max-content'
369
+ }, scroll),
370
+ pagination: getPagination(rest.pagination),
371
+ style: {
372
+ height: "calc(100% - ".concat(toolbarHeight.current + alertHeight.current, "px)")
373
+ },
374
+ locale: _objectSpread({
375
+ emptyText: /*#__PURE__*/(0, _jsxRuntime.jsx)(_antd.Empty, {
376
+ description: emptyText
377
+ })
378
+ }, rest.locale),
379
+ components: _components,
380
+ columns: _columns,
381
+ tableLayout: 'auto'
382
+ }))]
383
+ }));
384
+ }
385
+ function VtxDatagrid(props) {
386
+ var ErrorComponent = props.ErrorBoundary === false ? _react.default.Fragment : props.ErrorBoundary || _utils.ErrorBoundary;
387
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Provide.Container, {
388
+ initValue: props,
389
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(ErrorComponent, {
390
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(VtxTable, _objectSpread({}, props))
391
+ })
392
+ });
393
+ }
394
+ VtxDatagrid.displayName = 'VtxDatagrid';
395
+ var _default = exports.default = VtxDatagrid;
396
+ VtxDatagrid.propTypes = {
397
+ prefix: _propTypes.default.string,
398
+ refreshIconVisible: _propTypes.default.bool,
399
+ hideColumnSetting: _propTypes.default.bool,
400
+ hideSelectionClear: _propTypes.default.bool,
401
+ hideColumnHeight: _propTypes.default.bool,
402
+ bordered: _propTypes.default.bool,
403
+ visibleColumnKeys: _propTypes.default.array,
404
+ defaultVisibleColumnKeys: _propTypes.default.array,
405
+ onVisibleColumnsChange: _propTypes.default.func,
406
+ toolbarClassName: _propTypes.default.string,
407
+ toolbar: _propTypes.default.bool,
408
+ toolbarTilte: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.node]),
409
+ onRefresh: _propTypes.default.func,
410
+ indexColumn: _propTypes.default.bool,
411
+ indexFixed: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.bool]),
412
+ indexTitle: _propTypes.default.string,
413
+ startIndex: _propTypes.default.number,
414
+ buttonGroup: _propTypes.default.node,
415
+ autoFit: _propTypes.default.bool,
416
+ headFootHeight: _propTypes.default.number,
417
+ columnResizable: _propTypes.default.bool,
418
+ emptyText: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.node]),
419
+ onRowSelectionClear: _propTypes.default.func,
420
+ searchCollapseEvent$: _propTypes.default.object,
421
+ className: _propTypes.default.string,
422
+ style: _propTypes.default.object,
423
+ disabledColumnKeys: _propTypes.default.array,
424
+ onColumnsSave: _propTypes.default.func,
425
+ components: _propTypes.default.object,
426
+ customEnumText: _propTypes.default.object,
427
+ uniqueKey: _propTypes.default.string,
428
+ prefixUrl: _propTypes.default.string,
429
+ indexWidth: _propTypes.default.number
430
+ };
@@ -0,0 +1,123 @@
1
+ "use strict";
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+ var _icons = require("@ant-design/icons");
9
+ var _antd = require("antd");
10
+ var _vtxIcon = _interopRequireDefault(require("../vtx-icon"));
11
+ var _jsxRuntime = require("react/jsx-runtime");
12
+ var _react = require("react");
13
+ var _excluded = ["confirm"],
14
+ _excluded2 = ["confirm"];
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
17
+ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
18
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
19
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
20
+ function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
21
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
22
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
23
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
24
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
25
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
26
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
27
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
28
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
29
+ var renderColumnButtons = function renderColumnButtons(_ref) {
30
+ var _renderButtons;
31
+ var renderButtons = _ref.renderButtons,
32
+ _ref$visible = _ref.visible,
33
+ visible = _ref$visible === void 0 ? 4 : _ref$visible,
34
+ text = _ref.text,
35
+ record = _ref.record,
36
+ index = _ref.index,
37
+ TextEnum = _ref.TextEnum;
38
+ var actions = (_renderButtons = renderButtons(text, record, index)) === null || _renderButtons === void 0 ? void 0 : _renderButtons.filter(function (item) {
39
+ var _item$visible;
40
+ return item && ((_item$visible = item.visible) !== null && _item$visible !== void 0 ? _item$visible : true);
41
+ });
42
+ if (!Array.isArray(actions)) {
43
+ return;
44
+ }
45
+ var actionsLen = actions.length;
46
+ // 更多
47
+ var moreRender;
48
+ var realVisible = visible;
49
+ if (actionsLen > visible) {
50
+ realVisible = realVisible - 1;
51
+ var moreActions = actions.slice(realVisible);
52
+ /* eslint-disable */
53
+ moreRender = /*#__PURE__*/(0, _jsxRuntime.jsx)(_antd.Dropdown, {
54
+ menu: {
55
+ items: (moreActions === null || moreActions === void 0 ? void 0 : moreActions.map(function (item, index) {
56
+ var name = item.name,
57
+ popconfirm = item.popconfirm;
58
+ if (popconfirm) {
59
+ var confirm = popconfirm.confirm,
60
+ rest = _objectWithoutProperties(popconfirm, _excluded);
61
+ return {
62
+ key: item.name,
63
+ label: /*#__PURE__*/(0, _jsxRuntime.jsx)(_antd.Popconfirm, _objectSpread(_objectSpread({
64
+ trigger: ['hover'],
65
+ onConfirm: confirm ? function () {
66
+ return confirm(record, index);
67
+ } : undefined
68
+ }, rest), {}, {
69
+ children: name
70
+ }))
71
+ };
72
+ }
73
+ return {
74
+ key: item.name,
75
+ label: item.name
76
+ };
77
+ })) || [],
78
+ onClick: function onClick(e) {
79
+ var _moreActions$e$key;
80
+ (_moreActions$e$key = moreActions[e.key]) === null || _moreActions$e$key === void 0 || _moreActions$e$key.onClick(record, index);
81
+ }
82
+ },
83
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("a", {
84
+ style: {
85
+ display: 'inline-flex',
86
+ alignItems: 'center'
87
+ },
88
+ children: [TextEnum.actionMoreText, /*#__PURE__*/(0, _jsxRuntime.jsx)(_vtxIcon.default, {
89
+ type: "downOutlined",
90
+ fileType: "svg"
91
+ })]
92
+ })
93
+ }, "more");
94
+ }
95
+ return [].concat(_toConsumableArray(actions.slice(0, realVisible).map(function (item, i) {
96
+ var name = item.name,
97
+ onClick = item.onClick,
98
+ popconfirm = item.popconfirm;
99
+ var btnNode = /*#__PURE__*/(0, _jsxRuntime.jsx)("a", {
100
+ onClick: onClick && !popconfirm ? function () {
101
+ return onClick(record, index);
102
+ } : undefined,
103
+ style: name == '删除' || name == 'Delete' ? {
104
+ color: 'var(--ant-color-error)'
105
+ } : {},
106
+ children: name
107
+ }, name);
108
+ if (popconfirm) {
109
+ var confirm = popconfirm.confirm,
110
+ rest = _objectWithoutProperties(popconfirm, _excluded2);
111
+ btnNode = /*#__PURE__*/(0, _react.createElement)(_antd.Popconfirm, _objectSpread(_objectSpread({}, rest), {}, {
112
+ onConfirm: confirm ? function () {
113
+ return confirm(record, index);
114
+ } : undefined,
115
+ key: name
116
+ }), btnNode);
117
+ }
118
+ return [btnNode, i != actionsLen - 1 && /*#__PURE__*/(0, _jsxRuntime.jsx)(_antd.Divider, {
119
+ orientation: "vertical"
120
+ }, i)];
121
+ })), [moreRender]);
122
+ };
123
+ var _default = exports.default = renderColumnButtons;
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useStyle = useStyle;
7
+ var _vtxProvider = require("../../vtx-provider");
8
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
9
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
10
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
11
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
12
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
13
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
14
+ var genVtxStyle = function genVtxStyle(token) {
15
+ var componentCls = token.componentCls,
16
+ antCls = token.antCls;
17
+ return _defineProperty({}, componentCls, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({
18
+ position: 'relative',
19
+ overflow: 'hidden'
20
+ }, "".concat(antCls, "-table-wrapper"), _defineProperty(_defineProperty({}, '.ant-table', _defineProperty(_defineProperty(_defineProperty({}, '.ant-table-header', _defineProperty({}, '.ant-table-thead', {
21
+ '>tr>th': {
22
+ background: token.colorBgContainer
23
+ }
24
+ })), '.ant-table-cell', {
25
+ minWidth: 20
26
+ }), '.ant-table-body', _defineProperty({}, '.ant-table-tbody', {
27
+ '>tr.ant-table-placeholder': {
28
+ position: 'absolute',
29
+ bottom: 12,
30
+ right: 0,
31
+ left: 0,
32
+ backgroundColor: 'transparent',
33
+ borderTop: 'none',
34
+ borderInlineEnd: "var(--ant-line-width) var(--ant-line-type) var(--ant-table-border-color)",
35
+ borderBottom: "var(--ant-line-width) var(--ant-line-type) var(--ant-table-border-color)",
36
+ '>td.ant-table-cell': {
37
+ padding: 0,
38
+ width: '100%',
39
+ height: '100%',
40
+ border: 'none',
41
+ '.ant-table-expanded-row-fixed': {
42
+ display: 'flex',
43
+ alignItems: 'center',
44
+ justifyContent: 'center',
45
+ height: '100%',
46
+ width: '100%',
47
+ '&:after': {
48
+ borderInlineEnd: 'none'
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }))), '.ant-pagination', _defineProperty({}, '.ant-pagination-item', {
54
+ borderRadius: token.borderRadiusSM
55
+ }))), "&-fit", {
56
+ height: '100%'
57
+ }), "&-noFit", {}), "&-no-border", _defineProperty({}, "".concat(antCls, "-table-wrapper"), _defineProperty({}, "".concat(antCls, "-table"), _defineProperty({}, '>.ant-table-container', _defineProperty(_defineProperty({
58
+ borderColor: 'transparent'
59
+ }, '.ant-table-thead', {
60
+ '>tr>th': {
61
+ borderInlineColor: 'transparent !important'
62
+ }
63
+ }), '.ant-table-body', {
64
+ '>table >tbody>tr>td': {
65
+ borderInlineColor: 'transparent !important'
66
+ },
67
+ '>table >tbody>tr.ant-table-placeholder': {
68
+ borderInlineColor: 'transparent !important',
69
+ borderBottomColor: 'transparent !important'
70
+ }
71
+ }))))), "&.vtx-datagrid-striped", _defineProperty({}, "".concat(antCls, "-table-wrapper"), _defineProperty({}, "".concat(antCls, "-table"), _defineProperty({}, '>.ant-table-container', _defineProperty({}, '.ant-table-body', {
72
+ '>table >tbody>tr:nth-child(odd)>td': {
73
+ backgroundColor: token.colorBgLayoutTable,
74
+ '&.ant-table-cell-row-hover': {
75
+ backgroundColor: token.colorFillAlterSolid
76
+ }
77
+ },
78
+ '>table >tbody>tr:nth-child(odd)>td.ant-table-column-sort': {
79
+ backgroundColor: token.colorFillAlterSolid
80
+ },
81
+ '>table >tbody>tr.ant-table-row-selected:nth-child(odd)>td': {
82
+ backgroundColor: token.controlItemBgActive,
83
+ '&.ant-table-cell-row-hover': {
84
+ backgroundColor: token.controlItemBgActiveHover
85
+ }
86
+ }
87
+ }))))), "&.vtx-datagrid-header-background", _defineProperty({}, "".concat(antCls, "-table-wrapper"), _defineProperty({}, '.ant-table', _defineProperty({}, '.ant-table-header', _defineProperty({}, '.ant-table-thead', {
88
+ '>tr>th': {
89
+ background: token.colorBgLayoutTable
90
+ }
91
+ }))))));
92
+ };
93
+ function useStyle(prefix) {
94
+ return (0, _vtxProvider.useStyle)(prefix, function (token) {
95
+ var vtxToken = _objectSpread(_objectSpread({}, token), {}, {
96
+ componentCls: ".".concat(prefix)
97
+ });
98
+ return [genVtxStyle(vtxToken)];
99
+ });
100
+ }