@1money/component-ui 0.0.90 → 0.0.91

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 (353) hide show
  1. package/es/business/Dialog/BaseDialog/BaseDialog.d.ts +3 -0
  2. package/es/business/Dialog/BaseDialog/BaseDialog.js +131 -0
  3. package/es/business/Dialog/BaseDialog/constants.d.ts +12 -0
  4. package/es/business/Dialog/BaseDialog/constants.js +13 -0
  5. package/es/business/Dialog/BaseDialog/index.d.ts +4 -0
  6. package/es/business/Dialog/BaseDialog/index.js +5 -0
  7. package/es/business/Dialog/BaseDialog/interface.d.ts +69 -0
  8. package/es/business/Dialog/BaseDialog/interface.js +2 -0
  9. package/es/business/Dialog/BaseDialog/style/BaseDialog.css +72 -0
  10. package/es/business/Dialog/BaseDialog/style/css.js +2 -0
  11. package/es/business/Dialog/BaseDialog/style/index.d.ts +1 -0
  12. package/es/business/Dialog/BaseDialog/style/index.js +2 -0
  13. package/es/business/Dialog/Descriptions/Descriptions.d.ts +3 -0
  14. package/es/business/Dialog/Descriptions/Descriptions.js +102 -0
  15. package/es/business/Dialog/Descriptions/constants.d.ts +16 -0
  16. package/es/business/Dialog/Descriptions/constants.js +24 -0
  17. package/es/business/Dialog/Descriptions/index.d.ts +4 -0
  18. package/es/business/Dialog/Descriptions/index.js +5 -0
  19. package/es/business/Dialog/Descriptions/interface.d.ts +58 -0
  20. package/es/business/Dialog/{ResultDialog → Descriptions}/interface.js +1 -1
  21. package/es/business/Dialog/Descriptions/style/Descriptions.css +60 -0
  22. package/es/business/Dialog/{ResultDialog → Descriptions}/style/css.js +2 -2
  23. package/es/business/Dialog/Descriptions/style/index.d.ts +1 -0
  24. package/es/business/Dialog/{ResultDialog → Descriptions}/style/index.js +2 -2
  25. package/es/business/Dialog/DetailsDialog/DetailsDialog.d.ts +3 -0
  26. package/es/business/Dialog/DetailsDialog/DetailsDialog.js +101 -0
  27. package/es/business/Dialog/DetailsDialog/index.d.ts +4 -0
  28. package/es/business/Dialog/DetailsDialog/index.js +5 -0
  29. package/es/business/Dialog/DetailsDialog/interface.d.ts +31 -0
  30. package/es/business/Dialog/DetailsDialog/interface.js +2 -0
  31. package/es/business/Dialog/DetailsDialog/style/DetailsDialog.css +43 -0
  32. package/es/business/Dialog/DetailsDialog/style/css.js +2 -0
  33. package/es/business/Dialog/DetailsDialog/style/index.d.ts +1 -0
  34. package/es/business/Dialog/DetailsDialog/style/index.js +2 -0
  35. package/es/business/Dialog/FormDialog/FormDialog.d.ts +5 -0
  36. package/es/business/Dialog/FormDialog/FormDialog.js +121 -0
  37. package/es/business/Dialog/FormDialog/index.d.ts +6 -0
  38. package/es/business/Dialog/FormDialog/index.js +6 -0
  39. package/es/business/Dialog/FormDialog/interface.d.ts +53 -0
  40. package/es/business/Dialog/FormDialog/interface.js +2 -0
  41. package/{lib/business/Dialog/TransactionDialog/style/TransactionDialog.css → es/business/Dialog/FormDialog/style/FormDialog.css} +11 -11
  42. package/es/business/Dialog/FormDialog/style/css.js +2 -0
  43. package/es/business/Dialog/FormDialog/style/index.d.ts +1 -0
  44. package/es/business/Dialog/FormDialog/style/index.js +2 -0
  45. package/es/business/Dialog/VerificationDialog/VerificationDialog.js +249 -95
  46. package/es/business/Dialog/VerificationDialog/constants.d.ts +8 -35
  47. package/es/business/Dialog/VerificationDialog/constants.js +8 -30
  48. package/es/business/Dialog/VerificationDialog/index.d.ts +2 -1
  49. package/es/business/Dialog/VerificationDialog/index.js +3 -2
  50. package/es/business/Dialog/VerificationDialog/interface.d.ts +42 -106
  51. package/es/business/Dialog/VerificationDialog/style/VerificationDialog.css +17 -6
  52. package/es/business/Dialog/index.d.ts +5 -2
  53. package/es/business/Dialog/index.js +8 -3
  54. package/es/business/Dialog/variants/DeleteDialog.d.ts +3 -0
  55. package/es/business/Dialog/variants/DeleteDialog.js +20 -0
  56. package/es/business/Dialog/variants/FailureDialog.d.ts +3 -0
  57. package/es/business/Dialog/variants/FailureDialog.js +20 -0
  58. package/es/business/Dialog/variants/LoadingDialog.d.ts +33 -0
  59. package/es/business/Dialog/variants/LoadingDialog.js +189 -0
  60. package/es/business/Dialog/variants/PendingDialog.d.ts +3 -0
  61. package/es/business/Dialog/variants/PendingDialog.js +19 -0
  62. package/es/business/Dialog/variants/SuccessDialog.d.ts +3 -0
  63. package/es/business/Dialog/variants/SuccessDialog.js +19 -0
  64. package/es/business/Dialog/variants/index.d.ts +10 -0
  65. package/es/business/Dialog/variants/index.js +9 -0
  66. package/es/business/Dialog/variants/style/LoadingDialog.css +62 -0
  67. package/es/business/Dialog/variants/style/css.js +2 -0
  68. package/es/business/Dialog/variants/style/index.d.ts +1 -0
  69. package/es/business/Dialog/variants/style/index.js +2 -0
  70. package/es/business/FieldList/index.d.ts +30 -0
  71. package/es/business/FieldList/index.js +59 -0
  72. package/es/business/FieldList/style/FieldList.css +89 -0
  73. package/es/business/FieldList/style/css.js +2 -0
  74. package/es/business/FieldList/style/index.d.ts +1 -0
  75. package/es/business/FieldList/style/index.js +2 -0
  76. package/es/business/FormPage/FormPage.d.ts +4 -0
  77. package/es/business/FormPage/FormPage.js +92 -0
  78. package/es/business/FormPage/index.d.ts +4 -0
  79. package/es/business/FormPage/index.js +5 -0
  80. package/es/business/FormPage/interface.d.ts +53 -0
  81. package/es/business/FormPage/interface.js +2 -0
  82. package/es/business/Select/Asset/AssetSelect.js +5 -1
  83. package/es/business/Select/Country/CountrySelect.js +5 -1
  84. package/es/business/Select/Currency/CurrencySelect.js +5 -1
  85. package/es/business/Select/Network/NetworkSelect.js +5 -1
  86. package/es/business/Select/PaymentMethod/PaymentMethodSelect.js +5 -1
  87. package/es/business/index.d.ts +3 -0
  88. package/es/business/index.js +3 -1
  89. package/es/business/shared/formCore/BaseProForm.d.ts +40 -0
  90. package/es/business/shared/formCore/BaseProForm.js +87 -0
  91. package/es/business/shared/formCore/useRelayedFormRef.d.ts +16 -0
  92. package/es/business/shared/formCore/useRelayedFormRef.js +43 -0
  93. package/es/business/shared/formCore/useSubmitAction.d.ts +11 -0
  94. package/es/business/shared/formCore/useSubmitAction.js +92 -0
  95. package/es/components/ActionBar/ActionBar.d.ts +3 -0
  96. package/es/components/ActionBar/ActionBar.js +115 -0
  97. package/es/components/ActionBar/constants.d.ts +29 -0
  98. package/es/components/ActionBar/constants.js +30 -0
  99. package/es/components/ActionBar/index.d.ts +4 -0
  100. package/es/components/ActionBar/index.js +5 -0
  101. package/es/components/ActionBar/interface.d.ts +82 -0
  102. package/es/components/ActionBar/interface.js +2 -0
  103. package/es/components/ActionBar/style/ActionBar.css +44 -0
  104. package/es/components/ActionBar/style/css.js +2 -0
  105. package/es/components/ActionBar/style/index.d.ts +1 -0
  106. package/es/components/ActionBar/style/index.js +2 -0
  107. package/es/components/Dialog/Dialog.js +13 -8
  108. package/es/components/Dialog/interface.d.ts +11 -0
  109. package/es/components/Dialog/style/Dialog.css +7 -4
  110. package/es/{business/Dialog/ResultDialog/style/ResultDialog.css → components/Dialog/style/DialogBare.css} +10 -5
  111. package/es/components/Dialog/style/css.js +2 -1
  112. package/es/components/Dialog/style/index.d.ts +1 -0
  113. package/es/components/Dialog/style/index.js +2 -1
  114. package/es/components/FormLayout/FormLayout.d.ts +25 -0
  115. package/es/components/FormLayout/FormLayout.js +128 -0
  116. package/es/components/FormLayout/config.d.ts +96 -0
  117. package/es/components/FormLayout/config.js +93 -0
  118. package/es/components/FormLayout/context.d.ts +9 -0
  119. package/es/components/FormLayout/context.js +13 -0
  120. package/es/components/FormLayout/index.d.ts +7 -0
  121. package/es/components/FormLayout/index.js +7 -0
  122. package/es/components/FormLayout/interface.d.ts +51 -0
  123. package/es/components/FormLayout/interface.js +2 -0
  124. package/es/components/FormLayout/style/FormLayout.css +110 -0
  125. package/es/components/FormLayout/style/css.js +2 -0
  126. package/es/components/FormLayout/style/index.d.ts +1 -0
  127. package/es/components/FormLayout/style/index.js +2 -0
  128. package/es/components/Grid/Col.d.ts +1 -0
  129. package/es/components/Grid/Col.js +2 -1
  130. package/es/components/Grid/Row.d.ts +1 -0
  131. package/es/components/Grid/Row.js +2 -1
  132. package/es/components/Input/Input/Input.css +1 -1
  133. package/es/components/Input/Input/Input.js +16 -4
  134. package/es/components/Input/Mask/Mask.js +3 -2
  135. package/es/components/Input/interface.d.ts +5 -0
  136. package/es/components/ProForm/ProForm.js +24 -13
  137. package/es/components/ProForm/ProFormItem.js +2 -1
  138. package/es/components/ProForm/core/constants.d.ts +1 -1
  139. package/es/components/ProForm/core/constants.js +5 -2
  140. package/es/components/ProForm/style/ProForm.css +1 -1
  141. package/es/components/Select/Select.js +8 -3
  142. package/es/index.css +1 -1
  143. package/es/index.d.ts +5 -1
  144. package/es/index.js +3 -1
  145. package/lib/business/Dialog/BaseDialog/BaseDialog.d.ts +3 -0
  146. package/lib/business/Dialog/BaseDialog/BaseDialog.js +140 -0
  147. package/lib/business/Dialog/BaseDialog/constants.d.ts +12 -0
  148. package/lib/business/Dialog/BaseDialog/constants.js +19 -0
  149. package/lib/business/Dialog/BaseDialog/index.d.ts +4 -0
  150. package/lib/business/Dialog/BaseDialog/index.js +30 -0
  151. package/lib/business/Dialog/BaseDialog/interface.d.ts +69 -0
  152. package/lib/business/Dialog/BaseDialog/interface.js +6 -0
  153. package/lib/business/Dialog/BaseDialog/style/BaseDialog.css +72 -0
  154. package/lib/business/Dialog/BaseDialog/style/css.js +4 -0
  155. package/lib/business/Dialog/BaseDialog/style/index.d.ts +1 -0
  156. package/lib/business/Dialog/BaseDialog/style/index.js +4 -0
  157. package/lib/business/Dialog/Descriptions/Descriptions.d.ts +3 -0
  158. package/lib/business/Dialog/Descriptions/Descriptions.js +112 -0
  159. package/lib/business/Dialog/Descriptions/constants.d.ts +16 -0
  160. package/lib/business/Dialog/Descriptions/constants.js +30 -0
  161. package/lib/business/Dialog/Descriptions/index.d.ts +4 -0
  162. package/lib/business/Dialog/Descriptions/index.js +30 -0
  163. package/lib/business/Dialog/Descriptions/interface.d.ts +58 -0
  164. package/lib/business/Dialog/{ResultDialog → Descriptions}/interface.js +1 -1
  165. package/lib/business/Dialog/Descriptions/style/Descriptions.css +60 -0
  166. package/lib/business/Dialog/{ResultDialog → Descriptions}/style/css.js +2 -2
  167. package/lib/business/Dialog/Descriptions/style/index.d.ts +1 -0
  168. package/lib/business/Dialog/{ResultDialog → Descriptions}/style/index.js +2 -2
  169. package/lib/business/Dialog/DetailsDialog/DetailsDialog.d.ts +3 -0
  170. package/lib/business/Dialog/DetailsDialog/DetailsDialog.js +111 -0
  171. package/lib/business/Dialog/DetailsDialog/index.d.ts +4 -0
  172. package/lib/business/Dialog/DetailsDialog/index.js +30 -0
  173. package/lib/business/Dialog/DetailsDialog/interface.d.ts +31 -0
  174. package/lib/business/Dialog/DetailsDialog/interface.js +6 -0
  175. package/lib/business/Dialog/DetailsDialog/style/DetailsDialog.css +43 -0
  176. package/lib/business/Dialog/DetailsDialog/style/css.js +4 -0
  177. package/lib/business/Dialog/DetailsDialog/style/index.d.ts +1 -0
  178. package/lib/business/Dialog/DetailsDialog/style/index.js +4 -0
  179. package/lib/business/Dialog/FormDialog/FormDialog.d.ts +5 -0
  180. package/lib/business/Dialog/FormDialog/FormDialog.js +130 -0
  181. package/lib/business/Dialog/FormDialog/index.d.ts +6 -0
  182. package/lib/business/Dialog/FormDialog/index.js +52 -0
  183. package/lib/business/Dialog/FormDialog/interface.d.ts +53 -0
  184. package/lib/business/Dialog/FormDialog/interface.js +6 -0
  185. package/{es/business/Dialog/TransactionDialog/style/TransactionDialog.css → lib/business/Dialog/FormDialog/style/FormDialog.css} +11 -11
  186. package/lib/business/Dialog/FormDialog/style/css.js +4 -0
  187. package/lib/business/Dialog/FormDialog/style/index.d.ts +1 -0
  188. package/lib/business/Dialog/FormDialog/style/index.js +4 -0
  189. package/lib/business/Dialog/VerificationDialog/VerificationDialog.js +250 -92
  190. package/lib/business/Dialog/VerificationDialog/constants.d.ts +8 -35
  191. package/lib/business/Dialog/VerificationDialog/constants.js +9 -31
  192. package/lib/business/Dialog/VerificationDialog/index.d.ts +2 -1
  193. package/lib/business/Dialog/VerificationDialog/index.js +4 -17
  194. package/lib/business/Dialog/VerificationDialog/interface.d.ts +42 -106
  195. package/lib/business/Dialog/VerificationDialog/style/VerificationDialog.css +17 -6
  196. package/lib/business/Dialog/index.d.ts +5 -2
  197. package/lib/business/Dialog/index.js +31 -9
  198. package/lib/business/Dialog/variants/DeleteDialog.d.ts +3 -0
  199. package/lib/business/Dialog/variants/DeleteDialog.js +26 -0
  200. package/lib/business/Dialog/variants/FailureDialog.d.ts +3 -0
  201. package/lib/business/Dialog/variants/FailureDialog.js +26 -0
  202. package/lib/business/Dialog/variants/LoadingDialog.d.ts +33 -0
  203. package/lib/business/Dialog/variants/LoadingDialog.js +199 -0
  204. package/lib/business/Dialog/variants/PendingDialog.d.ts +3 -0
  205. package/lib/business/Dialog/variants/PendingDialog.js +25 -0
  206. package/lib/business/Dialog/variants/SuccessDialog.d.ts +3 -0
  207. package/lib/business/Dialog/variants/SuccessDialog.js +25 -0
  208. package/lib/business/Dialog/variants/index.d.ts +10 -0
  209. package/lib/business/Dialog/variants/index.js +41 -0
  210. package/lib/business/Dialog/variants/style/LoadingDialog.css +62 -0
  211. package/lib/business/Dialog/variants/style/css.js +4 -0
  212. package/lib/business/Dialog/variants/style/index.d.ts +1 -0
  213. package/lib/business/Dialog/variants/style/index.js +4 -0
  214. package/lib/business/FieldList/index.d.ts +30 -0
  215. package/lib/business/FieldList/index.js +67 -0
  216. package/lib/business/FieldList/style/FieldList.css +89 -0
  217. package/lib/business/FieldList/style/css.js +4 -0
  218. package/lib/business/FieldList/style/index.d.ts +1 -0
  219. package/lib/business/FieldList/style/index.js +4 -0
  220. package/lib/business/FormPage/FormPage.d.ts +4 -0
  221. package/lib/business/FormPage/FormPage.js +98 -0
  222. package/lib/business/FormPage/index.d.ts +4 -0
  223. package/lib/business/FormPage/index.js +30 -0
  224. package/lib/business/FormPage/interface.d.ts +53 -0
  225. package/lib/business/FormPage/interface.js +6 -0
  226. package/lib/business/Select/Asset/AssetSelect.js +5 -1
  227. package/lib/business/Select/Country/CountrySelect.js +5 -1
  228. package/lib/business/Select/Currency/CurrencySelect.js +5 -1
  229. package/lib/business/Select/Network/NetworkSelect.js +5 -1
  230. package/lib/business/Select/PaymentMethod/PaymentMethodSelect.js +5 -1
  231. package/lib/business/index.d.ts +3 -0
  232. package/lib/business/index.js +27 -1
  233. package/lib/business/shared/formCore/BaseProForm.d.ts +40 -0
  234. package/lib/business/shared/formCore/BaseProForm.js +93 -0
  235. package/lib/business/shared/formCore/useRelayedFormRef.d.ts +16 -0
  236. package/lib/business/shared/formCore/useRelayedFormRef.js +49 -0
  237. package/lib/business/shared/formCore/useSubmitAction.d.ts +11 -0
  238. package/lib/business/shared/formCore/useSubmitAction.js +99 -0
  239. package/lib/components/ActionBar/ActionBar.d.ts +3 -0
  240. package/lib/components/ActionBar/ActionBar.js +124 -0
  241. package/lib/components/ActionBar/constants.d.ts +29 -0
  242. package/lib/components/ActionBar/constants.js +36 -0
  243. package/lib/components/ActionBar/index.d.ts +4 -0
  244. package/lib/components/ActionBar/index.js +30 -0
  245. package/lib/components/ActionBar/interface.d.ts +82 -0
  246. package/lib/components/ActionBar/interface.js +6 -0
  247. package/lib/components/ActionBar/style/ActionBar.css +44 -0
  248. package/lib/components/ActionBar/style/css.js +4 -0
  249. package/lib/components/ActionBar/style/index.d.ts +1 -0
  250. package/lib/components/ActionBar/style/index.js +4 -0
  251. package/lib/components/Dialog/Dialog.js +13 -8
  252. package/lib/components/Dialog/interface.d.ts +11 -0
  253. package/lib/components/Dialog/style/Dialog.css +7 -4
  254. package/lib/{business/Dialog/ResultDialog/style/ResultDialog.css → components/Dialog/style/DialogBare.css} +10 -5
  255. package/lib/components/Dialog/style/css.js +2 -1
  256. package/lib/components/Dialog/style/index.d.ts +1 -0
  257. package/lib/components/Dialog/style/index.js +2 -1
  258. package/lib/components/FormLayout/FormLayout.d.ts +25 -0
  259. package/lib/components/FormLayout/FormLayout.js +138 -0
  260. package/lib/components/FormLayout/config.d.ts +96 -0
  261. package/lib/components/FormLayout/config.js +99 -0
  262. package/lib/components/FormLayout/context.d.ts +9 -0
  263. package/lib/components/FormLayout/context.js +19 -0
  264. package/lib/components/FormLayout/index.d.ts +7 -0
  265. package/lib/components/FormLayout/index.js +102 -0
  266. package/lib/components/FormLayout/interface.d.ts +51 -0
  267. package/lib/components/FormLayout/interface.js +6 -0
  268. package/lib/components/FormLayout/style/FormLayout.css +110 -0
  269. package/lib/components/FormLayout/style/css.js +4 -0
  270. package/lib/components/FormLayout/style/index.d.ts +1 -0
  271. package/lib/components/FormLayout/style/index.js +4 -0
  272. package/lib/components/Grid/Col.d.ts +1 -0
  273. package/lib/components/Grid/Col.js +2 -1
  274. package/lib/components/Grid/Row.d.ts +1 -0
  275. package/lib/components/Grid/Row.js +2 -1
  276. package/lib/components/Input/Input/Input.css +1 -1
  277. package/lib/components/Input/Input/Input.js +16 -4
  278. package/lib/components/Input/Mask/Mask.js +3 -2
  279. package/lib/components/Input/interface.d.ts +5 -0
  280. package/lib/components/ProForm/ProForm.js +27 -16
  281. package/lib/components/ProForm/ProFormItem.js +2 -1
  282. package/lib/components/ProForm/core/constants.d.ts +1 -1
  283. package/lib/components/ProForm/core/constants.js +5 -2
  284. package/lib/components/ProForm/style/ProForm.css +1 -1
  285. package/lib/components/Select/Select.js +8 -3
  286. package/lib/index.css +1 -1
  287. package/lib/index.d.ts +5 -1
  288. package/lib/index.js +33 -1
  289. package/package.json +39 -9
  290. package/scripts/mcp-server/examples.generated.json +84 -0
  291. package/scripts/mcp-server/index.generated.json +743 -152
  292. package/es/business/Dialog/ResultDialog/ResultDialog.d.ts +0 -3
  293. package/es/business/Dialog/ResultDialog/ResultDialog.js +0 -126
  294. package/es/business/Dialog/ResultDialog/constants.d.ts +0 -27
  295. package/es/business/Dialog/ResultDialog/constants.js +0 -24
  296. package/es/business/Dialog/ResultDialog/index.d.ts +0 -3
  297. package/es/business/Dialog/ResultDialog/index.js +0 -4
  298. package/es/business/Dialog/ResultDialog/interface.d.ts +0 -95
  299. package/es/business/Dialog/ResultDialog/presets.d.ts +0 -178
  300. package/es/business/Dialog/ResultDialog/presets.js +0 -139
  301. package/es/business/Dialog/ResultDialog/style/index.d.ts +0 -1
  302. package/es/business/Dialog/TransactionDialog/TransactionDialog.d.ts +0 -3
  303. package/es/business/Dialog/TransactionDialog/TransactionDialog.js +0 -174
  304. package/es/business/Dialog/TransactionDialog/constants.d.ts +0 -34
  305. package/es/business/Dialog/TransactionDialog/constants.js +0 -33
  306. package/es/business/Dialog/TransactionDialog/index.d.ts +0 -3
  307. package/es/business/Dialog/TransactionDialog/index.js +0 -4
  308. package/es/business/Dialog/TransactionDialog/interface.d.ts +0 -116
  309. package/es/business/Dialog/TransactionDialog/interface.js +0 -2
  310. package/es/business/Dialog/TransactionDialog/presets.d.ts +0 -89
  311. package/es/business/Dialog/TransactionDialog/presets.js +0 -62
  312. package/es/business/Dialog/TransactionDialog/style/css.js +0 -2
  313. package/es/business/Dialog/TransactionDialog/style/index.d.ts +0 -1
  314. package/es/business/Dialog/TransactionDialog/style/index.js +0 -2
  315. package/es/business/Dialog/VerificationDialog/ResendRow.d.ts +0 -14
  316. package/es/business/Dialog/VerificationDialog/ResendRow.js +0 -65
  317. package/es/business/Dialog/VerificationDialog/hooks/index.d.ts +0 -4
  318. package/es/business/Dialog/VerificationDialog/hooks/index.js +0 -3
  319. package/es/business/Dialog/VerificationDialog/hooks/useOtpVerification.d.ts +0 -50
  320. package/es/business/Dialog/VerificationDialog/hooks/useOtpVerification.js +0 -138
  321. package/es/business/Dialog/VerificationDialog/hooks/useResendCountdown.d.ts +0 -26
  322. package/es/business/Dialog/VerificationDialog/hooks/useResendCountdown.js +0 -103
  323. package/lib/business/Dialog/ResultDialog/ResultDialog.d.ts +0 -3
  324. package/lib/business/Dialog/ResultDialog/ResultDialog.js +0 -132
  325. package/lib/business/Dialog/ResultDialog/constants.d.ts +0 -27
  326. package/lib/business/Dialog/ResultDialog/constants.js +0 -30
  327. package/lib/business/Dialog/ResultDialog/index.d.ts +0 -3
  328. package/lib/business/Dialog/ResultDialog/index.js +0 -40
  329. package/lib/business/Dialog/ResultDialog/interface.d.ts +0 -95
  330. package/lib/business/Dialog/ResultDialog/presets.d.ts +0 -178
  331. package/lib/business/Dialog/ResultDialog/presets.js +0 -145
  332. package/lib/business/Dialog/ResultDialog/style/index.d.ts +0 -1
  333. package/lib/business/Dialog/TransactionDialog/TransactionDialog.d.ts +0 -3
  334. package/lib/business/Dialog/TransactionDialog/TransactionDialog.js +0 -180
  335. package/lib/business/Dialog/TransactionDialog/constants.d.ts +0 -34
  336. package/lib/business/Dialog/TransactionDialog/constants.js +0 -39
  337. package/lib/business/Dialog/TransactionDialog/index.d.ts +0 -3
  338. package/lib/business/Dialog/TransactionDialog/index.js +0 -40
  339. package/lib/business/Dialog/TransactionDialog/interface.d.ts +0 -116
  340. package/lib/business/Dialog/TransactionDialog/interface.js +0 -6
  341. package/lib/business/Dialog/TransactionDialog/presets.d.ts +0 -89
  342. package/lib/business/Dialog/TransactionDialog/presets.js +0 -68
  343. package/lib/business/Dialog/TransactionDialog/style/css.js +0 -4
  344. package/lib/business/Dialog/TransactionDialog/style/index.d.ts +0 -1
  345. package/lib/business/Dialog/TransactionDialog/style/index.js +0 -4
  346. package/lib/business/Dialog/VerificationDialog/ResendRow.d.ts +0 -14
  347. package/lib/business/Dialog/VerificationDialog/ResendRow.js +0 -71
  348. package/lib/business/Dialog/VerificationDialog/hooks/index.d.ts +0 -4
  349. package/lib/business/Dialog/VerificationDialog/hooks/index.js +0 -20
  350. package/lib/business/Dialog/VerificationDialog/hooks/useOtpVerification.d.ts +0 -50
  351. package/lib/business/Dialog/VerificationDialog/hooks/useOtpVerification.js +0 -145
  352. package/lib/business/Dialog/VerificationDialog/hooks/useResendCountdown.d.ts +0 -26
  353. package/lib/business/Dialog/VerificationDialog/hooks/useResendCountdown.js +0 -110
