@teamix/pro 1.5.0-beta.1 → 1.5.1-aplha.0

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 (425) hide show
  1. package/dist/pro.css +1 -1
  2. package/dist/pro.js +84670 -60159
  3. package/dist/pro.min.css +1 -1
  4. package/dist/pro.min.js +1 -1
  5. package/dist/pro.min.js.LICENSE.txt +11 -0
  6. package/es/actions/dialog-component.js +1 -7
  7. package/es/actions/dialog-form.js +5 -3
  8. package/es/actions/dialog.js +1 -1
  9. package/es/actions/index.js +66 -32
  10. package/es/actions/request.js +2 -2
  11. package/es/card/card-container.js +9 -9
  12. package/es/card/divider.js +2 -6
  13. package/es/card/index.js +16 -10
  14. package/es/card/selectable.js +2 -6
  15. package/es/card/tab.js +2 -6
  16. package/es/form/Components/Editable/index.js +1 -1
  17. package/es/form/Components/FormGroup/index.js +5 -3
  18. package/es/form/Components/LightFilter/index.js +8 -2
  19. package/es/form/Components/ProField/index.js +2 -6
  20. package/es/form/Components/Text/index.js +2 -6
  21. package/es/form/Filter/AdvancedFilter.js +18 -15
  22. package/es/form/Filter/LightFilter.js +13 -10
  23. package/es/form/Filter/SimpleFilter.js +10 -6
  24. package/es/form/Filter/index.js +7 -10
  25. package/es/form/Filter/index2.js +21 -17
  26. package/es/form/Filter/layout.scss +1 -1
  27. package/es/form/ProForm/addCascadeEffect.js +225 -0
  28. package/es/form/ProForm/index.js +12 -7
  29. package/es/form/ProForm/useFormDisplayValues.js +1 -1
  30. package/es/form/SchemaForm/reactions.js +2 -1
  31. package/es/form/utils.js +8 -1
  32. package/es/index.js +2 -1
  33. package/es/info/components/InfoGroup/index.js +2 -6
  34. package/es/info/components/InfoValueItem/index.js +23 -21
  35. package/es/info/components/tableInfo/index.js +5 -4
  36. package/es/info/index.js +8 -5
  37. package/es/nocode/index.js +2 -2
  38. package/es/nocode/pages/index.js +4 -3
  39. package/es/nocode/pages/playground.js +3 -7
  40. package/es/nocode/pages/renderer.js +4 -8
  41. package/es/nocode/playground.js +2 -6
  42. package/es/page-header/index.js +12 -7
  43. package/es/sidebar/components/sidebar-container/index.js +23 -11
  44. package/es/sidebar/components/sidebar-container/index.scss +21 -14
  45. package/es/sidebar/components/tree/index.js +26 -12
  46. package/es/sidebar/components/tree-node/components/HoverTooltip/index.js +2 -6
  47. package/es/sidebar/components/tree-node/components/IconAction/index.js +4 -2
  48. package/es/sidebar/components/tree-node/index.js +22 -19
  49. package/es/sidebar/index.js +3 -5
  50. package/es/sidebar/utils/index.js +11 -11
  51. package/es/table/components/Layout/index.js +14 -10
  52. package/es/table/components/Pagination/index.js +10 -14
  53. package/es/table/components/QuickAction/index.js +4 -2
  54. package/es/table/components/ToolBar/DensityIcon.js +3 -3
  55. package/es/table/components/ToolBar/FilterColumnIcon.js +2 -0
  56. package/es/table/components/ToolBar/FullScreenIcon.js +6 -57
  57. package/es/table/components/ToolBar/RefreshIcon.js +2 -1
  58. package/es/table/components/ToolBar/index.js +98 -19
  59. package/es/table/components/ToolBar/index.scss +22 -2
  60. package/es/table/index.js +38 -28
  61. package/es/table/utils/columnRender.js +27 -25
  62. package/es/table/utils/genProColumnToColumn.js +1 -1
  63. package/es/table/utils/index.js +2 -2
  64. package/es/table/utils/pureColumnRender.js +4 -2
  65. package/es/table/utils/pureGenProColumnToColumn.js +1 -1
  66. package/es/templates/List/index.js +4 -8
  67. package/es/templates/index.js +2 -1
  68. package/es/timeline/ProTimeLineItem/index.js +2 -6
  69. package/es/timeline/index.js +3 -7
  70. package/es/utils/message.js +3 -7
  71. package/lib/actions/dialog-component.js +1 -7
  72. package/lib/actions/dialog-form.js +5 -3
  73. package/lib/actions/dialog.js +1 -1
  74. package/lib/actions/index.js +65 -32
  75. package/lib/card/card-container.js +5 -7
  76. package/lib/card/divider.js +2 -6
  77. package/lib/card/index.js +16 -9
  78. package/lib/card/selectable.js +2 -6
  79. package/lib/card/tab.js +2 -6
  80. package/lib/form/Components/Editable/index.js +1 -1
  81. package/lib/form/Components/FormGroup/index.js +5 -3
  82. package/lib/form/Components/LightFilter/index.js +8 -2
  83. package/lib/form/Components/ProField/index.js +2 -6
  84. package/lib/form/Components/Text/index.js +2 -6
  85. package/lib/form/Filter/AdvancedFilter.js +17 -14
  86. package/lib/form/Filter/LightFilter.js +12 -9
  87. package/lib/form/Filter/SimpleFilter.js +8 -5
  88. package/lib/form/Filter/index.js +6 -9
  89. package/lib/form/Filter/index2.js +21 -17
  90. package/lib/form/Filter/layout.scss +1 -1
  91. package/lib/form/ProForm/addCascadeEffect.js +235 -0
  92. package/lib/form/ProForm/index.js +13 -7
  93. package/lib/form/typing.js +1 -5
  94. package/lib/form/utils.js +7 -0
  95. package/lib/index.js +2 -1
  96. package/lib/info/components/InfoGroup/index.js +2 -6
  97. package/lib/info/components/InfoValueItem/index.js +23 -21
  98. package/lib/info/components/tableInfo/index.js +5 -4
  99. package/lib/info/index.js +8 -5
  100. package/lib/info/typing.js +1 -5
  101. package/lib/nocode/pages/index.js +2 -2
  102. package/lib/nocode/pages/playground.js +3 -7
  103. package/lib/nocode/pages/renderer.js +4 -8
  104. package/lib/nocode/playground.js +2 -6
  105. package/lib/page-header/index.js +12 -6
  106. package/lib/sidebar/components/sidebar-container/index.js +23 -11
  107. package/lib/sidebar/components/sidebar-container/index.scss +21 -14
  108. package/lib/sidebar/components/tree/index.js +26 -12
  109. package/lib/sidebar/components/tree-node/components/HoverTooltip/index.js +2 -6
  110. package/lib/sidebar/components/tree-node/components/IconAction/index.js +4 -2
  111. package/lib/sidebar/components/tree-node/index.js +22 -19
  112. package/lib/sidebar/index.js +3 -5
  113. package/lib/sidebar/typing.js +1 -5
  114. package/lib/sidebar/utils/index.js +11 -11
  115. package/lib/table/components/Layout/index.js +15 -11
  116. package/lib/table/components/Pagination/index.js +10 -14
  117. package/lib/table/components/QuickAction/index.js +4 -2
  118. package/lib/table/components/ToolBar/DensityIcon.js +3 -3
  119. package/lib/table/components/ToolBar/FilterColumnIcon.js +2 -0
  120. package/lib/table/components/ToolBar/FullScreenIcon.js +9 -63
  121. package/lib/table/components/ToolBar/RefreshIcon.js +2 -1
  122. package/lib/table/components/ToolBar/index.js +107 -18
  123. package/lib/table/components/ToolBar/index.scss +22 -2
  124. package/lib/table/index.js +39 -29
  125. package/lib/table/typing.js +1 -5
  126. package/lib/table/utils/columnRender.js +27 -25
  127. package/lib/table/utils/pureColumnRender.js +3 -1
  128. package/lib/templates/List/index.js +4 -8
  129. package/lib/timeline/ProTimeLineItem/index.js +2 -6
  130. package/lib/timeline/index.js +3 -7
  131. package/lib/timeline/typing.js +1 -5
  132. package/lib/utils/message.js +3 -7
  133. package/package.json +1 -1
  134. package/es/actions/base.d.ts +0 -24
  135. package/es/actions/confirm.d.ts +0 -7
  136. package/es/actions/danger-confirm.d.ts +0 -7
  137. package/es/actions/danger-pop-confirm.d.ts +0 -5
  138. package/es/actions/dialog-component.d.ts +0 -10
  139. package/es/actions/dialog-form.d.ts +0 -29
  140. package/es/actions/dialog-info.d.ts +0 -9
  141. package/es/actions/dialog-table.d.ts +0 -9
  142. package/es/actions/dialog.d.ts +0 -40
  143. package/es/actions/drawer-form.d.ts +0 -6
  144. package/es/actions/drawer-info.d.ts +0 -6
  145. package/es/actions/drawer-table.d.ts +0 -6
  146. package/es/actions/drawer.d.ts +0 -6
  147. package/es/actions/error.d.ts +0 -7
  148. package/es/actions/index.d.ts +0 -107
  149. package/es/actions/link.d.ts +0 -8
  150. package/es/actions/notice.d.ts +0 -7
  151. package/es/actions/pop-confirm.d.ts +0 -9
  152. package/es/actions/request.d.ts +0 -9
  153. package/es/actions/utils.d.ts +0 -1
  154. package/es/card/card-container.d.ts +0 -18
  155. package/es/card/divider.d.ts +0 -6
  156. package/es/card/index.d.ts +0 -109
  157. package/es/card/selectable.d.ts +0 -13
  158. package/es/card/tab.d.ts +0 -6
  159. package/es/card/utils.d.ts +0 -9
  160. package/es/field/index.d.ts +0 -3
  161. package/es/form/Components/Editable/index.d.ts +0 -20
  162. package/es/form/Components/FormGroup/index.d.ts +0 -13
  163. package/es/form/Components/LightFilter/componentMap.d.ts +0 -3
  164. package/es/form/Components/LightFilter/index.d.ts +0 -17
  165. package/es/form/Components/ProField/index.d.ts +0 -2
  166. package/es/form/Components/ProField/mapDateFormat.d.ts +0 -3
  167. package/es/form/Components/Text/index.d.ts +0 -7
  168. package/es/form/Filter/AdvancedFilter.d.ts +0 -7
  169. package/es/form/Filter/Layout.d.ts +0 -5
  170. package/es/form/Filter/LightFilter.d.ts +0 -7
  171. package/es/form/Filter/SimpleFilter.d.ts +0 -7
  172. package/es/form/Filter/index.d.ts +0 -9
  173. package/es/form/Filter/index2.d.ts +0 -13
  174. package/es/form/Filter/useBindUrl.d.ts +0 -2
  175. package/es/form/Filter/useSpecialProps.d.ts +0 -6
  176. package/es/form/ProForm/customComponent.d.ts +0 -3
  177. package/es/form/ProForm/index.d.ts +0 -5
  178. package/es/form/ProForm/useAutoLayout.d.ts +0 -9
  179. package/es/form/ProForm/useAutoSubmit.d.ts +0 -6
  180. package/es/form/ProForm/useFieldRequest.d.ts +0 -5
  181. package/es/form/ProForm/useFormDisplayValues.d.ts +0 -4
  182. package/es/form/ProForm/useInitialRequest.d.ts +0 -6
  183. package/es/form/SchemaForm/adapterComponent.d.ts +0 -5
  184. package/es/form/SchemaForm/adapterDecorator.d.ts +0 -6
  185. package/es/form/SchemaForm/adapterType.d.ts +0 -5
  186. package/es/form/SchemaForm/index.d.ts +0 -4
  187. package/es/form/SchemaForm/initializeArrayCards.d.ts +0 -3
  188. package/es/form/SchemaForm/initializeArrayCollapse.d.ts +0 -3
  189. package/es/form/SchemaForm/initializeArrayItems.d.ts +0 -3
  190. package/es/form/SchemaForm/initializeArrayTable.d.ts +0 -3
  191. package/es/form/SchemaForm/initializeDataSource.d.ts +0 -15
  192. package/es/form/SchemaForm/initializeFormButton.d.ts +0 -3
  193. package/es/form/SchemaForm/initializeFormCollapse.d.ts +0 -3
  194. package/es/form/SchemaForm/initializeFormGroup.d.ts +0 -3
  195. package/es/form/SchemaForm/initializeFormStep.d.ts +0 -5
  196. package/es/form/SchemaForm/initializeFormTab.d.ts +0 -3
  197. package/es/form/SchemaForm/initializeReactions.d.ts +0 -2
  198. package/es/form/SchemaForm/initializeRequest.d.ts +0 -11
  199. package/es/form/SchemaForm/initializeRules.d.ts +0 -11
  200. package/es/form/SchemaForm/initializeSelectTable.d.ts +0 -3
  201. package/es/form/SchemaForm/reactions.d.ts +0 -6
  202. package/es/form/docs/ActionResponse.d.ts +0 -7
  203. package/es/form/fieldTypeMap.d.ts +0 -7
  204. package/es/form/index.d.ts +0 -125
  205. package/es/form/locales/validate.d.ts +0 -159
  206. package/es/form/schemaNameMap.d.ts +0 -5
  207. package/es/form/typing.d.ts +0 -172
  208. package/es/form/utils.d.ts +0 -55
  209. package/es/form/warning.d.ts +0 -3
  210. package/es/hooks/index.d.ts +0 -2
  211. package/es/index-without-icon.d.ts +0 -32
  212. package/es/index.d.ts +0 -32
  213. package/es/info/components/InfoGroup/index.d.ts +0 -5
  214. package/es/info/components/InfoValueItem/index.d.ts +0 -5
  215. package/es/info/components/ProInfoItem/index.d.ts +0 -5
  216. package/es/info/components/baseInfo/index.d.ts +0 -8
  217. package/es/info/components/headerInfo/index.d.ts +0 -8
  218. package/es/info/components/tableInfo/index.d.ts +0 -7
  219. package/es/info/index.d.ts +0 -10
  220. package/es/info/typing.d.ts +0 -218
  221. package/es/info/utils/index.d.ts +0 -20
  222. package/es/info/utils/layout.d.ts +0 -2
  223. package/es/info/utils/utils.d.ts +0 -1
  224. package/es/layout/index.d.ts +0 -2
  225. package/es/nocode/configurators/Card.d.ts +0 -3
  226. package/es/nocode/configurators/PageHeader.d.ts +0 -3
  227. package/es/nocode/configurators/ProTable.d.ts +0 -3
  228. package/es/nocode/configurators/common.d.ts +0 -280
  229. package/es/nocode/configurators/index.d.ts +0 -15
  230. package/es/nocode/configurators/map.d.ts +0 -2
  231. package/es/nocode/index.d.ts +0 -8
  232. package/es/nocode/pages/editor.d.ts +0 -12
  233. package/es/nocode/pages/index.d.ts +0 -14
  234. package/es/nocode/pages/playground.d.ts +0 -11
  235. package/es/nocode/pages/renderer.d.ts +0 -10
  236. package/es/nocode/playground.d.ts +0 -14
  237. package/es/page-container/index.d.ts +0 -3
  238. package/es/page-header/index.d.ts +0 -74
  239. package/es/sidebar/components/sidebar-container/index.d.ts +0 -5
  240. package/es/sidebar/components/tree/index.d.ts +0 -6
  241. package/es/sidebar/components/tree-node/components/HoverTooltip/index.d.ts +0 -15
  242. package/es/sidebar/components/tree-node/components/IconAction/index.d.ts +0 -12
  243. package/es/sidebar/components/tree-node/components/IconSwitch/index.d.ts +0 -23
  244. package/es/sidebar/components/tree-node/index.d.ts +0 -7
  245. package/es/sidebar/index.d.ts +0 -7
  246. package/es/sidebar/typing.d.ts +0 -137
  247. package/es/sidebar/utils/action-ref.d.ts +0 -3
  248. package/es/sidebar/utils/index.d.ts +0 -361
  249. package/es/skeleton/index.d.ts +0 -3
  250. package/es/table/components/EmptyContent/index.d.ts +0 -2
  251. package/es/table/components/Filter/index.d.ts +0 -9
  252. package/es/table/components/Layout/index.d.ts +0 -5
  253. package/es/table/components/Pagination/index.d.ts +0 -7
  254. package/es/table/components/QuickAction/index.d.ts +0 -10
  255. package/es/table/components/ToolBar/DensityIcon.d.ts +0 -4
  256. package/es/table/components/ToolBar/FilterColumnIcon.d.ts +0 -4
  257. package/es/table/components/ToolBar/FullScreenIcon.d.ts +0 -4
  258. package/es/table/components/ToolBar/Fullscreen.d.ts +0 -10
  259. package/es/table/components/ToolBar/RefreshIcon.d.ts +0 -4
  260. package/es/table/components/ToolBar/index.d.ts +0 -5
  261. package/es/table/index.d.ts +0 -5
  262. package/es/table/typing.d.ts +0 -299
  263. package/es/table/utils/columnRender.d.ts +0 -13
  264. package/es/table/utils/genProColumnToColumn.d.ts +0 -13
  265. package/es/table/utils/getTableProps.d.ts +0 -2
  266. package/es/table/utils/getTableSortIcons.d.ts +0 -3
  267. package/es/table/utils/index.d.ts +0 -19
  268. package/es/table/utils/pureColumnRender.d.ts +0 -9
  269. package/es/table/utils/pureGenProColumnToColumn.d.ts +0 -7
  270. package/es/table/utils/useTableSelection.d.ts +0 -3
  271. package/es/templates/Detail/index.d.ts +0 -2
  272. package/es/templates/Form/index.d.ts +0 -2
  273. package/es/templates/List/index.d.ts +0 -9
  274. package/es/templates/index.d.ts +0 -3
  275. package/es/timeline/ProTimeLineItem/index.d.ts +0 -5
  276. package/es/timeline/index.d.ts +0 -10
  277. package/es/timeline/typing.d.ts +0 -106
  278. package/es/utils/index.d.ts +0 -3
  279. package/es/utils/message.d.ts +0 -3
  280. package/lib/actions/base.d.ts +0 -24
  281. package/lib/actions/confirm.d.ts +0 -7
  282. package/lib/actions/danger-confirm.d.ts +0 -7
  283. package/lib/actions/danger-pop-confirm.d.ts +0 -5
  284. package/lib/actions/dialog-component.d.ts +0 -10
  285. package/lib/actions/dialog-form.d.ts +0 -29
  286. package/lib/actions/dialog-info.d.ts +0 -9
  287. package/lib/actions/dialog-table.d.ts +0 -9
  288. package/lib/actions/dialog.d.ts +0 -40
  289. package/lib/actions/drawer-form.d.ts +0 -6
  290. package/lib/actions/drawer-info.d.ts +0 -6
  291. package/lib/actions/drawer-table.d.ts +0 -6
  292. package/lib/actions/drawer.d.ts +0 -6
  293. package/lib/actions/error.d.ts +0 -7
  294. package/lib/actions/index.d.ts +0 -107
  295. package/lib/actions/link.d.ts +0 -8
  296. package/lib/actions/notice.d.ts +0 -7
  297. package/lib/actions/pop-confirm.d.ts +0 -9
  298. package/lib/actions/request.d.ts +0 -9
  299. package/lib/actions/utils.d.ts +0 -1
  300. package/lib/card/card-container.d.ts +0 -18
  301. package/lib/card/divider.d.ts +0 -6
  302. package/lib/card/index.d.ts +0 -109
  303. package/lib/card/selectable.d.ts +0 -13
  304. package/lib/card/tab.d.ts +0 -6
  305. package/lib/card/utils.d.ts +0 -9
  306. package/lib/field/index.d.ts +0 -3
  307. package/lib/form/Components/Editable/index.d.ts +0 -20
  308. package/lib/form/Components/FormGroup/index.d.ts +0 -13
  309. package/lib/form/Components/LightFilter/componentMap.d.ts +0 -3
  310. package/lib/form/Components/LightFilter/index.d.ts +0 -17
  311. package/lib/form/Components/ProField/index.d.ts +0 -2
  312. package/lib/form/Components/ProField/mapDateFormat.d.ts +0 -3
  313. package/lib/form/Components/Text/index.d.ts +0 -7
  314. package/lib/form/Filter/AdvancedFilter.d.ts +0 -7
  315. package/lib/form/Filter/Layout.d.ts +0 -5
  316. package/lib/form/Filter/LightFilter.d.ts +0 -7
  317. package/lib/form/Filter/SimpleFilter.d.ts +0 -7
  318. package/lib/form/Filter/index.d.ts +0 -9
  319. package/lib/form/Filter/index2.d.ts +0 -13
  320. package/lib/form/Filter/useBindUrl.d.ts +0 -2
  321. package/lib/form/Filter/useSpecialProps.d.ts +0 -6
  322. package/lib/form/ProForm/customComponent.d.ts +0 -3
  323. package/lib/form/ProForm/index.d.ts +0 -5
  324. package/lib/form/ProForm/useAutoLayout.d.ts +0 -9
  325. package/lib/form/ProForm/useAutoSubmit.d.ts +0 -6
  326. package/lib/form/ProForm/useFieldRequest.d.ts +0 -5
  327. package/lib/form/ProForm/useFormDisplayValues.d.ts +0 -4
  328. package/lib/form/ProForm/useInitialRequest.d.ts +0 -6
  329. package/lib/form/SchemaForm/adapterComponent.d.ts +0 -5
  330. package/lib/form/SchemaForm/adapterDecorator.d.ts +0 -6
  331. package/lib/form/SchemaForm/adapterType.d.ts +0 -5
  332. package/lib/form/SchemaForm/index.d.ts +0 -4
  333. package/lib/form/SchemaForm/initializeArrayCards.d.ts +0 -3
  334. package/lib/form/SchemaForm/initializeArrayCollapse.d.ts +0 -3
  335. package/lib/form/SchemaForm/initializeArrayItems.d.ts +0 -3
  336. package/lib/form/SchemaForm/initializeArrayTable.d.ts +0 -3
  337. package/lib/form/SchemaForm/initializeDataSource.d.ts +0 -15
  338. package/lib/form/SchemaForm/initializeFormButton.d.ts +0 -3
  339. package/lib/form/SchemaForm/initializeFormCollapse.d.ts +0 -3
  340. package/lib/form/SchemaForm/initializeFormGroup.d.ts +0 -3
  341. package/lib/form/SchemaForm/initializeFormStep.d.ts +0 -5
  342. package/lib/form/SchemaForm/initializeFormTab.d.ts +0 -3
  343. package/lib/form/SchemaForm/initializeReactions.d.ts +0 -2
  344. package/lib/form/SchemaForm/initializeRequest.d.ts +0 -11
  345. package/lib/form/SchemaForm/initializeRules.d.ts +0 -11
  346. package/lib/form/SchemaForm/initializeSelectTable.d.ts +0 -3
  347. package/lib/form/SchemaForm/reactions.d.ts +0 -6
  348. package/lib/form/docs/ActionResponse.d.ts +0 -7
  349. package/lib/form/fieldTypeMap.d.ts +0 -7
  350. package/lib/form/index.d.ts +0 -125
  351. package/lib/form/locales/validate.d.ts +0 -159
  352. package/lib/form/schemaNameMap.d.ts +0 -5
  353. package/lib/form/typing.d.ts +0 -172
  354. package/lib/form/utils.d.ts +0 -55
  355. package/lib/form/warning.d.ts +0 -3
  356. package/lib/hooks/index.d.ts +0 -2
  357. package/lib/index-without-icon.d.ts +0 -32
  358. package/lib/index.d.ts +0 -32
  359. package/lib/info/components/InfoGroup/index.d.ts +0 -5
  360. package/lib/info/components/InfoValueItem/index.d.ts +0 -5
  361. package/lib/info/components/ProInfoItem/index.d.ts +0 -5
  362. package/lib/info/components/baseInfo/index.d.ts +0 -8
  363. package/lib/info/components/headerInfo/index.d.ts +0 -8
  364. package/lib/info/components/tableInfo/index.d.ts +0 -7
  365. package/lib/info/index.d.ts +0 -10
  366. package/lib/info/typing.d.ts +0 -218
  367. package/lib/info/utils/index.d.ts +0 -20
  368. package/lib/info/utils/layout.d.ts +0 -2
  369. package/lib/info/utils/utils.d.ts +0 -1
  370. package/lib/layout/index.d.ts +0 -2
  371. package/lib/nocode/configurators/Card.d.ts +0 -3
  372. package/lib/nocode/configurators/PageHeader.d.ts +0 -3
  373. package/lib/nocode/configurators/ProTable.d.ts +0 -3
  374. package/lib/nocode/configurators/common.d.ts +0 -280
  375. package/lib/nocode/configurators/index.d.ts +0 -15
  376. package/lib/nocode/configurators/map.d.ts +0 -2
  377. package/lib/nocode/index.d.ts +0 -8
  378. package/lib/nocode/pages/editor.d.ts +0 -12
  379. package/lib/nocode/pages/index.d.ts +0 -14
  380. package/lib/nocode/pages/playground.d.ts +0 -11
  381. package/lib/nocode/pages/renderer.d.ts +0 -10
  382. package/lib/nocode/playground.d.ts +0 -14
  383. package/lib/page-container/index.d.ts +0 -3
  384. package/lib/page-header/index.d.ts +0 -74
  385. package/lib/sidebar/components/sidebar-container/index.d.ts +0 -5
  386. package/lib/sidebar/components/tree/index.d.ts +0 -6
  387. package/lib/sidebar/components/tree-node/components/HoverTooltip/index.d.ts +0 -15
  388. package/lib/sidebar/components/tree-node/components/IconAction/index.d.ts +0 -12
  389. package/lib/sidebar/components/tree-node/components/IconSwitch/index.d.ts +0 -23
  390. package/lib/sidebar/components/tree-node/index.d.ts +0 -7
  391. package/lib/sidebar/index.d.ts +0 -7
  392. package/lib/sidebar/typing.d.ts +0 -137
  393. package/lib/sidebar/utils/action-ref.d.ts +0 -3
  394. package/lib/sidebar/utils/index.d.ts +0 -361
  395. package/lib/skeleton/index.d.ts +0 -3
  396. package/lib/table/components/EmptyContent/index.d.ts +0 -2
  397. package/lib/table/components/Filter/index.d.ts +0 -9
  398. package/lib/table/components/Layout/index.d.ts +0 -5
  399. package/lib/table/components/Pagination/index.d.ts +0 -7
  400. package/lib/table/components/QuickAction/index.d.ts +0 -10
  401. package/lib/table/components/ToolBar/DensityIcon.d.ts +0 -4
  402. package/lib/table/components/ToolBar/FilterColumnIcon.d.ts +0 -4
  403. package/lib/table/components/ToolBar/FullScreenIcon.d.ts +0 -4
  404. package/lib/table/components/ToolBar/Fullscreen.d.ts +0 -10
  405. package/lib/table/components/ToolBar/RefreshIcon.d.ts +0 -4
  406. package/lib/table/components/ToolBar/index.d.ts +0 -5
  407. package/lib/table/index.d.ts +0 -5
  408. package/lib/table/typing.d.ts +0 -299
  409. package/lib/table/utils/columnRender.d.ts +0 -13
  410. package/lib/table/utils/genProColumnToColumn.d.ts +0 -13
  411. package/lib/table/utils/getTableProps.d.ts +0 -2
  412. package/lib/table/utils/getTableSortIcons.d.ts +0 -3
  413. package/lib/table/utils/index.d.ts +0 -19
  414. package/lib/table/utils/pureColumnRender.d.ts +0 -9
  415. package/lib/table/utils/pureGenProColumnToColumn.d.ts +0 -7
  416. package/lib/table/utils/useTableSelection.d.ts +0 -3
  417. package/lib/templates/Detail/index.d.ts +0 -2
  418. package/lib/templates/Form/index.d.ts +0 -2
  419. package/lib/templates/List/index.d.ts +0 -9
  420. package/lib/templates/index.d.ts +0 -3
  421. package/lib/timeline/ProTimeLineItem/index.d.ts +0 -5
  422. package/lib/timeline/index.d.ts +0 -10
  423. package/lib/timeline/typing.d.ts +0 -106
  424. package/lib/utils/index.d.ts +0 -3
  425. package/lib/utils/message.d.ts +0 -3
