@nocobase/client 0.9.4-alpha.2 → 0.10.0-alpha.3

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 (1378) hide show
  1. package/.dumi/global.less +1 -0
  2. package/.dumi/theme/builtins/LangSwitch/index.tsx +11 -0
  3. package/.dumi/theme/builtins/Previewer/index.tsx +23 -0
  4. package/.dumirc.ts +56 -0
  5. package/contributing.md +1 -1
  6. package/docs/develop.md +5 -0
  7. package/{intro.md → docs/intro.md} +21 -27
  8. package/es/acl/ACLProvider.d.ts +6 -7
  9. package/es/acl/ACLProvider.js +6 -22
  10. package/es/acl/ACLShortcut.d.ts +2 -3
  11. package/es/acl/ACLShortcut.js +2 -61
  12. package/es/acl/Configuration/ConfigureCenter.d.ts +3 -2
  13. package/es/acl/Configuration/ConfigureCenter.js +7 -22
  14. package/es/acl/Configuration/FilterDynamicComponent.d.ts +2 -2
  15. package/es/acl/Configuration/MenuConfigure.d.ts +2 -1
  16. package/es/acl/Configuration/MenuItemsProvider.d.ts +2 -1
  17. package/es/acl/Configuration/MenuItemsProvider.js +3 -3
  18. package/es/acl/Configuration/PermisionProvider.d.ts +2 -2
  19. package/es/acl/Configuration/RoleConfigure.d.ts +2 -1
  20. package/es/acl/Configuration/RoleTable.d.ts +2 -1
  21. package/es/acl/Configuration/ScopeSelect.d.ts +2 -1
  22. package/es/acl/Configuration/schemas/scopes.d.ts +1 -0
  23. package/es/antd-config-provider/index.d.ts +1 -1
  24. package/es/api-client/APIClient.d.ts +1 -1
  25. package/es/api-client/APIClientProvider.d.ts +2 -1
  26. package/es/api-client/hooks/assign.d.ts +0 -1
  27. package/es/api-client/hooks/assign.js +1 -7
  28. package/es/api-client/hooks/useRequest.d.ts +1 -1
  29. package/es/api-client/hooks/useRequest.js +1 -1
  30. package/es/appInfo/CurrentAppInfoProvider.d.ts +1 -1
  31. package/es/application/Application.d.ts +2 -1
  32. package/es/application/Application.js +5 -4
  33. package/es/application/compose.d.ts +2 -1
  34. package/es/application-v2/Application.d.ts +31 -0
  35. package/es/application-v2/Application.js +139 -0
  36. package/es/application-v2/Plugin.d.ts +14 -0
  37. package/es/application-v2/Plugin.js +92 -0
  38. package/es/application-v2/PluginManager.d.ts +19 -0
  39. package/es/application-v2/PluginManager.js +242 -0
  40. package/es/application-v2/Router.d.ts +13 -0
  41. package/es/application-v2/Router.js +103 -0
  42. package/es/application-v2/components/AppComponent.d.ts +2 -0
  43. package/es/application-v2/components/AppComponent.js +20 -0
  44. package/es/application-v2/components/MainComponent.d.ts +6 -0
  45. package/es/application-v2/components/MainComponent.js +13 -0
  46. package/es/application-v2/components/RouterProvider.d.ts +14 -0
  47. package/es/application-v2/components/RouterProvider.js +105 -0
  48. package/es/application-v2/components/index.d.ts +13 -0
  49. package/es/application-v2/components/index.js +13 -0
  50. package/es/application-v2/compose.d.ts +2 -0
  51. package/es/application-v2/compose.js +41 -0
  52. package/es/application-v2/context.d.ts +3 -0
  53. package/es/application-v2/context.js +2 -0
  54. package/es/application-v2/hooks/index.d.ts +3 -0
  55. package/es/application-v2/hooks/index.js +3 -0
  56. package/es/application-v2/hooks/useApp.d.ts +1 -0
  57. package/es/application-v2/hooks/useApp.js +5 -0
  58. package/es/application-v2/hooks/useLoad.d.ts +1 -0
  59. package/es/application-v2/hooks/useLoad.js +38 -0
  60. package/es/application-v2/hooks/useRouter.d.ts +1 -0
  61. package/es/application-v2/hooks/useRouter.js +5 -0
  62. package/es/application-v2/index.d.ts +3 -0
  63. package/es/application-v2/index.js +3 -0
  64. package/es/application-v2/types.d.ts +26 -0
  65. package/es/application-v2/types.js +1 -0
  66. package/es/async-data-provider/index.d.ts +1 -1
  67. package/es/auth/OptionsComponent.d.ts +7 -0
  68. package/es/auth/OptionsComponent.js +20 -0
  69. package/es/auth/SigninPage.d.ts +23 -0
  70. package/es/{settings-form/SettingsForm.js → auth/SigninPage.js} +116 -275
  71. package/es/auth/SigninPageExtension.d.ts +22 -0
  72. package/es/auth/SigninPageExtension.js +30 -0
  73. package/es/auth/SignupPage.d.ts +24 -0
  74. package/es/auth/SignupPage.js +82 -0
  75. package/es/auth/index.d.ts +4 -0
  76. package/es/auth/index.js +4 -0
  77. package/es/block-provider/BlockProvider.d.ts +4 -3
  78. package/es/block-provider/BlockProvider.js +23 -6
  79. package/es/block-provider/CalendarBlockProvider.d.ts +1 -1
  80. package/es/block-provider/DetailsBlockProvider.d.ts +1 -1
  81. package/es/block-provider/DetailsBlockProvider.js +1 -13
  82. package/es/block-provider/FilterFormBlockProvider.d.ts +2 -1
  83. package/es/block-provider/FormBlockProvider.d.ts +1 -1
  84. package/es/block-provider/FormBlockProvider.js +10 -21
  85. package/es/block-provider/FormFieldProvider.d.ts +1 -1
  86. package/es/block-provider/GanttBlockProvider.d.ts +1 -1
  87. package/es/block-provider/KanbanBlockProvider.d.ts +1 -1
  88. package/es/block-provider/TableBlockProvider.d.ts +1 -2
  89. package/es/block-provider/TableBlockProvider.js +57 -82
  90. package/es/block-provider/TableFieldProvider.d.ts +1 -1
  91. package/es/block-provider/TableSelectorProvider.d.ts +2 -2
  92. package/es/block-provider/hooks/index.d.ts +10 -1
  93. package/es/block-provider/hooks/index.js +53 -137
  94. package/es/block-provider/index.d.ts +1 -0
  95. package/es/block-provider/index.js +2 -1
  96. package/es/board/Card.d.ts +2 -2
  97. package/es/board/CardAdder.d.ts +2 -2
  98. package/es/board/CardForm.d.ts +2 -2
  99. package/es/board/Column.d.ts +3 -3
  100. package/es/board/ColumnAdder.d.ts +2 -2
  101. package/es/board/ColumnForm.d.ts +2 -2
  102. package/es/board/DefaultCard.d.ts +2 -2
  103. package/es/board/DefaultColumnHeader.d.ts +2 -2
  104. package/es/board/Kanban.d.ts +2 -2
  105. package/es/board/withDroppable.d.ts +2 -1
  106. package/es/china-region/index.d.ts +2 -1
  107. package/es/collection-manager/CollectionField.d.ts +1 -1
  108. package/es/collection-manager/CollectionField.js +2 -1
  109. package/es/collection-manager/CollectionManagerProvider.d.ts +2 -2
  110. package/es/collection-manager/CollectionManagerShortcut.d.ts +2 -3
  111. package/es/collection-manager/CollectionManagerShortcut.js +3 -60
  112. package/es/collection-manager/Configuration/AddCategoryAction.d.ts +3 -2
  113. package/es/collection-manager/Configuration/AddCategoryAction.js +2 -2
  114. package/es/collection-manager/Configuration/AddCollectionAction.d.ts +3 -2
  115. package/es/collection-manager/Configuration/AddCollectionAction.js +33 -27
  116. package/es/collection-manager/Configuration/AddFieldAction.d.ts +3 -2
  117. package/es/collection-manager/Configuration/AddFieldAction.js +46 -33
  118. package/es/collection-manager/Configuration/AddSubFieldAction.d.ts +2 -1
  119. package/es/collection-manager/Configuration/AddSubFieldAction.js +25 -20
  120. package/es/collection-manager/Configuration/CollectionFields.d.ts +2 -1
  121. package/es/collection-manager/Configuration/CollectionFieldsTable.d.ts +2 -2
  122. package/es/collection-manager/Configuration/CollectionFieldsTable.js +3 -1
  123. package/es/collection-manager/Configuration/CollectionFieldsTableArray.d.ts +2 -2
  124. package/es/collection-manager/Configuration/CollectionFieldsTableArray.js +3 -1
  125. package/es/collection-manager/Configuration/ConfigurationTable.d.ts +2 -1
  126. package/es/collection-manager/Configuration/ConfigurationTabs.d.ts +2 -1
  127. package/es/collection-manager/Configuration/ConfigurationTabs.js +61 -50
  128. package/es/collection-manager/Configuration/EditCategoryAction.d.ts +3 -2
  129. package/es/collection-manager/Configuration/EditCategoryAction.js +2 -2
  130. package/es/collection-manager/Configuration/EditCollectionAction.d.ts +3 -2
  131. package/es/collection-manager/Configuration/EditCollectionAction.js +2 -2
  132. package/es/collection-manager/Configuration/EditFieldAction.d.ts +3 -2
  133. package/es/collection-manager/Configuration/EditFieldAction.js +2 -2
  134. package/es/collection-manager/Configuration/EditSubFieldAction.d.ts +2 -1
  135. package/es/collection-manager/Configuration/EditSubFieldAction.js +2 -2
  136. package/es/collection-manager/Configuration/OverridingCollectionField.d.ts +3 -2
  137. package/es/collection-manager/Configuration/OverridingCollectionField.js +2 -2
  138. package/es/collection-manager/Configuration/SyncFieldsAction.d.ts +3 -2
  139. package/es/collection-manager/Configuration/SyncFieldsAction.js +2 -2
  140. package/es/collection-manager/Configuration/ViewInheritedField.d.ts +3 -2
  141. package/es/collection-manager/Configuration/ViewInheritedField.js +2 -2
  142. package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
  143. package/es/collection-manager/Configuration/components/CollectionCategory.js +2 -0
  144. package/es/collection-manager/Configuration/components/CollectionFieldInterface.d.ts +1 -1
  145. package/es/collection-manager/Configuration/components/CollectionFieldInterface.js +2 -0
  146. package/es/collection-manager/Configuration/components/CollectionTemplate.d.ts +1 -1
  147. package/es/collection-manager/Configuration/components/CollectionTemplate.js +2 -0
  148. package/es/collection-manager/Configuration/components/FieldSummary.d.ts +1 -1
  149. package/es/collection-manager/Configuration/components/FieldSummary.js +4 -2
  150. package/es/collection-manager/Configuration/components/TemplateSummay.d.ts +1 -1
  151. package/es/collection-manager/Configuration/components/TemplateSummay.js +4 -2
  152. package/es/collection-manager/Configuration/components/index.d.ts +6 -6
  153. package/es/collection-manager/Configuration/components/index.js +12 -0
  154. package/es/collection-manager/Configuration/interfaces.d.ts +1 -0
  155. package/es/collection-manager/Configuration/templates.d.ts +1 -0
  156. package/es/collection-manager/ResourceActionProvider.d.ts +1 -1
  157. package/es/collection-manager/action-hooks.d.ts +1 -0
  158. package/es/collection-manager/action-hooks.js +168 -90
  159. package/es/collection-manager/hooks/useOptions.js +39 -36
  160. package/es/collection-manager/index.d.ts +1 -1
  161. package/es/collection-manager/index.js +1 -1
  162. package/es/collection-manager/interfaces/components/index.d.ts +7 -6
  163. package/es/collection-manager/interfaces/index.d.ts +0 -1
  164. package/es/collection-manager/interfaces/index.js +0 -1
  165. package/es/collection-manager/interfaces/integer.js +1 -1
  166. package/es/collection-manager/interfaces/number.js +3 -3
  167. package/es/collection-manager/interfaces/percent.js +3 -3
  168. package/es/collection-manager/interfaces/properties/index.d.ts +0 -1
  169. package/es/collection-manager/interfaces/properties/index.js +0 -40
  170. package/es/collection-manager/interfaces/url.js +0 -5
  171. package/es/collection-manager/sub-table.d.ts +2 -2
  172. package/es/collection-manager/sub-table.js +4 -0
  173. package/es/collection-manager/templates/components/PreviewFields.d.ts +1 -1
  174. package/es/collection-manager/templates/components/PreviewFields.js +2 -1
  175. package/es/collection-manager/templates/components/PreviewTable.d.ts +2 -1
  176. package/es/collection-manager/types.d.ts +2 -0
  177. package/es/filter-provider/FilterProvider.d.ts +5 -1
  178. package/es/filter-provider/FilterProvider.js +8 -3
  179. package/es/formula/Expression.d.ts +2 -1
  180. package/es/formula/Expression.js +66 -46
  181. package/es/formula/Result.d.ts +2 -1
  182. package/es/formula/index.d.ts +2 -2
  183. package/es/hooks/index.d.ts +2 -0
  184. package/es/hooks/index.js +2 -0
  185. package/es/hooks/useAdminSchemaUid.d.ts +1 -0
  186. package/es/hooks/useAdminSchemaUid.js +6 -0
  187. package/es/hooks/useMenuItem.d.ts +37 -0
  188. package/es/hooks/useMenuItem.js +90 -0
  189. package/es/hooks/useViewport.d.ts +1 -0
  190. package/es/hooks/useViewport.js +41 -0
  191. package/es/i18n/i18n.js +0 -1
  192. package/es/icon/Icon.d.ts +2 -1
  193. package/es/index.d.ts +3 -2
  194. package/es/index.js +3 -2
  195. package/es/locale/en_US.d.ts +19 -22
  196. package/es/locale/en_US.js +22 -25
  197. package/es/locale/es_ES.d.ts +4 -2
  198. package/es/locale/es_ES.js +5 -3
  199. package/es/locale/ja_JP.d.ts +19 -20
  200. package/es/locale/ja_JP.js +20 -21
  201. package/es/locale/pt_BR.d.ts +3 -1
  202. package/es/locale/pt_BR.js +4 -2
  203. package/es/locale/ru_RU.d.ts +3 -19
  204. package/es/locale/ru_RU.js +4 -20
  205. package/es/locale/tr_TR.d.ts +0 -17
  206. package/es/locale/tr_TR.js +0 -17
  207. package/es/locale/zh_CN.d.ts +28 -25
  208. package/es/locale/zh_CN.js +29 -26
  209. package/es/plugin-manager/PinnedPluginListProvider.d.ts +1 -1
  210. package/es/plugin-manager/index.d.ts +1 -3
  211. package/es/plugin-manager/index.js +1 -3
  212. package/es/pm/Card.d.ts +8 -0
  213. package/es/pm/Card.js +364 -0
  214. package/es/pm/PluginManagerLink.d.ts +3 -2
  215. package/es/pm/PluginManagerLink.js +22 -18
  216. package/es/pm/index.d.ts +33 -3
  217. package/es/pm/index.js +117 -282
  218. package/es/powered-by/index.d.ts +2 -1
  219. package/es/route-switch/RouteSwitch.d.ts +2 -2
  220. package/es/route-switch/RouteSwitch.js +76 -45
  221. package/es/route-switch/RouteSwitchProvider.d.ts +3 -3
  222. package/es/route-switch/antd/admin-layout/index.d.ts +4 -2
  223. package/es/route-switch/antd/admin-layout/index.js +60 -56
  224. package/es/route-switch/antd/auth-layout/index.d.ts +2 -2
  225. package/es/route-switch/antd/auth-layout/index.js +2 -1
  226. package/es/route-switch/antd/route-schema-component/index.d.ts +2 -2
  227. package/es/route-switch/antd/route-schema-component/index.js +3 -3
  228. package/es/route-switch/context.d.ts +4 -0
  229. package/es/route-switch/context.js +5 -2
  230. package/es/route-switch/types.d.ts +2 -5
  231. package/es/schema-component/antd/AntdSchemaComponentProvider.d.ts +2 -1
  232. package/es/schema-component/antd/action/Action.Container.js +4 -0
  233. package/es/schema-component/antd/action/Action.Designer.d.ts +2 -1
  234. package/es/schema-component/antd/action/Action.Designer.js +204 -20
  235. package/es/schema-component/antd/action/Action.Drawer.js +14 -12
  236. package/es/schema-component/antd/action/Action.Link.js +3 -1
  237. package/es/schema-component/antd/action/Action.Modal.js +13 -12
  238. package/es/schema-component/antd/action/Action.Page.js +8 -2
  239. package/es/schema-component/antd/action/Action.js +26 -18
  240. package/es/schema-component/antd/action/ActionBar.d.ts +18 -2
  241. package/es/schema-component/antd/action/ActionBar.js +47 -21
  242. package/es/schema-component/antd/action/context.d.ts +8 -2
  243. package/es/schema-component/antd/action/context.js +15 -2
  244. package/es/schema-component/antd/action/hooks.d.ts +2 -0
  245. package/es/schema-component/antd/association-field/AssociationFieldProvider.d.ts +1 -1
  246. package/es/schema-component/antd/association-field/AssociationFieldProvider.js +57 -6
  247. package/es/schema-component/antd/association-field/AssociationSelect.js +89 -11
  248. package/es/schema-component/antd/association-field/Editable.d.ts +1 -1
  249. package/es/schema-component/antd/association-field/Editable.js +12 -11
  250. package/es/schema-component/antd/association-field/FileManager.d.ts +1 -1
  251. package/es/schema-component/antd/association-field/FileManager.js +14 -4
  252. package/es/schema-component/antd/association-field/InternalNester.d.ts +2 -1
  253. package/es/schema-component/antd/association-field/InternalNester.js +12 -1
  254. package/es/schema-component/antd/association-field/InternalPicker.d.ts +1 -1
  255. package/es/schema-component/antd/association-field/InternalPicker.js +10 -4
  256. package/es/schema-component/antd/association-field/InternalSubTable.d.ts +2 -1
  257. package/es/schema-component/antd/association-field/InternalSubTable.js +35 -6
  258. package/es/schema-component/antd/association-field/InternalViewer.js +10 -3
  259. package/es/schema-component/antd/association-field/Nester.d.ts +2 -1
  260. package/es/schema-component/antd/association-field/Nester.js +58 -14
  261. package/es/schema-component/antd/association-field/ReadPretty.d.ts +1 -1
  262. package/es/schema-component/antd/association-field/ReadPretty.js +4 -0
  263. package/es/schema-component/antd/association-field/SubTable.js +53 -12
  264. package/es/schema-component/antd/association-field/components/CreateRecordAction.d.ts +1 -1
  265. package/es/schema-component/antd/association-field/components/CreateRecordAction.js +4 -2
  266. package/es/schema-component/antd/association-field/schema.d.ts +3 -15
  267. package/es/schema-component/antd/association-field/schema.js +4 -16
  268. package/es/schema-component/antd/association-filter/ActionBarAssociationFilterAction.d.ts +2 -1
  269. package/es/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.d.ts +2 -1
  270. package/es/schema-component/antd/association-filter/AssociationFilter.FilterBlockInitializer.d.ts +2 -1
  271. package/es/schema-component/antd/association-filter/AssociationFilter.Initializer.d.ts +2 -1
  272. package/es/schema-component/antd/association-filter/AssociationFilter.Item.Designer.d.ts +2 -1
  273. package/es/schema-component/antd/association-filter/AssociationFilter.Item.d.ts +2 -1
  274. package/es/schema-component/antd/association-filter/AssociationFilter.d.ts +7 -6
  275. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDelete.d.ts +2 -1
  276. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.d.ts +2 -1
  277. package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
  278. package/es/schema-component/antd/association-select/ReadPretty.js +2 -0
  279. package/es/schema-component/antd/block-item/BlockItem.js +6 -3
  280. package/es/schema-component/antd/block-item/TestDesigner.d.ts +2 -1
  281. package/es/schema-component/antd/calendar/Calendar.Designer.d.ts +2 -1
  282. package/es/schema-component/antd/calendar/Calendar.js +7 -5
  283. package/es/schema-component/antd/calendar/DeleteEvent.d.ts +1 -1
  284. package/es/schema-component/antd/calendar/DeleteEvent.js +3 -1
  285. package/es/schema-component/antd/calendar/Event.d.ts +1 -1
  286. package/es/schema-component/antd/calendar/Event.js +2 -0
  287. package/es/schema-component/antd/calendar/Nav.d.ts +1 -1
  288. package/es/schema-component/antd/calendar/Nav.js +5 -3
  289. package/es/schema-component/antd/calendar/Title.d.ts +1 -1
  290. package/es/schema-component/antd/calendar/Title.js +2 -0
  291. package/es/schema-component/antd/calendar/Today.d.ts +1 -1
  292. package/es/schema-component/antd/calendar/Today.js +4 -2
  293. package/es/schema-component/antd/calendar/ViewSelect.d.ts +1 -1
  294. package/es/schema-component/antd/calendar/ViewSelect.js +3 -0
  295. package/es/schema-component/antd/calendar/components/Header.d.ts +2 -1
  296. package/es/schema-component/antd/card-item/CardItem.js +1 -1
  297. package/es/schema-component/antd/cascader/Cascader.js +8 -1
  298. package/es/schema-component/antd/checkbox/Checkbox.d.ts +2 -1
  299. package/es/schema-component/antd/checkbox/Checkbox.js +14 -12
  300. package/es/schema-component/antd/collection-select/CollectionSelect.js +2 -0
  301. package/es/schema-component/antd/cron/Cron.d.ts +2 -1
  302. package/es/schema-component/antd/cron/Cron.js +3 -2
  303. package/es/schema-component/antd/date-picker/DatePicker.d.ts +4 -2
  304. package/es/schema-component/antd/date-picker/DatePicker.js +2 -1
  305. package/es/schema-component/antd/date-picker/ReadPretty.d.ts +1 -1
  306. package/es/schema-component/antd/date-picker/ReadPretty.js +1 -1
  307. package/es/schema-component/antd/error-fallback/ErrorFallback.d.ts +2 -1
  308. package/es/schema-component/antd/expand-action/Expand.Action.Design.d.ts +2 -1
  309. package/es/schema-component/antd/expand-action/Expand.Action.Design.js +2 -2
  310. package/es/schema-component/antd/expand-action/Expand.Action.d.ts +2 -1
  311. package/es/schema-component/antd/expand-action/Expand.Action.js +3 -6
  312. package/es/schema-component/antd/filter/DynamicComponent.d.ts +2 -1
  313. package/es/schema-component/antd/filter/Filter.Action.Designer.d.ts +2 -1
  314. package/es/schema-component/antd/filter/Filter.js +3 -1
  315. package/es/schema-component/antd/filter/FilterAction.d.ts +1 -1
  316. package/es/schema-component/antd/filter/FilterAction.js +3 -1
  317. package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
  318. package/es/schema-component/antd/filter/FilterItem.js +46 -41
  319. package/es/schema-component/antd/filter/FilterItems.d.ts +1 -1
  320. package/es/schema-component/antd/filter/FilterItems.js +2 -0
  321. package/es/schema-component/antd/filter/SaveDefaultValue.d.ts +2 -1
  322. package/es/schema-component/antd/filter/index.d.ts +1 -0
  323. package/es/schema-component/antd/filter/index.js +1 -0
  324. package/es/schema-component/antd/filter/useValues.js +3 -3
  325. package/es/schema-component/antd/form/Form.Designer.d.ts +2 -1
  326. package/es/schema-component/antd/form/Form.d.ts +1 -1
  327. package/es/schema-component/antd/form/Form.js +2 -0
  328. package/es/schema-component/antd/form-item/FormItem.FilterFormDesigner.d.ts +2 -1
  329. package/es/schema-component/antd/form-item/FormItem.js +93 -38
  330. package/es/schema-component/antd/form-item/SchemaSettingOptions.d.ts +11 -10
  331. package/es/schema-component/antd/form-item/SchemaSettingOptions.js +1 -1
  332. package/es/schema-component/antd/form-v2/Form.Designer.d.ts +4 -3
  333. package/es/schema-component/antd/form-v2/Form.FilterDesigner.d.ts +2 -1
  334. package/es/schema-component/antd/form-v2/Form.js +9 -2
  335. package/es/schema-component/antd/form-v2/FormField.js +2 -0
  336. package/es/schema-component/antd/form-v2/Templates.d.ts +7 -1
  337. package/es/schema-component/antd/form-v2/Templates.js +20 -4
  338. package/es/schema-component/antd/form-v2/index.js +2 -0
  339. package/es/schema-component/antd/g2plot/G2Plot.js +2 -0
  340. package/es/schema-component/antd/g2plot/G2PlotDesigner.d.ts +2 -1
  341. package/es/schema-component/antd/gantt/Gantt.Designer.d.ts +2 -1
  342. package/es/schema-component/antd/gantt/components/gantt/Event.d.ts +1 -1
  343. package/es/schema-component/antd/gantt/components/gantt/Event.js +2 -0
  344. package/es/schema-component/antd/gantt/components/gantt/gantt.js +2 -2
  345. package/es/schema-component/antd/grid/Block.d.ts +1 -1
  346. package/es/schema-component/antd/grid/Block.js +2 -0
  347. package/es/schema-component/antd/grid/Grid.js +25 -9
  348. package/es/schema-component/antd/grid-card/GridCard.Decorator.d.ts +1 -1
  349. package/es/schema-component/antd/grid-card/GridCard.Decorator.js +2 -12
  350. package/es/schema-component/antd/grid-card/GridCard.Designer.d.ts +2 -1
  351. package/es/schema-component/antd/grid-card/GridCard.Designer.js +4 -5
  352. package/es/schema-component/antd/grid-card/GridCard.Item.d.ts +2 -1
  353. package/es/schema-component/antd/grid-card/GridCard.d.ts +2 -1
  354. package/es/schema-component/antd/grid-card/GridCard.js +12 -8
  355. package/es/schema-component/antd/index.d.ts +1 -0
  356. package/es/schema-component/antd/index.js +1 -0
  357. package/es/schema-component/antd/index.less +18 -4
  358. package/es/schema-component/antd/input/Input.d.ts +2 -1
  359. package/es/schema-component/antd/input/Input.js +3 -2
  360. package/es/schema-component/antd/input/Json.d.ts +2 -2
  361. package/es/schema-component/antd/input/Json.js +43 -4
  362. package/es/schema-component/antd/input/ReadPretty.d.ts +1 -1
  363. package/es/schema-component/antd/input/ReadPretty.js +4 -4
  364. package/es/schema-component/antd/input-number/InputNumber.d.ts +5 -1
  365. package/es/schema-component/antd/input-number/InputNumber.js +2 -2
  366. package/es/schema-component/antd/input-number/ReadPretty.d.ts +2 -2
  367. package/es/schema-component/antd/input-number/ReadPretty.js +6 -2
  368. package/es/schema-component/antd/kanban/Kanban.Card.Designer.TitleSwitch.d.ts +2 -1
  369. package/es/schema-component/antd/kanban/Kanban.Card.Designer.d.ts +2 -1
  370. package/es/schema-component/antd/kanban/Kanban.Card.js +5 -3
  371. package/es/schema-component/antd/kanban/Kanban.CardViewer.js +2 -0
  372. package/es/schema-component/antd/kanban/Kanban.Designer.d.ts +2 -1
  373. package/es/schema-component/antd/kanban/Kanban.js +3 -1
  374. package/es/schema-component/antd/list/List.Decorator.d.ts +1 -1
  375. package/es/schema-component/antd/list/List.Decorator.js +7 -12
  376. package/es/schema-component/antd/list/List.Designer.d.ts +2 -1
  377. package/es/schema-component/antd/list/List.Item.d.ts +2 -1
  378. package/es/schema-component/antd/list/List.Item.js +1 -1
  379. package/es/schema-component/antd/list/List.d.ts +2 -1
  380. package/es/schema-component/antd/markdown/Markdown.Void.Designer.d.ts +2 -1
  381. package/es/schema-component/antd/markdown/Markdown.Void.js +2 -0
  382. package/es/schema-component/antd/markdown/Markdown.d.ts +2 -0
  383. package/es/schema-component/antd/markdown/Markdown.js +6 -2
  384. package/es/schema-component/antd/markdown/util.js +1 -1
  385. package/es/schema-component/antd/menu/Menu.Designer.d.ts +2 -1
  386. package/es/schema-component/antd/menu/Menu.js +336 -177
  387. package/es/schema-component/antd/menu/MenuItemInitializers/index.d.ts +2 -1
  388. package/es/schema-component/antd/page/FixedBlock.d.ts +2 -1
  389. package/es/schema-component/antd/page/FixedBlock.js +6 -2
  390. package/es/schema-component/antd/page/Page.d.ts +2 -1
  391. package/es/schema-component/antd/page/Page.js +53 -39
  392. package/es/schema-component/antd/page/PageTabDesigner.d.ts +3 -2
  393. package/es/schema-component/antd/pagination/index.d.ts +1 -1
  394. package/es/schema-component/antd/pagination/index.js +2 -0
  395. package/es/schema-component/antd/password/Password.d.ts +1 -1
  396. package/es/schema-component/antd/password/PasswordStrength.js +1 -144
  397. package/es/schema-component/antd/password/utils.d.ts +1 -0
  398. package/es/schema-component/antd/password/utils.js +144 -0
  399. package/es/schema-component/antd/percent/Percent.js +1 -1
  400. package/es/schema-component/antd/preview/Preview.d.ts +1 -1
  401. package/es/schema-component/antd/quick-edit/QuickEdit.d.ts +3 -0
  402. package/es/schema-component/antd/quick-edit/QuickEdit.js +88 -0
  403. package/es/schema-component/antd/quick-edit/index.d.ts +1 -0
  404. package/es/schema-component/antd/quick-edit/index.js +1 -0
  405. package/es/schema-component/antd/radio/Radio.d.ts +1 -1
  406. package/es/schema-component/antd/record-picker/InputRecordPicker.d.ts +1 -1
  407. package/es/schema-component/antd/record-picker/InputRecordPicker.js +5 -7
  408. package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +10 -4
  409. package/es/schema-component/antd/remote-select/ReadPretty.d.ts +1 -1
  410. package/es/schema-component/antd/remote-select/ReadPretty.js +2 -0
  411. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +2 -0
  412. package/es/schema-component/antd/remote-select/RemoteSelect.js +111 -33
  413. package/es/schema-component/antd/remote-select/utils.d.ts +4 -0
  414. package/es/schema-component/antd/remote-select/utils.js +31 -0
  415. package/es/schema-component/antd/select/ReadPretty.d.ts +1 -1
  416. package/es/schema-component/antd/select/ReadPretty.js +6 -6
  417. package/es/schema-component/antd/select/Select.d.ts +3 -0
  418. package/es/schema-component/antd/select/Select.js +22 -11
  419. package/es/schema-component/antd/select/index.d.ts +1 -1
  420. package/es/schema-component/antd/select/index.js +1 -1
  421. package/es/schema-component/antd/select/utils.d.ts +14 -0
  422. package/es/schema-component/antd/select/{shared.js → utils.js} +20 -18
  423. package/es/schema-component/antd/table/Table.Array.Designer.d.ts +2 -1
  424. package/es/schema-component/antd/table/Table.Array.d.ts +5 -5
  425. package/es/schema-component/antd/table/Table.Array.js +7 -5
  426. package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
  427. package/es/schema-component/antd/table/Table.Column.ActionBar.js +2 -0
  428. package/es/schema-component/antd/table/Table.Column.Decorator.d.ts +2 -1
  429. package/es/schema-component/antd/table/Table.Column.Designer.d.ts +2 -1
  430. package/es/schema-component/antd/table/Table.Column.d.ts +2 -1
  431. package/es/schema-component/antd/table/Table.Designer.d.ts +2 -1
  432. package/es/schema-component/antd/table/Table.RowActionDesigner.d.ts +2 -1
  433. package/es/schema-component/antd/table/Table.RowSelection.d.ts +1 -1
  434. package/es/schema-component/antd/table/Table.RowSelection.js +2 -0
  435. package/es/schema-component/antd/table/Table.Void.Designer.d.ts +2 -1
  436. package/es/schema-component/antd/table/Table.Void.d.ts +1 -1
  437. package/es/schema-component/antd/table/Table.Void.js +2 -0
  438. package/es/schema-component/antd/table-v2/FilterDynamicComponent.d.ts +2 -2
  439. package/es/schema-component/antd/table-v2/FilterDynamicComponent.js +17 -2
  440. package/es/schema-component/antd/table-v2/Table.ActionColumnDesigner.d.ts +2 -1
  441. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
  442. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.js +2 -0
  443. package/es/schema-component/antd/table-v2/Table.Column.Decorator.d.ts +2 -1
  444. package/es/schema-component/antd/table-v2/Table.Column.Designer.d.ts +2 -1
  445. package/es/schema-component/antd/table-v2/Table.Column.Designer.js +148 -11
  446. package/es/schema-component/antd/table-v2/Table.Column.d.ts +2 -1
  447. package/es/schema-component/antd/table-v2/Table.Designer.d.ts +2 -1
  448. package/es/schema-component/antd/table-v2/Table.Index.d.ts +2 -1
  449. package/es/schema-component/antd/table-v2/Table.js +63 -30
  450. package/es/schema-component/antd/table-v2/TableBlockDesigner.d.ts +2 -1
  451. package/es/schema-component/antd/table-v2/TableBlockDesigner.js +53 -47
  452. package/es/schema-component/antd/table-v2/TableField.js +4 -0
  453. package/es/schema-component/antd/table-v2/TableSelectorDesigner.d.ts +2 -1
  454. package/es/schema-component/antd/table-v2/index.d.ts +1 -0
  455. package/es/schema-component/antd/table-v2/index.js +1 -0
  456. package/es/schema-component/antd/table-v2/utils.js +1 -1
  457. package/es/schema-component/antd/tabs/Tabs.Designer.d.ts +2 -1
  458. package/es/schema-component/antd/tabs/Tabs.js +49 -18
  459. package/es/schema-component/antd/tabs/context.d.ts +8 -0
  460. package/es/schema-component/antd/tabs/context.js +15 -0
  461. package/es/schema-component/antd/tabs/index.d.ts +1 -0
  462. package/es/schema-component/antd/tabs/index.js +2 -1
  463. package/es/schema-component/antd/time-picker/ReadPretty.d.ts +1 -1
  464. package/es/schema-component/antd/time-picker/ReadPretty.js +1 -1
  465. package/es/schema-component/antd/time-picker/TimePicker.d.ts +1 -1
  466. package/es/schema-component/antd/time-picker/TimePicker.js +1 -1
  467. package/es/schema-component/antd/tree-select/ReadPretty.d.ts +1 -1
  468. package/es/schema-component/antd/tree-select/ReadPretty.js +3 -1
  469. package/es/schema-component/antd/upload/ReadPretty.js +7 -3
  470. package/es/schema-component/antd/upload/Upload.js +1 -1
  471. package/es/schema-component/antd/upload/shared.d.ts +3 -3
  472. package/es/schema-component/antd/upload/style.less +1 -2
  473. package/es/schema-component/antd/upload/type.d.ts +2 -2
  474. package/es/schema-component/antd/variable/Input.d.ts +2 -2
  475. package/es/schema-component/antd/variable/Input.js +182 -31
  476. package/es/schema-component/antd/variable/JSONInput.d.ts +2 -2
  477. package/es/schema-component/antd/variable/JSONInput.js +2 -23
  478. package/es/schema-component/antd/variable/TextArea.d.ts +2 -2
  479. package/es/schema-component/antd/variable/VariableSelect.d.ts +2 -2
  480. package/es/schema-component/antd/variable/VariableSelect.js +1 -1
  481. package/es/schema-component/common/dnd-context/index.d.ts +1 -1
  482. package/es/schema-component/common/dnd-context/index.js +11 -4
  483. package/es/schema-component/common/sortable-item/SortableItem.d.ts +11 -4
  484. package/es/schema-component/common/sortable-item/SortableItem.js +16 -5
  485. package/es/schema-component/common/utils/logic.js +64 -2
  486. package/es/schema-component/common/utils/uitls.d.ts +1 -0
  487. package/es/schema-component/common/utils/uitls.js +49 -15
  488. package/es/schema-component/core/DesignableSwitch.d.ts +2 -1
  489. package/es/schema-component/core/SchemaComponent.d.ts +2 -1
  490. package/es/schema-component/core/SchemaComponentOptions.js +13 -8
  491. package/es/schema-component/core/SchemaComponentProvider.js +17 -6
  492. package/es/schema-component/hooks/useCompile.js +33 -5
  493. package/es/schema-component/hooks/useDesignable.d.ts +5 -4
  494. package/es/schema-component/hooks/useDesignable.js +30 -28
  495. package/es/schema-component/hooks/useFieldModeOptions.js +45 -21
  496. package/es/schema-component/hooks/useProps.d.ts +1 -10
  497. package/es/schema-component/hooks/useProps.js +20 -6
  498. package/es/schema-initializer/SchemaInitializer.d.ts +18 -4
  499. package/es/schema-initializer/SchemaInitializer.js +278 -99
  500. package/es/schema-initializer/SchemaInitializerProvider.d.ts +3 -3
  501. package/es/schema-initializer/SelectCollection.d.ts +3 -3
  502. package/es/schema-initializer/SelectCollection.js +19 -16
  503. package/es/schema-initializer/buttons/BlockInitializers.d.ts +2 -0
  504. package/es/schema-initializer/buttons/BulkEditFormItemInitializers.d.ts +2 -1
  505. package/es/schema-initializer/buttons/CreateFormBlockInitializers.d.ts +2 -1
  506. package/es/schema-initializer/buttons/CreateFormBulkEditBlockInitializers.d.ts +2 -1
  507. package/es/schema-initializer/buttons/CustomFormItemInitializers.d.ts +2 -1
  508. package/es/schema-initializer/buttons/DetailsActionInitializers.d.ts +14 -0
  509. package/es/schema-initializer/buttons/DetailsActionInitializers.js +12 -0
  510. package/es/schema-initializer/buttons/FormItemInitializers.d.ts +3 -2
  511. package/es/schema-initializer/buttons/ReadPrettyFormActionInitializers.d.ts +16 -0
  512. package/es/schema-initializer/buttons/ReadPrettyFormActionInitializers.js +21 -16
  513. package/es/schema-initializer/buttons/ReadPrettyFormItemInitializers.d.ts +2 -1
  514. package/es/schema-initializer/buttons/RecordBlockInitializers.d.ts +2 -1
  515. package/es/schema-initializer/buttons/RecordFormBlockInitializers.d.ts +2 -1
  516. package/es/schema-initializer/buttons/TabPaneInitializers.d.ts +4 -3
  517. package/es/schema-initializer/buttons/TabPaneInitializers.js +3 -3
  518. package/es/schema-initializer/buttons/TableActionColumnInitializers.d.ts +3 -2
  519. package/es/schema-initializer/buttons/TableActionColumnInitializers.js +13 -4
  520. package/es/schema-initializer/buttons/TableActionInitializers.js +5 -5
  521. package/es/schema-initializer/buttons/TableColumnInitializers.d.ts +2 -1
  522. package/es/schema-initializer/buttons/TableColumnInitializers.js +17 -9
  523. package/es/schema-initializer/buttons/TableSelectorInitializers.d.ts +2 -1
  524. package/es/schema-initializer/components/BulkEditField.d.ts +2 -1
  525. package/es/schema-initializer/components/CreateRecordAction.d.ts +2 -2
  526. package/es/schema-initializer/components/CreateRecordAction.js +43 -29
  527. package/es/schema-initializer/components/DeletedField.d.ts +2 -1
  528. package/es/schema-initializer/components/DuplicateAction.d.ts +3 -0
  529. package/es/schema-initializer/components/DuplicateAction.js +165 -0
  530. package/es/schema-initializer/components/assigned-field/AssignedField.d.ts +2 -1
  531. package/es/schema-initializer/components/assigned-field/AssignedField.js +3 -2
  532. package/es/schema-initializer/components/index.d.ts +1 -0
  533. package/es/schema-initializer/components/index.js +2 -1
  534. package/es/schema-initializer/index.d.ts +1 -1
  535. package/es/schema-initializer/index.js +1 -1
  536. package/es/schema-initializer/items/ActionInitializer.d.ts +2 -1
  537. package/es/schema-initializer/items/BlockInitializer.d.ts +2 -1
  538. package/es/schema-initializer/items/BulkDestroyActionInitializer.d.ts +2 -1
  539. package/es/schema-initializer/items/BulkEditSubmitActionInitializer.d.ts +2 -1
  540. package/es/schema-initializer/items/CalendarBlockInitializer.d.ts +2 -1
  541. package/es/schema-initializer/items/CalendarBlockInitializer.js +2 -2
  542. package/es/schema-initializer/items/CollectionFieldInitializer.d.ts +2 -1
  543. package/es/schema-initializer/items/CreateActionInitializer.d.ts +2 -1
  544. package/es/schema-initializer/items/CreateChildInitializer.d.ts +2 -1
  545. package/es/schema-initializer/items/CreateFilterActionInitializer.d.ts +2 -1
  546. package/es/schema-initializer/items/CreateFormBlockInitializer.d.ts +2 -1
  547. package/es/schema-initializer/items/CreateFormBulkEditBlockInitializer.d.ts +2 -1
  548. package/es/schema-initializer/items/CreateResetActionInitializer.d.ts +2 -1
  549. package/es/schema-initializer/items/CreateSubmitActionInitializer.d.ts +2 -1
  550. package/es/schema-initializer/items/CustomizeActionInitializer.d.ts +2 -1
  551. package/es/schema-initializer/items/CustomizeBulkEditActionInitializer.d.ts +2 -1
  552. package/es/schema-initializer/items/DataBlockInitializer.d.ts +2 -1
  553. package/es/schema-initializer/items/DeleteEventActionInitializer.d.ts +2 -1
  554. package/es/schema-initializer/items/DestroyActionInitializer.d.ts +2 -1
  555. package/es/schema-initializer/items/DetailsBlockInitializer.d.ts +2 -1
  556. package/es/schema-initializer/items/DuplicateActionInitializer.d.ts +2 -0
  557. package/es/schema-initializer/items/DuplicateActionInitializer.js +61 -0
  558. package/es/schema-initializer/items/ExpandActionInitializer.d.ts +2 -1
  559. package/es/schema-initializer/items/ExpandActionInitializer.js +3 -3
  560. package/es/schema-initializer/items/FilterActionInitializer.d.ts +2 -1
  561. package/es/schema-initializer/items/FilterBlockInitializer.d.ts +2 -1
  562. package/es/schema-initializer/items/FilterCollapseBlockInitializer.d.ts +2 -1
  563. package/es/schema-initializer/items/FilterFormBlockInitializer.d.ts +2 -1
  564. package/es/schema-initializer/items/FormBlockInitializer.d.ts +2 -1
  565. package/es/schema-initializer/items/G2PlotInitializer.d.ts +2 -1
  566. package/es/schema-initializer/items/GanttBlockInitializer.d.ts +2 -1
  567. package/es/schema-initializer/items/GridCardBlockInitializer.d.ts +2 -1
  568. package/es/schema-initializer/items/InitializerWithSwitch.d.ts +2 -1
  569. package/es/schema-initializer/items/KanbanBlockInitializer.d.ts +2 -1
  570. package/es/schema-initializer/items/ListBlockInitializer.d.ts +2 -1
  571. package/es/schema-initializer/items/MarkdownBlockInitializer.d.ts +2 -1
  572. package/es/schema-initializer/items/PrintActionInitializer.d.ts +2 -1
  573. package/es/schema-initializer/items/RecordAssociationBlockInitializer.d.ts +2 -1
  574. package/es/schema-initializer/items/RecordAssociationCalendarBlockInitializer.d.ts +2 -1
  575. package/es/schema-initializer/items/RecordAssociationDetailsBlockInitializer.d.ts +2 -1
  576. package/es/schema-initializer/items/RecordAssociationFormBlockInitializer.d.ts +2 -1
  577. package/es/schema-initializer/items/RecordFormBlockInitializer.d.ts +2 -1
  578. package/es/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.d.ts +2 -1
  579. package/es/schema-initializer/items/RecordReadPrettyFormBlockInitializer.d.ts +2 -1
  580. package/es/schema-initializer/items/RefreshActionInitializer.d.ts +2 -1
  581. package/es/schema-initializer/items/SelectActionInitializer.d.ts +2 -1
  582. package/es/schema-initializer/items/SubmitActionInitializer.d.ts +2 -1
  583. package/es/schema-initializer/items/TableActionColumnInitializer.d.ts +2 -1
  584. package/es/schema-initializer/items/TableBlockInitializer.d.ts +2 -1
  585. package/es/schema-initializer/items/TableCollectionFieldInitializer.d.ts +2 -1
  586. package/es/schema-initializer/items/TableSelectorInitializer.d.ts +2 -1
  587. package/es/schema-initializer/items/UpdateActionInitializer.d.ts +2 -1
  588. package/es/schema-initializer/items/UpdateSubmitActionInitializer.d.ts +2 -1
  589. package/es/schema-initializer/items/ViewActionInitializer.d.ts +2 -1
  590. package/es/schema-initializer/items/index.d.ts +1 -0
  591. package/es/schema-initializer/items/index.js +1 -0
  592. package/es/schema-initializer/utils.d.ts +13 -1
  593. package/es/schema-initializer/utils.js +110 -68
  594. package/es/schema-items/GeneralSchemaItems.js +5 -3
  595. package/es/schema-items/OpenModeSchemaItems.js +14 -10
  596. package/es/schema-settings/DataTemplates/FormDataTemplates.d.ts +1 -1
  597. package/es/schema-settings/DataTemplates/FormDataTemplates.js +8 -6
  598. package/es/schema-settings/DataTemplates/TreeLabel.d.ts +2 -1
  599. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.js +2 -0
  600. package/es/schema-settings/DataTemplates/components/Designer.d.ts +1 -1
  601. package/es/schema-settings/DataTemplates/components/Designer.js +2 -0
  602. package/es/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +3 -3
  603. package/es/schema-settings/DataTemplates/hooks/useCollectionState.js +38 -57
  604. package/es/schema-settings/EnableChildCollections/index.d.ts +1 -1
  605. package/es/schema-settings/EnableChildCollections/index.js +2 -0
  606. package/es/schema-settings/GeneralSchemaDesigner.d.ts +2 -1
  607. package/es/schema-settings/GeneralSchemaDesigner.js +3 -2
  608. package/es/schema-settings/LinkageRules/DynamicComponent.d.ts +2 -1
  609. package/es/schema-settings/LinkageRules/FilterDynamicComponent.d.ts +1 -1
  610. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
  611. package/es/schema-settings/LinkageRules/LinkageRuleAction.js +14 -10
  612. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +2 -2
  613. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.js +2 -0
  614. package/es/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +2 -1
  615. package/es/schema-settings/LinkageRules/components/LinkageHeader.js +2 -0
  616. package/es/schema-settings/LinkageRules/index.d.ts +1 -1
  617. package/es/schema-settings/LinkageRules/index.js +3 -1
  618. package/es/schema-settings/SchemaSettings.d.ts +2 -1
  619. package/es/schema-settings/SchemaSettings.js +150 -62
  620. package/es/schema-settings/VariableInput/VariableInput.d.ts +1 -1
  621. package/es/schema-settings/VariableInput/VariableInput.js +1 -1
  622. package/es/schema-settings/VariableInput/hooks/useDateVariable.d.ts +12 -1
  623. package/es/schema-settings/VariableInput/hooks/useDateVariable.js +41 -36
  624. package/es/schema-settings/VariableInput/hooks/useFormVariable.d.ts +19 -0
  625. package/es/schema-settings/VariableInput/hooks/useFormVariable.js +89 -0
  626. package/es/schema-settings/VariableInput/hooks/useIterationVariable.d.ts +8 -0
  627. package/es/schema-settings/VariableInput/hooks/useIterationVariable.js +77 -0
  628. package/es/schema-settings/VariableInput/hooks/useUserVariable.d.ts +4 -4
  629. package/es/schema-settings/VariableInput/hooks/useUserVariable.js +66 -42
  630. package/es/schema-settings/VariableInput/hooks/useVariableOptions.d.ts +5 -1
  631. package/es/schema-settings/VariableInput/hooks/useVariableOptions.js +23 -3
  632. package/es/schema-settings/VariableInput/type.d.ts +28 -0
  633. package/es/schema-settings/VariableInput/type.js +1 -0
  634. package/es/schema-settings/hooks/useIsShowMultipleSwitch.js +3 -2
  635. package/es/schema-templates/BlockTemplate.d.ts +1 -1
  636. package/es/schema-templates/BlockTemplate.js +4 -1
  637. package/es/schema-templates/BlockTemplateDetails.d.ts +2 -1
  638. package/es/schema-templates/BlockTemplateDetails.js +11 -7
  639. package/es/schema-templates/BlockTemplatePage.d.ts +3 -2
  640. package/es/schema-templates/BlockTemplatePage.js +4 -1
  641. package/es/schema-templates/SchemaTemplateManagerProvider.d.ts +5 -2
  642. package/es/schema-templates/SchemaTemplateManagerProvider.js +7 -0
  643. package/es/schema-templates/index.d.ts +0 -1
  644. package/es/schema-templates/index.js +1 -2
  645. package/es/system-settings/SystemSettingsProvider.d.ts +5 -3
  646. package/es/system-settings/SystemSettingsShortcut.d.ts +2 -3
  647. package/es/system-settings/SystemSettingsShortcut.js +33 -81
  648. package/es/test/collections.d.ts +1487 -0
  649. package/es/test/collections.js +1437 -0
  650. package/es/test/index.d.ts +3 -0
  651. package/es/test/index.js +3 -0
  652. package/es/test/mainCollections.d.ts +11359 -0
  653. package/es/test/mainCollections.js +3 -0
  654. package/es/test/mockAPIClient.d.ts +6 -0
  655. package/es/test/mockAPIClient.js +10 -0
  656. package/es/user/ChangePassword.d.ts +1 -1
  657. package/es/user/ChangePassword.js +30 -26
  658. package/es/user/CurrentUser.d.ts +7 -1
  659. package/es/user/CurrentUser.js +126 -88
  660. package/es/user/CurrentUserProvider.d.ts +1 -1
  661. package/es/user/CurrentUserProvider.js +4 -3
  662. package/es/user/EditProfile.d.ts +1 -1
  663. package/es/user/EditProfile.js +31 -25
  664. package/es/user/LanguageSettings.d.ts +1 -1
  665. package/es/user/LanguageSettings.js +67 -64
  666. package/es/user/SigninPage.d.ts +2 -1
  667. package/es/user/SigninPage.js +40 -29
  668. package/es/user/SigninPageExtension.d.ts +1 -1
  669. package/es/user/SignupPage.d.ts +2 -1
  670. package/es/user/SignupPage.js +5 -4
  671. package/es/user/SwitchRole.d.ts +1 -1
  672. package/es/user/SwitchRole.js +54 -51
  673. package/es/user/ThemeSettings.d.ts +1 -1
  674. package/es/user/ThemeSettings.js +56 -52
  675. package/es/user/VerificationCode.d.ts +2 -2
  676. package/es/user/index.d.ts +0 -3
  677. package/es/user/index.js +3 -3
  678. package/lib/acl/ACLProvider.d.ts +6 -7
  679. package/lib/acl/ACLProvider.js +6 -23
  680. package/lib/acl/ACLShortcut.d.ts +2 -3
  681. package/lib/acl/ACLShortcut.js +4 -64
  682. package/lib/acl/Configuration/ConfigureCenter.d.ts +3 -2
  683. package/lib/acl/Configuration/ConfigureCenter.js +8 -25
  684. package/lib/acl/Configuration/FilterDynamicComponent.d.ts +2 -2
  685. package/lib/acl/Configuration/MenuConfigure.d.ts +2 -1
  686. package/lib/acl/Configuration/MenuItemsProvider.d.ts +2 -1
  687. package/lib/acl/Configuration/MenuItemsProvider.js +3 -3
  688. package/lib/acl/Configuration/PermisionProvider.d.ts +2 -2
  689. package/lib/acl/Configuration/RoleConfigure.d.ts +2 -1
  690. package/lib/acl/Configuration/RoleTable.d.ts +2 -1
  691. package/lib/acl/Configuration/ScopeSelect.d.ts +2 -1
  692. package/lib/acl/Configuration/schemas/scopes.d.ts +1 -0
  693. package/lib/antd-config-provider/index.d.ts +1 -1
  694. package/lib/api-client/APIClient.d.ts +1 -1
  695. package/lib/api-client/APIClientProvider.d.ts +2 -1
  696. package/lib/api-client/hooks/assign.d.ts +0 -1
  697. package/lib/api-client/hooks/assign.js +3 -10
  698. package/lib/api-client/hooks/useRequest.d.ts +1 -1
  699. package/lib/api-client/hooks/useRequest.js +1 -1
  700. package/lib/appInfo/CurrentAppInfoProvider.d.ts +1 -1
  701. package/lib/application/Application.d.ts +2 -1
  702. package/lib/application/Application.js +7 -6
  703. package/lib/application/compose.d.ts +2 -1
  704. package/lib/application-v2/Application.d.ts +31 -0
  705. package/lib/application-v2/Application.js +147 -0
  706. package/lib/application-v2/Plugin.d.ts +14 -0
  707. package/lib/application-v2/Plugin.js +99 -0
  708. package/lib/application-v2/PluginManager.d.ts +19 -0
  709. package/lib/application-v2/PluginManager.js +249 -0
  710. package/lib/application-v2/Router.d.ts +13 -0
  711. package/lib/application-v2/Router.js +111 -0
  712. package/lib/application-v2/components/AppComponent.d.ts +2 -0
  713. package/lib/application-v2/components/AppComponent.js +28 -0
  714. package/lib/application-v2/components/MainComponent.d.ts +6 -0
  715. package/lib/application-v2/components/MainComponent.js +23 -0
  716. package/lib/application-v2/components/RouterProvider.d.ts +14 -0
  717. package/lib/application-v2/components/RouterProvider.js +115 -0
  718. package/lib/application-v2/components/index.d.ts +13 -0
  719. package/lib/application-v2/components/index.js +56 -0
  720. package/lib/application-v2/compose.d.ts +2 -0
  721. package/lib/application-v2/compose.js +49 -0
  722. package/lib/application-v2/context.d.ts +3 -0
  723. package/lib/application-v2/context.js +9 -0
  724. package/lib/application-v2/hooks/index.d.ts +3 -0
  725. package/lib/application-v2/hooks/index.js +38 -0
  726. package/lib/application-v2/hooks/useApp.d.ts +1 -0
  727. package/lib/application-v2/hooks/useApp.js +12 -0
  728. package/lib/application-v2/hooks/useLoad.d.ts +1 -0
  729. package/lib/application-v2/hooks/useLoad.js +45 -0
  730. package/lib/application-v2/hooks/useRouter.d.ts +1 -0
  731. package/lib/application-v2/hooks/useRouter.js +12 -0
  732. package/lib/application-v2/index.d.ts +3 -0
  733. package/lib/application-v2/index.js +38 -0
  734. package/lib/application-v2/types.d.ts +26 -0
  735. package/lib/application-v2/types.js +5 -0
  736. package/lib/async-data-provider/index.d.ts +1 -1
  737. package/lib/auth/OptionsComponent.d.ts +7 -0
  738. package/lib/auth/OptionsComponent.js +32 -0
  739. package/lib/auth/SigninPage.d.ts +23 -0
  740. package/lib/{settings-form/SettingsForm.js → auth/SigninPage.js} +121 -277
  741. package/lib/auth/SigninPageExtension.d.ts +22 -0
  742. package/lib/auth/SigninPageExtension.js +42 -0
  743. package/lib/auth/SignupPage.d.ts +24 -0
  744. package/lib/auth/SignupPage.js +94 -0
  745. package/lib/auth/index.d.ts +4 -0
  746. package/lib/auth/index.js +49 -0
  747. package/lib/block-provider/BlockProvider.d.ts +4 -3
  748. package/lib/block-provider/BlockProvider.js +23 -5
  749. package/lib/block-provider/CalendarBlockProvider.d.ts +1 -1
  750. package/lib/block-provider/DetailsBlockProvider.d.ts +1 -1
  751. package/lib/block-provider/DetailsBlockProvider.js +1 -13
  752. package/lib/block-provider/FilterFormBlockProvider.d.ts +2 -1
  753. package/lib/block-provider/FormBlockProvider.d.ts +1 -1
  754. package/lib/block-provider/FormBlockProvider.js +10 -21
  755. package/lib/block-provider/FormFieldProvider.d.ts +1 -1
  756. package/lib/block-provider/GanttBlockProvider.d.ts +1 -1
  757. package/lib/block-provider/KanbanBlockProvider.d.ts +1 -1
  758. package/lib/block-provider/TableBlockProvider.d.ts +1 -2
  759. package/lib/block-provider/TableBlockProvider.js +57 -84
  760. package/lib/block-provider/TableFieldProvider.d.ts +1 -1
  761. package/lib/block-provider/TableSelectorProvider.d.ts +2 -2
  762. package/lib/block-provider/hooks/index.d.ts +10 -1
  763. package/lib/block-provider/hooks/index.js +50 -134
  764. package/lib/block-provider/index.d.ts +1 -0
  765. package/lib/block-provider/index.js +11 -0
  766. package/lib/board/Card.d.ts +2 -2
  767. package/lib/board/CardAdder.d.ts +2 -2
  768. package/lib/board/CardForm.d.ts +2 -2
  769. package/lib/board/Column.d.ts +3 -3
  770. package/lib/board/ColumnAdder.d.ts +2 -2
  771. package/lib/board/ColumnForm.d.ts +2 -2
  772. package/lib/board/DefaultCard.d.ts +2 -2
  773. package/lib/board/DefaultColumnHeader.d.ts +2 -2
  774. package/lib/board/Kanban.d.ts +2 -2
  775. package/lib/board/withDroppable.d.ts +2 -1
  776. package/lib/china-region/index.d.ts +2 -1
  777. package/lib/collection-manager/CollectionField.d.ts +1 -1
  778. package/lib/collection-manager/CollectionField.js +2 -1
  779. package/lib/collection-manager/CollectionManagerProvider.d.ts +2 -2
  780. package/lib/collection-manager/CollectionManagerShortcut.d.ts +2 -3
  781. package/lib/collection-manager/CollectionManagerShortcut.js +4 -63
  782. package/lib/collection-manager/Configuration/AddCategoryAction.d.ts +3 -2
  783. package/lib/collection-manager/Configuration/AddCategoryAction.js +1 -1
  784. package/lib/collection-manager/Configuration/AddCollectionAction.d.ts +3 -2
  785. package/lib/collection-manager/Configuration/AddCollectionAction.js +30 -24
  786. package/lib/collection-manager/Configuration/AddFieldAction.d.ts +3 -2
  787. package/lib/collection-manager/Configuration/AddFieldAction.js +43 -30
  788. package/lib/collection-manager/Configuration/AddSubFieldAction.d.ts +2 -1
  789. package/lib/collection-manager/Configuration/AddSubFieldAction.js +22 -17
  790. package/lib/collection-manager/Configuration/CollectionFields.d.ts +2 -1
  791. package/lib/collection-manager/Configuration/CollectionFieldsTable.d.ts +2 -2
  792. package/lib/collection-manager/Configuration/CollectionFieldsTable.js +3 -1
  793. package/lib/collection-manager/Configuration/CollectionFieldsTableArray.d.ts +2 -2
  794. package/lib/collection-manager/Configuration/CollectionFieldsTableArray.js +3 -1
  795. package/lib/collection-manager/Configuration/ConfigurationTable.d.ts +2 -1
  796. package/lib/collection-manager/Configuration/ConfigurationTabs.d.ts +2 -1
  797. package/lib/collection-manager/Configuration/ConfigurationTabs.js +61 -49
  798. package/lib/collection-manager/Configuration/EditCategoryAction.d.ts +3 -2
  799. package/lib/collection-manager/Configuration/EditCategoryAction.js +1 -1
  800. package/lib/collection-manager/Configuration/EditCollectionAction.d.ts +3 -2
  801. package/lib/collection-manager/Configuration/EditCollectionAction.js +1 -1
  802. package/lib/collection-manager/Configuration/EditFieldAction.d.ts +3 -2
  803. package/lib/collection-manager/Configuration/EditFieldAction.js +1 -1
  804. package/lib/collection-manager/Configuration/EditSubFieldAction.d.ts +2 -1
  805. package/lib/collection-manager/Configuration/EditSubFieldAction.js +1 -1
  806. package/lib/collection-manager/Configuration/OverridingCollectionField.d.ts +3 -2
  807. package/lib/collection-manager/Configuration/OverridingCollectionField.js +1 -1
  808. package/lib/collection-manager/Configuration/SyncFieldsAction.d.ts +3 -2
  809. package/lib/collection-manager/Configuration/SyncFieldsAction.js +1 -1
  810. package/lib/collection-manager/Configuration/ViewInheritedField.d.ts +3 -2
  811. package/lib/collection-manager/Configuration/ViewInheritedField.js +1 -1
  812. package/lib/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
  813. package/lib/collection-manager/Configuration/components/CollectionCategory.js +2 -0
  814. package/lib/collection-manager/Configuration/components/CollectionFieldInterface.d.ts +1 -1
  815. package/lib/collection-manager/Configuration/components/CollectionFieldInterface.js +2 -0
  816. package/lib/collection-manager/Configuration/components/CollectionTemplate.d.ts +1 -1
  817. package/lib/collection-manager/Configuration/components/CollectionTemplate.js +2 -0
  818. package/lib/collection-manager/Configuration/components/FieldSummary.d.ts +1 -1
  819. package/lib/collection-manager/Configuration/components/FieldSummary.js +4 -2
  820. package/lib/collection-manager/Configuration/components/TemplateSummay.d.ts +1 -1
  821. package/lib/collection-manager/Configuration/components/TemplateSummay.js +4 -2
  822. package/lib/collection-manager/Configuration/components/index.d.ts +6 -6
  823. package/lib/collection-manager/Configuration/components/index.js +12 -0
  824. package/lib/collection-manager/Configuration/interfaces.d.ts +1 -0
  825. package/lib/collection-manager/Configuration/templates.d.ts +1 -0
  826. package/lib/collection-manager/ResourceActionProvider.d.ts +1 -1
  827. package/lib/collection-manager/action-hooks.d.ts +1 -0
  828. package/lib/collection-manager/action-hooks.js +171 -92
  829. package/lib/collection-manager/hooks/useOptions.js +39 -36
  830. package/lib/collection-manager/index.d.ts +1 -1
  831. package/lib/collection-manager/index.js +7 -0
  832. package/lib/collection-manager/interfaces/components/index.d.ts +7 -6
  833. package/lib/collection-manager/interfaces/index.d.ts +0 -1
  834. package/lib/collection-manager/interfaces/index.js +0 -11
  835. package/lib/collection-manager/interfaces/integer.js +1 -1
  836. package/lib/collection-manager/interfaces/number.js +3 -3
  837. package/lib/collection-manager/interfaces/percent.js +3 -3
  838. package/lib/collection-manager/interfaces/properties/index.d.ts +0 -1
  839. package/lib/collection-manager/interfaces/properties/index.js +1 -42
  840. package/lib/collection-manager/interfaces/url.js +0 -5
  841. package/lib/collection-manager/sub-table.d.ts +2 -2
  842. package/lib/collection-manager/sub-table.js +4 -0
  843. package/lib/collection-manager/templates/components/PreviewFields.d.ts +1 -1
  844. package/lib/collection-manager/templates/components/PreviewFields.js +2 -1
  845. package/lib/collection-manager/templates/components/PreviewTable.d.ts +2 -1
  846. package/lib/collection-manager/types.d.ts +2 -0
  847. package/lib/filter-provider/FilterProvider.d.ts +5 -1
  848. package/lib/filter-provider/FilterProvider.js +9 -4
  849. package/lib/formula/Expression.d.ts +2 -1
  850. package/lib/formula/Expression.js +64 -44
  851. package/lib/formula/Result.d.ts +2 -1
  852. package/lib/formula/index.d.ts +2 -2
  853. package/lib/hooks/index.d.ts +2 -0
  854. package/lib/hooks/index.js +27 -0
  855. package/lib/hooks/useAdminSchemaUid.d.ts +1 -0
  856. package/lib/hooks/useAdminSchemaUid.js +13 -0
  857. package/lib/hooks/useMenuItem.d.ts +37 -0
  858. package/lib/hooks/useMenuItem.js +104 -0
  859. package/lib/hooks/useViewport.d.ts +1 -0
  860. package/lib/hooks/useViewport.js +47 -0
  861. package/lib/i18n/i18n.js +0 -1
  862. package/lib/icon/Icon.d.ts +2 -1
  863. package/lib/index.d.ts +3 -2
  864. package/lib/index.js +33 -22
  865. package/lib/locale/en_US.d.ts +19 -22
  866. package/lib/locale/en_US.js +22 -25
  867. package/lib/locale/es_ES.d.ts +4 -2
  868. package/lib/locale/es_ES.js +5 -3
  869. package/lib/locale/ja_JP.d.ts +19 -20
  870. package/lib/locale/ja_JP.js +20 -21
  871. package/lib/locale/pt_BR.d.ts +3 -1
  872. package/lib/locale/pt_BR.js +4 -2
  873. package/lib/locale/ru_RU.d.ts +3 -19
  874. package/lib/locale/ru_RU.js +4 -20
  875. package/lib/locale/tr_TR.d.ts +0 -17
  876. package/lib/locale/tr_TR.js +0 -17
  877. package/lib/locale/zh_CN.d.ts +28 -25
  878. package/lib/locale/zh_CN.js +29 -26
  879. package/lib/plugin-manager/PinnedPluginListProvider.d.ts +1 -1
  880. package/lib/plugin-manager/index.d.ts +1 -3
  881. package/lib/plugin-manager/index.js +4 -26
  882. package/lib/pm/Card.d.ts +8 -0
  883. package/lib/pm/Card.js +375 -0
  884. package/lib/pm/PluginManagerLink.d.ts +3 -2
  885. package/lib/pm/PluginManagerLink.js +19 -14
  886. package/lib/pm/index.d.ts +33 -3
  887. package/lib/pm/index.js +113 -278
  888. package/lib/powered-by/index.d.ts +2 -1
  889. package/lib/route-switch/RouteSwitch.d.ts +2 -2
  890. package/lib/route-switch/RouteSwitch.js +78 -45
  891. package/lib/route-switch/RouteSwitchProvider.d.ts +3 -3
  892. package/lib/route-switch/antd/admin-layout/index.d.ts +4 -2
  893. package/lib/route-switch/antd/admin-layout/index.js +59 -54
  894. package/lib/route-switch/antd/auth-layout/index.d.ts +2 -2
  895. package/lib/route-switch/antd/auth-layout/index.js +2 -1
  896. package/lib/route-switch/antd/route-schema-component/index.d.ts +2 -2
  897. package/lib/route-switch/antd/route-schema-component/index.js +2 -2
  898. package/lib/route-switch/context.d.ts +4 -0
  899. package/lib/route-switch/context.js +6 -2
  900. package/lib/route-switch/types.d.ts +2 -5
  901. package/lib/schema-component/antd/AntdSchemaComponentProvider.d.ts +2 -1
  902. package/lib/schema-component/antd/action/Action.Container.js +4 -0
  903. package/lib/schema-component/antd/action/Action.Designer.d.ts +2 -1
  904. package/lib/schema-component/antd/action/Action.Designer.js +201 -17
  905. package/lib/schema-component/antd/action/Action.Drawer.js +14 -12
  906. package/lib/schema-component/antd/action/Action.Link.js +3 -1
  907. package/lib/schema-component/antd/action/Action.Modal.js +13 -12
  908. package/lib/schema-component/antd/action/Action.Page.js +8 -2
  909. package/lib/schema-component/antd/action/Action.js +25 -17
  910. package/lib/schema-component/antd/action/ActionBar.d.ts +18 -2
  911. package/lib/schema-component/antd/action/ActionBar.js +50 -21
  912. package/lib/schema-component/antd/action/context.d.ts +8 -2
  913. package/lib/schema-component/antd/action/context.js +19 -3
  914. package/lib/schema-component/antd/action/hooks.d.ts +2 -0
  915. package/lib/schema-component/antd/association-field/AssociationFieldProvider.d.ts +1 -1
  916. package/lib/schema-component/antd/association-field/AssociationFieldProvider.js +56 -6
  917. package/lib/schema-component/antd/association-field/AssociationSelect.js +88 -9
  918. package/lib/schema-component/antd/association-field/Editable.d.ts +1 -1
  919. package/lib/schema-component/antd/association-field/Editable.js +12 -11
  920. package/lib/schema-component/antd/association-field/FileManager.d.ts +1 -1
  921. package/lib/schema-component/antd/association-field/FileManager.js +13 -3
  922. package/lib/schema-component/antd/association-field/InternalNester.d.ts +2 -1
  923. package/lib/schema-component/antd/association-field/InternalNester.js +11 -1
  924. package/lib/schema-component/antd/association-field/InternalPicker.d.ts +1 -1
  925. package/lib/schema-component/antd/association-field/InternalPicker.js +9 -3
  926. package/lib/schema-component/antd/association-field/InternalSubTable.d.ts +2 -1
  927. package/lib/schema-component/antd/association-field/InternalSubTable.js +32 -4
  928. package/lib/schema-component/antd/association-field/InternalViewer.js +9 -2
  929. package/lib/schema-component/antd/association-field/Nester.d.ts +2 -1
  930. package/lib/schema-component/antd/association-field/Nester.js +56 -12
  931. package/lib/schema-component/antd/association-field/ReadPretty.d.ts +1 -1
  932. package/lib/schema-component/antd/association-field/ReadPretty.js +4 -0
  933. package/lib/schema-component/antd/association-field/SubTable.js +53 -12
  934. package/lib/schema-component/antd/association-field/components/CreateRecordAction.d.ts +1 -1
  935. package/lib/schema-component/antd/association-field/components/CreateRecordAction.js +3 -1
  936. package/lib/schema-component/antd/association-field/schema.d.ts +3 -15
  937. package/lib/schema-component/antd/association-field/schema.js +4 -16
  938. package/lib/schema-component/antd/association-filter/ActionBarAssociationFilterAction.d.ts +2 -1
  939. package/lib/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.d.ts +2 -1
  940. package/lib/schema-component/antd/association-filter/AssociationFilter.FilterBlockInitializer.d.ts +2 -1
  941. package/lib/schema-component/antd/association-filter/AssociationFilter.Initializer.d.ts +2 -1
  942. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.Designer.d.ts +2 -1
  943. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.d.ts +2 -1
  944. package/lib/schema-component/antd/association-filter/AssociationFilter.d.ts +7 -6
  945. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDelete.d.ts +2 -1
  946. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.d.ts +2 -1
  947. package/lib/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
  948. package/lib/schema-component/antd/association-select/ReadPretty.js +2 -0
  949. package/lib/schema-component/antd/block-item/BlockItem.js +5 -2
  950. package/lib/schema-component/antd/block-item/TestDesigner.d.ts +2 -1
  951. package/lib/schema-component/antd/calendar/Calendar.Designer.d.ts +2 -1
  952. package/lib/schema-component/antd/calendar/Calendar.js +5 -3
  953. package/lib/schema-component/antd/calendar/DeleteEvent.d.ts +1 -1
  954. package/lib/schema-component/antd/calendar/DeleteEvent.js +3 -1
  955. package/lib/schema-component/antd/calendar/Event.d.ts +1 -1
  956. package/lib/schema-component/antd/calendar/Event.js +2 -0
  957. package/lib/schema-component/antd/calendar/Nav.d.ts +1 -1
  958. package/lib/schema-component/antd/calendar/Nav.js +5 -3
  959. package/lib/schema-component/antd/calendar/Title.d.ts +1 -1
  960. package/lib/schema-component/antd/calendar/Title.js +2 -0
  961. package/lib/schema-component/antd/calendar/Today.d.ts +1 -1
  962. package/lib/schema-component/antd/calendar/Today.js +4 -2
  963. package/lib/schema-component/antd/calendar/ViewSelect.d.ts +1 -1
  964. package/lib/schema-component/antd/calendar/ViewSelect.js +3 -0
  965. package/lib/schema-component/antd/calendar/components/Header.d.ts +2 -1
  966. package/lib/schema-component/antd/card-item/CardItem.js +1 -1
  967. package/lib/schema-component/antd/cascader/Cascader.js +8 -1
  968. package/lib/schema-component/antd/checkbox/Checkbox.d.ts +2 -1
  969. package/lib/schema-component/antd/checkbox/Checkbox.js +14 -12
  970. package/lib/schema-component/antd/collection-select/CollectionSelect.js +2 -0
  971. package/lib/schema-component/antd/cron/Cron.d.ts +2 -1
  972. package/lib/schema-component/antd/cron/Cron.js +3 -2
  973. package/lib/schema-component/antd/date-picker/DatePicker.d.ts +4 -2
  974. package/lib/schema-component/antd/date-picker/DatePicker.js +2 -1
  975. package/lib/schema-component/antd/date-picker/ReadPretty.d.ts +1 -1
  976. package/lib/schema-component/antd/date-picker/ReadPretty.js +1 -1
  977. package/lib/schema-component/antd/error-fallback/ErrorFallback.d.ts +2 -1
  978. package/lib/schema-component/antd/expand-action/Expand.Action.Design.d.ts +2 -1
  979. package/lib/schema-component/antd/expand-action/Expand.Action.Design.js +8 -8
  980. package/lib/schema-component/antd/expand-action/Expand.Action.d.ts +2 -1
  981. package/lib/schema-component/antd/expand-action/Expand.Action.js +9 -12
  982. package/lib/schema-component/antd/filter/DynamicComponent.d.ts +2 -1
  983. package/lib/schema-component/antd/filter/Filter.Action.Designer.d.ts +2 -1
  984. package/lib/schema-component/antd/filter/Filter.js +3 -1
  985. package/lib/schema-component/antd/filter/FilterAction.d.ts +1 -1
  986. package/lib/schema-component/antd/filter/FilterAction.js +3 -1
  987. package/lib/schema-component/antd/filter/FilterItem.d.ts +1 -1
  988. package/lib/schema-component/antd/filter/FilterItem.js +46 -41
  989. package/lib/schema-component/antd/filter/FilterItems.d.ts +1 -1
  990. package/lib/schema-component/antd/filter/FilterItems.js +2 -0
  991. package/lib/schema-component/antd/filter/SaveDefaultValue.d.ts +2 -1
  992. package/lib/schema-component/antd/filter/index.d.ts +1 -0
  993. package/lib/schema-component/antd/filter/index.js +11 -0
  994. package/lib/schema-component/antd/filter/useValues.js +5 -3
  995. package/lib/schema-component/antd/form/Form.Designer.d.ts +2 -1
  996. package/lib/schema-component/antd/form/Form.d.ts +1 -1
  997. package/lib/schema-component/antd/form/Form.js +2 -0
  998. package/lib/schema-component/antd/form-item/FormItem.FilterFormDesigner.d.ts +2 -1
  999. package/lib/schema-component/antd/form-item/FormItem.js +95 -40
  1000. package/lib/schema-component/antd/form-item/SchemaSettingOptions.d.ts +11 -10
  1001. package/lib/schema-component/antd/form-item/SchemaSettingOptions.js +1 -1
  1002. package/lib/schema-component/antd/form-v2/Form.Designer.d.ts +4 -3
  1003. package/lib/schema-component/antd/form-v2/Form.FilterDesigner.d.ts +2 -1
  1004. package/lib/schema-component/antd/form-v2/Form.js +8 -1
  1005. package/lib/schema-component/antd/form-v2/FormField.js +2 -0
  1006. package/lib/schema-component/antd/form-v2/Templates.d.ts +7 -1
  1007. package/lib/schema-component/antd/form-v2/Templates.js +20 -3
  1008. package/lib/schema-component/antd/form-v2/index.js +3 -1
  1009. package/lib/schema-component/antd/g2plot/G2Plot.js +2 -0
  1010. package/lib/schema-component/antd/g2plot/G2PlotDesigner.d.ts +2 -1
  1011. package/lib/schema-component/antd/gantt/Gantt.Designer.d.ts +2 -1
  1012. package/lib/schema-component/antd/gantt/components/gantt/Event.d.ts +1 -1
  1013. package/lib/schema-component/antd/gantt/components/gantt/Event.js +2 -0
  1014. package/lib/schema-component/antd/gantt/components/gantt/gantt.js +1 -1
  1015. package/lib/schema-component/antd/grid/Block.d.ts +1 -1
  1016. package/lib/schema-component/antd/grid/Block.js +2 -0
  1017. package/lib/schema-component/antd/grid/Grid.js +25 -9
  1018. package/lib/schema-component/antd/grid-card/GridCard.Decorator.d.ts +1 -1
  1019. package/lib/schema-component/antd/grid-card/GridCard.Decorator.js +2 -12
  1020. package/lib/schema-component/antd/grid-card/GridCard.Designer.d.ts +2 -1
  1021. package/lib/schema-component/antd/grid-card/GridCard.Designer.js +5 -6
  1022. package/lib/schema-component/antd/grid-card/GridCard.Item.d.ts +2 -1
  1023. package/lib/schema-component/antd/grid-card/GridCard.d.ts +2 -1
  1024. package/lib/schema-component/antd/grid-card/GridCard.js +11 -7
  1025. package/lib/schema-component/antd/index.d.ts +1 -0
  1026. package/lib/schema-component/antd/index.js +11 -0
  1027. package/lib/schema-component/antd/index.less +18 -4
  1028. package/lib/schema-component/antd/input/Input.d.ts +2 -1
  1029. package/lib/schema-component/antd/input/Input.js +3 -2
  1030. package/lib/schema-component/antd/input/Json.d.ts +2 -2
  1031. package/lib/schema-component/antd/input/Json.js +49 -9
  1032. package/lib/schema-component/antd/input/ReadPretty.d.ts +1 -1
  1033. package/lib/schema-component/antd/input/ReadPretty.js +4 -4
  1034. package/lib/schema-component/antd/input-number/InputNumber.d.ts +5 -1
  1035. package/lib/schema-component/antd/input-number/InputNumber.js +1 -1
  1036. package/lib/schema-component/antd/input-number/ReadPretty.d.ts +2 -2
  1037. package/lib/schema-component/antd/input-number/ReadPretty.js +6 -2
  1038. package/lib/schema-component/antd/kanban/Kanban.Card.Designer.TitleSwitch.d.ts +2 -1
  1039. package/lib/schema-component/antd/kanban/Kanban.Card.Designer.d.ts +2 -1
  1040. package/lib/schema-component/antd/kanban/Kanban.Card.js +4 -2
  1041. package/lib/schema-component/antd/kanban/Kanban.CardViewer.js +2 -0
  1042. package/lib/schema-component/antd/kanban/Kanban.Designer.d.ts +2 -1
  1043. package/lib/schema-component/antd/kanban/Kanban.js +3 -1
  1044. package/lib/schema-component/antd/list/List.Decorator.d.ts +1 -1
  1045. package/lib/schema-component/antd/list/List.Decorator.js +8 -13
  1046. package/lib/schema-component/antd/list/List.Designer.d.ts +2 -1
  1047. package/lib/schema-component/antd/list/List.Item.d.ts +2 -1
  1048. package/lib/schema-component/antd/list/List.Item.js +1 -1
  1049. package/lib/schema-component/antd/list/List.d.ts +2 -1
  1050. package/lib/schema-component/antd/markdown/Markdown.Void.Designer.d.ts +2 -1
  1051. package/lib/schema-component/antd/markdown/Markdown.Void.js +2 -0
  1052. package/lib/schema-component/antd/markdown/Markdown.d.ts +2 -0
  1053. package/lib/schema-component/antd/markdown/Markdown.js +9 -4
  1054. package/lib/schema-component/antd/markdown/util.js +1 -1
  1055. package/lib/schema-component/antd/menu/Menu.Designer.d.ts +2 -1
  1056. package/lib/schema-component/antd/menu/Menu.js +334 -175
  1057. package/lib/schema-component/antd/menu/MenuItemInitializers/index.d.ts +2 -1
  1058. package/lib/schema-component/antd/page/FixedBlock.d.ts +2 -1
  1059. package/lib/schema-component/antd/page/FixedBlock.js +6 -2
  1060. package/lib/schema-component/antd/page/Page.d.ts +2 -1
  1061. package/lib/schema-component/antd/page/Page.js +51 -37
  1062. package/lib/schema-component/antd/page/PageTabDesigner.d.ts +3 -2
  1063. package/lib/schema-component/antd/pagination/index.d.ts +1 -1
  1064. package/lib/schema-component/antd/pagination/index.js +2 -0
  1065. package/lib/schema-component/antd/password/Password.d.ts +1 -1
  1066. package/lib/schema-component/antd/password/PasswordStrength.js +2 -145
  1067. package/lib/schema-component/antd/password/utils.d.ts +1 -0
  1068. package/lib/schema-component/antd/password/utils.js +151 -0
  1069. package/lib/schema-component/antd/percent/Percent.js +2 -2
  1070. package/lib/schema-component/antd/preview/Preview.d.ts +1 -1
  1071. package/lib/schema-component/antd/quick-edit/QuickEdit.d.ts +3 -0
  1072. package/lib/schema-component/antd/quick-edit/QuickEdit.js +98 -0
  1073. package/lib/schema-component/antd/quick-edit/index.d.ts +1 -0
  1074. package/lib/{settings-form → schema-component/antd/quick-edit}/index.js +4 -4
  1075. package/lib/schema-component/antd/radio/Radio.d.ts +1 -1
  1076. package/lib/schema-component/antd/record-picker/InputRecordPicker.d.ts +1 -1
  1077. package/lib/schema-component/antd/record-picker/InputRecordPicker.js +4 -6
  1078. package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +9 -4
  1079. package/lib/schema-component/antd/remote-select/ReadPretty.d.ts +1 -1
  1080. package/lib/schema-component/antd/remote-select/ReadPretty.js +2 -0
  1081. package/lib/schema-component/antd/remote-select/RemoteSelect.d.ts +2 -0
  1082. package/lib/schema-component/antd/remote-select/RemoteSelect.js +108 -30
  1083. package/lib/schema-component/antd/remote-select/utils.d.ts +4 -0
  1084. package/lib/schema-component/antd/remote-select/utils.js +41 -0
  1085. package/lib/schema-component/antd/select/ReadPretty.d.ts +1 -1
  1086. package/lib/schema-component/antd/select/ReadPretty.js +7 -7
  1087. package/lib/schema-component/antd/select/Select.d.ts +3 -0
  1088. package/lib/schema-component/antd/select/Select.js +23 -12
  1089. package/lib/schema-component/antd/select/index.d.ts +1 -1
  1090. package/lib/schema-component/antd/select/index.js +4 -4
  1091. package/lib/schema-component/antd/select/utils.d.ts +14 -0
  1092. package/lib/schema-component/antd/select/{shared.js → utils.js} +22 -20
  1093. package/lib/schema-component/antd/table/Table.Array.Designer.d.ts +2 -1
  1094. package/lib/schema-component/antd/table/Table.Array.d.ts +5 -5
  1095. package/lib/schema-component/antd/table/Table.Array.js +7 -5
  1096. package/lib/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
  1097. package/lib/schema-component/antd/table/Table.Column.ActionBar.js +2 -0
  1098. package/lib/schema-component/antd/table/Table.Column.Decorator.d.ts +2 -1
  1099. package/lib/schema-component/antd/table/Table.Column.Designer.d.ts +2 -1
  1100. package/lib/schema-component/antd/table/Table.Column.d.ts +2 -1
  1101. package/lib/schema-component/antd/table/Table.Designer.d.ts +2 -1
  1102. package/lib/schema-component/antd/table/Table.RowActionDesigner.d.ts +2 -1
  1103. package/lib/schema-component/antd/table/Table.RowSelection.d.ts +1 -1
  1104. package/lib/schema-component/antd/table/Table.RowSelection.js +2 -0
  1105. package/lib/schema-component/antd/table/Table.Void.Designer.d.ts +2 -1
  1106. package/lib/schema-component/antd/table/Table.Void.d.ts +1 -1
  1107. package/lib/schema-component/antd/table/Table.Void.js +2 -0
  1108. package/lib/schema-component/antd/table-v2/FilterDynamicComponent.d.ts +2 -2
  1109. package/lib/schema-component/antd/table-v2/FilterDynamicComponent.js +17 -2
  1110. package/lib/schema-component/antd/table-v2/Table.ActionColumnDesigner.d.ts +2 -1
  1111. package/lib/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
  1112. package/lib/schema-component/antd/table-v2/Table.Column.ActionBar.js +2 -0
  1113. package/lib/schema-component/antd/table-v2/Table.Column.Decorator.d.ts +2 -1
  1114. package/lib/schema-component/antd/table-v2/Table.Column.Designer.d.ts +2 -1
  1115. package/lib/schema-component/antd/table-v2/Table.Column.Designer.js +146 -9
  1116. package/lib/schema-component/antd/table-v2/Table.Column.d.ts +2 -1
  1117. package/lib/schema-component/antd/table-v2/Table.Designer.d.ts +2 -1
  1118. package/lib/schema-component/antd/table-v2/Table.Index.d.ts +2 -1
  1119. package/lib/schema-component/antd/table-v2/Table.js +61 -28
  1120. package/lib/schema-component/antd/table-v2/TableBlockDesigner.d.ts +2 -1
  1121. package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +54 -47
  1122. package/lib/schema-component/antd/table-v2/TableField.js +4 -0
  1123. package/lib/schema-component/antd/table-v2/TableSelectorDesigner.d.ts +2 -1
  1124. package/lib/schema-component/antd/table-v2/index.d.ts +1 -0
  1125. package/lib/schema-component/antd/table-v2/index.js +12 -0
  1126. package/lib/schema-component/antd/table-v2/utils.js +1 -1
  1127. package/lib/schema-component/antd/tabs/Tabs.Designer.d.ts +2 -1
  1128. package/lib/schema-component/antd/tabs/Tabs.js +51 -18
  1129. package/lib/schema-component/antd/tabs/context.d.ts +8 -0
  1130. package/lib/schema-component/antd/tabs/context.js +24 -0
  1131. package/lib/schema-component/antd/tabs/index.d.ts +1 -0
  1132. package/lib/schema-component/antd/tabs/index.js +11 -0
  1133. package/lib/schema-component/antd/time-picker/ReadPretty.d.ts +1 -1
  1134. package/lib/schema-component/antd/time-picker/ReadPretty.js +1 -1
  1135. package/lib/schema-component/antd/time-picker/TimePicker.d.ts +1 -1
  1136. package/lib/schema-component/antd/time-picker/TimePicker.js +1 -1
  1137. package/lib/schema-component/antd/tree-select/ReadPretty.d.ts +1 -1
  1138. package/lib/schema-component/antd/tree-select/ReadPretty.js +3 -1
  1139. package/lib/schema-component/antd/upload/ReadPretty.js +7 -3
  1140. package/lib/schema-component/antd/upload/Upload.js +1 -1
  1141. package/lib/schema-component/antd/upload/shared.d.ts +3 -3
  1142. package/lib/schema-component/antd/upload/style.less +1 -2
  1143. package/lib/schema-component/antd/upload/type.d.ts +2 -2
  1144. package/lib/schema-component/antd/variable/Input.d.ts +2 -2
  1145. package/lib/schema-component/antd/variable/Input.js +183 -31
  1146. package/lib/schema-component/antd/variable/JSONInput.d.ts +2 -2
  1147. package/lib/schema-component/antd/variable/JSONInput.js +2 -23
  1148. package/lib/schema-component/antd/variable/TextArea.d.ts +2 -2
  1149. package/lib/schema-component/antd/variable/VariableSelect.d.ts +2 -2
  1150. package/lib/schema-component/antd/variable/VariableSelect.js +1 -1
  1151. package/lib/schema-component/common/dnd-context/index.d.ts +1 -1
  1152. package/lib/schema-component/common/dnd-context/index.js +11 -4
  1153. package/lib/schema-component/common/sortable-item/SortableItem.d.ts +11 -4
  1154. package/lib/schema-component/common/sortable-item/SortableItem.js +16 -5
  1155. package/lib/schema-component/common/utils/logic.js +64 -2
  1156. package/lib/schema-component/common/utils/uitls.d.ts +1 -0
  1157. package/lib/schema-component/common/utils/uitls.js +50 -14
  1158. package/lib/schema-component/core/DesignableSwitch.d.ts +2 -1
  1159. package/lib/schema-component/core/SchemaComponent.d.ts +2 -1
  1160. package/lib/schema-component/core/SchemaComponentOptions.js +12 -7
  1161. package/lib/schema-component/core/SchemaComponentProvider.js +17 -6
  1162. package/lib/schema-component/hooks/useCompile.js +32 -4
  1163. package/lib/schema-component/hooks/useDesignable.d.ts +5 -4
  1164. package/lib/schema-component/hooks/useDesignable.js +30 -28
  1165. package/lib/schema-component/hooks/useFieldModeOptions.js +44 -20
  1166. package/lib/schema-component/hooks/useProps.d.ts +1 -10
  1167. package/lib/schema-component/hooks/useProps.js +20 -6
  1168. package/lib/schema-initializer/SchemaInitializer.d.ts +18 -4
  1169. package/lib/schema-initializer/SchemaInitializer.js +275 -96
  1170. package/lib/schema-initializer/SchemaInitializerProvider.d.ts +3 -3
  1171. package/lib/schema-initializer/SelectCollection.d.ts +3 -3
  1172. package/lib/schema-initializer/SelectCollection.js +22 -17
  1173. package/lib/schema-initializer/buttons/BlockInitializers.d.ts +2 -0
  1174. package/lib/schema-initializer/buttons/BulkEditFormItemInitializers.d.ts +2 -1
  1175. package/lib/schema-initializer/buttons/CreateFormBlockInitializers.d.ts +2 -1
  1176. package/lib/schema-initializer/buttons/CreateFormBulkEditBlockInitializers.d.ts +2 -1
  1177. package/lib/schema-initializer/buttons/CustomFormItemInitializers.d.ts +2 -1
  1178. package/lib/schema-initializer/buttons/DetailsActionInitializers.d.ts +14 -0
  1179. package/lib/schema-initializer/buttons/DetailsActionInitializers.js +12 -0
  1180. package/lib/schema-initializer/buttons/FormItemInitializers.d.ts +3 -2
  1181. package/lib/schema-initializer/buttons/ReadPrettyFormActionInitializers.d.ts +16 -0
  1182. package/lib/schema-initializer/buttons/ReadPrettyFormActionInitializers.js +21 -16
  1183. package/lib/schema-initializer/buttons/ReadPrettyFormItemInitializers.d.ts +2 -1
  1184. package/lib/schema-initializer/buttons/RecordBlockInitializers.d.ts +2 -1
  1185. package/lib/schema-initializer/buttons/RecordFormBlockInitializers.d.ts +2 -1
  1186. package/lib/schema-initializer/buttons/TabPaneInitializers.d.ts +4 -3
  1187. package/lib/schema-initializer/buttons/TabPaneInitializers.js +3 -3
  1188. package/lib/schema-initializer/buttons/TableActionColumnInitializers.d.ts +3 -2
  1189. package/lib/schema-initializer/buttons/TableActionColumnInitializers.js +13 -4
  1190. package/lib/schema-initializer/buttons/TableActionInitializers.js +5 -5
  1191. package/lib/schema-initializer/buttons/TableColumnInitializers.d.ts +2 -1
  1192. package/lib/schema-initializer/buttons/TableColumnInitializers.js +17 -9
  1193. package/lib/schema-initializer/buttons/TableSelectorInitializers.d.ts +2 -1
  1194. package/lib/schema-initializer/components/BulkEditField.d.ts +2 -1
  1195. package/lib/schema-initializer/components/CreateRecordAction.d.ts +2 -2
  1196. package/lib/schema-initializer/components/CreateRecordAction.js +40 -26
  1197. package/lib/schema-initializer/components/DeletedField.d.ts +2 -1
  1198. package/lib/schema-initializer/components/DuplicateAction.d.ts +3 -0
  1199. package/lib/schema-initializer/components/DuplicateAction.js +174 -0
  1200. package/lib/schema-initializer/components/assigned-field/AssignedField.d.ts +2 -1
  1201. package/lib/schema-initializer/components/assigned-field/AssignedField.js +3 -2
  1202. package/lib/schema-initializer/components/index.d.ts +1 -0
  1203. package/lib/schema-initializer/components/index.js +11 -0
  1204. package/lib/schema-initializer/index.d.ts +1 -1
  1205. package/lib/schema-initializer/index.js +7 -0
  1206. package/lib/schema-initializer/items/ActionInitializer.d.ts +2 -1
  1207. package/lib/schema-initializer/items/BlockInitializer.d.ts +2 -1
  1208. package/lib/schema-initializer/items/BulkDestroyActionInitializer.d.ts +2 -1
  1209. package/lib/schema-initializer/items/BulkEditSubmitActionInitializer.d.ts +2 -1
  1210. package/lib/schema-initializer/items/CalendarBlockInitializer.d.ts +2 -1
  1211. package/lib/schema-initializer/items/CalendarBlockInitializer.js +9 -9
  1212. package/lib/schema-initializer/items/CollectionFieldInitializer.d.ts +2 -1
  1213. package/lib/schema-initializer/items/CreateActionInitializer.d.ts +2 -1
  1214. package/lib/schema-initializer/items/CreateChildInitializer.d.ts +2 -1
  1215. package/lib/schema-initializer/items/CreateFilterActionInitializer.d.ts +2 -1
  1216. package/lib/schema-initializer/items/CreateFormBlockInitializer.d.ts +2 -1
  1217. package/lib/schema-initializer/items/CreateFormBulkEditBlockInitializer.d.ts +2 -1
  1218. package/lib/schema-initializer/items/CreateResetActionInitializer.d.ts +2 -1
  1219. package/lib/schema-initializer/items/CreateSubmitActionInitializer.d.ts +2 -1
  1220. package/lib/schema-initializer/items/CustomizeActionInitializer.d.ts +2 -1
  1221. package/lib/schema-initializer/items/CustomizeBulkEditActionInitializer.d.ts +2 -1
  1222. package/lib/schema-initializer/items/DataBlockInitializer.d.ts +2 -1
  1223. package/lib/schema-initializer/items/DeleteEventActionInitializer.d.ts +2 -1
  1224. package/lib/schema-initializer/items/DestroyActionInitializer.d.ts +2 -1
  1225. package/lib/schema-initializer/items/DetailsBlockInitializer.d.ts +2 -1
  1226. package/lib/schema-initializer/items/DuplicateActionInitializer.d.ts +2 -0
  1227. package/lib/schema-initializer/items/DuplicateActionInitializer.js +69 -0
  1228. package/lib/schema-initializer/items/ExpandActionInitializer.d.ts +2 -1
  1229. package/lib/schema-initializer/items/ExpandActionInitializer.js +3 -3
  1230. package/lib/schema-initializer/items/FilterActionInitializer.d.ts +2 -1
  1231. package/lib/schema-initializer/items/FilterBlockInitializer.d.ts +2 -1
  1232. package/lib/schema-initializer/items/FilterCollapseBlockInitializer.d.ts +2 -1
  1233. package/lib/schema-initializer/items/FilterFormBlockInitializer.d.ts +2 -1
  1234. package/lib/schema-initializer/items/FormBlockInitializer.d.ts +2 -1
  1235. package/lib/schema-initializer/items/G2PlotInitializer.d.ts +2 -1
  1236. package/lib/schema-initializer/items/GanttBlockInitializer.d.ts +2 -1
  1237. package/lib/schema-initializer/items/GridCardBlockInitializer.d.ts +2 -1
  1238. package/lib/schema-initializer/items/InitializerWithSwitch.d.ts +2 -1
  1239. package/lib/schema-initializer/items/KanbanBlockInitializer.d.ts +2 -1
  1240. package/lib/schema-initializer/items/ListBlockInitializer.d.ts +2 -1
  1241. package/lib/schema-initializer/items/MarkdownBlockInitializer.d.ts +2 -1
  1242. package/lib/schema-initializer/items/PrintActionInitializer.d.ts +2 -1
  1243. package/lib/schema-initializer/items/RecordAssociationBlockInitializer.d.ts +2 -1
  1244. package/lib/schema-initializer/items/RecordAssociationCalendarBlockInitializer.d.ts +2 -1
  1245. package/lib/schema-initializer/items/RecordAssociationDetailsBlockInitializer.d.ts +2 -1
  1246. package/lib/schema-initializer/items/RecordAssociationFormBlockInitializer.d.ts +2 -1
  1247. package/lib/schema-initializer/items/RecordFormBlockInitializer.d.ts +2 -1
  1248. package/lib/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.d.ts +2 -1
  1249. package/lib/schema-initializer/items/RecordReadPrettyFormBlockInitializer.d.ts +2 -1
  1250. package/lib/schema-initializer/items/RefreshActionInitializer.d.ts +2 -1
  1251. package/lib/schema-initializer/items/SelectActionInitializer.d.ts +2 -1
  1252. package/lib/schema-initializer/items/SubmitActionInitializer.d.ts +2 -1
  1253. package/lib/schema-initializer/items/TableActionColumnInitializer.d.ts +2 -1
  1254. package/lib/schema-initializer/items/TableBlockInitializer.d.ts +2 -1
  1255. package/lib/schema-initializer/items/TableCollectionFieldInitializer.d.ts +2 -1
  1256. package/lib/schema-initializer/items/TableSelectorInitializer.d.ts +2 -1
  1257. package/lib/schema-initializer/items/UpdateActionInitializer.d.ts +2 -1
  1258. package/lib/schema-initializer/items/UpdateSubmitActionInitializer.d.ts +2 -1
  1259. package/lib/schema-initializer/items/ViewActionInitializer.d.ts +2 -1
  1260. package/lib/schema-initializer/items/index.d.ts +1 -0
  1261. package/lib/schema-initializer/items/index.js +11 -0
  1262. package/lib/schema-initializer/utils.d.ts +13 -1
  1263. package/lib/schema-initializer/utils.js +111 -68
  1264. package/lib/schema-items/GeneralSchemaItems.js +5 -3
  1265. package/lib/schema-items/OpenModeSchemaItems.js +14 -10
  1266. package/lib/schema-settings/DataTemplates/FormDataTemplates.d.ts +1 -1
  1267. package/lib/schema-settings/DataTemplates/FormDataTemplates.js +8 -6
  1268. package/lib/schema-settings/DataTemplates/TreeLabel.d.ts +2 -1
  1269. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.js +2 -0
  1270. package/lib/schema-settings/DataTemplates/components/Designer.d.ts +1 -1
  1271. package/lib/schema-settings/DataTemplates/components/Designer.js +2 -0
  1272. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +3 -3
  1273. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.js +38 -58
  1274. package/lib/schema-settings/EnableChildCollections/index.d.ts +1 -1
  1275. package/lib/schema-settings/EnableChildCollections/index.js +2 -0
  1276. package/lib/schema-settings/GeneralSchemaDesigner.d.ts +2 -1
  1277. package/lib/schema-settings/GeneralSchemaDesigner.js +3 -2
  1278. package/lib/schema-settings/LinkageRules/DynamicComponent.d.ts +2 -1
  1279. package/lib/schema-settings/LinkageRules/FilterDynamicComponent.d.ts +1 -1
  1280. package/lib/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
  1281. package/lib/schema-settings/LinkageRules/LinkageRuleAction.js +14 -10
  1282. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +2 -2
  1283. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.js +2 -0
  1284. package/lib/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +2 -1
  1285. package/lib/schema-settings/LinkageRules/components/LinkageHeader.js +2 -0
  1286. package/lib/schema-settings/LinkageRules/index.d.ts +1 -1
  1287. package/lib/schema-settings/LinkageRules/index.js +3 -1
  1288. package/lib/schema-settings/SchemaSettings.d.ts +2 -1
  1289. package/lib/schema-settings/SchemaSettings.js +148 -60
  1290. package/lib/schema-settings/VariableInput/VariableInput.d.ts +1 -1
  1291. package/lib/schema-settings/VariableInput/VariableInput.js +1 -1
  1292. package/lib/schema-settings/VariableInput/hooks/useDateVariable.d.ts +12 -1
  1293. package/lib/schema-settings/VariableInput/hooks/useDateVariable.js +41 -36
  1294. package/lib/schema-settings/VariableInput/hooks/useFormVariable.d.ts +19 -0
  1295. package/lib/schema-settings/VariableInput/hooks/useFormVariable.js +96 -0
  1296. package/lib/schema-settings/VariableInput/hooks/useIterationVariable.d.ts +8 -0
  1297. package/lib/schema-settings/VariableInput/hooks/useIterationVariable.js +84 -0
  1298. package/lib/schema-settings/VariableInput/hooks/useUserVariable.d.ts +4 -4
  1299. package/lib/schema-settings/VariableInput/hooks/useUserVariable.js +66 -42
  1300. package/lib/schema-settings/VariableInput/hooks/useVariableOptions.d.ts +5 -1
  1301. package/lib/schema-settings/VariableInput/hooks/useVariableOptions.js +23 -3
  1302. package/lib/schema-settings/VariableInput/type.d.ts +28 -0
  1303. package/lib/schema-settings/VariableInput/type.js +5 -0
  1304. package/lib/schema-settings/hooks/useIsShowMultipleSwitch.js +3 -2
  1305. package/lib/schema-templates/BlockTemplate.d.ts +1 -1
  1306. package/lib/schema-templates/BlockTemplate.js +4 -1
  1307. package/lib/schema-templates/BlockTemplateDetails.d.ts +2 -1
  1308. package/lib/schema-templates/BlockTemplateDetails.js +10 -6
  1309. package/lib/schema-templates/BlockTemplatePage.d.ts +3 -2
  1310. package/lib/schema-templates/BlockTemplatePage.js +5 -2
  1311. package/lib/schema-templates/SchemaTemplateManagerProvider.d.ts +5 -2
  1312. package/lib/schema-templates/SchemaTemplateManagerProvider.js +7 -0
  1313. package/lib/schema-templates/index.d.ts +0 -1
  1314. package/lib/schema-templates/index.js +0 -11
  1315. package/lib/system-settings/SystemSettingsProvider.d.ts +5 -3
  1316. package/lib/system-settings/SystemSettingsShortcut.d.ts +2 -3
  1317. package/lib/system-settings/SystemSettingsShortcut.js +33 -85
  1318. package/lib/test/collections.d.ts +1487 -0
  1319. package/lib/test/collections.js +1444 -0
  1320. package/lib/test/index.d.ts +3 -0
  1321. package/lib/test/index.js +36 -0
  1322. package/lib/test/mainCollections.d.ts +11359 -0
  1323. package/lib/test/mainCollections.js +3 -0
  1324. package/lib/test/mockAPIClient.d.ts +6 -0
  1325. package/lib/test/mockAPIClient.js +18 -0
  1326. package/lib/user/ChangePassword.d.ts +1 -1
  1327. package/lib/user/ChangePassword.js +30 -26
  1328. package/lib/user/CurrentUser.d.ts +7 -1
  1329. package/lib/user/CurrentUser.js +122 -83
  1330. package/lib/user/CurrentUserProvider.d.ts +1 -1
  1331. package/lib/user/CurrentUserProvider.js +3 -2
  1332. package/lib/user/EditProfile.d.ts +1 -1
  1333. package/lib/user/EditProfile.js +31 -25
  1334. package/lib/user/LanguageSettings.d.ts +1 -1
  1335. package/lib/user/LanguageSettings.js +66 -63
  1336. package/lib/user/SigninPage.d.ts +2 -1
  1337. package/lib/user/SigninPage.js +39 -28
  1338. package/lib/user/SigninPageExtension.d.ts +1 -1
  1339. package/lib/user/SignupPage.d.ts +2 -1
  1340. package/lib/user/SignupPage.js +4 -3
  1341. package/lib/user/SwitchRole.d.ts +1 -1
  1342. package/lib/user/SwitchRole.js +57 -53
  1343. package/lib/user/ThemeSettings.d.ts +1 -1
  1344. package/lib/user/ThemeSettings.js +59 -54
  1345. package/lib/user/VerificationCode.d.ts +2 -2
  1346. package/lib/user/index.d.ts +0 -3
  1347. package/lib/user/index.js +0 -33
  1348. package/package.json +16 -15
  1349. package/tsconfig.json +2 -0
  1350. package/.umirc.ts +0 -24
  1351. package/develop.md +0 -5
  1352. package/es/collection-manager/interfaces/attachment.d.ts +0 -2
  1353. package/es/collection-manager/interfaces/attachment.js +0 -98
  1354. package/es/plugin-manager/PluginManager.d.ts +0 -23
  1355. package/es/plugin-manager/PluginManager.js +0 -166
  1356. package/es/plugin-manager/PluginManagerProvider.d.ts +0 -2
  1357. package/es/plugin-manager/PluginManagerProvider.js +0 -11
  1358. package/es/schema-component/antd/select/shared.d.ts +0 -7
  1359. package/es/schema-component/antd/table-v2/hooks/useUserVariable.d.ts +0 -22
  1360. package/es/schema-component/antd/table-v2/hooks/useUserVariable.js +0 -65
  1361. package/es/schema-templates/SchemaTemplateShortcut.d.ts +0 -1
  1362. package/es/schema-templates/SchemaTemplateShortcut.js +0 -17
  1363. package/es/settings-form/SettingsForm.d.ts +0 -13
  1364. package/es/settings-form/index.d.ts +0 -1
  1365. package/es/settings-form/index.js +0 -1
  1366. package/lib/collection-manager/interfaces/attachment.d.ts +0 -2
  1367. package/lib/collection-manager/interfaces/attachment.js +0 -105
  1368. package/lib/plugin-manager/PluginManager.d.ts +0 -23
  1369. package/lib/plugin-manager/PluginManager.js +0 -178
  1370. package/lib/plugin-manager/PluginManagerProvider.d.ts +0 -2
  1371. package/lib/plugin-manager/PluginManagerProvider.js +0 -19
  1372. package/lib/schema-component/antd/select/shared.d.ts +0 -7
  1373. package/lib/schema-component/antd/table-v2/hooks/useUserVariable.d.ts +0 -22
  1374. package/lib/schema-component/antd/table-v2/hooks/useUserVariable.js +0 -73
  1375. package/lib/schema-templates/SchemaTemplateShortcut.d.ts +0 -1
  1376. package/lib/schema-templates/SchemaTemplateShortcut.js +0 -25
  1377. package/lib/settings-form/SettingsForm.d.ts +0 -13
  1378. package/lib/settings-form/index.d.ts +0 -1