@@ -150,6 +150,208 @@
150
150
  }
151
151
  ]
152
152
  },
153
+ {
154
+ "name": "ActionBar",
155
+ "kind": "component",
156
+ "category": "misc",
157
+ "summary": "",
158
+ "importPath": "@1money/component-ui",
159
+ "subpathImport": "@1money/component-ui/ActionBar",
160
+ "sourceFile": "src/components/ActionBar/ActionBar.tsx",
161
+ "props": [
162
+ {
163
+ "name": "layout",
164
+ "type": "ActionBarLayout",
165
+ "optional": true,
166
+ "default": null,
167
+ "description": "Row layout, locked by the scenario shell: `fill` (default) shares the full row — one action spans it, two split it evenly; `compact` renders auto-width, left-aligned buttons (form-dialog footers).",
168
+ "inheritedFrom": null
169
+ },
170
+ {
171
+ "name": "direction",
172
+ "type": "ActionBarDirection",
173
+ "optional": true,
174
+ "default": null,
175
+ "description": "Arrangement: `horizontal` (default) or `vertical` (stacked, each button full-width — result-dialog style).",
176
+ "inheritedFrom": null
177
+ },
178
+ {
179
+ "name": "primary",
180
+ "type": "ActionBarAction",
181
+ "optional": true,
182
+ "default": null,
183
+ "description": "Primary action.",
184
+ "inheritedFrom": null
185
+ },
186
+ {
187
+ "name": "primarySlot",
188
+ "type": "ReactNode",
189
+ "optional": true,
190
+ "default": null,
191
+ "description": "Custom node replacing the primary Button (see `ActionBarPrimarySlot`).",
192
+ "inheritedFrom": null
193
+ },
194
+ {
195
+ "name": "secondary",
196
+ "type": "ActionBarAction",
197
+ "optional": true,
198
+ "default": null,
199
+ "description": "Optional secondary (left) action.",
200
+ "inheritedFrom": null
201
+ },
202
+ {
203
+ "name": "footnote",
204
+ "type": "ActionBarFootnote",
205
+ "optional": true,
206
+ "default": null,
207
+ "description": "Optional centered footnote row below the actions.",
208
+ "inheritedFrom": null
209
+ },
210
+ {
211
+ "name": "prefixCls",
212
+ "type": "string",
213
+ "optional": true,
214
+ "default": null,
215
+ "description": "CSS class prefix.",
216
+ "inheritedFrom": null
217
+ },
218
+ {
219
+ "name": "className",
220
+ "type": "string",
221
+ "optional": true,
222
+ "default": null,
223
+ "description": "Additional class on the root element.",
224
+ "inheritedFrom": null
225
+ }
226
+ ],
227
+ "extends": [],
228
+ "relatedSymbols": [
229
+ "ActionBarAction",
230
+ "ActionBarFootnote",
231
+ "ActionBarLayout",
232
+ "ActionBarProps"
233
+ ],
234
+ "searchTags": [],
235
+ "canonicalUsage": "<ActionBar />",
236
+ "examples": [
237
+ {
238
+ "hash": "b18db3681963f33b4f480dc59dc59e3799470a5a30c598e54eb5624e82c9cb9e",
239
+ "source": "canonical"
240
+ },
241
+ {
242
+ "hash": "778ff251f59b7f82e0eb19aad6b18543b96bed2de7792e4ea1f8f899b4c570ac",
243
+ "source": "readme"
244
+ },
245
+ {
246
+ "hash": "93b172e8804898e8e815d5d9dc1ec3f3a8273cccd7b35f0c5ce46a2ef5bbd885",
247
+ "source": "readme"
248
+ }
249
+ ]
250
+ },
251
+ {
252
+ "name": "ActionBarAction",
253
+ "kind": "type",
254
+ "category": "misc",
255
+ "summary": "One footer action.",
256
+ "importPath": "@1money/component-ui",
257
+ "subpathImport": "@1money/component-ui/ActionBar",
258
+ "sourceFile": "src/components/ActionBar/interface.ts",
259
+ "props": [],
260
+ "extends": [],
261
+ "relatedSymbols": [
262
+ "ActionBar",
263
+ "ActionBarFootnote",
264
+ "ActionBarLayout",
265
+ "ActionBarProps"
266
+ ],
267
+ "searchTags": [],
268
+ "typeText": "interface ActionBarAction { ... }",
269
+ "canonicalUsage": "import type { ActionBarAction } from '@1money/component-ui';",
270
+ "examples": [
271
+ {
272
+ "hash": "10061dfa2d1ed5326ad65d1f571ed69402288b9a4d4071e7f77cf0917c2ad4e2",
273
+ "source": "canonical"
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "name": "ActionBarFootnote",
279
+ "kind": "type",
280
+ "category": "misc",
281
+ "summary": "Optional centered footnote row under the actions, e.g.",
282
+ "importPath": "@1money/component-ui",
283
+ "subpathImport": "@1money/component-ui/ActionBar",
284
+ "sourceFile": "src/components/ActionBar/interface.ts",
285
+ "props": [],
286
+ "extends": [],
287
+ "relatedSymbols": [
288
+ "ActionBar",
289
+ "ActionBarAction",
290
+ "ActionBarLayout",
291
+ "ActionBarProps"
292
+ ],
293
+ "searchTags": [],
294
+ "typeText": "interface ActionBarFootnote { ... }",
295
+ "canonicalUsage": "import type { ActionBarFootnote } from '@1money/component-ui';",
296
+ "examples": [
297
+ {
298
+ "hash": "3e1b837d009985dfb4fd3b8dc6bbd0d622f81da97c84449ef030d92f26093f19",
299
+ "source": "canonical"
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "name": "ActionBarLayout",
305
+ "kind": "type",
306
+ "category": "misc",
307
+ "summary": "",
308
+ "importPath": "@1money/component-ui",
309
+ "subpathImport": "@1money/component-ui/ActionBar",
310
+ "sourceFile": "src/components/ActionBar/constants.ts",
311
+ "props": [],
312
+ "extends": [],
313
+ "relatedSymbols": [
314
+ "ActionBar",
315
+ "ActionBarAction",
316
+ "ActionBarFootnote",
317
+ "ActionBarProps"
318
+ ],
319
+ "searchTags": [],
320
+ "typeText": "(typeof ACTION_BAR_LAYOUTS)[number]",
321
+ "canonicalUsage": "import type { ActionBarLayout } from '@1money/component-ui';",
322
+ "examples": [
323
+ {
324
+ "hash": "0c768b646aa684f0a011c4dba8b0355e58c2546fd5d132e1b992122d9455232c",
325
+ "source": "canonical"
326
+ }
327
+ ]
328
+ },
329
+ {
330
+ "name": "ActionBarProps",
331
+ "kind": "type",
332
+ "category": "misc",
333
+ "summary": "",
334
+ "importPath": "@1money/component-ui",
335
+ "subpathImport": "@1money/component-ui/ActionBar",
336
+ "sourceFile": "src/components/ActionBar/interface.ts",
337
+ "props": [],
338
+ "extends": [],
339
+ "relatedSymbols": [
340
+ "ActionBar",
341
+ "ActionBarAction",
342
+ "ActionBarFootnote",
343
+ "ActionBarLayout"
344
+ ],
345
+ "searchTags": [],
346
+ "typeText": "interface ActionBarProps { ... }",
347
+ "canonicalUsage": "import type { ActionBarProps } from '@1money/component-ui';",
348
+ "examples": [
349
+ {
350
+ "hash": "e466b68f0a986ec676c0e149f8cb4ee4e6bdbc23ec752b00fbdf6be1c7df6d5f",
351
+ "source": "canonical"
352
+ }
353
+ ]
354
+ },
153
355
  {
154
356
  "name": "Alert",
155
357
  "kind": "component",
@@ -2002,7 +2204,6 @@
2002
2204
  "DrawerFormProps",
2003
2205
  "FormCoreInstance",
2004
2206
  "FormInstance",
2005
- "FormLayout",
2006
2207
  "FormListContextValue",
2007
2208
  "FormSize",
2008
2209
  "LabelAlign",
@@ -2029,6 +2230,7 @@
2029
2230
  "ProFormItem",
2030
2231
  "ProFormItemProps",
2031
2232
  "ProFormItemSharedProps",
2233
+ "ProFormLayout",
2032
2234
  "ProFormLayoutConfig",
2033
2235
  "ProFormList",
2034
2236
  "ProFormListAction",
@@ -2116,7 +2318,7 @@
2116
2318
  "type": "boolean",
2117
2319
  "optional": true,
2118
2320
  "default": null,
2119
- "description": "",
2321
+ "description": "false blocks BOTH backdrop clicks and the Escape key (no accidental dismissal).",
2120
2322
  "inheritedFrom": null
2121
2323
  },
2122
2324
  {
@@ -2151,6 +2353,14 @@
2151
2353
  "description": "",
2152
2354
  "inheritedFrom": null
2153
2355
  },
2356
+ {
2357
+ "name": "bare",
2358
+ "type": "boolean",
2359
+ "optional": true,
2360
+ "default": null,
2361
+ "description": "Bare panel mode: keep the overlay machinery (portal, mask, Esc, close / back controls, viewport max-height, width presets) but render NO panel chrome and NO header/body/footer slots — children fill the panel directly.",
2362
+ "inheritedFrom": null
2363
+ },
2154
2364
  {
2155
2365
  "name": "width",
2156
2366
  "type": "number | string",
@@ -2263,6 +2473,14 @@
2263
2473
  "description": "",
2264
2474
  "inheritedFrom": null
2265
2475
  },
2476
+ {
2477
+ "name": "rootClassName",
2478
+ "type": "string",
2479
+ "optional": true,
2480
+ "default": null,
2481
+ "description": "Class for the outermost root (overlay + wrapper) — e.g.",
2482
+ "inheritedFrom": null
2483
+ },
2266
2484
  {
2267
2485
  "name": "wrapperStyle",
2268
2486
  "type": "CSSProperties",
@@ -2477,7 +2695,6 @@
2477
2695
  "DrawerFormProps",
2478
2696
  "FormCoreInstance",
2479
2697
  "FormInstance",
2480
- "FormLayout",
2481
2698
  "FormListContextValue",
2482
2699
  "FormSize",
2483
2700
  "LabelAlign",
@@ -2504,6 +2721,7 @@
2504
2721
  "ProFormItem",
2505
2722
  "ProFormItemProps",
2506
2723
  "ProFormItemSharedProps",
2724
+ "ProFormLayout",
2507
2725
  "ProFormLayoutConfig",
2508
2726
  "ProFormList",
2509
2727
  "ProFormListAction",
@@ -2569,7 +2787,6 @@
2569
2787
  "DrawerFormProps",
2570
2788
  "FormCoreInstance",
2571
2789
  "FormInstance",
2572
- "FormLayout",
2573
2790
  "FormListContextValue",
2574
2791
  "FormSize",
2575
2792
  "LabelAlign",
@@ -2596,6 +2813,7 @@
2596
2813
  "ProFormItem",
2597
2814
  "ProFormItemProps",
2598
2815
  "ProFormItemSharedProps",
2816
+ "ProFormLayout",
2599
2817
  "ProFormLayoutConfig",
2600
2818
  "ProFormList",
2601
2819
  "ProFormListAction",
@@ -3246,7 +3464,6 @@
3246
3464
  "DrawerFormProps",
3247
3465
  "FormCoreInstance",
3248
3466
  "FormInstance",
3249
- "FormLayout",
3250
3467
  "FormListContextValue",
3251
3468
  "FormSize",
3252
3469
  "LabelAlign",
@@ -3273,6 +3490,7 @@
3273
3490
  "ProFormItem",
3274
3491
  "ProFormItemProps",
3275
3492
  "ProFormItemSharedProps",
3493
+ "ProFormLayout",
3276
3494
  "ProFormLayoutConfig",
3277
3495
  "ProFormList",
3278
3496
  "ProFormListAction",
@@ -3338,7 +3556,6 @@
3338
3556
  "DrawerForm",
3339
3557
  "FormCoreInstance",
3340
3558
  "FormInstance",
3341
- "FormLayout",
3342
3559
  "FormListContextValue",
3343
3560
  "FormSize",
3344
3561
  "LabelAlign",
@@ -3365,6 +3582,7 @@
3365
3582
  "ProFormItem",
3366
3583
  "ProFormItemProps",
3367
3584
  "ProFormItemSharedProps",
3585
+ "ProFormLayout",
3368
3586
  "ProFormLayoutConfig",
3369
3587
  "ProFormList",
3370
3588
  "ProFormListAction",
@@ -3792,6 +4010,35 @@
3792
4010
  }
3793
4011
  ]
3794
4012
  },
4013
+ {
4014
+ "name": "FORM_LAYOUT_CONFIG",
4015
+ "kind": "component",
4016
+ "category": "misc",
4017
+ "summary": "THE density table for form surfaces — the single thing to edit when the design changes or a new density is added.",
4018
+ "importPath": "@1money/component-ui",
4019
+ "subpathImport": "@1money/component-ui/FormLayout",
4020
+ "sourceFile": "src/components/FormLayout/config.ts",
4021
+ "props": [],
4022
+ "extends": [],
4023
+ "relatedSymbols": [
4024
+ "FormCell",
4025
+ "FormCellProps",
4026
+ "FormLayout",
4027
+ "FormLayoutProps",
4028
+ "FormLayoutSize",
4029
+ "FormLayoutVariant",
4030
+ "FormRow",
4031
+ "FormRowProps"
4032
+ ],
4033
+ "searchTags": [],
4034
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4035
+ "examples": [
4036
+ {
4037
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4038
+ "source": "canonical"
4039
+ }
4040
+ ]
4041
+ },
3795
4042
  {
3796
4043
  "name": "Filter",
3797
4044
  "kind": "function",
@@ -3992,6 +4239,65 @@
3992
4239
  }
3993
4240
  ]
3994
4241
  },