@@ -1,3 +0,0 @@
1
- import type { ProFormInitializeItem } from '../typing';
2
- declare const initialize: ProFormInitializeItem;
3
- export default initialize;
@@ -1,3 +0,0 @@
1
- import type { ProFormInitializeItem } from '../typing';
2
- declare const initialize: ProFormInitializeItem;
3
- export default initialize;
@@ -1,3 +0,0 @@
1
- import type { ProFormInitializeItem } from '../typing';
2
- declare const initialize: ProFormInitializeItem;
3
- export default initialize;
@@ -1,15 +0,0 @@
1
- interface IInitializeDataSource {
2
- (requestConfig: any, suffix: string): {
3
- dataSource?: any[];
4
- reactions: any[];
5
- scope: {
6
- [x: string]: any;
7
- };
8
- data?: any;
9
- props?: {
10
- [x: string]: any;
11
- };
12
- };
13
- }
14
- declare const initializeDataSource: IInitializeDataSource;
15
- export default initializeDataSource;
@@ -1,3 +0,0 @@
1
- import type { ProFormInitializeItem } from '../typing';
2
- declare const initialize: ProFormInitializeItem;
3
- export default initialize;
@@ -1,3 +0,0 @@
1
- import type { ProFormInitializeItem } from '../typing';
2
- declare const initialize: ProFormInitializeItem;
3
- export default initialize;
@@ -1,3 +0,0 @@
1
- import type { ProFormSchemaItem } from '../typing';
2
- declare const initialize: (item: ProFormSchemaItem) => ProFormSchemaItem;
3
- export default initialize;
@@ -1,5 +0,0 @@
1
- import type { ProFormSchemaItem } from '../typing';
2
- declare const initialize: (item: ProFormSchemaItem & {
3
- col?: number;
4
- }) => ProFormSchemaItem;
5
- export default initialize;
@@ -1,3 +0,0 @@
1
- import type { ProFormSchemaItem } from '../typing';
2
- declare const initialize: (item: ProFormSchemaItem) => ProFormSchemaItem;
3
- export default initialize;
@@ -1,2 +0,0 @@
1
- declare const initializeReactions: (reactions: any, innerReactions: any) => any;
2
- export default initializeReactions;
@@ -1,11 +0,0 @@
1
- import type { ProFormRequestConfig } from '../typing';
2
- interface IInitializeRequest {
3
- (requestConfig?: ProFormRequestConfig | ProFormRequestConfig[], suffix?: string): {
4
- reactions: any[];
5
- scope: {
6
- [x: string]: any;
7
- };
8
- };
9
- }
10
- declare const initializeRequest: IInitializeRequest;
11
- export default initializeRequest;
@@ -1,11 +0,0 @@
1
- interface IInitializeRules {
2
- (rules: any, suffix: string): {
3
- rules?: any;
4
- reactions?: any[];
5
- scope: {
6
- [x: string]: any;
7
- };
8
- };
9
- }
10
- declare const initializeRules: IInitializeRules;
11
- export default initializeRules;
@@ -1,3 +0,0 @@
1
- import type { ProFormInitializeItem } from '../typing';
2
- declare const initialize: ProFormInitializeItem;
3
- export default initialize;
@@ -1,6 +0,0 @@
1
- import type { ProFormRequestConfig } from '../typing';
2
- declare const $request: (field: any, context: any, { extraConfig, onComplete, ...rest }: ProFormRequestConfig, type: 'request' | 'validator' | 'dataSource') => Promise<unknown>;
3
- declare const $common: (services: any, context: any, requestConfig: ProFormRequestConfig) => (field: any) => any;
4
- declare const $validator: (services: any, context: any, requestConfig: ProFormRequestConfig) => (value: any, rules: any, { field }: any) => any;
5
- declare const $dataSource: (services: any, context: any, requestConfig: ProFormRequestConfig) => (field: any) => any;
6
- export { $request, $common, $dataSource, $validator };
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import './ActionResponse.less';
3
- declare type ActionResponseProps = {
4
- response?: React.ReactNode;
5
- };
6
- export declare const ActionResponse: React.FC<ActionResponseProps>;
7
- export {};
@@ -1,7 +0,0 @@
1
- declare const fieldTypeMap: {
2
- [x: string]: string;
3
- };
4
- declare const datePicker2TypeArray: string[];
5
- declare const timePicker2TypeArray: string[];
6
- export { datePicker2TypeArray, timePicker2TypeArray };
7
- export default fieldTypeMap;
@@ -1,125 +0,0 @@
1
- /**
2
- * 导出ProForm的TS
3
- */
4
- export * from './typing';
5
- /**
6
- * 使用别名导出formily相关内容
7
- */
8
- export * as formilyCore from '@formily/core';
9
- export * as formilyReactive from '@formily/reactive';
10
- export * as formilyTeamix from '@teamix/formily';
11
- import * as originalFormilyReact from '@formily/react';
12
- declare const formilyReact: {
13
- useFieldRequest: () => {
14
- refresh: () => void;
15
- field: any;
16
- };
17
- useFormDisplayValues: () => any;
18
- Schema: typeof originalFormilyReact.Schema;
19
- FormProvider: originalFormilyReact.ReactFC<originalFormilyReact.IProviderProps>;
20
- FormConsumer: originalFormilyReact.ReactFC<originalFormilyReact.IFormSpyProps>;
21
- ArrayField: {
22
- <D extends originalFormilyReact.JSXComponent, C extends originalFormilyReact.JSXComponent>(props: originalFormilyReact.IFieldProps<D, C, import("@formily/core").ArrayField<any, any>>): JSX.Element;
23
- displayName: string;
24
- };
25
- ObjectField: {
26
- <D_1 extends originalFormilyReact.JSXComponent, C_1 extends originalFormilyReact.JSXComponent>(props: originalFormilyReact.IFieldProps<D_1, C_1, import("@formily/core").ObjectField<any, any>>): JSX.Element;
27
- displayName: string;
28
- };
29
- VoidField: {
30
- <D_2 extends originalFormilyReact.JSXComponent, C_2 extends originalFormilyReact.JSXComponent>(props: originalFormilyReact.IVoidFieldProps<D_2, C_2, import("@formily/core").VoidField<any, any, any>>): JSX.Element;
31
- displayName: string;
32
- };
33
- RecursionField: originalFormilyReact.ReactFC<originalFormilyReact.IRecursionFieldProps>;
34
- ExpressionScope: originalFormilyReact.ReactFC<originalFormilyReact.IExpressionScopeProps>;
35
- RecordsScope: originalFormilyReact.ReactFC<originalFormilyReact.IRecordsScopeProps>;
36
- RecordScope: originalFormilyReact.ReactFC<originalFormilyReact.IRecordScopeProps>;
37
- createSchemaField<Components extends originalFormilyReact.SchemaReactComponents>(options?: originalFormilyReact.ISchemaFieldReactFactoryOptions<Components> | undefined): {
38
- <Decorator extends originalFormilyReact.JSXComponent, Component extends originalFormilyReact.JSXComponent>(props: originalFormilyReact.ISchemaFieldProps<Decorator, Component, import("@formily/core").ObjectField<Decorator, Component>>): JSX.Element;
39
- displayName: string;
40
- Markup: {
41
- <Decorator_1 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_1 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaMarkupFieldProps<Components, Component_1, Decorator_1>): JSX.Element;
42
- displayName: string;
43
- };
44
- String: {
45
- <Decorator_2 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_2 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_2, Decorator_2>): JSX.Element;
46
- displayName: string;
47
- };
48
- Object: {
49
- <Decorator_3 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_3 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_3, Decorator_3>): JSX.Element;
50
- displayName: string;
51
- };
52
- Array: {
53
- <Decorator_4 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_4 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_4, Decorator_4>): JSX.Element;
54
- displayName: string;
55
- };
56
- Boolean: {
57
- <Decorator_5 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_5 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_5, Decorator_5>): JSX.Element;
58
- displayName: string;
59
- };
60
- Date: {
61
- <Decorator_6 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_6 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_6, Decorator_6>): JSX.Element;
62
- displayName: string;
63
- };
64
- DateTime: {
65
- <Decorator_7 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_7 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_7, Decorator_7>): JSX.Element;
66
- displayName: string;
67
- };
68
- Void: {
69
- <Decorator_8 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_8 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_8, Decorator_8>): JSX.Element;
70
- displayName: string;
71
- };
72
- Number: {
73
- <Decorator_9 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>, Component_9 extends originalFormilyReact.ReactComponentPath<Components, Exclude<keyof Components, "displayName" | "defaultProps" | "propTypes" | "contextTypes">>>(props: originalFormilyReact.ISchemaTypeFieldProps<Components, Component_9, Decorator_9>): JSX.Element;
74
- displayName: string;
75
- };
76
- };
77
- Field: {
78
- <D_3 extends originalFormilyReact.JSXComponent, C_3 extends originalFormilyReact.JSXComponent>(props: originalFormilyReact.IFieldProps<D_3, C_3, import("@formily/core").Field<any, any, any, any>>): JSX.Element;
79
- displayName: string;
80
- };
81
- FormContext: import("react").Context<import("@formily/core").Form<any>>;
82
- FieldContext: import("react").Context<import("@formily/core").GeneralField>;
83
- SchemaMarkupContext: import("react").Context<originalFormilyReact.Schema<any, any, any, any, any, any, any, any, any>>;
84
- SchemaContext: import("react").Context<originalFormilyReact.Schema<any, any, any, any, any, any, any, any, any>>;
85
- SchemaExpressionScopeContext: import("react").Context<any>;
86
- SchemaComponentsContext: import("react").Context<originalFormilyReact.SchemaReactComponents>;
87
- SchemaOptionsContext: import("react").Context<originalFormilyReact.ISchemaFieldReactFactoryOptions<any>>;
88
- ContextCleaner: ({ children }: {
89
- children: any;
90
- }) => any;
91
- mapProps<T extends originalFormilyReact.JSXComponent>(...args: originalFormilyReact.IStateMapper<import("react").ComponentProps<T>>[]): (target: T) => import("react").MemoExoticComponent<originalFormilyReact.ReactFC<any>>;
92
- mapReadPretty<T_1 extends originalFormilyReact.JSXComponent, C_4 extends originalFormilyReact.JSXComponent>(component: C_4, readPrettyProps?: import("react").ComponentProps<C_4> | undefined): (target: T_1) => import("react").MemoExoticComponent<originalFormilyReact.ReactFC<{
93
- ref?: import("react").RefAttributes<any> | undefined;
94
- }>>;
95
- connect<T_2 extends originalFormilyReact.JSXComponent>(target: T_2, ...args: originalFormilyReact.IComponentMapper<T_2>[]): import("react").ForwardRefExoticComponent<import("react").PropsWithoutRef<Partial<import("react").ComponentProps<T_2>>> & import("react").RefAttributes<unknown>>;
96
- observer: typeof originalFormilyReact.observer;
97
- Observer: import("react").MemoExoticComponent<originalFormilyReact.ReactFC<import("@formily/reactive-react").IObserverProps>>;
98
- useForm: <T_3 extends object = any>() => import("@formily/core").Form<T_3>;
99
- useField: <T_4 = import("@formily/core").GeneralField>() => T_4;
100
- useParentForm: () => import("@formily/core").Form<any> | import("@formily/core").ObjectField<any, any>;
101
- useFieldSchema: () => originalFormilyReact.Schema<any, any, any, any, any, any, any, any, any>;
102
- useFormEffects: (effects?: ((form: import("@formily/core").Form<any>) => void) | undefined) => void;
103
- useExpressionScope: () => any;
104
- };
105
- import { customComponent } from './ProForm/customComponent';
106
- export { formilyReact, customComponent };
107
- /**
108
- * 导出常用formily内容
109
- */
110
- import { createForm, registerValidateRules as registerRules, registerValidateFormats as registerFormats, registerValidateLocale, setValidateLanguage } from '@formily/core';
111
- import { FormConsumer, useForm } from '@formily/react';
112
- import { FormDialog, FormDrawer, FormStep, FormTab, FormCollapse } from '@teamix/formily';
113
- export { createForm, FormConsumer, FormDialog, FormDrawer, FormStep, FormTab, FormCollapse, registerRules, registerFormats, registerValidateLocale, setValidateLanguage, useForm, };
114
- /**
115
- * 导出 Filter 组件
116
- */
117
- import { QueryFilter } from './Filter';
118
- import { QueryFilterLayout } from './Filter/Layout';
119
- import { AdvancedFilter, SimpleFilter } from './Filter/index2';
120
- export { QueryFilter, QueryFilterLayout, AdvancedFilter, SimpleFilter };
121
- /**
122
- * 导出 ProForm 组件,支持快速搭建表单
123
- */
124
- import ProForm from './ProForm';
125
- export default ProForm;
@@ -1,159 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- pattern: string;
4
- required: string;
5
- number: string;
6
- integer: string;
7
- url: string;
8
- email: string;
9
- ipv6: string;
10
- ipv4: string;
11
- idcard: string;
12
- taodomain: string;
13
- qq: string;
14
- phone: string;
15
- money: string;
16
- zh: string;
17
- date: string;
18
- zip: string;
19
- len: string;
20
- min: string;
21
- maximum: string;
22
- exclusiveMaximum: string;
23
- minimum: string;
24
- exclusiveMinimum: string;
25
- max: string;
26
- whitespace: string;
27
- };
28
- 'en-us': {
29
- pattern: string;
30
- required: string;
31
- number: string;
32
- integer: string;
33
- url: string;
34
- email: string;
35
- ipv6: string;
36
- ipv4: string;
37
- idcard: string;
38
- taodomain: string;
39
- qq: string;
40
- phone: string;
41
- money: string;
42
- zh: string;
43
- date: string;
44
- zip: string;
45
- len: string;
46
- min: string;
47
- maximum: string;
48
- exclusiveMaximum: string;
49
- minimum: string;
50
- exclusiveMinimum: string;
51
- max: string;
52
- whitespace: string;
53
- };
54
- zh: {
55
- pattern: string;
56
- required: string;
57
- number: string;
58
- integer: string;
59
- url: string;
60
- email: string;
61
- ipv6: string;
62
- ipv4: string;
63
- idcard: string;
64
- taodomain: string;
65
- qq: string;
66
- phone: string;
67
- money: string;
68
- zh: string;
69
- date: string;
70
- zip: string;
71
- len: string;
72
- min: string;
73
- max: string;
74
- maximum: string;
75
- exclusiveMaximum: string;
76
- minimum: string;
77
- exclusiveMinimum: string;
78
- whitespace: string;
79
- };
80
- 'zh-cn': {
81
- pattern: string;
82
- required: string;
83
- number: string;
84
- integer: string;
85
- url: string;
86
- email: string;
87
- ipv6: string;
88
- ipv4: string;
89
- idcard: string;
90
- taodomain: string;
91
- qq: string;
92
- phone: string;
93
- money: string;
94
- zh: string;
95
- date: string;
96
- zip: string;
97
- len: string;
98
- min: string;
99
- max: string;
100
- maximum: string;
101
- exclusiveMaximum: string;
102
- minimum: string;
103
- exclusiveMinimum: string;
104
- whitespace: string;
105
- };
106
- 'zh-tw': {
107
- pattern: string;
108
- required: string;
109
- number: string;
110
- integer: string;
111
- url: string;
112
- email: string;
113
- ipv6: string;
114
- ipv4: string;
115
- idcard: string;
116
- taodomain: string;
117
- qq: string;
118
- phone: string;
119
- money: string;
120
- zh: string;
121
- date: string;
122
- zip: string;
123
- len: string;
124
- min: string;
125
- max: string;
126
- maximum: string;
127
- exclusiveMaximum: string;
128
- minimum: string;
129
- exclusiveMinimum: string;
130
- whitespace: string;
131
- };
132
- ja: {
133
- url: string;
134
- whitespace: string;
135
- zh: string;
136
- zip: string;
137
- date: string;
138
- email: string;
139
- exclusiveMaximum: string;
140
- exclusiveMinimum: string;
141
- idcard: string;
142
- integer: string;
143
- ipv4: string;
144
- ipv6: string;
145
- len: string;
146
- max: string;
147
- maximum: string;
148
- min: string;
149
- minimum: string;
150
- money: string;
151
- number: string;
152
- pattern: string;
153
- phone: string;
154
- qq: string;
155
- required: string;
156
- taodomain: string;
157
- };
158
- };
159
- export default _default;
@@ -1,5 +0,0 @@
1
- declare const schemaNameMap: {
2
- formily: string;
3
- proForm: string;
4
- }[];
5
- export default schemaNameMap;
@@ -1,172 +0,0 @@
1
- import type { ReactNode } from 'react';
2
- import type { IFormFeedback as InnerFormFeedback, Form as FormType, FieldPatternTypes } from '@formily/core';
3
- import type { IFormLayoutProps } from '@teamix/formily';
4
- import type { CommonRequestConfig } from '@teamix/utils';
5
- import type { UrlStateOptions } from '@teamix/hooks';
6
- import React from 'react';
7
- interface AnyObject {
8
- [propName: string]: any;
9
- }
10
- declare type FieldDisplayTypes = 'none' | 'hidden' | 'visible';
11
- export interface ProFormInitializeItem {
12
- (item: ProFormSchemaItem, props?: any): ProFormSchemaItem;
13
- }
14
- /**
15
- * ProForm 实例类型
16
- */
17
- export declare type ProFormType = FormType;
18
- /**
19
- * ProForm 反馈类型
20
- */
21
- export declare type IFormFeedback = InnerFormFeedback;
22
- declare type IBaseComponent = 'Input' | 'Password' | 'TextArea' | 'NumberPicker' | 'Percent' | 'Money' | 'Select' | 'MultipleSelect' | 'TreeSelect' | 'Cascader' | 'MultipleCascader' | 'ArbitraryCascader' | 'Radio' | 'Checkbox' | 'Switch' | 'DatePicker' | 'TimePicker' | 'DateTimePicker' | 'WeekPicker' | 'MonthPicker' | 'YearPicker' | 'QuarterPicker' | 'DateRangePicker' | 'TimeRangePicker' | 'DateTimeRangePicker' | 'WeekRangePicker' | 'MonthRangePicker' | 'YearRangePicker' | 'QuarterRangePicker' | 'Transfer' | 'Upload' | 'ColorPicker' | 'ColorRadio' | 'IconPicker' | 'JsonInput' | 'TagPicker' | 'MultipleTagPicker' | 'Range' | 'Search' | 'SelectGroup' | 'SelectTable' | 'SelectTable.Column';
23
- declare type IButtonComponent = 'Submit' | 'Reset';
24
- declare type IComboComponent = 'ArrayCards' | 'ArrayCards.Addition' | 'ArrayCards.Remove' | 'ArrayCards.MoveUp' | 'ArrayCards.MoveDown' | 'ArrayCards.Index' | 'ArrayCollapse' | 'ArrayCollapse.CollapsePanel' | 'ArrayCollapse.Addition' | 'ArrayCollapse.Remove' | 'ArrayCollapse.MoveUp' | 'ArrayCollapse.MoveDown' | 'ArrayCollapse.Index' | 'ArrayTable' | 'ArrayTable.Column' | 'ArrayTable.SortHandle' | 'ArrayTable.Addition' | 'ArrayTable.Remove' | 'ArrayTable.MoveDown' | 'ArrayTable.MoveUp' | 'ArrayTable.Index' | 'ArrayItems' | 'ArrayItems.Item' | 'ArrayItems.SortHandle' | 'ArrayItems.Addition' | 'ArrayItems.Remove' | 'ArrayItems.MoveDown' | 'ArrayItems.MoveUp' | 'ArrayItems.Index' | 'Editable' | 'Editable.Popover' | 'Editable.Dialog' | 'Editable.Drawer';
25
- declare type ILayoutComponent = 'FormFlex' | 'FormGrid' | 'FormGroup' | 'FormGroup.GroupPanel' | 'Search' | 'Search.SearchPanel' | 'FormTab' | 'FormTab.TabPane' | 'FormStep' | 'FormStep.StepPane' | 'FormCollapse' | 'FormCollapse.CollapsePanel' | 'FormButtonGroup' | 'FormDialog' | 'FormDrawer' | 'FormDialog.Footer' | 'FormDrawer.Footer';
26
- export interface ProFormCommonRequestConfig extends CommonRequestConfig {
27
- beforeRequest?: (field?: any, context?: any) => any;
28
- formatResult?: (res?: any, field?: any, context?: any) => any;
29
- onSuccess?: (res?: any, field?: any, context?: any) => any;
30
- }
31
- export interface ProFormRequestConfig extends Omit<ProFormCommonRequestConfig, 'url'> {
32
- url?: string;
33
- customRequest?: (field?: any, context?: any) => Promise<any>;
34
- extraConfig?: AnyObject;
35
- onComplete?: (res?: any, field?: any, context?: any) => any;
36
- }
37
- export interface ProFormSchemaItem {
38
- type?: string;
39
- name?: string;
40
- description?: React.ReactNode;
41
- title?: string;
42
- component?: IBaseComponent | IButtonComponent | IComboComponent | ILayoutComponent | any;
43
- props?: AnyObject | any;
44
- decorator?: string | null;
45
- decoratorProps?: AnyObject;
46
- dataSource?: any[] | string | ProFormRequestConfig;
47
- reactions?: any;
48
- rules?: any;
49
- items?: ProFormSchemaItem;
50
- children?: ProFormSchemaItem[];
51
- content?: any;
52
- tooltip?: string;
53
- required?: boolean;
54
- display?: FieldDisplayTypes;
55
- visible?: boolean | string;
56
- hidden?: boolean | string;
57
- disabled?: boolean | string;
58
- readOnly?: boolean | string;
59
- readPretty?: boolean | string;
60
- pattern?: FieldPatternTypes;
61
- default?: any;
62
- request?: ProFormRequestConfig | ProFormRequestConfig[];
63
- data?: AnyObject;
64
- }
65
- export declare type ProFormSchema = ProFormSchemaItem[];
66
- interface AutoLayout {
67
- autoLabel?: boolean;
68
- }
69
- export interface ProFormProps extends Omit<IFormLayoutProps, 'breakpoints'> {
70
- form?: FormType | false;
71
- schema?: ProFormSchema;
72
- scope?: any;
73
- context?: any;
74
- components?: {
75
- [key: string]: React.FC | React.ComponentClass;
76
- };
77
- children?: React.ReactNode;
78
- initialValues?: AnyObject;
79
- initialRequest?: ProFormCommonRequestConfig;
80
- previewTextPlaceholder?: ReactNode;
81
- validateFirst?: boolean;
82
- onChangeType?: 'form';
83
- onChange?: (values: any, fieldValue?: any, fieldName?: any) => any;
84
- onSubmit?: ((values: any) => any) | CommonRequestConfig;
85
- onSubmitFailed?: (feedbacks: IFormFeedback[]) => void;
86
- onInitialComplete?: (form: FormType) => void;
87
- breakpoints?: number[] | boolean;
88
- autoLayout?: AutoLayout | boolean;
89
- }
90
- export interface FilterProps extends ProFormProps {
91
- form: FormType;
92
- defaultFilterValue?: string;
93
- filterValues?: string[];
94
- activeFilterValueRef?: React.MutableRefObject<any>;
95
- forceClear?: boolean;
96
- onReset?: (payload?: any) => void;
97
- }
98
- export interface QueryFilterLayoutProps {
99
- prefixCls?: string;
100
- className?: string;
101
- addonBefore?: ReactNode;
102
- addonAfter?: ReactNode;
103
- inlineContent?: ReactNode;
104
- panelContent?: ReactNode;
105
- count?: number;
106
- expand?: boolean;
107
- onExpand?: (expand: boolean) => void;
108
- }
109
- export interface QueryFilterProps extends ProFormProps {
110
- /**
111
- * @deprecated triggerType已弃用
112
- */
113
- triggerType?: 'keydown' | 'change' | 'submit';
114
- /** 表单展示形式 */
115
- mode?: 'inline' | 'panel';
116
- /** 面板模式下是否仅展示面板 */
117
- purePanel?: boolean;
118
- /** 面板是否默认展开,仅在 mode='panel' 时生效 */
119
- expand?: boolean;
120
- gridProps?: any;
121
- /** 是否强制清除 */
122
- forceClear?: boolean;
123
- /** 顶部筛选区前缀 */
124
- addonBefore?: ReactNode;
125
- /** 顶部筛选区后缀 */
126
- addonAfter?: ReactNode;
127
- /** 顶部筛选区默认筛选项 */
128
- defaultFilterValue?: string;
129
- /** 顶部筛选区筛选项配置 */
130
- filterValues?: string[];
131
- /** 透出内部表单实例 */
132
- formRef?: React.MutableRefObject<any>;
133
- /** onChange事件的防抖时间 */
134
- filterDebounce?: number;
135
- /** 绑定URL参数 */
136
- bindUrl?: boolean | UrlStateOptions;
137
- /** 表单初始化(含异步默认值)后回调函数 */
138
- onInit?: (values: any) => void;
139
- /** 表单筛选回调函数 */
140
- onFilter?: (values: any) => void;
141
- /** 表单重置回调函数 */
142
- onReset?: (payload?: any) => void;
143
- /** 高级筛选按钮切换 */
144
- onExpand?: (expand: boolean) => void;
145
- }
146
- /**
147
- * 兼容性导出
148
- */
149
- /**
150
- * @deprecated 将在未来移除该组件,建议使用 QueryFilter 代替
151
- */
152
- export interface IFilterProps extends ProFormProps {
153
- triggerType?: 'keydown' | 'change' | 'submit';
154
- onFilter?: (values: any) => void;
155
- onReset?: (payload?: any) => void;
156
- }
157
- /**
158
- * @deprecated 将在未来移除,建议使用 ProFormSchemaItem 代替
159
- */
160
- export interface IFormSchemaItem extends ProFormSchemaItem {
161
- }
162
- /**
163
- * @deprecated 将在未来移除,建议使用 ProFormSchema 代替
164
- */
165
- export interface IFormSchema extends ProFormSchema {
166
- }
167
- /**
168
- * @deprecated 将在未来移除,建议使用 ProFormProps 代替
169
- */
170
- export interface IFormProps extends ProFormProps {
171
- }
172
- export {};
@@ -1,55 +0,0 @@
1
- /**
2
- * 映射字段size,主要是default转medium
3
- * @param props component的props
4
- * @param field 当前字段实例
5
- * @returns 映射后的字段属性
6
- */
7
- declare const mapSize: (props: any, field: any) => any;
8
- /**
9
- * 映射字段state
10
- * @param props component的props
11
- * @param field 当前字段实例
12
- * @returns 映射后的字段属性
13
- */
14
- declare const mapStatus: (props: any, field: any) => any;
15
- declare const mapDataSource: (props: any, field: any) => any;
16
- declare const mapMode: (props: any, field: any) => any;
17
- /**
18
- * 创建字段名称
19
- * @param prefix 字段名称前缀,接收字段component名称,默认为FieldName
20
- * @param suffix 字段后缀,唯一标识
21
- * @returns 字段唯一名称
22
- */
23
- interface IGetFieldName {
24
- (prefix: string, suffix?: string): string;
25
- }
26
- declare const getFieldName: IGetFieldName;
27
- /**
28
- * 将ProForm的key映射为formily的key,然后筛除掉无效的key/value
29
- * @param obj
30
- * @returns
31
- */
32
- declare const mapSchemaName: (obj: any) => any;
33
- /**
34
- * 合并数组或非数组,不移除无效值
35
- * @param arr 数组
36
- * @param v 数组或其他
37
- * @returns 合并数组或合并其他值
38
- */
39
- declare const mergeArrayValue: (arr: any[], v?: any) => any[];
40
- /**
41
- * 初始化请求配置为表达式
42
- * @param config 请求配置
43
- * @param suffix scope名称后缀
44
- * @returns 表达式和scope上下文
45
- */
46
- declare const initializeRequestExpression: (config?: any, mode?: string | undefined, suffix?: string | undefined) => {
47
- expression: string;
48
- scope: {
49
- [x: string]: object;
50
- };
51
- } | {
52
- expression?: undefined;
53
- scope?: undefined;
54
- };
55
- export { mapSize, mapStatus, mapDataSource, mapMode, mergeArrayValue, getFieldName, mapSchemaName, initializeRequestExpression, };
@@ -1,3 +0,0 @@
1
- import type { ProFormInitializeItem } from './typing';
2
- declare const warning: ProFormInitializeItem;
3
- export default warning;
@@ -1,2 +0,0 @@
1
- import * as hooks from '@teamix/hooks';
2
- export default hooks;