@@ -0,0 +1,1444 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _default = [{
8
+ key: '17zb9wfq0vt',
9
+ name: 'product',
10
+ title: 's',
11
+ inherit: false,
12
+ fields: [],
13
+ createdBy: true,
14
+ updatedBy: true,
15
+ sortable: true
16
+ }, {
17
+ key: '1s4aq7jbxdh',
18
+ name: 'roles',
19
+ title: '{{t("Roles")}}',
20
+ inherit: false,
21
+ fields: [{
22
+ key: 'gs6190e27z5',
23
+ name: 'name',
24
+ type: 'uid',
25
+ interface: 'input',
26
+ collectionName: 'roles',
27
+ parentKey: null,
28
+ reverseKey: null,
29
+ uiSchemaUid: 'vy6i30jm9jm',
30
+ uiSchema: {
31
+ 'x-uid': 'vy6i30jm9jm',
32
+ name: 'vlldvknkn3t',
33
+ type: 'string',
34
+ title: '{{t("Role UID")}}',
35
+ 'x-component': 'Input'
36
+ },
37
+ prefix: 'r_',
38
+ primaryKey: true
39
+ }, {
40
+ key: 'w0hvovoxnjh',
41
+ name: 'title',
42
+ type: 'string',
43
+ interface: 'input',
44
+ collectionName: 'roles',
45
+ parentKey: null,
46
+ reverseKey: null,
47
+ uiSchemaUid: 'pyq24tp0zkj',
48
+ uiSchema: {
49
+ 'x-uid': 'pyq24tp0zkj',
50
+ name: 'wtku9z07h69',
51
+ type: 'string',
52
+ title: '{{t("Role name")}}',
53
+ 'x-component': 'Input'
54
+ },
55
+ unique: true
56
+ }, {
57
+ key: 'lxysmomsdhy',
58
+ name: 'description',
59
+ type: 'string',
60
+ interface: null,
61
+ collectionName: 'roles',
62
+ parentKey: null,
63
+ reverseKey: null,
64
+ uiSchemaUid: null,
65
+ uiSchema: {}
66
+ }, {
67
+ key: 'ynyhe4kgxku',
68
+ name: 'strategy',
69
+ type: 'json',
70
+ interface: null,
71
+ collectionName: 'roles',
72
+ parentKey: null,
73
+ reverseKey: null,
74
+ uiSchemaUid: null,
75
+ uiSchema: {}
76
+ }, {
77
+ key: 'qr9949ps9dv',
78
+ name: 'default',
79
+ type: 'boolean',
80
+ interface: null,
81
+ collectionName: 'roles',
82
+ parentKey: null,
83
+ reverseKey: null,
84
+ uiSchemaUid: null,
85
+ uiSchema: {},
86
+ defaultValue: false
87
+ }, {
88
+ key: '11ts4nwrm8c',
89
+ name: 'allowConfigure',
90
+ type: 'boolean',
91
+ interface: null,
92
+ collectionName: 'roles',
93
+ parentKey: null,
94
+ reverseKey: null,
95
+ uiSchemaUid: null,
96
+ uiSchema: {}
97
+ }, {
98
+ key: 'nxj4s7xev9g',
99
+ name: 'allowNewMenu',
100
+ type: 'boolean',
101
+ interface: null,
102
+ collectionName: 'roles',
103
+ parentKey: null,
104
+ reverseKey: null,
105
+ uiSchemaUid: null,
106
+ uiSchema: {}
107
+ }, {
108
+ key: 'ibwisd53xeg',
109
+ name: 'menuUiSchemas',
110
+ type: 'belongsToMany',
111
+ interface: null,
112
+ collectionName: 'roles',
113
+ parentKey: null,
114
+ reverseKey: null,
115
+ uiSchemaUid: null,
116
+ uiSchema: {},
117
+ target: 'uiSchemas',
118
+ targetKey: 'x-uid',
119
+ foreignKey: 'roleName',
120
+ sourceKey: 'name',
121
+ otherKey: 'uiSchemaXUid',
122
+ through: 'rolesUischemas'
123
+ }, {
124
+ key: '0vt1uoy8f47',
125
+ name: 'resources',
126
+ type: 'hasMany',
127
+ interface: null,
128
+ collectionName: 'roles',
129
+ parentKey: null,
130
+ reverseKey: null,
131
+ uiSchemaUid: null,
132
+ uiSchema: {},
133
+ target: 'rolesResources',
134
+ sourceKey: 'name',
135
+ targetKey: 'id',
136
+ foreignKey: 'roleName'
137
+ }],
138
+ autoGenId: false,
139
+ model: 'RoleModel',
140
+ filterTargetKey: 'name'
141
+ }, {
142
+ key: 'nhng5sgypw8',
143
+ name: 't_j6omof6tza8',
144
+ title: '任务',
145
+ inherit: false,
146
+ fields: [{
147
+ key: 'aabs1ya9aux',
148
+ name: 'f_g8j5jvalqh0',
149
+ type: 'string',
150
+ interface: 'input',
151
+ collectionName: 't_j6omof6tza8',
152
+ parentKey: null,
153
+ reverseKey: null,
154
+ uiSchemaUid: 'tzb6h0tsbis',
155
+ uiSchema: {
156
+ 'x-uid': 'tzb6h0tsbis',
157
+ name: 'y94c05v2hp2',
158
+ type: 'string',
159
+ 'x-component': 'Input',
160
+ title: '名称',
161
+ enum: []
162
+ }
163
+ }, {
164
+ key: 'kidn54kisne',
165
+ name: 'f_tegyd222bcc',
166
+ type: 'text',
167
+ interface: 'textarea',
168
+ collectionName: 't_j6omof6tza8',
169
+ parentKey: null,
170
+ reverseKey: null,
171
+ uiSchemaUid: 'p4uucjm3rrx',
172
+ uiSchema: {
173
+ 'x-uid': 'p4uucjm3rrx',
174
+ name: 'ri9ulk87owm',
175
+ type: 'string',
176
+ 'x-component': 'Input.TextArea',
177
+ title: '描述',
178
+ enum: []
179
+ }
180
+ }, {
181
+ key: 'kwdiruosgsb',
182
+ name: 'f_u007sq2jg93',
183
+ type: 'belongsToMany',
184
+ interface: 'linkTo',
185
+ collectionName: 't_j6omof6tza8',
186
+ parentKey: null,
187
+ reverseKey: 's5w3l6pl1hn',
188
+ uiSchemaUid: 'iea79k3kmao',
189
+ uiSchema: {
190
+ 'x-uid': 'iea79k3kmao',
191
+ name: 'njked4wch3i',
192
+ 'x-component': 'RecordPicker',
193
+ 'x-component-props': {
194
+ multiple: true,
195
+ fieldNames: {
196
+ label: 'id',
197
+ value: 'id'
198
+ }
199
+ },
200
+ title: '负责人',
201
+ enum: []
202
+ },
203
+ target: 'users',
204
+ targetKey: 'id',
205
+ sourceKey: 'id',
206
+ through: 't_7476m1wwsfe',
207
+ foreignKey: 'f_9zwkbo7dd18',
208
+ otherKey: 'f_q84aphtx7eb'
209
+ }, {
210
+ key: 'w7civak6gp3',
211
+ name: 'f_hpmvdltzs6m',
212
+ type: 'string',
213
+ interface: 'radioGroup',
214
+ collectionName: 't_j6omof6tza8',
215
+ parentKey: null,
216
+ reverseKey: null,
217
+ uiSchemaUid: '481uv9zj072',
218
+ uiSchema: {
219
+ 'x-uid': '481uv9zj072',
220
+ name: '8fyelcfuzfu',
221
+ enum: [{
222
+ value: '67snt3e6yld',
223
+ label: '未开始',
224
+ color: 'default'
225
+ }, {
226
+ value: 'ht963n365al',
227
+ label: '进行中',
228
+ color: 'green'
229
+ }, {
230
+ value: '2s2s8wzcnm0',
231
+ label: '测试中',
232
+ color: 'volcano'
233
+ }, {
234
+ value: 'irepvdzp1ac',
235
+ label: '已完成',
236
+ color: 'blue'
237
+ }],
238
+ type: 'string',
239
+ 'x-component': 'Radio.Group',
240
+ title: '状态'
241
+ }
242
+ }, {
243
+ key: '9x87w5z0ea6',
244
+ name: 'f_jj9cyhron1d',
245
+ type: 'hasMany',
246
+ interface: 'subTable',
247
+ collectionName: 't_j6omof6tza8',
248
+ parentKey: null,
249
+ reverseKey: null,
250
+ uiSchemaUid: 'pndvx008mmn',
251
+ uiSchema: {
252
+ 'x-uid': 'pndvx008mmn',
253
+ name: 'l8xqzpkxj3p',
254
+ type: 'array',
255
+ 'x-component': 'Table',
256
+ 'x-component-props': {},
257
+ enum: [],
258
+ title: '子任务'
259
+ },
260
+ targetKey: 'id',
261
+ sourceKey: 'id',
262
+ foreignKey: 'f_yzivojrp6l8',
263
+ target: 't_ab12qiwruwk'
264
+ }, {
265
+ key: '3f4y1iq16ux',
266
+ name: 'f_ooar0pto2ko',
267
+ type: 'belongsToMany',
268
+ interface: 'attachment',
269
+ collectionName: 't_j6omof6tza8',
270
+ parentKey: null,
271
+ reverseKey: null,
272
+ uiSchemaUid: '5xf7izxjny5',
273
+ uiSchema: {
274
+ 'x-uid': '5xf7izxjny5',
275
+ name: '9az9003ijcm',
276
+ 'x-component-props': {
277
+ multiple: true,
278
+ action: 'attachments:upload'
279
+ },
280
+ type: 'array',
281
+ 'x-component': 'Upload.Attachment',
282
+ title: '附件',
283
+ enum: []
284
+ },
285
+ target: 'attachments',
286
+ targetKey: 'id',
287
+ sourceKey: 'id',
288
+ through: 't_5a7wh2qhk4l',
289
+ foreignKey: 'f_tqfsxclrexu',
290
+ otherKey: 'f_j2krlyq6oka'
291
+ }, {
292
+ key: '4um5urxskg0',
293
+ name: 'f_f7txg1oc3nt',
294
+ type: 'date',
295
+ interface: 'createdAt',
296
+ collectionName: 't_j6omof6tza8',
297
+ parentKey: null,
298
+ reverseKey: null,
299
+ uiSchemaUid: 'jjax6r7c84m',
300
+ uiSchema: {
301
+ 'x-uid': 'jjax6r7c84m',
302
+ name: 'clidfmw96u3',
303
+ 'x-component-props': {
304
+ dateFormat: 'YYYY-MM-DD',
305
+ showTime: true,
306
+ timeFormat: 'HH:mm:ss'
307
+ },
308
+ type: 'datetime',
309
+ title: '创建时间',
310
+ 'x-component': 'DatePicker',
311
+ 'x-read-pretty': true,
312
+ enum: []
313
+ },
314
+ field: 'createdAt'
315
+ }, {
316
+ key: 'dnwqg2s3oph',
317
+ name: 'f_2dpc76bszit',
318
+ type: 'belongsTo',
319
+ interface: 'createdBy',
320
+ collectionName: 't_j6omof6tza8',
321
+ parentKey: null,
322
+ reverseKey: null,
323
+ uiSchemaUid: 'po3y2pc112z',
324
+ uiSchema: {
325
+ 'x-uid': 'po3y2pc112z',
326
+ name: 'ke2rte2zikm',
327
+ type: 'object',
328
+ title: '创建人',
329
+ 'x-component': 'RecordPicker',
330
+ 'x-component-props': {
331
+ fieldNames: {
332
+ value: 'id',
333
+ label: 'nickname'
334
+ }
335
+ },
336
+ 'x-read-pretty': true,
337
+ enum: []
338
+ },
339
+ target: 'users',
340
+ foreignKey: 'createdById',
341
+ targetKey: 'id'
342
+ }, {
343
+ key: '1sayjktagk3',
344
+ name: 'f_z27302tl2bf',
345
+ type: 'string',
346
+ interface: 'select',
347
+ collectionName: 't_j6omof6tza8',
348
+ parentKey: null,
349
+ reverseKey: null,
350
+ uiSchemaUid: '0a28rxnov8o',
351
+ uiSchema: {
352
+ 'x-uid': '0a28rxnov8o',
353
+ name: '2vg44ojdq4j',
354
+ enum: [{
355
+ value: 'mkvgt7ndsqd',
356
+ label: '缺陷',
357
+ color: 'volcano'
358
+ }, {
359
+ value: '9yyv2tawmry',
360
+ label: '交互',
361
+ color: 'green'
362
+ }, {
363
+ value: 'vx4bhmtsuus',
364
+ label: '需求',
365
+ color: 'cyan'
366
+ }],
367
+ type: 'string',
368
+ 'x-component': 'Select',
369
+ title: '类型'
370
+ }
371
+ }, {
372
+ key: 'zhvtzwta7bz',
373
+ name: 'f_yc8jbfiqfvh',
374
+ type: 'string',
375
+ interface: 'radioGroup',
376
+ collectionName: 't_j6omof6tza8',
377
+ parentKey: null,
378
+ reverseKey: null,
379
+ uiSchemaUid: 'jijqs397op9',
380
+ uiSchema: {
381
+ 'x-uid': 'jijqs397op9',
382
+ name: '99v9hnujiuh',
383
+ enum: [{
384
+ value: 's7hocw6twfk',
385
+ label: '高',
386
+ color: 'red'
387
+ }, {
388
+ value: 'v25527dxseu',
389
+ label: '中',
390
+ color: 'blue'
391
+ }, {
392
+ value: 'c4hobfb5k07',
393
+ label: '低',
394
+ color: 'lime'
395
+ }],
396
+ type: 'string',
397
+ 'x-component': 'Radio.Group',
398
+ title: '优先级'
399
+ }
400
+ }, {
401
+ key: 'nobsmkp6ypg',
402
+ name: 'f_ksgzy9vmgce',
403
+ type: 'belongsToMany',
404
+ interface: 'linkTo',
405
+ collectionName: 't_j6omof6tza8',
406
+ parentKey: null,
407
+ reverseKey: 'z70jtfabrm7',
408
+ uiSchemaUid: '3gbviwfd0cv',
409
+ uiSchema: {
410
+ 'x-uid': '3gbviwfd0cv',
411
+ name: '6sabm3win42',
412
+ 'x-component': 'RecordPicker',
413
+ 'x-component-props': {
414
+ multiple: false,
415
+ fieldNames: {
416
+ label: 'id',
417
+ value: 'id'
418
+ }
419
+ },
420
+ title: '迭代',
421
+ enum: []
422
+ },
423
+ target: 't_94rsj6kbzvn',
424
+ targetKey: 'id',
425
+ sourceKey: 'id',
426
+ through: 't_ewdf2dsjlu3',
427
+ foreignKey: 'f_72tnpdz6kfg',
428
+ otherKey: 'f_8do8o1wsavk'
429
+ }, {
430
+ key: 'rwtqeecnbst',
431
+ name: 'f_zek99qhv0vc',
432
+ type: 'date',
433
+ interface: 'updatedAt',
434
+ collectionName: 't_j6omof6tza8',
435
+ parentKey: null,
436
+ reverseKey: null,
437
+ uiSchemaUid: 'df0kmwka9ra',
438
+ uiSchema: {
439
+ 'x-uid': 'df0kmwka9ra',
440
+ name: 'e3hmz8upyle',
441
+ 'x-component-props': {
442
+ dateFormat: 'YYYY-MM-DD',
443
+ showTime: true,
444
+ timeFormat: 'HH:mm:ss'
445
+ },
446
+ type: 'datetime',
447
+ title: '更新时间',
448
+ 'x-component': 'DatePicker',
449
+ 'x-read-pretty': true
450
+ },
451
+ field: 'updatedAt'
452
+ }, {
453
+ key: 'tm66hbii6zz',
454
+ name: 'f_cht6rsiiiko',
455
+ type: 'string',
456
+ interface: 'select',
457
+ collectionName: 't_j6omof6tza8',
458
+ parentKey: null,
459
+ reverseKey: null,
460
+ uiSchemaUid: 'tkfjlde4ppl',
461
+ uiSchema: {
462
+ 'x-uid': 'tkfjlde4ppl',
463
+ name: 'p0rccyurzle',
464
+ enum: [{
465
+ value: 'uduxfqpr5t2',
466
+ label: '菜单'
467
+ }, {
468
+ value: 'dnphxkwat35',
469
+ label: '权限'
470
+ }, {
471
+ value: '5cso9lpizog',
472
+ label: '数据表'
473
+ }, {
474
+ value: 'wlg329nsu3a',
475
+ label: '字段'
476
+ }, {
477
+ value: 'm8z7r06vk9z',
478
+ label: '表格'
479
+ }, {
480
+ value: 'ftfccbha25a',
481
+ label: '表单'
482
+ }, {
483
+ value: 'o33ljfkje2h',
484
+ label: '详情'
485
+ }, {
486
+ value: 'ym9wwk3aqbu',
487
+ label: '日历'
488
+ }, {
489
+ value: 'wge57qtiz14',
490
+ label: '看板'
491
+ }, {
492
+ value: 'm4xoc8rbafg',
493
+ label: '操作'
494
+ }, {
495
+ value: 'r6l2wg1snxc',
496
+ label: '配置'
497
+ }, {
498
+ value: 'j1cv1vf16fm',
499
+ label: '附件'
500
+ }, {
501
+ value: 'l464jdsy7vr',
502
+ label: '容器'
503
+ }],
504
+ type: 'string',
505
+ 'x-component': 'Select',
506
+ title: '分类'
507
+ }
508
+ }, {
509
+ key: 'c9hzonl1hzq',
510
+ name: 'f_47f2d9wgofm',
511
+ type: 'belongsToMany',
512
+ interface: 'linkTo',
513
+ collectionName: 't_j6omof6tza8',
514
+ parentKey: null,
515
+ reverseKey: '7mufig9muag',
516
+ uiSchemaUid: 'rbl27ngs563',
517
+ uiSchema: {
518
+ 'x-uid': 'rbl27ngs563',
519
+ name: 'xrvwttiv064',
520
+ 'x-component': 'RecordPicker',
521
+ 'x-component-props': {
522
+ multiple: true,
523
+ fieldNames: {
524
+ label: 'id',
525
+ value: 'id'
526
+ }
527
+ },
528
+ title: '相关任务'
529
+ },
530
+ target: 't_j6omof6tza8',
531
+ targetKey: 'id',
532
+ sourceKey: 'id',
533
+ through: 't_qhgbwomd2t7',
534
+ foreignKey: 'f_jes256zqwr1',
535
+ otherKey: 'f_gtgjj059mye'
536
+ }, {
537
+ key: '7mufig9muag',
538
+ name: 'f_qmlomqm7lvb',
539
+ type: 'belongsToMany',
540
+ interface: 'linkTo',
541
+ collectionName: 't_j6omof6tza8',
542
+ parentKey: null,
543
+ reverseKey: 'c9hzonl1hzq',
544
+ uiSchemaUid: 'vgy9cgq9v6b',
545
+ uiSchema: {
546
+ 'x-uid': 'vgy9cgq9v6b',
547
+ name: 'sf99arn65jj',
548
+ 'x-component': 'RecordPicker',
549
+ 'x-component-props': {
550
+ multiple: true,
551
+ fieldNames: {
552
+ label: 'id',
553
+ value: 'id'
554
+ }
555
+ },
556
+ title: '任务'
557
+ },
558
+ target: 't_j6omof6tza8',
559
+ through: 't_qhgbwomd2t7',
560
+ sourceKey: 'id',
561
+ foreignKey: 'f_gtgjj059mye',
562
+ targetKey: 'id',
563
+ otherKey: 'f_jes256zqwr1'
564
+ }, {
565
+ key: 'hv3kx2z8edn',
566
+ name: 'f_hpmvdltzs6m_sort',
567
+ type: 'sort',
568
+ interface: null,
569
+ collectionName: 't_j6omof6tza8',
570
+ parentKey: null,
571
+ reverseKey: null,
572
+ uiSchemaUid: null,
573
+ uiSchema: {},
574
+ hidden: true,
575
+ scopeKey: 'f_hpmvdltzs6m'
576
+ }, {
577
+ key: 'q6wy6jcpdfr',
578
+ name: 'f_a4z4h45vi5b',
579
+ type: 'string',
580
+ interface: 'select',
581
+ collectionName: 't_j6omof6tza8',
582
+ parentKey: null,
583
+ reverseKey: null,
584
+ uiSchemaUid: 'lx4k023vm7k',
585
+ uiSchema: {
586
+ 'x-uid': 'lx4k023vm7k',
587
+ name: 'e9u95lm0c2q',
588
+ enum: [{
589
+ value: 'hgobsqbfnd4',
590
+ label: 'SchemaInitializer',
591
+ color: 'red'
592
+ }, {
593
+ value: 't8prrpfk7kl',
594
+ label: 'SchemaSettings',
595
+ color: 'magenta'
596
+ }, {
597
+ value: 'r3fxlrunwd8',
598
+ label: 'SchemaComponent',
599
+ color: 'lime'
600
+ }, {
601
+ value: 'bidogljo0l3',
602
+ label: 'CollectionField',
603
+ color: 'blue'
604
+ }, {
605
+ value: 'ygy1zfdr1z6',
606
+ label: 'ACL',
607
+ color: 'purple'
608
+ }, {
609
+ value: 'ef9qf0wzpt5',
610
+ label: 'DndContext',
611
+ color: 'cyan'
612
+ }, {
613
+ value: '45sfwd7ie30',
614
+ label: 'useRequest',
615
+ color: 'volcano'
616
+ }],
617
+ type: 'string',
618
+ 'x-component': 'Select',
619
+ title: '开发分类'
620
+ }
621
+ }, {
622
+ key: '936iis76zdx',
623
+ name: 'f_a4z4h45vi5b_sort',
624
+ type: 'sort',
625
+ interface: null,
626
+ collectionName: 't_j6omof6tza8',
627
+ parentKey: null,
628
+ reverseKey: null,
629
+ uiSchemaUid: null,
630
+ uiSchema: {},
631
+ hidden: true,
632
+ scopeKey: 'f_a4z4h45vi5b'
633
+ }, {
634
+ key: 'zre21o0a5a9',
635
+ name: 'f_d93g4r08krl',
636
+ type: 'string',
637
+ interface: 'input',
638
+ collectionName: 't_j6omof6tza8',
639
+ parentKey: null,
640
+ reverseKey: null,
641
+ uiSchemaUid: '96geljdh9j6',
642
+ uiSchema: {
643
+ 'x-uid': '96geljdh9j6',
644
+ name: 'zplxa37mb0y',
645
+ type: 'string',
646
+ 'x-component': 'Input',
647
+ title: '评估',
648
+ enum: []
649
+ }
650
+ }, {
651
+ key: 'jasdf0kcqbs',
652
+ name: 'f_1ckuegfab9s',
653
+ type: 'text',
654
+ interface: 'textarea',
655
+ collectionName: 't_j6omof6tza8',
656
+ parentKey: null,
657
+ reverseKey: null,
658
+ uiSchemaUid: '61h9pserdqr',
659
+ uiSchema: {
660
+ 'x-uid': '61h9pserdqr',
661
+ name: 'uepfpdv289y',
662
+ type: 'string',
663
+ 'x-component': 'Input.TextArea',
664
+ title: '评估备注'
665
+ }
666
+ }],
667
+ createdBy: true,
668
+ updatedBy: true,
669
+ sortable: true
670
+ }, {
671
+ key: 'nlxapox70a3',
672
+ name: 't_ab12qiwruwk',
673
+ title: null,
674
+ inherit: true,
675
+ fields: [{
676
+ key: 'q9xx9ixxxyb',
677
+ name: 'f_m7ibo1vrvnm',
678
+ type: 'string',
679
+ interface: 'input',
680
+ collectionName: 't_ab12qiwruwk',
681
+ parentKey: '9x87w5z0ea6',
682
+ reverseKey: null,
683
+ uiSchemaUid: 'ucn6wm03zrq',
684
+ uiSchema: {
685
+ 'x-uid': 'ucn6wm03zrq',
686
+ name: 'k07s9nhhj6c',
687
+ type: 'string',
688
+ 'x-component': 'Input',
689
+ title: '名称'
690
+ }
691
+ }, {
692
+ key: 'y91qig4eyzm',
693
+ name: 'f_kukaw9kddyj',
694
+ type: 'belongsToMany',
695
+ interface: 'linkTo',
696
+ collectionName: 't_ab12qiwruwk',
697
+ parentKey: '9x87w5z0ea6',
698
+ reverseKey: 'tvwwt24vukv',
699
+ uiSchemaUid: '7c9ch1fknbr',
700
+ uiSchema: {
701
+ 'x-uid': '7c9ch1fknbr',
702
+ name: 'gv1k2nhucte',
703
+ 'x-component': 'RecordPicker',
704
+ 'x-component-props': {
705
+ multiple: false,
706
+ fieldNames: {
707
+ label: 'id',
708
+ value: 'id'
709
+ }
710
+ },
711
+ title: '负责人'
712
+ },
713
+ target: 'users',
714
+ targetKey: 'id',
715
+ sourceKey: 'id',
716
+ through: 't_gsv43y8ebt8',
717
+ foreignKey: 'f_hbbvlsbe9gs',
718
+ otherKey: 'f_bhj1xy7uyc8'
719
+ }, {
720
+ key: 'gg0xx1vln6w',
721
+ name: 'f_4mpiovytw4d',
722
+ type: 'text',
723
+ interface: 'textarea',
724
+ collectionName: 't_ab12qiwruwk',
725
+ parentKey: '9x87w5z0ea6',
726
+ reverseKey: null,
727
+ uiSchemaUid: '3xgmf0ee5fn',
728
+ uiSchema: {
729
+ 'x-uid': '3xgmf0ee5fn',
730
+ name: '28sf67whpfs',
731
+ type: 'string',
732
+ 'x-component': 'Input.TextArea',
733
+ title: '描述'
734
+ }
735
+ }, {
736
+ key: 'zpz6o74z9u4',
737
+ name: 'f_lxsum89wkzd',
738
+ type: 'belongsToMany',
739
+ interface: 'attachment',
740
+ collectionName: 't_ab12qiwruwk',
741
+ parentKey: '9x87w5z0ea6',
742
+ reverseKey: null,
743
+ uiSchemaUid: 'wosew16td91',
744
+ uiSchema: {
745
+ 'x-uid': 'wosew16td91',
746
+ name: 'p82ihvtkxtf',
747
+ 'x-component-props': {
748
+ multiple: true,
749
+ action: 'attachments:upload'
750
+ },
751
+ type: 'array',
752
+ 'x-component': 'Upload.Attachment',
753
+ title: '附件'
754
+ },
755
+ target: 'attachments',
756
+ targetKey: 'id',
757
+ sourceKey: 'id',
758
+ through: 't_cn6cweinuw7',
759
+ foreignKey: 'f_r824sp05l43',
760
+ otherKey: 'f_8k3e4i0d04y'
761
+ }],
762
+ createdBy: true,
763
+ updatedBy: true,
764
+ sortable: true
765
+ }, {
766
+ key: 'oftbzt8nm2o',
767
+ name: 'users',
768
+ title: '{{t("Users")}}',
769
+ inherit: false,
770
+ fields: [{
771
+ key: 'khov1egnsur',
772
+ name: 'nickname',
773
+ type: 'string',
774
+ interface: 'input',
775
+ collectionName: 'users',
776
+ parentKey: null,
777
+ reverseKey: null,
778
+ uiSchemaUid: '3ohfk46bf7o',
779
+ uiSchema: {
780
+ 'x-uid': '3ohfk46bf7o',
781
+ name: 'prmmf3kg8rx',
782
+ type: 'string',
783
+ title: '{{t("Nickname")}}',
784
+ 'x-component': 'Input'
785
+ }
786
+ }, {
787
+ key: 'u6cvmn45o6a',
788
+ name: 'email',
789
+ type: 'string',
790
+ interface: 'email',
791
+ collectionName: 'users',
792
+ parentKey: null,
793
+ reverseKey: null,
794
+ uiSchemaUid: '69ywpwux1zh',
795
+ uiSchema: {
796
+ 'x-uid': '69ywpwux1zh',
797
+ name: 'u8djuprwttj',
798
+ type: 'string',
799
+ title: '{{t("Email")}}',
800
+ 'x-component': 'Input',
801
+ require: true
802
+ },
803
+ unique: true
804
+ }, {
805
+ key: 'jwaky9982f2',
806
+ name: 'password',
807
+ type: 'password',
808
+ interface: 'password',
809
+ collectionName: 'users',
810
+ parentKey: null,
811
+ reverseKey: null,
812
+ uiSchemaUid: 'qs374baqkh0',
813
+ uiSchema: {
814
+ 'x-uid': 'qs374baqkh0',
815
+ name: 'tf5dolxh2i4',
816
+ type: 'string',
817
+ title: '{{t("Password")}}',
818
+ 'x-component': 'Password'
819
+ },
820
+ hidden: true
821
+ }, {
822
+ key: '4g5nics20go',
823
+ name: 'roles',
824
+ type: 'belongsToMany',
825
+ interface: 'linkTo',
826
+ collectionName: 'users',
827
+ parentKey: null,
828
+ reverseKey: null,
829
+ uiSchemaUid: 'lpkacakd4my',
830
+ uiSchema: {
831
+ 'x-uid': 'lpkacakd4my',
832
+ name: '3oylvillmwu',
833
+ type: 'array',
834
+ title: '{{t("Roles")}}',
835
+ 'x-component': 'RecordPicker',
836
+ 'x-component-props': {
837
+ multiple: true,
838
+ fieldNames: {
839
+ label: 'title',
840
+ value: 'name'
841
+ }
842
+ }
843
+ },
844
+ target: 'roles',
845
+ foreignKey: 'userId',
846
+ otherKey: 'roleName',
847
+ sourceKey: 'id',
848
+ targetKey: 'name',
849
+ through: 'rolesUsers'
850
+ }, {
851
+ key: 'cqqhyq32tvf',
852
+ name: 'appLang',
853
+ type: 'string',
854
+ interface: null,
855
+ collectionName: 'users',
856
+ parentKey: null,
857
+ reverseKey: null,
858
+ uiSchemaUid: null,
859
+ uiSchema: {}
860
+ }, {
861
+ key: 't7t97s1rwid',
862
+ name: 'token',
863
+ type: 'string',
864
+ interface: null,
865
+ collectionName: 'users',
866
+ parentKey: null,
867
+ reverseKey: null,
868
+ uiSchemaUid: null,
869
+ uiSchema: {},
870
+ unique: true,
871
+ hidden: true
872
+ }, {
873
+ key: '5myliungho1',
874
+ name: 'resetToken',
875
+ type: 'string',
876
+ interface: null,
877
+ collectionName: 'users',
878
+ parentKey: null,
879
+ reverseKey: null,
880
+ uiSchemaUid: null,
881
+ uiSchema: {},
882
+ unique: true,
883
+ hidden: true
884
+ }, {
885
+ key: 'q2eg83quxls',
886
+ name: 'sort',
887
+ type: 'sort',
888
+ interface: null,
889
+ collectionName: 'users',
890
+ parentKey: null,
891
+ reverseKey: null,
892
+ uiSchemaUid: null,
893
+ uiSchema: {},
894
+ hidden: true
895
+ }, {
896
+ key: 's5w3l6pl1hn',
897
+ name: 'f_xd4v2uljqcu',
898
+ type: 'belongsToMany',
899
+ interface: 'linkTo',
900
+ collectionName: 'users',
901
+ parentKey: null,
902
+ reverseKey: 'kwdiruosgsb',
903
+ uiSchemaUid: 'zv4gvihowwm',
904
+ uiSchema: {
905
+ 'x-uid': 'zv4gvihowwm',
906
+ name: 'mjjpnphkkhf',
907
+ 'x-component': 'RecordPicker',
908
+ 'x-component-props': {
909
+ multiple: true,
910
+ fieldNames: {
911
+ label: 'id',
912
+ value: 'id'
913
+ }
914
+ },
915
+ title: '负责人'
916
+ },
917
+ target: 't_j6omof6tza8',
918
+ through: 't_7476m1wwsfe',
919
+ sourceKey: 'id',
920
+ foreignKey: 'f_q84aphtx7eb',
921
+ targetKey: 'id',
922
+ otherKey: 'f_9zwkbo7dd18'
923
+ }, {
924
+ key: 'tvwwt24vukv',
925
+ name: 'f_qpsqy5rtc8t',
926
+ type: 'belongsToMany',
927
+ interface: 'linkTo',
928
+ collectionName: 'users',
929
+ parentKey: null,
930
+ reverseKey: 'y91qig4eyzm',
931
+ uiSchemaUid: '5ksz03zw47c',
932
+ uiSchema: {
933
+ 'x-uid': '5ksz03zw47c',
934
+ name: '8ukjiawzduz',
935
+ 'x-component': 'RecordPicker',
936
+ 'x-component-props': {
937
+ multiple: true,
938
+ fieldNames: {
939
+ label: 'id',
940
+ value: 'id'
941
+ }
942
+ },
943
+ title: '负责人'
944
+ },
945
+ target: 't_ab12qiwruwk',
946
+ through: 't_gsv43y8ebt8',
947
+ sourceKey: 'id',
948
+ foreignKey: 'f_bhj1xy7uyc8',
949
+ targetKey: 'id',
950
+ otherKey: 'f_hbbvlsbe9gs'
951
+ }],
952
+ sortable: 'sort'
953
+ }, {
954
+ key: 'tyztw0ulriv',
955
+ name: 't_94rsj6kbzvn',
956
+ title: '迭代',
957
+ inherit: false,
958
+ fields: [{
959
+ key: 'nq4mp00jwip',
960
+ name: 'f_zio9ewkxss7',
961
+ type: 'string',
962
+ interface: 'input',
963
+ collectionName: 't_94rsj6kbzvn',
964
+ parentKey: null,
965
+ reverseKey: null,
966
+ uiSchemaUid: 'q7vois7ptlt',
967
+ uiSchema: {
968
+ 'x-uid': 'q7vois7ptlt',
969
+ name: 'o9ue1s4tu8k',
970
+ type: 'string',
971
+ 'x-component': 'Input',
972
+ title: '名称',
973
+ enum: []
974
+ }
975
+ }, {
976
+ key: 'ec2833af7n1',
977
+ name: 'f_ojboh2wxpju',
978
+ type: 'text',
979
+ interface: 'textarea',
980
+ collectionName: 't_94rsj6kbzvn',
981
+ parentKey: null,
982
+ reverseKey: null,
983
+ uiSchemaUid: 'pco1f8sq2jq',
984
+ uiSchema: {
985
+ 'x-uid': 'pco1f8sq2jq',
986
+ name: 'lb2hdydextn',
987
+ type: 'string',
988
+ 'x-component': 'Input.TextArea',
989
+ title: '描述',
990
+ enum: []
991
+ }
992
+ }, {
993
+ key: '82uqmdjr3v4',
994
+ name: 'f_nunmzapigvk',
995
+ type: 'date',
996
+ interface: 'datetime',
997
+ collectionName: 't_94rsj6kbzvn',
998
+ parentKey: null,
999
+ reverseKey: null,
1000
+ uiSchemaUid: '2gawk8arctt',
1001
+ uiSchema: {
1002
+ 'x-uid': '2gawk8arctt',
1003
+ name: 'j9j7c2wyev2',
1004
+ 'x-component-props': {
1005
+ dateFormat: 'YYYY-MM-DD',
1006
+ showTime: false
1007
+ },
1008
+ type: 'datetime',
1009
+ 'x-component': 'DatePicker',
1010
+ title: '开始日期',
1011
+ enum: []
1012
+ }
1013
+ }, {
1014
+ key: 'mdx2eqz9ei8',
1015
+ name: 'f_rberbnphu9u',
1016
+ type: 'date',
1017
+ interface: 'datetime',
1018
+ collectionName: 't_94rsj6kbzvn',
1019
+ parentKey: null,
1020
+ reverseKey: null,
1021
+ uiSchemaUid: 'pj0znpff63y',
1022
+ uiSchema: {
1023
+ 'x-uid': 'pj0znpff63y',
1024
+ name: 'c5h7agr2qy4',
1025
+ 'x-component-props': {
1026
+ dateFormat: 'YYYY-MM-DD',
1027
+ showTime: false
1028
+ },
1029
+ type: 'datetime',
1030
+ 'x-component': 'DatePicker',
1031
+ title: '结束日期',
1032
+ enum: []
1033
+ }
1034
+ }, {
1035
+ key: 'z70jtfabrm7',
1036
+ name: 'f_rabhmdetc3p',
1037
+ type: 'belongsToMany',
1038
+ interface: 'linkTo',
1039
+ collectionName: 't_94rsj6kbzvn',
1040
+ parentKey: null,
1041
+ reverseKey: null,
1042
+ uiSchemaUid: 'aun2xsfua8d',
1043
+ uiSchema: {
1044
+ 'x-uid': 'aun2xsfua8d',
1045
+ name: 'i508c1outz2',
1046
+ 'x-component': 'RecordPicker',
1047
+ 'x-component-props': {
1048
+ multiple: true,
1049
+ fieldNames: {
1050
+ label: 'id',
1051
+ value: 'id'
1052
+ }
1053
+ },
1054
+ title: '任务',
1055
+ enum: []
1056
+ },
1057
+ target: 't_j6omof6tza8',
1058
+ through: 't_ewdf2dsjlu3',
1059
+ sourceKey: 'id',
1060
+ foreignKey: 'f_8do8o1wsavk',
1061
+ targetKey: 'id',
1062
+ otherKey: 'f_72tnpdz6kfg'
1063
+ }],
1064
+ createdBy: true,
1065
+ updatedBy: true,
1066
+ sortable: true
1067
+ }, {
1068
+ key: 'vv8umfa9592',
1069
+ name: 'test_sheet',
1070
+ title: '测试表',
1071
+ inherit: false,
1072
+ fields: [{
1073
+ key: 'q1xye1ooeol',
1074
+ name: 'f_7mh6k6re0ey',
1075
+ type: 'string',
1076
+ interface: 'phone',
1077
+ collectionName: 'test_sheet',
1078
+ parentKey: null,
1079
+ reverseKey: null,
1080
+ uiSchemaUid: 't9ddc5n5pv8',
1081
+ uiSchema: {
1082
+ 'x-uid': 't9ddc5n5pv8',
1083
+ name: 'd3hwsg020u8',
1084
+ type: 'string',
1085
+ 'x-component': 'Input',
1086
+ 'x-validator': 'phone',
1087
+ title: '手机'
1088
+ }
1089
+ }, {
1090
+ key: '25icwn35oin',
1091
+ name: 'f_turkjlzi52z',
1092
+ type: 'string',
1093
+ interface: 'email',
1094
+ collectionName: 'test_sheet',
1095
+ parentKey: null,
1096
+ reverseKey: null,
1097
+ uiSchemaUid: '3bkgd97f63v',
1098
+ uiSchema: {
1099
+ 'x-uid': '3bkgd97f63v',
1100
+ name: 'zkvhu5cm4no',
1101
+ type: 'string',
1102
+ 'x-component': 'Input',
1103
+ 'x-validator': 'email',
1104
+ title: '邮箱'
1105
+ }
1106
+ }, {
1107
+ key: '3cqe0mpcrmg',
1108
+ name: 'f_c14whhblhtd',
1109
+ type: 'float',
1110
+ interface: 'number',
1111
+ collectionName: 'test_sheet',
1112
+ parentKey: null,
1113
+ reverseKey: null,
1114
+ uiSchemaUid: '4bajzziz060',
1115
+ uiSchema: {
1116
+ 'x-uid': '4bajzziz060',
1117
+ name: '366t9rvl34b',
1118
+ 'x-component-props': {
1119
+ step: '0.01',
1120
+ stringMode: true
1121
+ },
1122
+ type: 'number',
1123
+ 'x-component': 'InputNumber',
1124
+ title: '数字'
1125
+ }
1126
+ }, {
1127
+ key: 'y39vi1z69pw',
1128
+ name: 'f_z1b674d907e',
1129
+ type: 'float',
1130
+ interface: 'percent',
1131
+ collectionName: 'test_sheet',
1132
+ parentKey: null,
1133
+ reverseKey: null,
1134
+ uiSchemaUid: 'vbnoib14uzl',
1135
+ uiSchema: {
1136
+ 'x-uid': 'vbnoib14uzl',
1137
+ name: 'rumohzj4lh6',
1138
+ 'x-component-props': {
1139
+ step: '0.1',
1140
+ stringMode: true,
1141
+ addonAfter: '%'
1142
+ },
1143
+ type: 'string',
1144
+ 'x-component': 'InputNumber',
1145
+ title: '百分比'
1146
+ }
1147
+ }, {
1148
+ key: 'eouuwoag6ka',
1149
+ name: 'f_4tzp4nhmvt2',
1150
+ type: 'string',
1151
+ interface: 'icon',
1152
+ collectionName: 'test_sheet',
1153
+ parentKey: null,
1154
+ reverseKey: null,
1155
+ uiSchemaUid: 'qmmw3zc8l60',
1156
+ uiSchema: {
1157
+ 'x-uid': 'qmmw3zc8l60',
1158
+ name: 'aivg5c51gc9',
1159
+ type: 'string',
1160
+ 'x-component': 'IconPicker',
1161
+ title: '图标'
1162
+ }
1163
+ }, {
1164
+ key: 'qurfmfe2hfi',
1165
+ name: 'f_z0s4m3hgadd',
1166
+ type: 'password',
1167
+ interface: 'password',
1168
+ collectionName: 'test_sheet',
1169
+ parentKey: null,
1170
+ reverseKey: null,
1171
+ uiSchemaUid: 'tkp46kn682m',
1172
+ uiSchema: {
1173
+ 'x-uid': 'tkp46kn682m',
1174
+ name: '7q7yeobot0j',
1175
+ type: 'string',
1176
+ 'x-component': 'Password',
1177
+ title: '密码'
1178
+ }
1179
+ }, {
1180
+ key: 'ka4k5tfh3k5',
1181
+ name: 'f_q5qnozezx9s',
1182
+ type: 'boolean',
1183
+ interface: 'checkbox',
1184
+ collectionName: 'test_sheet',
1185
+ parentKey: null,
1186
+ reverseKey: null,
1187
+ uiSchemaUid: 'wgyf4ozsvdi',
1188
+ uiSchema: {
1189
+ 'x-uid': 'wgyf4ozsvdi',
1190
+ name: 'x6agce8s18w',
1191
+ type: 'boolean',
1192
+ 'x-component': 'Checkbox',
1193
+ title: '勾选'
1194
+ }
1195
+ }, {
1196
+ key: '3dhczyw3ye2',
1197
+ name: 'f_jbzwvldpyaa',
1198
+ type: 'array',
1199
+ interface: 'multipleSelect',
1200
+ collectionName: 'test_sheet',
1201
+ parentKey: null,
1202
+ reverseKey: null,
1203
+ uiSchemaUid: 'hlmfjs2pu9t',
1204
+ uiSchema: {
1205
+ 'x-uid': 'hlmfjs2pu9t',
1206
+ name: 'ao52nx5pune',
1207
+ enum: [{
1208
+ value: '6mbqdwuzfca',
1209
+ label: '选项1',
1210
+ color: 'red'
1211
+ }, {
1212
+ value: '9zi6s2fbj0q',
1213
+ label: '选项2',
1214
+ color: 'geekblue'
1215
+ }],
1216
+ type: 'array',
1217
+ 'x-component': 'Select',
1218
+ 'x-component-props': {
1219
+ mode: 'multiple'
1220
+ },
1221
+ title: '多选'
1222
+ },
1223
+ defaultValue: []
1224
+ }, {
1225
+ key: 'erdrp1gi587',
1226
+ name: 'f_04krym08wxq',
1227
+ type: 'array',
1228
+ interface: 'checkboxGroup',
1229
+ collectionName: 'test_sheet',
1230
+ parentKey: null,
1231
+ reverseKey: null,
1232
+ uiSchemaUid: '6has8wyzohq',
1233
+ uiSchema: {
1234
+ 'x-uid': '6has8wyzohq',
1235
+ name: 'fvwsjt58xx4',
1236
+ enum: [{
1237
+ value: '4lsgdvfl7xq',
1238
+ label: '复选2',
1239
+ color: 'cyan'
1240
+ }, {
1241
+ value: 'qzuki8bmilg',
1242
+ label: '复选1',
1243
+ color: 'purple'
1244
+ }],
1245
+ type: 'string',
1246
+ 'x-component': 'Checkbox.Group',
1247
+ title: '复选'
1248
+ },
1249
+ defaultValue: []
1250
+ }, {
1251
+ key: 'rykbub69xu7',
1252
+ name: 'f_xclbl3htmxs',
1253
+ type: 'belongsToMany',
1254
+ interface: 'chinaRegion',
1255
+ collectionName: 'test_sheet',
1256
+ parentKey: null,
1257
+ reverseKey: null,
1258
+ uiSchemaUid: 'yml5yqzgvn8',
1259
+ uiSchema: {
1260
+ 'x-uid': 'yml5yqzgvn8',
1261
+ name: '2ye7y09agup',
1262
+ 'x-component-props': {
1263
+ maxLevel: 5,
1264
+ useDataSource: '{{ useChinaRegionDataSource }}',
1265
+ useLoadData: '{{ useChinaRegionLoadData }}',
1266
+ changeOnSelectLast: true,
1267
+ labelInValue: true,
1268
+ fieldNames: {
1269
+ label: 'name',
1270
+ value: 'code',
1271
+ children: 'children'
1272
+ }
1273
+ },
1274
+ type: 'array',
1275
+ 'x-component': 'Cascader',
1276
+ title: '中国地区'
1277
+ },
1278
+ target: 'chinaRegions',
1279
+ targetKey: 'code',
1280
+ sortBy: 'level',
1281
+ sourceKey: 'id',
1282
+ through: 't_o9ry49u6xez',
1283
+ foreignKey: 'f_44r8nsvdvz7',
1284
+ otherKey: 'f_l0tzoymin3i'
1285
+ }, {
1286
+ key: 'acm789iz922',
1287
+ name: 'f_v4cgx7l5hwm',
1288
+ type: 'text',
1289
+ interface: 'markdown',
1290
+ collectionName: 'test_sheet',
1291
+ parentKey: null,
1292
+ reverseKey: null,
1293
+ uiSchemaUid: '8a2erdhwcvb',
1294
+ uiSchema: {
1295
+ 'x-uid': '8a2erdhwcvb',
1296
+ name: 'rqeiz26vuns',
1297
+ type: 'string',
1298
+ 'x-component': 'Markdown',
1299
+ title: 'Markdown'
1300
+ }
1301
+ }, {
1302
+ key: 'zmip3swglzv',
1303
+ name: 'f_ztaop411cdw',
1304
+ type: 'time',
1305
+ interface: 'time',
1306
+ collectionName: 'test_sheet',
1307
+ parentKey: null,
1308
+ reverseKey: null,
1309
+ uiSchemaUid: 'r6s6rrjzfml',
1310
+ uiSchema: {
1311
+ 'x-uid': 'r6s6rrjzfml',
1312
+ name: 'ct893ay5apv',
1313
+ 'x-component-props': {
1314
+ format: 'HH:mm:ss'
1315
+ },
1316
+ type: 'string',
1317
+ 'x-component': 'TimePicker',
1318
+ title: '时间'
1319
+ }
1320
+ }, {
1321
+ key: 'nx1p69b6g96',
1322
+ name: 'f_mf8ccm0pjmh',
1323
+ type: 'date',
1324
+ interface: 'datetime',
1325
+ collectionName: 'test_sheet',
1326
+ parentKey: null,
1327
+ reverseKey: null,
1328
+ uiSchemaUid: '08p9oztyjf2',
1329
+ uiSchema: {
1330
+ 'x-uid': '08p9oztyjf2',
1331
+ name: 'bkdnndmfpeo',
1332
+ 'x-component-props': {
1333
+ dateFormat: 'DD/MM/YYYY',
1334
+ showTime: true,
1335
+ timeFormat: 'HH:mm:ss'
1336
+ },
1337
+ type: 'datetime',
1338
+ 'x-component': 'DatePicker',
1339
+ title: '日期',
1340
+ enum: []
1341
+ }
1342
+ }, {
1343
+ key: 'ge57kma4gue',
1344
+ name: 'f_dqq0xjkdqbo',
1345
+ type: 'belongsTo',
1346
+ interface: 'createdBy',
1347
+ collectionName: 'test_sheet',
1348
+ parentKey: null,
1349
+ reverseKey: null,
1350
+ uiSchemaUid: 'zzmst1r01gc',
1351
+ uiSchema: {
1352
+ 'x-uid': 'zzmst1r01gc',
1353
+ name: 'def1ngennlx',
1354
+ type: 'object',
1355
+ title: '创建人',
1356
+ 'x-component': 'RecordPicker',
1357
+ 'x-component-props': {
1358
+ fieldNames: {
1359
+ value: 'id',
1360
+ label: 'nickname'
1361
+ }
1362
+ },
1363
+ 'x-read-pretty': true
1364
+ },
1365
+ target: 'users',
1366
+ foreignKey: 'createdById',
1367
+ targetKey: 'id'
1368
+ }, {
1369
+ key: 'yqye22n1f1c',
1370
+ name: 'f_7ukoar9jevs',
1371
+ type: 'date',
1372
+ interface: 'createdAt',
1373
+ collectionName: 'test_sheet',
1374
+ parentKey: null,
1375
+ reverseKey: null,
1376
+ uiSchemaUid: 'lgnqb28lb91',
1377
+ uiSchema: {
1378
+ 'x-uid': 'lgnqb28lb91',
1379
+ name: 'jdjz5cngm3j',
1380
+ 'x-component-props': {
1381
+ dateFormat: 'YYYY-MM-DD',
1382
+ showTime: true,
1383
+ timeFormat: 'HH:mm:ss'
1384
+ },
1385
+ type: 'datetime',
1386
+ title: '创建日期',
1387
+ 'x-component': 'DatePicker',
1388
+ 'x-read-pretty': true
1389
+ },
1390
+ field: 'createdAt'
1391
+ }, {
1392
+ key: 'n4ap9l1l4wd',
1393
+ name: 'f_81orjgxlbuo',
1394
+ type: 'date',
1395
+ interface: 'updatedAt',
1396
+ collectionName: 'test_sheet',
1397
+ parentKey: null,
1398
+ reverseKey: null,
1399
+ uiSchemaUid: 'z19egimonh9',
1400
+ uiSchema: {
1401
+ 'x-uid': 'z19egimonh9',
1402
+ name: 'xtzu6cpnsm4',
1403
+ 'x-component-props': {
1404
+ dateFormat: 'YYYY-MM-DD',
1405
+ showTime: true
1406
+ },
1407
+ type: 'datetime',
1408
+ title: '修改日期',
1409
+ 'x-component': 'DatePicker',
1410
+ 'x-read-pretty': true
1411
+ },
1412
+ field: 'updatedAt'
1413
+ }, {
1414
+ key: 'oqy67fm6af8',
1415
+ name: 'f_e31b9oqe9ej',
1416
+ type: 'belongsTo',
1417
+ interface: 'updatedBy',
1418
+ collectionName: 'test_sheet',
1419
+ parentKey: null,
1420
+ reverseKey: null,
1421
+ uiSchemaUid: 'tm4f7z0nyso',
1422
+ uiSchema: {
1423
+ 'x-uid': 'tm4f7z0nyso',
1424
+ name: '19srjtwyce1',
1425
+ type: 'object',
1426
+ title: '修改人',
1427
+ 'x-component': 'RecordPicker',
1428
+ 'x-component-props': {
1429
+ fieldNames: {
1430
+ value: 'id',
1431
+ label: 'nickname'
1432
+ }
1433
+ },
1434
+ 'x-read-pretty': true
1435
+ },
1436
+ target: 'users',
1437
+ foreignKey: 'updatedById',
1438
+ targetKey: 'id'
1439
+ }],
1440
+ createdBy: true,
1441
+ updatedBy: true,
1442
+ sortable: true
1443
+ }];
1444
+ exports.default = _default;