4242
+ {
4243
+ "name": "FormCell",
4244
+ "kind": "component",
4245
+ "category": "misc",
4246
+ "summary": "One cell of a FormRow; cells split the row evenly and clip long content.",
4247
+ "importPath": "@1money/component-ui",
4248
+ "subpathImport": "@1money/component-ui/FormLayout",
4249
+ "sourceFile": "src/components/FormLayout/FormLayout.tsx",
4250
+ "props": [],
4251
+ "extends": [],
4252
+ "relatedSymbols": [
4253
+ "FORM_LAYOUT_CONFIG",
4254
+ "FormCellProps",
4255
+ "FormLayout",
4256
+ "FormLayoutProps",
4257
+ "FormLayoutSize",
4258
+ "FormLayoutVariant",
4259
+ "FormRow",
4260
+ "FormRowProps"
4261
+ ],
4262
+ "searchTags": [],
4263
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4264
+ "examples": [
4265
+ {
4266
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4267
+ "source": "canonical"
4268
+ }
4269
+ ]
4270
+ },
4271
+ {
4272
+ "name": "FormCellProps",
4273
+ "kind": "type",
4274
+ "category": "misc",
4275
+ "summary": "",
4276
+ "importPath": "@1money/component-ui",
4277
+ "subpathImport": "@1money/component-ui/FormLayout",
4278
+ "sourceFile": "src/components/FormLayout/FormLayout.tsx",
4279
+ "props": [],
4280
+ "extends": [],
4281
+ "relatedSymbols": [
4282
+ "FORM_LAYOUT_CONFIG",
4283
+ "FormCell",
4284
+ "FormLayout",
4285
+ "FormLayoutProps",
4286
+ "FormLayoutSize",
4287
+ "FormLayoutVariant",
4288
+ "FormRow",
4289
+ "FormRowProps"
4290
+ ],
4291
+ "searchTags": [],
4292
+ "typeText": "FormRowProps",
4293
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4294
+ "examples": [
4295
+ {
4296
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4297
+ "source": "canonical"
4298
+ }
4299
+ ]
4300
+ },
3995
4301
  {
3996
4302
  "name": "FormCoreInstance",
3997
4303
  "kind": "type",
@@ -4009,7 +4315,6 @@
4009
4315
  "DrawerForm",
4010
4316
  "DrawerFormProps",
4011
4317
  "FormInstance",
4012
- "FormLayout",
4013
4318
  "FormListContextValue",
4014
4319
  "FormSize",
4015
4320
  "LabelAlign",
@@ -4036,6 +4341,7 @@
4036
4341
  "ProFormItem",
4037
4342
  "ProFormItemProps",
4038
4343
  "ProFormItemSharedProps",
4344
+ "ProFormLayout",
4039
4345
  "ProFormLayoutConfig",
4040
4346
  "ProFormList",
4041
4347
  "ProFormListAction",
@@ -4102,7 +4408,6 @@
4102
4408
  "DrawerForm",
4103
4409
  "DrawerFormProps",
4104
4410
  "FormCoreInstance",
4105
- "FormLayout",
4106
4411
  "FormListContextValue",
4107
4412
  "FormSize",
4108
4413
  "LabelAlign",
@@ -4129,6 +4434,7 @@
4129
4434
  "ProFormItem",
4130
4435
  "ProFormItemProps",
4131
4436
  "ProFormItemSharedProps",
4437
+ "ProFormLayout",
4132
4438
  "ProFormLayoutConfig",
4133
4439
  "ProFormList",
4134
4440
  "ProFormListAction",
@@ -4179,13 +4485,239 @@
4179
4485
  ]
4180
4486
  },
4181
4487
  {
4182
- "name": "FormLayout",
4488
+ "name": "FormLayout",
4489
+ "kind": "component",
4490
+ "category": "misc",
4491
+ "summary": "Form-only surface layout: panel chrome (white surface, hairline border, radius) + three regions (header with title/extra, fields content, footer) with variant-driven density.",
4492
+ "importPath": "@1money/component-ui",
4493
+ "subpathImport": "@1money/component-ui/FormLayout",
4494
+ "sourceFile": "src/components/FormLayout/FormLayout.tsx",
4495
+ "props": [
4496
+ {
4497
+ "name": "variant",
4498
+ "type": "FormLayoutVariant",
4499
+ "optional": true,
4500
+ "default": null,
4501
+ "description": "Density + scroll-policy variant.",
4502
+ "inheritedFrom": null
4503
+ },
4504
+ {
4505
+ "name": "size",
4506
+ "type": "FormLayoutSize",
4507
+ "optional": true,
4508
+ "default": null,
4509
+ "description": "Panel size within the variant.",
4510
+ "inheritedFrom": null
4511
+ },
4512
+ {
4513
+ "name": "scroll",
4514
+ "type": "boolean",
4515
+ "optional": true,
4516
+ "default": null,
4517
+ "description": "Override the variant's scroll policy (modal → `true`, page → `false`).",
4518
+ "inheritedFrom": null
4519
+ },
4520
+ {
4521
+ "name": "title",
4522
+ "type": "ReactNode",
4523
+ "optional": true,
4524
+ "default": null,
4525
+ "description": "Heading; a plain string renders as Headline/md (24px).",
4526
+ "inheritedFrom": null
4527
+ },
4528
+ {
4529
+ "name": "extra",
4530
+ "type": "ReactNode",
4531
+ "optional": true,
4532
+ "default": null,
4533
+ "description": "Trailing slot on the title row (e.g.",
4534
+ "inheritedFrom": null
4535
+ },
4536
+ {
4537
+ "name": "children",
4538
+ "type": "ReactNode",
4539
+ "optional": true,
4540
+ "default": null,
4541
+ "description": "Fields region content.",
4542
+ "inheritedFrom": null
4543
+ },
4544
+ {
4545
+ "name": "footer",
4546
+ "type": "ReactNode",
4547
+ "optional": true,
4548
+ "default": null,
4549
+ "description": "Footer region, typically the action buttons.",
4550
+ "inheritedFrom": null
4551
+ },
4552
+ {
4553
+ "name": "width",
4554
+ "type": "number | string",
4555
+ "optional": true,
4556
+ "default": null,
4557
+ "description": "Panel width (number → px).",
4558
+ "inheritedFrom": null
4559
+ },
4560
+ {
4561
+ "name": "maxHeight",
4562
+ "type": "number | string",
4563
+ "optional": true,
4564
+ "default": null,
4565
+ "description": "Explicit height cap (number → px) for standalone usage.",
4566
+ "inheritedFrom": null
4567
+ },
4568
+ {
4569
+ "name": "prefixCls",
4570
+ "type": "string",
4571
+ "optional": true,
4572
+ "default": null,
4573
+ "description": "CSS class prefix.",
4574
+ "inheritedFrom": null
4575
+ }
4576
+ ],
4577
+ "extends": [
4578
+ "Omit<HTMLAttributes<HTMLDivElement>, 'title'>"
4579
+ ],
4580
+ "relatedSymbols": [
4581
+ "FORM_LAYOUT_CONFIG",
4582
+ "FormCell",
4583
+ "FormCellProps",
4584
+ "FormLayoutProps",
4585
+ "FormLayoutSize",
4586
+ "FormLayoutVariant",
4587
+ "FormRow",
4588
+ "FormRowProps"
4589
+ ],
4590
+ "searchTags": [],
4591
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4592
+ "examples": [
4593
+ {
4594
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4595
+ "source": "canonical"
4596
+ },
4597
+ {
4598
+ "hash": "23e9718c7f439230fb4d6d0f21b01fe15e6475ace8578e08b3963545b687aacb",
4599
+ "source": "readme"
4600
+ },
4601
+ {
4602
+ "hash": "878fbef26e770a8edb30d246935990aaaae4a13cf626becca5de61f91781b8c5",
4603
+ "source": "readme"
4604
+ },
4605
+ {
4606
+ "hash": "7b9df7846bbfff4e15c8e946f02854ec4960729387cb7ee109332f859d9c95eb",
4607
+ "source": "stories"
4608
+ },
4609
+ {
4610
+ "hash": "a1a0aed42f051433d5dc32d95c08519e920a1163cfa9588524779cca2abd2f79",
4611
+ "source": "stories"
4612
+ },
4613
+ {
4614
+ "hash": "60779b1ebe0f82d9c815b7207aaba4ef0c2ab59d6fbd1fd7f46aef140023b9bb",
4615
+ "source": "stories"
4616
+ },
4617
+ {
4618
+ "hash": "664eb21364ecb7a22033800098dba9c5ed74a60ee1ecfeaa10694056d53e61ba",
4619
+ "source": "stories"
4620
+ }
4621
+ ]
4622
+ },
4623
+ {
4624
+ "name": "FormLayoutProps",
4625
+ "kind": "type",
4626
+ "category": "misc",
4627
+ "summary": "Form-only surface layout: panel chrome (white surface, hairline border, radius) + three regions (header with title/extra, fields content, footer) with variant-driven density.",
4628
+ "importPath": "@1money/component-ui",
4629
+ "subpathImport": "@1money/component-ui/FormLayout",
4630
+ "sourceFile": "src/components/FormLayout/interface.ts",
4631
+ "props": [],
4632
+ "extends": [],
4633
+ "relatedSymbols": [
4634
+ "FORM_LAYOUT_CONFIG",
4635
+ "FormCell",
4636
+ "FormCellProps",
4637
+ "FormLayout",
4638
+ "FormLayoutSize",
4639
+ "FormLayoutVariant",
4640
+ "FormRow",
4641
+ "FormRowProps"
4642
+ ],
4643
+ "searchTags": [],
4644
+ "typeText": "interface FormLayoutProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> { ... }",
4645
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4646
+ "examples": [
4647
+ {
4648
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4649
+ "source": "canonical"
4650
+ }
4651
+ ]
4652
+ },
4653
+ {
4654
+ "name": "FormLayoutSize",
4655
+ "kind": "type",
4656
+ "category": "misc",
4657
+ "summary": "",
4658
+ "importPath": "@1money/component-ui",
4659
+ "subpathImport": "@1money/component-ui/FormLayout",
4660
+ "sourceFile": "src/components/FormLayout/config.ts",
4661
+ "props": [],
4662
+ "extends": [],
4663
+ "relatedSymbols": [
4664
+ "FORM_LAYOUT_CONFIG",
4665
+ "FormCell",
4666
+ "FormCellProps",
4667
+ "FormLayout",
4668
+ "FormLayoutProps",
4669
+ "FormLayoutVariant",
4670
+ "FormRow",
4671
+ "FormRowProps"
4672
+ ],
4673
+ "searchTags": [],
4674
+ "typeText": "(typeof FORM_LAYOUT_SIZES)[number]",
4675
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4676
+ "examples": [
4677
+ {
4678
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4679
+ "source": "canonical"
4680
+ }
4681
+ ]
4682
+ },
4683
+ {
4684
+ "name": "FormLayoutVariant",
4685
+ "kind": "type",
4686
+ "category": "misc",
4687
+ "summary": "",
4688
+ "importPath": "@1money/component-ui",
4689
+ "subpathImport": "@1money/component-ui/FormLayout",
4690
+ "sourceFile": "src/components/FormLayout/config.ts",
4691
+ "props": [],
4692
+ "extends": [],
4693
+ "relatedSymbols": [
4694
+ "FORM_LAYOUT_CONFIG",
4695
+ "FormCell",
4696
+ "FormCellProps",
4697
+ "FormLayout",
4698
+ "FormLayoutProps",
4699
+ "FormLayoutSize",
4700
+ "FormRow",
4701
+ "FormRowProps"
4702
+ ],
4703
+ "searchTags": [],
4704
+ "typeText": "keyof typeof FORM_LAYOUT_CONFIG",
4705
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4706
+ "examples": [
4707
+ {
4708
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4709
+ "source": "canonical"
4710
+ }
4711
+ ]
4712
+ },
4713
+ {
4714
+ "name": "FormListContextValue",
4183
4715
  "kind": "type",
4184
4716
  "category": "forms",
4185
4717
  "summary": "",
4186
4718
  "importPath": "@1money/component-ui",
4187
4719
  "subpathImport": "@1money/component-ui/ProForm",
4188
- "sourceFile": "src/components/ProForm/core/constants.ts",
4720
+ "sourceFile": "src/components/ProForm/interface.ts",
4189
4721
  "props": [],
4190
4722
  "extends": [],
4191
4723
  "relatedSymbols": [
@@ -4196,7 +4728,6 @@
4196
4728
  "DrawerFormProps",
4197
4729
  "FormCoreInstance",
4198
4730
  "FormInstance",
4199
- "FormListContextValue",
4200
4731
  "FormSize",
4201
4732
  "LabelAlign",
4202
4733
  "ProForm",
@@ -4222,6 +4753,7 @@
4222
4753
  "ProFormItem",
4223
4754
  "ProFormItemProps",
4224
4755
  "ProFormItemSharedProps",
4756
+ "ProFormLayout",
4225
4757
  "ProFormLayoutConfig",
4226
4758
  "ProFormList",
4227
4759
  "ProFormListAction",
@@ -4262,7 +4794,7 @@
4262
4794
  "useFormWatch"
4263
4795
  ],
4264
4796
  "searchTags": [],
4265
- "typeText": "(typeof FORM_LAYOUTS)[number]",
4797
+ "typeText": "interface FormListContextValue { ... }",
4266
4798
  "canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
4267
4799
  "examples": [
4268
4800
  {
@@ -4272,94 +4804,60 @@
4272
4804
  ]
4273
4805
  },
4274
4806
  {
4275
- "name": "FormListContextValue",
4807
+ "name": "FormRow",
4808
+ "kind": "component",
4809
+ "category": "misc",
4810
+ "summary": "One multi-column row inside the fields region.",
4811
+ "importPath": "@1money/component-ui",
4812
+ "subpathImport": "@1money/component-ui/FormLayout",
4813
+ "sourceFile": "src/components/FormLayout/FormLayout.tsx",
4814
+ "props": [],
4815
+ "extends": [],
4816
+ "relatedSymbols": [
4817
+ "FORM_LAYOUT_CONFIG",
4818
+ "FormCell",
4819
+ "FormCellProps",
4820
+ "FormLayout",
4821
+ "FormLayoutProps",
4822
+ "FormLayoutSize",
4823
+ "FormLayoutVariant",
4824
+ "FormRowProps"
4825
+ ],
4826
+ "searchTags": [],
4827
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4828
+ "examples": [
4829
+ {
4830
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4831
+ "source": "canonical"
4832
+ }
4833
+ ]
4834
+ },
4835
+ {
4836
+ "name": "FormRowProps",
4276
4837
  "kind": "type",
4277
- "category": "forms",
4838
+ "category": "misc",
4278
4839
  "summary": "",
4279
4840
  "importPath": "@1money/component-ui",
4280
- "subpathImport": "@1money/component-ui/ProForm",
4281
- "sourceFile": "src/components/ProForm/interface.ts",
4841
+ "subpathImport": "@1money/component-ui/FormLayout",
4842
+ "sourceFile": "src/components/FormLayout/FormLayout.tsx",
4282
4843
  "props": [],
4283
4844
  "extends": [],
4284
4845
  "relatedSymbols": [
4285
- "CreateProFormFieldConfig",
4286
- "DialogForm",
4287
- "DialogFormProps",
4288
- "DrawerForm",
4289
- "DrawerFormProps",
4290
- "FormCoreInstance",
4291
- "FormInstance",
4846
+ "FORM_LAYOUT_CONFIG",
4847
+ "FormCell",
4848
+ "FormCellProps",
4292
4849
  "FormLayout",
4293
- "FormSize",
4294
- "LabelAlign",
4295
- "ProForm",
4296
- "ProFormCheckbox",
4297
- "ProFormCheckboxGroup",
4298
- "ProFormColProps",
4299
- "ProFormContextValue",
4300
- "ProFormDateFormatter",
4301
- "ProFormDatePicker",
4302
- "ProFormDependency",
4303
- "ProFormDependencyProps",
4304
- "ProFormFieldConvertValueFn",
4305
- "ProFormFieldName",
4306
- "ProFormFieldOptionValue",
4307
- "ProFormFieldProps",
4308
- "ProFormFieldSet",
4309
- "ProFormFieldSetProps",
4310
- "ProFormFieldTransformFn",
4311
- "ProFormFieldValueMap",
4312
- "ProFormFormInstance",
4313
- "ProFormGroup",
4314
- "ProFormGroupProps",
4315
- "ProFormItem",
4316
- "ProFormItemProps",
4317
- "ProFormItemSharedProps",
4318
- "ProFormLayoutConfig",
4319
- "ProFormList",
4320
- "ProFormListAction",
4321
- "ProFormListProps",
4322
- "ProFormMode",
4323
- "ProFormPassword",
4324
- "ProFormPathValue",
4325
- "ProFormProps",
4326
- "ProFormRadioGroup",
4327
- "ProFormRecursivePartial",
4328
- "ProFormRequestOption",
4329
- "ProFormSchemaColumn",
4330
- "ProFormSchemaColumns",
4331
- "ProFormSchemaValueType",
4332
- "ProFormSelect",
4333
- "ProFormSlider",
4334
- "ProFormStableContextValue",
4335
- "ProFormStateContextValue",
4336
- "ProFormSwitch",
4337
- "ProFormSyncToUrl",
4338
- "ProFormText",
4339
- "ProFormTextArea",
4340
- "ProFormUpload",
4341
- "ProFormValidateResult",
4342
- "ProFormValueEnumObj",
4343
- "ProFormValueType",
4344
- "ProFormValuesPatch",
4345
- "QueryFilter",
4346
- "QueryFilterProps",
4347
- "Rule",
4348
- "SchemaForm",
4349
- "SchemaFormProps",
4350
- "SubmitterProps",
4351
- "UseFormWatch",
4352
- "ValidateStatus",
4353
- "ValidateTrigger",
4354
- "createProFormField",
4355
- "useFormWatch"
4850
+ "FormLayoutProps",
4851
+ "FormLayoutSize",
4852
+ "FormLayoutVariant",
4853
+ "FormRow"
4356
4854
  ],
4357
4855
  "searchTags": [],
4358
- "typeText": "interface FormListContextValue { ... }",
4359
- "canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
4856
+ "typeText": "interface FormRowProps { ... }",
4857
+ "canonicalUsage": "import { FormLayout, FormRow, FormCell, FORM_LAYOUT_CONFIG } from '@1money/component-ui';\n// or\nimport { FormLayout } from '@1money/component-ui/FormLayout';",
4360
4858
  "examples": [
4361
4859
  {
4362
- "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
4860
+ "hash": "31c2639a02e8c20c9400945d8718612f560d5f9873104343a1f1720e11ea763d",
4363
4861
  "source": "canonical"
4364
4862
  }
4365
4863
  ]
@@ -4382,7 +4880,6 @@
4382
4880
  "DrawerFormProps",
4383
4881
  "FormCoreInstance",
4384
4882
  "FormInstance",
4385
- "FormLayout",
4386
4883
  "FormListContextValue",
4387
4884
  "LabelAlign",
4388
4885
  "ProForm",
@@ -4408,6 +4905,7 @@
4408
4905
  "ProFormItem",
4409
4906
  "ProFormItemProps",
4410
4907
  "ProFormItemSharedProps",
4908
+ "ProFormLayout",
4411
4909
  "ProFormLayoutConfig",
4412
4910
  "ProFormList",
4413
4911
  "ProFormListAction",
@@ -5529,7 +6027,6 @@
5529
6027
  "DrawerFormProps",
5530
6028
  "FormCoreInstance",
5531
6029
  "FormInstance",
5532
- "FormLayout",
5533
6030
  "FormListContextValue",
5534
6031
  "FormSize",
5535
6032
  "ProForm",
@@ -5555,6 +6052,7 @@
5555
6052
  "ProFormItem",
5556
6053
  "ProFormItemProps",
5557
6054
  "ProFormItemSharedProps",
6055
+ "ProFormLayout",
5558
6056
  "ProFormLayoutConfig",
5559
6057
  "ProFormList",
5560
6058
  "ProFormListAction",
@@ -7571,7 +8069,6 @@
7571
8069
  "DrawerFormProps",
7572
8070
  "FormCoreInstance",
7573
8071
  "FormInstance",
7574
- "FormLayout",
7575
8072
  "FormListContextValue",
7576
8073
  "FormSize",
7577
8074
  "LabelAlign",
@@ -7597,6 +8094,7 @@
7597
8094
  "ProFormItem",
7598
8095
  "ProFormItemProps",
7599
8096
  "ProFormItemSharedProps",
8097
+ "ProFormLayout",
7600
8098
  "ProFormLayoutConfig",
7601
8099
  "ProFormList",
7602
8100
  "ProFormListAction",
@@ -7957,7 +8455,6 @@
7957
8455
  "DrawerFormProps",
7958
8456
  "FormCoreInstance",
7959
8457
  "FormInstance",
7960
- "FormLayout",
7961
8458
  "FormListContextValue",
7962
8459
  "FormSize",
7963
8460
  "LabelAlign",
@@ -7983,6 +8480,7 @@
7983
8480
  "ProFormItem",
7984
8481
  "ProFormItemProps",
7985
8482
  "ProFormItemSharedProps",
8483
+ "ProFormLayout",
7986
8484
  "ProFormLayoutConfig",
7987
8485
  "ProFormList",
7988
8486
  "ProFormListAction",
@@ -8049,7 +8547,6 @@
8049
8547
  "DrawerFormProps",
8050
8548
  "FormCoreInstance",
8051
8549
  "FormInstance",
8052
- "FormLayout",
8053
8550
  "FormListContextValue",
8054
8551
  "FormSize",
8055
8552
  "LabelAlign",
@@ -8075,6 +8572,7 @@
8075
8572
  "ProFormItem",
8076
8573
  "ProFormItemProps",
8077
8574
  "ProFormItemSharedProps",
8575
+ "ProFormLayout",
8078
8576
  "ProFormLayoutConfig",
8079
8577
  "ProFormList",
8080
8578
  "ProFormListAction",
@@ -8141,7 +8639,6 @@
8141
8639
  "DrawerFormProps",
8142
8640
  "FormCoreInstance",
8143
8641
  "FormInstance",
8144
- "FormLayout",
8145
8642
  "FormListContextValue",
8146
8643
  "FormSize",
8147
8644
  "LabelAlign",
@@ -8167,6 +8664,7 @@
8167
8664
  "ProFormItem",
8168
8665
  "ProFormItemProps",
8169
8666
  "ProFormItemSharedProps",
8667
+ "ProFormLayout",
8170
8668
  "ProFormLayoutConfig",
8171
8669
  "ProFormList",
8172
8670
  "ProFormListAction",
@@ -8234,7 +8732,6 @@
8234
8732
  "DrawerFormProps",
8235
8733
  "FormCoreInstance",
8236
8734
  "FormInstance",
8237
- "FormLayout",
8238
8735
  "FormListContextValue",
8239
8736
  "FormSize",
8240
8737
  "LabelAlign",
@@ -8260,6 +8757,7 @@
8260
8757
  "ProFormItem",
8261
8758
  "ProFormItemProps",
8262
8759
  "ProFormItemSharedProps",
8760
+ "ProFormLayout",
8263
8761
  "ProFormLayoutConfig",
8264
8762
  "ProFormList",
8265
8763
  "ProFormListAction",
@@ -8327,7 +8825,6 @@
8327
8825
  "DrawerFormProps",
8328
8826
  "FormCoreInstance",
8329
8827
  "FormInstance",
8330
- "FormLayout",
8331
8828
  "FormListContextValue",
8332
8829
  "FormSize",
8333
8830
  "LabelAlign",
@@ -8353,6 +8850,7 @@
8353
8850
  "ProFormItem",
8354
8851
  "ProFormItemProps",
8355
8852
  "ProFormItemSharedProps",
8853
+ "ProFormLayout",
8356
8854
  "ProFormLayoutConfig",
8357
8855
  "ProFormList",
8358
8856
  "ProFormListAction",
@@ -8420,7 +8918,6 @@
8420
8918
  "DrawerFormProps",
8421
8919
  "FormCoreInstance",
8422
8920
  "FormInstance",
8423
- "FormLayout",
8424
8921
  "FormListContextValue",
8425
8922
  "FormSize",
8426
8923
  "LabelAlign",
@@ -8446,6 +8943,7 @@
8446
8943
  "ProFormItem",
8447
8944
  "ProFormItemProps",
8448
8945
  "ProFormItemSharedProps",
8946
+ "ProFormLayout",
8449
8947
  "ProFormLayoutConfig",
8450
8948
  "ProFormList",
8451
8949
  "ProFormListAction",
@@ -8532,7 +9030,6 @@
8532
9030
  "DrawerFormProps",
8533
9031
  "FormCoreInstance",
8534
9032
  "FormInstance",
8535
- "FormLayout",
8536
9033
  "FormListContextValue",
8537
9034
  "FormSize",
8538
9035
  "LabelAlign",
@@ -8558,6 +9055,7 @@
8558
9055
  "ProFormItem",
8559
9056
  "ProFormItemProps",
8560
9057
  "ProFormItemSharedProps",
9058
+ "ProFormLayout",
8561
9059
  "ProFormLayoutConfig",
8562
9060
  "ProFormList",
8563
9061
  "ProFormListAction",
@@ -8624,7 +9122,6 @@
8624
9122
  "DrawerFormProps",
8625
9123
  "FormCoreInstance",
8626
9124
  "FormInstance",
8627
- "FormLayout",
8628
9125
  "FormListContextValue",
8629
9126
  "FormSize",
8630
9127
  "LabelAlign",
@@ -8650,6 +9147,7 @@
8650
9147
  "ProFormItem",
8651
9148
  "ProFormItemProps",
8652
9149
  "ProFormItemSharedProps",
9150
+ "ProFormLayout",
8653
9151
  "ProFormLayoutConfig",
8654
9152
  "ProFormList",
8655
9153
  "ProFormListAction",
@@ -8717,7 +9215,6 @@
8717
9215
  "DrawerFormProps",
8718
9216
  "FormCoreInstance",
8719
9217
  "FormInstance",
8720
- "FormLayout",
8721
9218
  "FormListContextValue",
8722
9219
  "FormSize",
8723
9220
  "LabelAlign",
@@ -8743,6 +9240,7 @@
8743
9240
  "ProFormItem",
8744
9241
  "ProFormItemProps",
8745
9242
  "ProFormItemSharedProps",
9243
+ "ProFormLayout",
8746
9244
  "ProFormLayoutConfig",
8747
9245
  "ProFormList",
8748
9246
  "ProFormListAction",
@@ -8810,7 +9308,6 @@
8810
9308
  "DrawerFormProps",
8811
9309
  "FormCoreInstance",
8812
9310
  "FormInstance",
8813
- "FormLayout",
8814
9311
  "FormListContextValue",
8815
9312
  "FormSize",
8816
9313
  "LabelAlign",
@@ -8836,6 +9333,7 @@
8836
9333
  "ProFormItem",
8837
9334
  "ProFormItemProps",
8838
9335
  "ProFormItemSharedProps",
9336
+ "ProFormLayout",
8839
9337
  "ProFormLayoutConfig",
8840
9338
  "ProFormList",
8841
9339
  "ProFormListAction",
@@ -8903,7 +9401,6 @@
8903
9401
  "DrawerFormProps",
8904
9402
  "FormCoreInstance",
8905
9403
  "FormInstance",
8906
- "FormLayout",
8907
9404
  "FormListContextValue",
8908
9405
  "FormSize",
8909
9406
  "LabelAlign",
@@ -8929,6 +9426,7 @@
8929
9426
  "ProFormItem",
8930
9427
  "ProFormItemProps",
8931
9428
  "ProFormItemSharedProps",
9429
+ "ProFormLayout",
8932
9430
  "ProFormLayoutConfig",
8933
9431
  "ProFormList",
8934
9432
  "ProFormListAction",
@@ -8996,7 +9494,6 @@
8996
9494
  "DrawerFormProps",
8997
9495
  "FormCoreInstance",
8998
9496
  "FormInstance",
8999
- "FormLayout",
9000
9497
  "FormListContextValue",
9001
9498
  "FormSize",
9002
9499
  "LabelAlign",
@@ -9022,6 +9519,7 @@
9022
9519
  "ProFormItem",
9023
9520
  "ProFormItemProps",
9024
9521
  "ProFormItemSharedProps",
9522
+ "ProFormLayout",
9025
9523
  "ProFormLayoutConfig",
9026
9524
  "ProFormList",
9027
9525
  "ProFormListAction",
@@ -9154,7 +9652,6 @@
9154
9652
  "DrawerFormProps",
9155
9653
  "FormCoreInstance",
9156
9654
  "FormInstance",
9157
- "FormLayout",
9158
9655
  "FormListContextValue",
9159
9656
  "FormSize",
9160
9657
  "LabelAlign",
@@ -9180,6 +9677,7 @@
9180
9677
  "ProFormItem",
9181
9678
  "ProFormItemProps",
9182
9679
  "ProFormItemSharedProps",
9680
+ "ProFormLayout",
9183
9681
  "ProFormLayoutConfig",
9184
9682
  "ProFormList",
9185
9683
  "ProFormListAction",
@@ -9246,7 +9744,6 @@
9246
9744
  "DrawerFormProps",
9247
9745
  "FormCoreInstance",
9248
9746
  "FormInstance",
9249
- "FormLayout",
9250
9747
  "FormListContextValue",
9251
9748
  "FormSize",
9252
9749
  "LabelAlign",
@@ -9272,6 +9769,7 @@
9272
9769
  "ProFormItem",
9273
9770
  "ProFormItemProps",
9274
9771
  "ProFormItemSharedProps",
9772
+ "ProFormLayout",
9275
9773
  "ProFormLayoutConfig",
9276
9774
  "ProFormList",
9277
9775
  "ProFormListAction",
@@ -9339,7 +9837,6 @@
9339
9837
  "DrawerFormProps",
9340
9838
  "FormCoreInstance",
9341
9839
  "FormInstance",
9342
- "FormLayout",
9343
9840
  "FormListContextValue",
9344
9841
  "FormSize",
9345
9842
  "LabelAlign",
@@ -9365,6 +9862,7 @@
9365
9862
  "ProFormItem",
9366
9863
  "ProFormItemProps",
9367
9864
  "ProFormItemSharedProps",
9865
+ "ProFormLayout",
9368
9866
  "ProFormLayoutConfig",
9369
9867
  "ProFormList",
9370
9868
  "ProFormListAction",
@@ -9432,7 +9930,6 @@
9432
9930
  "DrawerFormProps",
9433
9931
  "FormCoreInstance",
9434
9932
  "FormInstance",
9435
- "FormLayout",
9436
9933
  "FormListContextValue",
9437
9934
  "FormSize",
9438
9935
  "LabelAlign",
@@ -9458,6 +9955,7 @@
9458
9955
  "ProFormItem",
9459
9956
  "ProFormItemProps",
9460
9957
  "ProFormItemSharedProps",
9958
+ "ProFormLayout",
9461
9959
  "ProFormLayoutConfig",
9462
9960
  "ProFormList",
9463
9961
  "ProFormListAction",
@@ -9525,7 +10023,6 @@
9525
10023
  "DrawerFormProps",
9526
10024
  "FormCoreInstance",
9527
10025
  "FormInstance",
9528
- "FormLayout",
9529
10026
  "FormListContextValue",
9530
10027
  "FormSize",
9531
10028
  "LabelAlign",
@@ -9551,6 +10048,7 @@
9551
10048
  "ProFormItem",
9552
10049
  "ProFormItemProps",
9553
10050
  "ProFormItemSharedProps",
10051
+ "ProFormLayout",
9554
10052
  "ProFormLayoutConfig",
9555
10053
  "ProFormList",
9556
10054
  "ProFormListAction",
@@ -9683,7 +10181,6 @@
9683
10181
  "DrawerFormProps",
9684
10182
  "FormCoreInstance",
9685
10183
  "FormInstance",
9686
- "FormLayout",
9687
10184
  "FormListContextValue",
9688
10185
  "FormSize",
9689
10186
  "LabelAlign",
@@ -9709,6 +10206,7 @@
9709
10206
  "ProFormItem",
9710
10207
  "ProFormItemProps",
9711
10208
  "ProFormItemSharedProps",
10209
+ "ProFormLayout",
9712
10210
  "ProFormLayoutConfig",
9713
10211
  "ProFormList",
9714
10212
  "ProFormListAction",
@@ -9775,7 +10273,6 @@
9775
10273
  "DrawerFormProps",
9776
10274
  "FormCoreInstance",
9777
10275
  "FormInstance",
9778
- "FormLayout",
9779
10276
  "FormListContextValue",
9780
10277
  "FormSize",
9781
10278
  "LabelAlign",
@@ -9801,6 +10298,7 @@
9801
10298
  "ProFormItem",
9802
10299
  "ProFormItemProps",
9803
10300
  "ProFormItemSharedProps",
10301
+ "ProFormLayout",
9804
10302
  "ProFormLayoutConfig",
9805
10303
  "ProFormList",
9806
10304
  "ProFormListAction",
@@ -10045,7 +10543,6 @@
10045
10543
  "DrawerFormProps",
10046
10544
  "FormCoreInstance",
10047
10545
  "FormInstance",
10048
- "FormLayout",
10049
10546
  "FormListContextValue",
10050
10547
  "FormSize",
10051
10548
  "LabelAlign",
@@ -10071,6 +10568,7 @@
10071
10568
  "ProFormGroupProps",
10072
10569
  "ProFormItemProps",
10073
10570
  "ProFormItemSharedProps",
10571
+ "ProFormLayout",
10074
10572
  "ProFormLayoutConfig",
10075
10573
  "ProFormList",
10076
10574
  "ProFormListAction",
@@ -10137,7 +10635,6 @@
10137
10635
  "DrawerFormProps",
10138
10636
  "FormCoreInstance",
10139
10637
  "FormInstance",
10140
- "FormLayout",
10141
10638
  "FormListContextValue",
10142
10639
  "FormSize",
10143
10640
  "LabelAlign",
@@ -10163,6 +10660,7 @@
10163
10660
  "ProFormGroupProps",
10164
10661
  "ProFormItem",
10165
10662
  "ProFormItemSharedProps",
10663
+ "ProFormLayout",
10166
10664
  "ProFormLayoutConfig",
10167
10665
  "ProFormList",
10168
10666
  "ProFormListAction",
@@ -10230,7 +10728,6 @@
10230
10728
  "DrawerFormProps",
10231
10729
  "FormCoreInstance",
10232
10730
  "FormInstance",
10233
- "FormLayout",
10234
10731
  "FormListContextValue",
10235
10732
  "FormSize",
10236
10733
  "LabelAlign",
@@ -10256,6 +10753,7 @@
10256
10753
  "ProFormGroupProps",
10257
10754
  "ProFormItem",
10258
10755
  "ProFormItemProps",
10756
+ "ProFormLayout",
10259
10757
  "ProFormLayoutConfig",
10260
10758
  "ProFormList",
10261
10759
  "ProFormListAction",
@@ -10305,6 +10803,99 @@
10305
10803
  }
10306
10804
  ]
10307
10805
  },
10806
+ {
10807
+ "name": "ProFormLayout",
10808
+ "kind": "type",
10809
+ "category": "forms",
10810
+ "summary": "",
10811
+ "importPath": "@1money/component-ui",
10812
+ "subpathImport": "@1money/component-ui/ProForm",
10813
+ "sourceFile": "src/components/ProForm/core/constants.ts",
10814
+ "props": [],
10815
+ "extends": [],
10816
+ "relatedSymbols": [
10817
+ "CreateProFormFieldConfig",
10818
+ "DialogForm",
10819
+ "DialogFormProps",
10820
+ "DrawerForm",
10821
+ "DrawerFormProps",
10822
+ "FormCoreInstance",
10823
+ "FormInstance",
10824
+ "FormListContextValue",
10825
+ "FormSize",
10826
+ "LabelAlign",
10827
+ "ProForm",
10828
+ "ProFormCheckbox",
10829
+ "ProFormCheckboxGroup",
10830
+ "ProFormColProps",
10831
+ "ProFormContextValue",
10832
+ "ProFormDateFormatter",
10833
+ "ProFormDatePicker",
10834
+ "ProFormDependency",
10835
+ "ProFormDependencyProps",
10836
+ "ProFormFieldConvertValueFn",
10837
+ "ProFormFieldName",
10838
+ "ProFormFieldOptionValue",
10839
+ "ProFormFieldProps",
10840
+ "ProFormFieldSet",
10841
+ "ProFormFieldSetProps",
10842
+ "ProFormFieldTransformFn",
10843
+ "ProFormFieldValueMap",
10844
+ "ProFormFormInstance",
10845
+ "ProFormGroup",
10846
+ "ProFormGroupProps",
10847
+ "ProFormItem",
10848
+ "ProFormItemProps",
10849
+ "ProFormItemSharedProps",
10850
+ "ProFormLayoutConfig",
10851
+ "ProFormList",
10852
+ "ProFormListAction",
10853
+ "ProFormListProps",
10854
+ "ProFormMode",
10855
+ "ProFormPassword",
10856
+ "ProFormPathValue",
10857
+ "ProFormProps",
10858
+ "ProFormRadioGroup",
10859
+ "ProFormRecursivePartial",
10860
+ "ProFormRequestOption",
10861
+ "ProFormSchemaColumn",
10862
+ "ProFormSchemaColumns",
10863
+ "ProFormSchemaValueType",
10864
+ "ProFormSelect",
10865
+ "ProFormSlider",
10866
+ "ProFormStableContextValue",
10867
+ "ProFormStateContextValue",
10868
+ "ProFormSwitch",
10869
+ "ProFormSyncToUrl",
10870
+ "ProFormText",
10871
+ "ProFormTextArea",
10872
+ "ProFormUpload",
10873
+ "ProFormValidateResult",
10874
+ "ProFormValueEnumObj",
10875
+ "ProFormValueType",
10876
+ "ProFormValuesPatch",
10877
+ "QueryFilter",
10878
+ "QueryFilterProps",
10879
+ "Rule",
10880
+ "SchemaForm",
10881
+ "SchemaFormProps",
10882
+ "SubmitterProps",
10883
+ "UseFormWatch",
10884
+ "ValidateStatus",
10885
+ "ValidateTrigger",
10886
+ "createProFormField",
10887
+ "useFormWatch"
10888
+ ],
10889
+ "searchTags": [],
10890
+ "typeText": "(typeof FORM_LAYOUTS)[number]",
10891
+ "canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
10892
+ "examples": [
10893
+ {
10894
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
10895
+ "source": "canonical"
10896
+ }
10897
+ ]
10898
+ },
10308
10899
  {
10309
10900
  "name": "ProFormLayoutConfig",
10310
10901
  "kind": "type",
@@ -10323,7 +10914,6 @@
10323
10914
  "DrawerFormProps",
10324
10915
  "FormCoreInstance",
10325
10916
  "FormInstance",
10326
- "FormLayout",
10327
10917
  "FormListContextValue",
10328
10918
  "FormSize",
10329
10919
  "LabelAlign",
@@ -10350,6 +10940,7 @@
10350
10940
  "ProFormItem",
10351
10941
  "ProFormItemProps",
10352
10942
  "ProFormItemSharedProps",
10943
+ "ProFormLayout",
10353
10944
  "ProFormList",
10354
10945
  "ProFormListAction",
10355
10946
  "ProFormListProps",
@@ -10537,7 +11128,6 @@
10537
11128
  "DrawerFormProps",
10538
11129
  "FormCoreInstance",
10539
11130
  "FormInstance",
10540
- "FormLayout",
10541
11131
  "FormListContextValue",
10542
11132
  "FormSize",
10543
11133
  "LabelAlign",
@@ -10564,6 +11154,7 @@
10564
11154
  "ProFormItem",
10565
11155
  "ProFormItemProps",
10566
11156
  "ProFormItemSharedProps",
11157
+ "ProFormLayout",
10567
11158
  "ProFormLayoutConfig",
10568
11159
  "ProFormListAction",
10569
11160
  "ProFormListProps",
@@ -10629,7 +11220,6 @@
10629
11220
  "DrawerFormProps",
10630
11221
  "FormCoreInstance",
10631
11222
  "FormInstance",
10632
- "FormLayout",
10633
11223
  "FormListContextValue",
10634
11224
  "FormSize",
10635
11225
  "LabelAlign",
@@ -10656,6 +11246,7 @@
10656
11246
  "ProFormItem",
10657
11247
  "ProFormItemProps",
10658
11248
  "ProFormItemSharedProps",
11249
+ "ProFormLayout",
10659
11250
  "ProFormLayoutConfig",
10660
11251
  "ProFormList",
10661
11252
  "ProFormListProps",
@@ -10722,7 +11313,6 @@
10722
11313
  "DrawerFormProps",
10723
11314
  "FormCoreInstance",
10724
11315
  "FormInstance",
10725
- "FormLayout",
10726
11316
  "FormListContextValue",
10727
11317
  "FormSize",
10728
11318
  "LabelAlign",
@@ -10749,6 +11339,7 @@
10749
11339
  "ProFormItem",
10750
11340
  "ProFormItemProps",
10751
11341
  "ProFormItemSharedProps",
11342
+ "ProFormLayout",
10752
11343
  "ProFormLayoutConfig",
10753
11344
  "ProFormList",
10754
11345
  "ProFormListAction",
@@ -10815,7 +11406,6 @@
10815
11406
  "DrawerFormProps",
10816
11407
  "FormCoreInstance",
10817
11408
  "FormInstance",
10818
- "FormLayout",
10819
11409
  "FormListContextValue",
10820
11410
  "FormSize",
10821
11411
  "LabelAlign",
@@ -10842,6 +11432,7 @@
10842
11432
  "ProFormItem",
10843
11433
  "ProFormItemProps",
10844
11434
  "ProFormItemSharedProps",
11435
+ "ProFormLayout",
10845
11436
  "ProFormLayoutConfig",
10846
11437
  "ProFormList",
10847
11438
  "ProFormListAction",
@@ -10908,7 +11499,6 @@
10908
11499
  "DrawerFormProps",
10909
11500
  "FormCoreInstance",
10910
11501
  "FormInstance",
10911
- "FormLayout",
10912
11502
  "FormListContextValue",
10913
11503
  "FormSize",
10914
11504
  "LabelAlign",
@@ -10935,6 +11525,7 @@
10935
11525
  "ProFormItem",
10936
11526
  "ProFormItemProps",
10937
11527
  "ProFormItemSharedProps",
11528
+ "ProFormLayout",
10938
11529
  "ProFormLayoutConfig",
10939
11530
  "ProFormList",
10940
11531
  "ProFormListAction",
@@ -11000,7 +11591,6 @@
11000
11591
  "DrawerFormProps",
11001
11592
  "FormCoreInstance",
11002
11593
  "FormInstance",
11003
- "FormLayout",
11004
11594
  "FormListContextValue",
11005
11595
  "FormSize",
11006
11596
  "LabelAlign",
@@ -11027,6 +11617,7 @@
11027
11617
  "ProFormItem",
11028
11618
  "ProFormItemProps",
11029
11619
  "ProFormItemSharedProps",
11620
+ "ProFormLayout",
11030
11621
  "ProFormLayoutConfig",
11031
11622
  "ProFormList",
11032
11623
  "ProFormListAction",
@@ -11093,7 +11684,6 @@
11093
11684
  "DrawerFormProps",
11094
11685
  "FormCoreInstance",
11095
11686
  "FormInstance",
11096
- "FormLayout",
11097
11687
  "FormListContextValue",
11098
11688
  "FormSize",
11099
11689
  "LabelAlign",
@@ -11120,6 +11710,7 @@
11120
11710
  "ProFormItem",
11121
11711
  "ProFormItemProps",
11122
11712
  "ProFormItemSharedProps",
11713
+ "ProFormLayout",
11123
11714
  "ProFormLayoutConfig",
11124
11715
  "ProFormList",
11125
11716
  "ProFormListAction",
@@ -11186,7 +11777,6 @@
11186
11777
  "DrawerFormProps",
11187
11778
  "FormCoreInstance",
11188
11779
  "FormInstance",
11189
- "FormLayout",
11190
11780
  "FormListContextValue",
11191
11781
  "FormSize",
11192
11782
  "LabelAlign",
@@ -11213,6 +11803,7 @@
11213
11803
  "ProFormItem",
11214
11804
  "ProFormItemProps",
11215
11805
  "ProFormItemSharedProps",
11806
+ "ProFormLayout",
11216
11807
  "ProFormLayoutConfig",
11217
11808
  "ProFormList",
11218
11809
  "ProFormListAction",
@@ -11278,7 +11869,6 @@
11278
11869
  "DrawerFormProps",
11279
11870
  "FormCoreInstance",
11280
11871
  "FormInstance",
11281
- "FormLayout",
11282
11872
  "FormListContextValue",
11283
11873
  "FormSize",
11284
11874
  "LabelAlign",
@@ -11305,6 +11895,7 @@
11305
11895
  "ProFormItem",
11306
11896
  "ProFormItemProps",
11307
11897
  "ProFormItemSharedProps",
11898
+ "ProFormLayout",
11308
11899
  "ProFormLayoutConfig",
11309
11900
  "ProFormList",
11310
11901
  "ProFormListAction",
@@ -11371,7 +11962,6 @@
11371
11962
  "DrawerFormProps",
11372
11963
  "FormCoreInstance",
11373
11964
  "FormInstance",
11374
- "FormLayout",
11375
11965
  "FormListContextValue",
11376
11966
  "FormSize",
11377
11967
  "LabelAlign",
@@ -11398,6 +11988,7 @@
11398
11988
  "ProFormItem",
11399
11989
  "ProFormItemProps",
11400
11990
  "ProFormItemSharedProps",
11991
+ "ProFormLayout",
11401
11992
  "ProFormLayoutConfig",
11402
11993
  "ProFormList",
11403
11994
  "ProFormListAction",
@@ -11464,7 +12055,6 @@
11464
12055
  "DrawerFormProps",
11465
12056
  "FormCoreInstance",
11466
12057
  "FormInstance",
11467
- "FormLayout",
11468
12058
  "FormListContextValue",
11469
12059
  "FormSize",
11470
12060
  "LabelAlign",
@@ -11491,6 +12081,7 @@
11491
12081
  "ProFormItem",
11492
12082
  "ProFormItemProps",
11493
12083
  "ProFormItemSharedProps",
12084
+ "ProFormLayout",
11494
12085
  "ProFormLayoutConfig",
11495
12086
  "ProFormList",
11496
12087
  "ProFormListAction",
@@ -11557,7 +12148,6 @@
11557
12148
  "DrawerFormProps",
11558
12149
  "FormCoreInstance",
11559
12150
  "FormInstance",
11560
- "FormLayout",
11561
12151
  "FormListContextValue",
11562
12152
  "FormSize",
11563
12153
  "LabelAlign",
@@ -11584,6 +12174,7 @@
11584
12174
  "ProFormItem",
11585
12175
  "ProFormItemProps",
11586
12176
  "ProFormItemSharedProps",
12177
+ "ProFormLayout",
11587
12178
  "ProFormLayoutConfig",
11588
12179
  "ProFormList",
11589
12180
  "ProFormListAction",
@@ -11650,7 +12241,6 @@
11650
12241
  "DrawerFormProps",
11651
12242
  "FormCoreInstance",
11652
12243
  "FormInstance",
11653
- "FormLayout",
11654
12244
  "FormListContextValue",
11655
12245
  "FormSize",
11656
12246
  "LabelAlign",
@@ -11677,6 +12267,7 @@
11677
12267
  "ProFormItem",
11678
12268
  "ProFormItemProps",
11679
12269
  "ProFormItemSharedProps",
12270
+ "ProFormLayout",
11680
12271
  "ProFormLayoutConfig",
11681
12272
  "ProFormList",
11682
12273
  "ProFormListAction",
@@ -11743,7 +12334,6 @@
11743
12334
  "DrawerFormProps",
11744
12335
  "FormCoreInstance",
11745
12336
  "FormInstance",
11746
- "FormLayout",
11747
12337
  "FormListContextValue",
11748
12338
  "FormSize",
11749
12339
  "LabelAlign",
@@ -11770,6 +12360,7 @@
11770
12360
  "ProFormItem",
11771
12361
  "ProFormItemProps",
11772
12362
  "ProFormItemSharedProps",
12363
+ "ProFormLayout",
11773
12364
  "ProFormLayoutConfig",
11774
12365
  "ProFormList",
11775
12366
  "ProFormListAction",
@@ -11835,7 +12426,6 @@
11835
12426
  "DrawerFormProps",
11836
12427
  "FormCoreInstance",
11837
12428
  "FormInstance",
11838
- "FormLayout",
11839
12429
  "FormListContextValue",
11840
12430
  "FormSize",
11841
12431
  "LabelAlign",
@@ -11862,6 +12452,7 @@
11862
12452
  "ProFormItem",
11863
12453
  "ProFormItemProps",
11864
12454
  "ProFormItemSharedProps",
12455
+ "ProFormLayout",
11865
12456
  "ProFormLayoutConfig",
11866
12457
  "ProFormList",
11867
12458
  "ProFormListAction",
@@ -11927,7 +12518,6 @@
11927
12518
  "DrawerFormProps",
11928
12519
  "FormCoreInstance",
11929
12520
  "FormInstance",
11930
- "FormLayout",
11931
12521
  "FormListContextValue",
11932
12522
  "FormSize",
11933
12523
  "LabelAlign",
@@ -11954,6 +12544,7 @@
11954
12544
  "ProFormItem",
11955
12545
  "ProFormItemProps",
11956
12546
  "ProFormItemSharedProps",
12547
+ "ProFormLayout",
11957
12548
  "ProFormLayoutConfig",
11958
12549
  "ProFormList",
11959
12550
  "ProFormListAction",
@@ -12020,7 +12611,6 @@
12020
12611
  "DrawerFormProps",
12021
12612
  "FormCoreInstance",
12022
12613
  "FormInstance",
12023
- "FormLayout",
12024
12614
  "FormListContextValue",
12025
12615
  "FormSize",
12026
12616
  "LabelAlign",
@@ -12047,6 +12637,7 @@
12047
12637
  "ProFormItem",
12048
12638
  "ProFormItemProps",
12049
12639
  "ProFormItemSharedProps",
12640
+ "ProFormLayout",
12050
12641
  "ProFormLayoutConfig",
12051
12642
  "ProFormList",
12052
12643
  "ProFormListAction",
@@ -12113,7 +12704,6 @@
12113
12704
  "DrawerFormProps",
12114
12705
  "FormCoreInstance",
12115
12706
  "FormInstance",
12116
- "FormLayout",
12117
12707
  "FormListContextValue",
12118
12708
  "FormSize",
12119
12709
  "LabelAlign",
@@ -12140,6 +12730,7 @@
12140
12730
  "ProFormItem",
12141
12731
  "ProFormItemProps",
12142
12732
  "ProFormItemSharedProps",
12733
+ "ProFormLayout",
12143
12734
  "ProFormLayoutConfig",
12144
12735
  "ProFormList",
12145
12736
  "ProFormListAction",
@@ -12205,7 +12796,6 @@
12205
12796
  "DrawerFormProps",
12206
12797
  "FormCoreInstance",
12207
12798
  "FormInstance",
12208
- "FormLayout",
12209
12799
  "FormListContextValue",
12210
12800
  "FormSize",
12211
12801
  "LabelAlign",
@@ -12232,6 +12822,7 @@
12232
12822
  "ProFormItem",
12233
12823
  "ProFormItemProps",
12234
12824
  "ProFormItemSharedProps",
12825
+ "ProFormLayout",
12235
12826
  "ProFormLayoutConfig",
12236
12827
  "ProFormList",
12237
12828
  "ProFormListAction",
@@ -12298,7 +12889,6 @@
12298
12889
  "DrawerFormProps",
12299
12890
  "FormCoreInstance",
12300
12891
  "FormInstance",
12301
- "FormLayout",
12302
12892
  "FormListContextValue",
12303
12893
  "FormSize",
12304
12894
  "LabelAlign",
@@ -12325,6 +12915,7 @@
12325
12915
  "ProFormItem",
12326
12916
  "ProFormItemProps",
12327
12917
  "ProFormItemSharedProps",
12918
+ "ProFormLayout",
12328
12919
  "ProFormLayoutConfig",
12329
12920
  "ProFormList",
12330
12921
  "ProFormListAction",
@@ -12390,7 +12981,6 @@
12390
12981
  "DrawerFormProps",
12391
12982
  "FormCoreInstance",
12392
12983
  "FormInstance",
12393
- "FormLayout",
12394
12984
  "FormListContextValue",
12395
12985
  "FormSize",
12396
12986
  "LabelAlign",
@@ -12417,6 +13007,7 @@
12417
13007
  "ProFormItem",
12418
13008
  "ProFormItemProps",
12419
13009
  "ProFormItemSharedProps",
13010
+ "ProFormLayout",
12420
13011
  "ProFormLayoutConfig",
12421
13012
  "ProFormList",
12422
13013
  "ProFormListAction",
@@ -12482,7 +13073,6 @@
12482
13073
  "DrawerFormProps",
12483
13074
  "FormCoreInstance",
12484
13075
  "FormInstance",
12485
- "FormLayout",
12486
13076
  "FormListContextValue",
12487
13077
  "FormSize",
12488
13078
  "LabelAlign",
@@ -12509,6 +13099,7 @@
12509
13099
  "ProFormItem",
12510
13100
  "ProFormItemProps",
12511
13101
  "ProFormItemSharedProps",
13102
+ "ProFormLayout",
12512
13103
  "ProFormLayoutConfig",
12513
13104
  "ProFormList",
12514
13105
  "ProFormListAction",
@@ -12574,7 +13165,6 @@
12574
13165
  "DrawerFormProps",
12575
13166
  "FormCoreInstance",
12576
13167
  "FormInstance",
12577
- "FormLayout",
12578
13168
  "FormListContextValue",
12579
13169
  "FormSize",
12580
13170
  "LabelAlign",
@@ -12601,6 +13191,7 @@
12601
13191
  "ProFormItem",
12602
13192
  "ProFormItemProps",
12603
13193
  "ProFormItemSharedProps",
13194
+ "ProFormLayout",
12604
13195
  "ProFormLayoutConfig",
12605
13196
  "ProFormList",
12606
13197
  "ProFormListAction",
@@ -12667,7 +13258,6 @@
12667
13258
  "DrawerFormProps",
12668
13259
  "FormCoreInstance",
12669
13260
  "FormInstance",
12670
- "FormLayout",
12671
13261
  "FormListContextValue",
12672
13262
  "FormSize",
12673
13263
  "LabelAlign",
@@ -12694,6 +13284,7 @@
12694
13284
  "ProFormItem",
12695
13285
  "ProFormItemProps",
12696
13286
  "ProFormItemSharedProps",
13287
+ "ProFormLayout",
12697
13288
  "ProFormLayoutConfig",
12698
13289
  "ProFormList",
12699
13290
  "ProFormListAction",
@@ -12760,7 +13351,6 @@
12760
13351
  "DrawerFormProps",
12761
13352
  "FormCoreInstance",
12762
13353
  "FormInstance",
12763
- "FormLayout",
12764
13354
  "FormListContextValue",
12765
13355
  "FormSize",
12766
13356
  "LabelAlign",
@@ -12787,6 +13377,7 @@
12787
13377
  "ProFormItem",
12788
13378
  "ProFormItemProps",
12789
13379
  "ProFormItemSharedProps",
13380
+ "ProFormLayout",
12790
13381
  "ProFormLayoutConfig",
12791
13382
  "ProFormList",
12792
13383
  "ProFormListAction",
@@ -12853,7 +13444,6 @@
12853
13444
  "DrawerFormProps",
12854
13445
  "FormCoreInstance",
12855
13446
  "FormInstance",
12856
- "FormLayout",
12857
13447
  "FormListContextValue",
12858
13448
  "FormSize",
12859
13449
  "LabelAlign",
@@ -12880,6 +13470,7 @@
12880
13470
  "ProFormItem",
12881
13471
  "ProFormItemProps",
12882
13472
  "ProFormItemSharedProps",
13473
+ "ProFormLayout",
12883
13474
  "ProFormLayoutConfig",
12884
13475
  "ProFormList",
12885
13476
  "ProFormListAction",
@@ -13841,7 +14432,6 @@
13841
14432
  "DrawerFormProps",
13842
14433
  "FormCoreInstance",
13843
14434
  "FormInstance",
13844
- "FormLayout",
13845
14435
  "FormListContextValue",
13846
14436
  "FormSize",
13847
14437
  "LabelAlign",
@@ -13868,6 +14458,7 @@
13868
14458
  "ProFormItem",
13869
14459
  "ProFormItemProps",
13870
14460
  "ProFormItemSharedProps",
14461
+ "ProFormLayout",
13871
14462
  "ProFormLayoutConfig",
13872
14463
  "ProFormList",
13873
14464
  "ProFormListAction",
@@ -13933,7 +14524,6 @@
13933
14524
  "DrawerFormProps",
13934
14525
  "FormCoreInstance",
13935
14526
  "FormInstance",
13936
- "FormLayout",
13937
14527
  "FormListContextValue",
13938
14528
  "FormSize",
13939
14529
  "LabelAlign",
@@ -13960,6 +14550,7 @@
13960
14550
  "ProFormItem",
13961
14551
  "ProFormItemProps",
13962
14552
  "ProFormItemSharedProps",
14553
+ "ProFormLayout",
13963
14554
  "ProFormLayoutConfig",
13964
14555
  "ProFormList",
13965
14556
  "ProFormListAction",
@@ -14914,7 +15505,6 @@
14914
15505
  "DrawerFormProps",
14915
15506
  "FormCoreInstance",
14916
15507
  "FormInstance",
14917
- "FormLayout",
14918
15508
  "FormListContextValue",
14919
15509
  "FormSize",
14920
15510
  "LabelAlign",
@@ -14941,6 +15531,7 @@
14941
15531
  "ProFormItem",
14942
15532
  "ProFormItemProps",
14943
15533
  "ProFormItemSharedProps",
15534
+ "ProFormLayout",
14944
15535
  "ProFormLayoutConfig",
14945
15536
  "ProFormList",
14946
15537
  "ProFormListAction",
@@ -15018,7 +15609,6 @@
15018
15609
  "DrawerFormProps",
15019
15610
  "FormCoreInstance",
15020
15611
  "FormInstance",
15021
- "FormLayout",
15022
15612
  "FormListContextValue",
15023
15613
  "FormSize",
15024
15614
  "LabelAlign",
@@ -15045,6 +15635,7 @@
15045
15635
  "ProFormItem",
15046
15636
  "ProFormItemProps",
15047
15637
  "ProFormItemSharedProps",
15638
+ "ProFormLayout",
15048
15639
  "ProFormLayoutConfig",
15049
15640
  "ProFormList",
15050
15641
  "ProFormListAction",
@@ -15110,7 +15701,6 @@
15110
15701
  "DrawerFormProps",
15111
15702
  "FormCoreInstance",
15112
15703
  "FormInstance",
15113
- "FormLayout",
15114
15704
  "FormListContextValue",
15115
15705
  "FormSize",
15116
15706
  "LabelAlign",
@@ -15137,6 +15727,7 @@
15137
15727
  "ProFormItem",
15138
15728
  "ProFormItemProps",
15139
15729
  "ProFormItemSharedProps",
15730
+ "ProFormLayout",
15140
15731
  "ProFormLayoutConfig",
15141
15732
  "ProFormList",
15142
15733
  "ProFormListAction",
@@ -17193,7 +17784,6 @@
17193
17784
  "DrawerFormProps",
17194
17785
  "FormCoreInstance",
17195
17786
  "FormInstance",
17196
- "FormLayout",
17197
17787
  "FormListContextValue",
17198
17788
  "FormSize",
17199
17789
  "LabelAlign",
@@ -17220,6 +17810,7 @@
17220
17810
  "ProFormItem",
17221
17811
  "ProFormItemProps",
17222
17812
  "ProFormItemSharedProps",
17813
+ "ProFormLayout",
17223
17814
  "ProFormLayoutConfig",
17224
17815
  "ProFormList",
17225
17816
  "ProFormListAction",
@@ -19833,7 +20424,6 @@
19833
20424
  "DrawerFormProps",
19834
20425
  "FormCoreInstance",
19835
20426
  "FormInstance",
19836
- "FormLayout",
19837
20427
  "FormListContextValue",
19838
20428
  "FormSize",
19839
20429
  "LabelAlign",
@@ -19860,6 +20450,7 @@
19860
20450
  "ProFormItem",
19861
20451
  "ProFormItemProps",
19862
20452
  "ProFormItemSharedProps",
20453
+ "ProFormLayout",
19863
20454
  "ProFormLayoutConfig",
19864
20455
  "ProFormList",
19865
20456
  "ProFormListAction",
@@ -19986,7 +20577,6 @@
19986
20577
  "DrawerFormProps",
19987
20578
  "FormCoreInstance",
19988
20579
  "FormInstance",
19989
- "FormLayout",
19990
20580
  "FormListContextValue",
19991
20581
  "FormSize",
19992
20582
  "LabelAlign",
@@ -20013,6 +20603,7 @@
20013
20603
  "ProFormItem",
20014
20604
  "ProFormItemProps",
20015
20605
  "ProFormItemSharedProps",
20606
+ "ProFormLayout",
20016
20607
  "ProFormLayoutConfig",
20017
20608
  "ProFormList",
20018
20609
  "ProFormListAction",
@@ -20079,7 +20670,6 @@
20079
20670
  "DrawerFormProps",
20080
20671
  "FormCoreInstance",
20081
20672
  "FormInstance",
20082
- "FormLayout",
20083
20673
  "FormListContextValue",
20084
20674
  "FormSize",
20085
20675
  "LabelAlign",
@@ -20106,6 +20696,7 @@
20106
20696
  "ProFormItem",
20107
20697
  "ProFormItemProps",
20108
20698
  "ProFormItemSharedProps",
20699
+ "ProFormLayout",
20109
20700
  "ProFormLayoutConfig",
20110
20701
  "ProFormList",
20111
20702
  "ProFormListAction",
@@ -20393,7 +20984,6 @@
20393
20984
  "DrawerFormProps",
20394
20985
  "FormCoreInstance",
20395
20986
  "FormInstance",
20396
- "FormLayout",
20397
20987
  "FormListContextValue",
20398
20988
  "FormSize",
20399
20989
  "LabelAlign",
@@ -20420,6 +21010,7 @@
20420
21010
  "ProFormItem",
20421
21011
  "ProFormItemProps",
20422
21012
  "ProFormItemSharedProps",
21013
+ "ProFormLayout",
20423
21014
  "ProFormLayoutConfig",
20424
21015
  "ProFormList",
20425
21016
  "ProFormListAction",
@@ -20515,7 +21106,6 @@
20515
21106
  "DrawerFormProps",
20516
21107
  "FormCoreInstance",
20517
21108
  "FormInstance",
20518
- "FormLayout",
20519
21109
  "FormListContextValue",
20520
21110
  "FormSize",
20521
21111
  "LabelAlign",
@@ -20542,6 +21132,7 @@
20542
21132
  "ProFormItem",
20543
21133
  "ProFormItemProps",
20544
21134
  "ProFormItemSharedProps",
21135
+ "ProFormLayout",
20545
21136
  "ProFormLayoutConfig",
20546
21137
  "ProFormList",
20547
21138
  "ProFormListAction",