@tachybase/client 0.23.8-alpha.21 → 0.23.8-alpha.23

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 (1336) hide show
  1. package/es/index.d.ts +0 -1
  2. package/es/schema-settings/hooks/useParseDataScopeFilter.d.ts +2 -2
  3. package/es/schema-settings/index.d.ts +2 -2
  4. package/es/style/index.d.ts +2 -2
  5. package/lib/api-client/APIClient.mjs +176 -0
  6. package/lib/api-client/APIClientProvider.mjs +23 -0
  7. package/lib/api-client/__tests__/APIClient.test.mjs +64 -0
  8. package/lib/api-client/context.mjs +14 -0
  9. package/lib/api-client/demos/demo1.mjs +47 -0
  10. package/lib/api-client/demos/demo2.mjs +46 -0
  11. package/lib/api-client/demos/demo3.mjs +97 -0
  12. package/lib/api-client/hooks/assign.mjs +106 -0
  13. package/lib/api-client/hooks/index.mjs +9 -0
  14. package/lib/api-client/hooks/useAPIClient.mjs +15 -0
  15. package/lib/api-client/hooks/useRequest.mjs +70 -0
  16. package/lib/api-client/hooks/useResource.mjs +12 -0
  17. package/lib/api-client/index.mjs +11 -0
  18. package/lib/application/AppSchemaComponentProvider.mjs +48 -0
  19. package/lib/application/Application.mjs +431 -0
  20. package/lib/application/AttachmentPreviewManager.mjs +37 -0
  21. package/lib/application/NoticesManager.mjs +132 -0
  22. package/lib/application/Plugin.mjs +66 -0
  23. package/lib/application/PluginContextMenu.mjs +35 -0
  24. package/lib/application/PluginManager.mjs +113 -0
  25. package/lib/application/RouterManager.mjs +148 -0
  26. package/lib/application/SystemSettingsManager.mjs +133 -0
  27. package/lib/application/UserSettingsManager.mjs +135 -0
  28. package/lib/application/WebSocketClient.mjs +202 -0
  29. package/lib/application/__tests__/Application.test.mjs +518 -0
  30. package/lib/application/__tests__/Plugin.test.mjs +213 -0
  31. package/lib/application/__tests__/PluginSettingsManager.test.mjs +168 -0
  32. package/lib/application/__tests__/RouterManager.test.mjs +345 -0
  33. package/lib/application/__tests__/SchemaInitializer.test.mjs +169 -0
  34. package/lib/application/__tests__/SchemaToolbar.test.mjs +171 -0
  35. package/lib/application/__tests__/hoc/withDynamicSchemaProps.test.mjs +207 -0
  36. package/lib/application/__tests__/hooks.test.mjs +112 -0
  37. package/lib/application/__tests__/utils/remotePlugins.test.mjs +331 -0
  38. package/lib/application/__tests__/utils.test.mjs +117 -0
  39. package/lib/application/components/AppComponent.mjs +78 -0
  40. package/lib/application/components/BlankComponent.mjs +18 -0
  41. package/lib/application/components/MainComponent.mjs +29 -0
  42. package/lib/application/components/RouterContextCleaner.mjs +30 -0
  43. package/lib/application/components/defaultComponents.mjs +37 -0
  44. package/lib/application/components/index.mjs +11 -0
  45. package/lib/application/context.mjs +10 -0
  46. package/lib/application/demos/demo1.mjs +136 -0
  47. package/lib/application/demos/demo2.mjs +149 -0
  48. package/lib/application/demos/demo3.mjs +17 -0
  49. package/lib/application/hoc/index.mjs +5 -0
  50. package/lib/application/hoc/withDynamicSchemaProps.mjs +165 -0
  51. package/lib/application/hooks/index.mjs +9 -0
  52. package/lib/application/hooks/useApp.mjs +15 -0
  53. package/lib/application/hooks/usePlugin.mjs +12 -0
  54. package/lib/application/hooks/useRouter.mjs +12 -0
  55. package/lib/application/index.mjs +37 -0
  56. package/lib/application/schema-initializer/SchemaInitializer.mjs +103 -0
  57. package/lib/application/schema-initializer/SchemaInitializerManager.mjs +86 -0
  58. package/lib/application/schema-initializer/components/SchemaInitializerActionModal.mjs +134 -0
  59. package/lib/application/schema-initializer/components/SchemaInitializerButton.mjs +60 -0
  60. package/lib/application/schema-initializer/components/SchemaInitializerChildren.mjs +91 -0
  61. package/lib/application/schema-initializer/components/SchemaInitializerDivider.mjs +25 -0
  62. package/lib/application/schema-initializer/components/SchemaInitializerItem.mjs +124 -0
  63. package/lib/application/schema-initializer/components/SchemaInitializerItemGroup.mjs +63 -0
  64. package/lib/application/schema-initializer/components/SchemaInitializerItems.mjs +23 -0
  65. package/lib/application/schema-initializer/components/SchemaInitializerSelect.mjs +86 -0
  66. package/lib/application/schema-initializer/components/SchemaInitializerSubMenu.mjs +147 -0
  67. package/lib/application/schema-initializer/components/SchemaInitializerSwitch.mjs +59 -0
  68. package/lib/application/schema-initializer/components/index.mjs +23 -0
  69. package/lib/application/schema-initializer/components/style.mjs +47 -0
  70. package/lib/application/schema-initializer/context/index.mjs +18 -0
  71. package/lib/application/schema-initializer/hoc/index.mjs +159 -0
  72. package/lib/application/schema-initializer/hooks/index.mjs +193 -0
  73. package/lib/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.mjs +32 -0
  74. package/lib/application/schema-initializer/index.mjs +17 -0
  75. package/lib/application/schema-initializer/types.mjs +4 -0
  76. package/lib/application/schema-settings/SchemaSettings.mjs +94 -0
  77. package/lib/application/schema-settings/SchemaSettingsDefaults.mjs +241 -0
  78. package/lib/application/schema-settings/SchemaSettingsManager.mjs +86 -0
  79. package/lib/application/schema-settings/components/SchemaSettingsChildren.mjs +123 -0
  80. package/lib/application/schema-settings/components/SchemaSettingsIcon.mjs +34 -0
  81. package/lib/application/schema-settings/components/SchemaSettingsWrapper.mjs +59 -0
  82. package/lib/application/schema-settings/components/index.mjs +7 -0
  83. package/lib/application/schema-settings/context/index.mjs +13 -0
  84. package/lib/application/schema-settings/hooks/index.mjs +63 -0
  85. package/lib/application/schema-settings/index.mjs +15 -0
  86. package/lib/application/schema-settings/types.mjs +4 -0
  87. package/lib/application/schema-toolbar/context/index.mjs +24 -0
  88. package/lib/application/schema-toolbar/hooks/index.mjs +46 -0
  89. package/lib/application/schema-toolbar/index.mjs +7 -0
  90. package/lib/application/utils/globalDeps.mjs +162 -0
  91. package/lib/application/utils/index.mjs +59 -0
  92. package/lib/application/utils/remotePlugins.mjs +129 -0
  93. package/lib/async-data-provider/index.mjs +37 -0
  94. package/lib/block-provider/BlockProvider.mjs +401 -0
  95. package/lib/block-provider/DetailsBlockProvider.mjs +145 -0
  96. package/lib/block-provider/FilterFormBlockProvider.mjs +42 -0
  97. package/lib/block-provider/FormBlockProvider.mjs +222 -0
  98. package/lib/block-provider/FormFieldProvider.mjs +124 -0
  99. package/lib/block-provider/MobileProvider.mjs +24 -0
  100. package/lib/block-provider/PageLayout.mjs +25 -0
  101. package/lib/block-provider/TableBlockProvider.mjs +155 -0
  102. package/lib/block-provider/TableFieldProvider.mjs +197 -0
  103. package/lib/block-provider/TableSelectorProvider.mjs +372 -0
  104. package/lib/block-provider/TreeBlockProvider.mjs +158 -0
  105. package/lib/block-provider/hooks/index.mjs +1465 -0
  106. package/lib/block-provider/hooks/useDataBlockSourceId.mjs +33 -0
  107. package/lib/block-provider/hooks/useFormActiveFields.mjs +56 -0
  108. package/lib/block-provider/hooks/useIsMobile.mjs +16 -0
  109. package/lib/block-provider/hooks/useParsedFilter.mjs +85 -0
  110. package/lib/block-provider/index.mjs +25 -0
  111. package/lib/built-in/acl/ACLProvider.mjs +396 -0
  112. package/lib/built-in/acl/ACLShortcut.mjs +46 -0
  113. package/lib/built-in/acl/Configuration/ConfigureCenter.mjs +182 -0
  114. package/lib/built-in/acl/Configuration/MenuConfigure.mjs +188 -0
  115. package/lib/built-in/acl/Configuration/MenuItemsProvider.mjs +66 -0
  116. package/lib/built-in/acl/Configuration/PermisionProvider.mjs +95 -0
  117. package/lib/built-in/acl/Configuration/RoleConfigure.mjs +173 -0
  118. package/lib/built-in/acl/Configuration/RoleTable.mjs +73 -0
  119. package/lib/built-in/acl/Configuration/RolesResourcesActions.mjs +265 -0
  120. package/lib/built-in/acl/Configuration/ScopeSelect.mjs +61 -0
  121. package/lib/built-in/acl/Configuration/StrategyActions.mjs +143 -0
  122. package/lib/built-in/acl/Configuration/index.mjs +41 -0
  123. package/lib/built-in/acl/Configuration/schemas/roles.mjs +427 -0
  124. package/lib/built-in/acl/Configuration/schemas/scopes.mjs +384 -0
  125. package/lib/built-in/acl/Configuration/schemas/useRoleResourceValues.mjs +46 -0
  126. package/lib/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.mjs +32 -0
  127. package/lib/built-in/acl/index.mjs +25 -0
  128. package/lib/built-in/acl/style.mjs +31 -0
  129. package/lib/built-in/admin-layout/AdminContent.mjs +34 -0
  130. package/lib/built-in/admin-layout/AdminTabs.mjs +21 -0
  131. package/lib/built-in/admin-layout/NoticeArea.mjs +37 -0
  132. package/lib/built-in/admin-layout/components/AddNewButton.mjs +89 -0
  133. package/lib/built-in/admin-layout/components/WelcomeCard.mjs +114 -0
  134. package/lib/built-in/admin-layout/index.mjs +299 -0
  135. package/lib/built-in/admin-layout/style.mjs +150 -0
  136. package/lib/built-in/assistant/Assistant.provider.mjs +114 -0
  137. package/lib/built-in/assistant/ai-chat/index.mjs +359 -0
  138. package/lib/built-in/assistant/ai-chat/index.module.mjs +9 -0
  139. package/lib/{index.css → built-in/assistant/ai-chat/index_module.css} +0 -64
  140. package/lib/built-in/assistant/calculator/AutoScalingText.mjs +45 -0
  141. package/lib/built-in/assistant/calculator/Calculator.mjs +259 -0
  142. package/lib/built-in/assistant/calculator/CalculatorDisplay.mjs +34 -0
  143. package/lib/built-in/assistant/calculator/CalculatorKey.mjs +20 -0
  144. package/lib/built-in/assistant/calculator/CalculatorProvider.mjs +52 -0
  145. package/lib/built-in/assistant/calculator/Draggable.mjs +66 -0
  146. package/lib/built-in/assistant/calculator/style.mjs +33 -0
  147. package/lib/built-in/assistant/index.mjs +27 -0
  148. package/lib/built-in/assistant/search-and-jump/index.mjs +75 -0
  149. package/lib/built-in/attachment-preview/index.mjs +24 -0
  150. package/lib/built-in/attachment-preview/interface.mjs +4 -0
  151. package/lib/built-in/attachment-preview/previewers/file-default.mjs +97 -0
  152. package/lib/built-in/attachment-preview/previewers/file-pdf.mjs +142 -0
  153. package/lib/built-in/attachment-preview/previewers/file-pdf.style.mjs +53 -0
  154. package/lib/built-in/attachment-preview/previewers/file-sheet.mjs +132 -0
  155. package/lib/built-in/attachment-preview/previewers/file-sheet.style.mjs +53 -0
  156. package/lib/built-in/attachment-preview/previewers/image-jpeg.mjs +43 -0
  157. package/lib/built-in/attachment-preview/previewers/image-png.mjs +43 -0
  158. package/lib/built-in/attachment-preview/previewers/image-svg.mjs +29 -0
  159. package/lib/built-in/attachment-preview/previewers/index.mjs +15 -0
  160. package/lib/built-in/block-schema-component/index.mjs +186 -0
  161. package/lib/built-in/built-in-collections/index.mjs +74 -0
  162. package/lib/built-in/context-menu/ContextMenu.provider.mjs +89 -0
  163. package/lib/built-in/context-menu/ContextMenuItemsProps.mjs +176 -0
  164. package/lib/built-in/context-menu/index.mjs +33 -0
  165. package/lib/built-in/context-menu/useContextMenu.mjs +12 -0
  166. package/lib/built-in/document-title/index.mjs +75 -0
  167. package/lib/built-in/dynamic-page/DynamicPage.mjs +67 -0
  168. package/lib/built-in/dynamic-page/index.mjs +79 -0
  169. package/lib/built-in/dynamic-page/style.mjs +60 -0
  170. package/lib/built-in/dynamic-page/utils.mjs +84 -0
  171. package/lib/built-in/index.mjs +591 -0
  172. package/lib/built-in/locale/LocalePlugin.mjs +96 -0
  173. package/lib/built-in/locale/loadConstrueLocale.mjs +193 -0
  174. package/lib/built-in/page-style/CustomAdminHeader.mjs +24 -0
  175. package/lib/built-in/page-style/PageStyle.provider.mjs +47 -0
  176. package/lib/built-in/page-style/TabContent.mjs +97 -0
  177. package/lib/built-in/page-style/TabHeader.mjs +114 -0
  178. package/lib/built-in/page-style/index.mjs +29 -0
  179. package/lib/built-in/page-style/usePageStyle.mjs +15 -0
  180. package/lib/built-in/page-style/useTabSettings.mjs +97 -0
  181. package/lib/built-in/pinned-list/PinnedPluginListProvider.mjs +87 -0
  182. package/lib/built-in/pinned-list/context.mjs +12 -0
  183. package/lib/built-in/pinned-list/index.mjs +18 -0
  184. package/lib/built-in/pm/PluginCard.mjs +306 -0
  185. package/lib/built-in/pm/PluginDetail.mjs +350 -0
  186. package/lib/built-in/pm/PluginDocument.mjs +99 -0
  187. package/lib/built-in/pm/PluginForm/form/PluginNpmForm.mjs +189 -0
  188. package/lib/built-in/pm/PluginForm/form/PluginUploadForm.mjs +142 -0
  189. package/lib/built-in/pm/PluginForm/form/PluginUrlForm.mjs +133 -0
  190. package/lib/built-in/pm/PluginForm/modal/PluginAddModal.mjs +88 -0
  191. package/lib/built-in/pm/PluginForm/modal/PluginUpgradeModal.mjs +92 -0
  192. package/lib/built-in/pm/PluginManager.mjs +341 -0
  193. package/lib/built-in/pm/index.mjs +78 -0
  194. package/lib/built-in/pm/style.mjs +86 -0
  195. package/lib/built-in/pm/types.mjs +4 -0
  196. package/lib/built-in/quick-access/Action.mjs +125 -0
  197. package/lib/built-in/quick-access/Block.mjs +170 -0
  198. package/lib/built-in/quick-access/CustomRequestActionSchemaInitializerItem.mjs +115 -0
  199. package/lib/built-in/quick-access/LinkActionSchemaInitializerItem.mjs +108 -0
  200. package/lib/built-in/quick-access/ModalActionSchemaInitializerItem.mjs +118 -0
  201. package/lib/built-in/quick-access/PopupActionSchemaInitializerItem.mjs +143 -0
  202. package/lib/built-in/quick-access/SchemaSettingsBlockTitleItem.mjs +66 -0
  203. package/lib/built-in/quick-access/blockInitializerItem.mjs +31 -0
  204. package/lib/built-in/quick-access/blockSchema.mjs +20 -0
  205. package/lib/built-in/quick-access/blockSettings.mjs +92 -0
  206. package/lib/built-in/quick-access/configureActions.mjs +25 -0
  207. package/lib/built-in/quick-access/index.mjs +66 -0
  208. package/lib/built-in/scroll-assistant/ScrollAssistant.provider.mjs +62 -0
  209. package/lib/built-in/scroll-assistant/ScrollAssistantStatus.provider.mjs +31 -0
  210. package/lib/built-in/scroll-assistant/index.mjs +41 -0
  211. package/lib/built-in/scroll-assistant/useJoystick.mjs +216 -0
  212. package/lib/built-in/setting-layout/AdminSettings.mjs +174 -0
  213. package/lib/built-in/setting-layout/SettingLayout.mjs +171 -0
  214. package/lib/built-in/setting-layout/SettingsCenterDropdown.mjs +104 -0
  215. package/lib/built-in/system-settings/SystemSettingsProvider.mjs +33 -0
  216. package/lib/built-in/system-settings/SystemSettingsShortcut.mjs +189 -0
  217. package/lib/built-in/system-settings/index.mjs +18 -0
  218. package/lib/built-in/system-version/SystemVersion.provider.mjs +52 -0
  219. package/lib/built-in/system-version/index.mjs +17 -0
  220. package/lib/built-in/user-settings/UserSettingsLayout.mjs +221 -0
  221. package/lib/built-in/user-settings/index.mjs +38 -0
  222. package/lib/built-in/user-settings/style.mjs +86 -0
  223. package/lib/collection-manager/CollectionHistoryProvider.mjs +81 -0
  224. package/lib/collection-manager/CollectionManagerProvider.mjs +92 -0
  225. package/lib/collection-manager/CollectionManagerSchemaComponentProvider.mjs +46 -0
  226. package/lib/collection-manager/CollectionProvider_deprecated.mjs +40 -0
  227. package/lib/collection-manager/Configuration/AddCollectionAction.mjs +292 -0
  228. package/lib/collection-manager/Configuration/AddFieldAction.mjs +457 -0
  229. package/lib/collection-manager/Configuration/AddSubFieldAction.mjs +211 -0
  230. package/lib/collection-manager/Configuration/DeleteCollectionAction.mjs +268 -0
  231. package/lib/collection-manager/Configuration/EditCollectionAction.mjs +221 -0
  232. package/lib/collection-manager/Configuration/EditFieldAction.mjs +315 -0
  233. package/lib/collection-manager/Configuration/EditSubFieldAction.mjs +163 -0
  234. package/lib/collection-manager/Configuration/ImportCollectionMetaAction.mjs +210 -0
  235. package/lib/collection-manager/Configuration/OverridingCollectionField.mjs +274 -0
  236. package/lib/collection-manager/Configuration/SyncFieldsAction.mjs +257 -0
  237. package/lib/collection-manager/Configuration/SyncSQLFieldsAction.mjs +214 -0
  238. package/lib/collection-manager/Configuration/ViewInheritedField.mjs +187 -0
  239. package/lib/collection-manager/Configuration/components/CollectionCategory.mjs +38 -0
  240. package/lib/collection-manager/Configuration/components/CollectionFieldInterfaceTag.mjs +40 -0
  241. package/lib/collection-manager/Configuration/components/CollectionTemplateTag.mjs +39 -0
  242. package/lib/collection-manager/Configuration/components/FieldSummary.mjs +39 -0
  243. package/lib/collection-manager/Configuration/components/Summary.mjs +84 -0
  244. package/lib/collection-manager/Configuration/components/TemplateSummary.mjs +39 -0
  245. package/lib/collection-manager/Configuration/components/index.mjs +359 -0
  246. package/lib/collection-manager/Configuration/index.mjs +46 -0
  247. package/lib/collection-manager/Configuration/interfaces.mjs +48 -0
  248. package/lib/collection-manager/ResourceActionProvider.mjs +168 -0
  249. package/lib/collection-manager/action-hooks.mjs +658 -0
  250. package/lib/collection-manager/collectionPlugin.mjs +151 -0
  251. package/lib/collection-manager/context.mjs +13 -0
  252. package/lib/collection-manager/demos/demo2.mjs +143 -0
  253. package/lib/collection-manager/demos/demo3.mjs +96 -0
  254. package/lib/collection-manager/demos/demo4.mjs +183 -0
  255. package/lib/collection-manager/demos/demo5.mjs +187 -0
  256. package/lib/collection-manager/hooks/index.mjs +11 -0
  257. package/lib/collection-manager/hooks/useCollectionDataSource.mjs +29 -0
  258. package/lib/collection-manager/hooks/useCollectionField_deprecated.mjs +43 -0
  259. package/lib/collection-manager/hooks/useCollectionManager_deprecated.mjs +272 -0
  260. package/lib/collection-manager/hooks/useCollection_deprecated.mjs +70 -0
  261. package/lib/collection-manager/hooks/useDialect.mjs +17 -0
  262. package/lib/collection-manager/index.mjs +63 -0
  263. package/lib/collection-manager/interfaces/__tests__/json.mjs +73 -0
  264. package/lib/collection-manager/interfaces/checkbox.mjs +61 -0
  265. package/lib/collection-manager/interfaces/checkboxGroup.mjs +55 -0
  266. package/lib/collection-manager/interfaces/chinaRegion.mjs +127 -0
  267. package/lib/collection-manager/interfaces/collection.mjs +57 -0
  268. package/lib/collection-manager/interfaces/color.mjs +43 -0
  269. package/lib/collection-manager/interfaces/components/index.mjs +73 -0
  270. package/lib/collection-manager/interfaces/createdAt.mjs +47 -0
  271. package/lib/collection-manager/interfaces/createdBy.mjs +70 -0
  272. package/lib/collection-manager/interfaces/datetime.mjs +56 -0
  273. package/lib/collection-manager/interfaces/email.mjs +54 -0
  274. package/lib/collection-manager/interfaces/icon.mjs +40 -0
  275. package/lib/collection-manager/interfaces/id.mjs +66 -0
  276. package/lib/collection-manager/interfaces/index.mjs +81 -0
  277. package/lib/collection-manager/interfaces/input.mjs +200 -0
  278. package/lib/collection-manager/interfaces/integer.mjs +138 -0
  279. package/lib/collection-manager/interfaces/json.mjs +102 -0
  280. package/lib/collection-manager/interfaces/linkTo.mjs +119 -0
  281. package/lib/collection-manager/interfaces/m2m.mjs +253 -0
  282. package/lib/collection-manager/interfaces/m2o.mjs +182 -0
  283. package/lib/collection-manager/interfaces/markdown.mjs +94 -0
  284. package/lib/collection-manager/interfaces/multipleSelect.mjs +62 -0
  285. package/lib/collection-manager/interfaces/nanoid.mjs +72 -0
  286. package/lib/collection-manager/interfaces/number.mjs +146 -0
  287. package/lib/collection-manager/interfaces/o2m.mjs +211 -0
  288. package/lib/collection-manager/interfaces/o2o.mjs +493 -0
  289. package/lib/collection-manager/interfaces/password.mjs +80 -0
  290. package/lib/collection-manager/interfaces/percent.mjs +193 -0
  291. package/lib/collection-manager/interfaces/phone.mjs +46 -0
  292. package/lib/collection-manager/interfaces/properties/index.mjs +506 -0
  293. package/lib/collection-manager/interfaces/properties/operators.mjs +370 -0
  294. package/lib/collection-manager/interfaces/radioGroup.mjs +46 -0
  295. package/lib/collection-manager/interfaces/richText.mjs +92 -0
  296. package/lib/collection-manager/interfaces/select.mjs +60 -0
  297. package/lib/collection-manager/interfaces/sort.mjs +123 -0
  298. package/lib/collection-manager/interfaces/subTable.mjs +218 -0
  299. package/lib/collection-manager/interfaces/tableoid.mjs +60 -0
  300. package/lib/collection-manager/interfaces/textarea.mjs +92 -0
  301. package/lib/collection-manager/interfaces/time.mjs +59 -0
  302. package/lib/collection-manager/interfaces/types.mjs +4 -0
  303. package/lib/collection-manager/interfaces/unixTimestamp.mjs +64 -0
  304. package/lib/collection-manager/interfaces/updatedAt.mjs +47 -0
  305. package/lib/collection-manager/interfaces/updatedBy.mjs +70 -0
  306. package/lib/collection-manager/interfaces/url.mjs +46 -0
  307. package/lib/collection-manager/interfaces/uuid.mjs +60 -0
  308. package/lib/collection-manager/mixins/InheritanceCollectionMixin.mjs +249 -0
  309. package/lib/collection-manager/sub-table.mjs +270 -0
  310. package/lib/collection-manager/templates/components/PresetFields.mjs +271 -0
  311. package/lib/collection-manager/templates/components/PreviewFields.mjs +345 -0
  312. package/lib/collection-manager/templates/components/PreviewTable.mjs +171 -0
  313. package/lib/collection-manager/templates/components/sql-collection/FieldsConfigure.mjs +348 -0
  314. package/lib/collection-manager/templates/components/sql-collection/PreviewTable.mjs +81 -0
  315. package/lib/collection-manager/templates/components/sql-collection/SQLInput.mjs +130 -0
  316. package/lib/collection-manager/templates/components/sql-collection/SQLRequestProvider.mjs +74 -0
  317. package/lib/collection-manager/templates/components/sql-collection/index.mjs +11 -0
  318. package/lib/collection-manager/templates/expression.mjs +78 -0
  319. package/lib/collection-manager/templates/general.mjs +32 -0
  320. package/lib/collection-manager/templates/import.mjs +28 -0
  321. package/lib/collection-manager/templates/index.mjs +15 -0
  322. package/lib/collection-manager/templates/properties/index.mjs +81 -0
  323. package/lib/collection-manager/templates/sql.mjs +105 -0
  324. package/lib/collection-manager/templates/tree.mjs +94 -0
  325. package/lib/collection-manager/templates/types.mjs +4 -0
  326. package/lib/collection-manager/templates/view.mjs +177 -0
  327. package/lib/collection-manager/types.mjs +4 -0
  328. package/lib/collection-manager/utils.mjs +23 -0
  329. package/lib/common/SelectWithTitle.mjs +56 -0
  330. package/lib/common/appInfo/CurrentAppInfoProvider.mjs +33 -0
  331. package/lib/common/appInfo/index.mjs +5 -0
  332. package/lib/common/index.mjs +9 -0
  333. package/lib/common/useFieldComponentName.mjs +39 -0
  334. package/lib/common/useNiceDropdownHeight.mjs +28 -0
  335. package/lib/data-source/__tests__/collection/AssociationProvider.test.mjs +132 -0
  336. package/lib/data-source/__tests__/collection/Collection.test.mjs +308 -0
  337. package/lib/data-source/__tests__/collection/CollectionManager.test.mjs +308 -0
  338. package/lib/data-source/__tests__/collection/CollectionManagerProvider.test.mjs +135 -0
  339. package/lib/data-source/__tests__/collection/CollectionProvider.test.mjs +123 -0
  340. package/lib/data-source/__tests__/collection/ExtendCollectionsProvider.test.mjs +105 -0
  341. package/lib/data-source/__tests__/collection-field/CollectionField.test.mjs +84 -0
  342. package/lib/data-source/__tests__/collection-field/CollectionFieldProvider.test.mjs +70 -0
  343. package/lib/data-source/__tests__/collection-field-interface/CollectionFieldInterfaceManager.test.mjs +171 -0
  344. package/lib/data-source/__tests__/collection-record/CollectionRecord.test.mjs +27 -0
  345. package/lib/data-source/__tests__/collection-record/CollectionRecordProvider.test.mjs +268 -0
  346. package/lib/data-source/__tests__/collection-record/isNewRecord.test.mjs +55 -0
  347. package/lib/data-source/__tests__/collection-template/CollectionTemplateManager.test.mjs +132 -0
  348. package/lib/data-source/__tests__/components/CollectionDeletedPlaceholder.test.mjs +58 -0
  349. package/lib/data-source/__tests__/data-block/DataBlockProvider.test.mjs +151 -0
  350. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-parent-record.mjs +108 -0
  351. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-source-id.mjs +160 -0
  352. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-create.mjs +131 -0
  353. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-get-and-update.mjs +197 -0
  354. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-record-and-update.mjs +160 -0
  355. package/lib/data-source/__tests__/data-block/data-block-demos/collection-table-list.mjs +114 -0
  356. package/lib/data-source/__tests__/data-block/data-block-demos/createApp.mjs +66 -0
  357. package/lib/data-source/__tests__/data-source/CollectionDataSourceProvider.test.mjs +56 -0
  358. package/lib/data-source/__tests__/data-source/DataSource.test.mjs +81 -0
  359. package/lib/data-source/__tests__/data-source/DataSourceManager.test.mjs +174 -0
  360. package/lib/data-source/__tests__/data-source/DataSourceManagerProvider.test.mjs +45 -0
  361. package/lib/data-source/__tests__/data-source/DataSourceProvider.test.mjs +100 -0
  362. package/lib/data-source/__tests__/utils.test.mjs +66 -0
  363. package/lib/data-source/collection/AssociationProvider.mjs +68 -0
  364. package/lib/data-source/collection/Collection.mjs +200 -0
  365. package/lib/data-source/collection/CollectionManager.mjs +165 -0
  366. package/lib/data-source/collection/CollectionManagerProvider.mjs +64 -0
  367. package/lib/data-source/collection/CollectionProvider.mjs +53 -0
  368. package/lib/data-source/collection/ExtendCollectionsProvider.mjs +47 -0
  369. package/lib/data-source/collection/index.mjs +15 -0
  370. package/lib/data-source/collection/utils.mjs +62 -0
  371. package/lib/data-source/collection-field/CollectionField.mjs +116 -0
  372. package/lib/data-source/collection-field/CollectionFieldProvider.mjs +65 -0
  373. package/lib/data-source/collection-field/index.mjs +7 -0
  374. package/lib/data-source/collection-field-interface/CollectionFieldInterface.mjs +42 -0
  375. package/lib/data-source/collection-field-interface/CollectionFieldInterfaceManager.mjs +65 -0
  376. package/lib/data-source/collection-field-interface/index.mjs +7 -0
  377. package/lib/data-source/collection-record/CollectionRecord.mjs +34 -0
  378. package/lib/data-source/collection-record/CollectionRecordProvider.mjs +78 -0
  379. package/lib/data-source/collection-record/index.mjs +7 -0
  380. package/lib/data-source/collection-record/isNewRecord.mjs +26 -0
  381. package/lib/data-source/collection-template/CollectionTemplate.mjs +39 -0
  382. package/lib/data-source/collection-template/CollectionTemplateManager.mjs +61 -0
  383. package/lib/data-source/collection-template/index.mjs +7 -0
  384. package/lib/data-source/commonsSettingsItem/fieldComponent.mjs +80 -0
  385. package/lib/data-source/commonsSettingsItem/index.mjs +5 -0
  386. package/lib/data-source/components/CollectionDeletedPlaceholder.mjs +125 -0
  387. package/lib/data-source/components/DataSourceApplicationProvider.mjs +32 -0
  388. package/lib/data-source/components/index.mjs +7 -0
  389. package/lib/data-source/data-block/DataBlockProvider.mjs +115 -0
  390. package/lib/data-source/data-block/DataBlockRequestProvider.mjs +168 -0
  391. package/lib/data-source/data-block/DataBlockResourceProvider.mjs +84 -0
  392. package/lib/data-source/data-block/context/ConfigSetting.provider.mjs +18 -0
  393. package/lib/data-source/data-block/index.mjs +11 -0
  394. package/lib/data-source/data-source/DataSource.mjs +83 -0
  395. package/lib/data-source/data-source/DataSourceManager.mjs +127 -0
  396. package/lib/data-source/data-source/DataSourceManagerProvider.mjs +25 -0
  397. package/lib/data-source/data-source/DataSourceProvider.mjs +87 -0
  398. package/lib/data-source/data-source/index.mjs +11 -0
  399. package/lib/data-source/index.mjs +23 -0
  400. package/lib/data-source/utils.mjs +28 -0
  401. package/lib/env.d.mjs +1 -0
  402. package/lib/filter-provider/FilterProvider.mjs +182 -0
  403. package/lib/filter-provider/__tests__/transformToFilter.mjs +74 -0
  404. package/lib/filter-provider/__tests__/useFilter.mjs +61 -0
  405. package/lib/filter-provider/__tests__/utiles.test.mjs +271 -0
  406. package/lib/filter-provider/index.mjs +7 -0
  407. package/lib/filter-provider/utils.mjs +262 -0
  408. package/lib/flag-provider/FlagProvider.mjs +19 -0
  409. package/lib/flag-provider/__tests__/flag-provider.test.mjs +37 -0
  410. package/lib/flag-provider/hooks/useFlag.mjs +15 -0
  411. package/lib/flag-provider/index.mjs +7 -0
  412. package/lib/global.css +34 -0
  413. package/lib/hooks/index.mjs +7 -0
  414. package/lib/hooks/useAdminSchemaUid.mjs +7 -0
  415. package/lib/hooks/useMenuItem.mjs +101 -0
  416. package/lib/hooks/useViewport.mjs +47 -0
  417. package/lib/i18n/i18n.mjs +37 -0
  418. package/lib/i18n/index.mjs +5 -0
  419. package/lib/icon/Icon.mjs +80 -0
  420. package/lib/icon/__tests__/icon.test.mjs +49 -0
  421. package/lib/icon/demos/antd-icon.mjs +19 -0
  422. package/lib/icon/demos/custom-icon.mjs +28 -0
  423. package/lib/icon/demos/iconfont.mjs +22 -0
  424. package/lib/icon/demos/register-icon.mjs +35 -0
  425. package/lib/icon/index.mjs +5 -0
  426. package/lib/icon/preloaded.mjs +139 -0
  427. package/lib/index.mjs +55 -102391
  428. package/lib/locale/index.mjs +274 -0
  429. package/lib/modules/actions/ActionSchemaToolbar.mjs +24 -0
  430. package/lib/modules/actions/add-child/CreateChildInitializer.mjs +76 -0
  431. package/lib/modules/actions/add-child/addChildActionSettings.mjs +88 -0
  432. package/lib/modules/actions/add-new/CreateActionInitializer.mjs +82 -0
  433. package/lib/modules/actions/add-new/addNewActionSettings.mjs +81 -0
  434. package/lib/modules/actions/add-new/createFormBlockInitializers.mjs +75 -0
  435. package/lib/modules/actions/add-record/CustomizeAddRecordActionInitializer.mjs +78 -0
  436. package/lib/modules/actions/add-record/customizeAddRecordActionSettings.mjs +50 -0
  437. package/lib/modules/actions/add-record/customizeCreateFormBlockInitializers.mjs +45 -0
  438. package/lib/modules/actions/bulk-destroy/BulkDestroyActionInitializer.mjs +52 -0
  439. package/lib/modules/actions/bulk-destroy/bulkDeleteActionSettings.mjs +42 -0
  440. package/lib/modules/actions/delete/DestroyActionInitializer.mjs +40 -0
  441. package/lib/modules/actions/delete/deleteActionSettings.mjs +57 -0
  442. package/lib/modules/actions/disassociate/DisassociateActionInitializer.mjs +40 -0
  443. package/lib/modules/actions/disassociate/__e2e__/disassociate.test.mjs +53 -0
  444. package/lib/modules/actions/disassociate/__e2e__/templatesOfPage.mjs +386 -0
  445. package/lib/modules/actions/disassociate/disassociateActionSettings.mjs +57 -0
  446. package/lib/modules/actions/expand-collapse/ExpandableActionInitializer.mjs +40 -0
  447. package/lib/modules/actions/expand-collapse/expendableActionSettings.mjs +148 -0
  448. package/lib/modules/actions/filter/FilterActionInitializer.mjs +34 -0
  449. package/lib/modules/actions/filter/filterActionSettings.mjs +103 -0
  450. package/lib/modules/actions/link/customizeLinkActionSettings.mjs +149 -0
  451. package/lib/modules/actions/link/hooks.mjs +243 -0
  452. package/lib/modules/actions/refresh/RefreshActionInitializer.mjs +33 -0
  453. package/lib/modules/actions/refresh/refreshActionSettings.mjs +42 -0
  454. package/lib/modules/actions/save-record/SaveRecordActionInitializer.mjs +49 -0
  455. package/lib/modules/actions/save-record/customizeSaveRecordActionSettings.mjs +67 -0
  456. package/lib/modules/actions/submit/CreateSubmitActionInitializer.mjs +39 -0
  457. package/lib/modules/actions/submit/UpdateSubmitActionInitializer.mjs +44 -0
  458. package/lib/modules/actions/submit/createSubmitActionSettings.mjs +250 -0
  459. package/lib/modules/actions/submit/updateSubmitActionSettings.mjs +107 -0
  460. package/lib/modules/actions/update-record/UpdateRecordActionInitializer.mjs +48 -0
  461. package/lib/modules/actions/update-record/customizeUpdateRecordActionSettings.mjs +83 -0
  462. package/lib/modules/actions/view-edit-popup/PopupActionInitializer.mjs +74 -0
  463. package/lib/modules/actions/view-edit-popup/RecordFormBlockInitializers.mjs +46 -0
  464. package/lib/modules/actions/view-edit-popup/UpdateActionInitializer.mjs +69 -0
  465. package/lib/modules/actions/view-edit-popup/ViewActionInitializer.mjs +68 -0
  466. package/lib/modules/actions/view-edit-popup/customizePopupActionSettings.mjs +70 -0
  467. package/lib/modules/actions/view-edit-popup/editActionSettings.mjs +65 -0
  468. package/lib/modules/actions/view-edit-popup/viewActionSettings.mjs +70 -0
  469. package/lib/modules/blocks/BlockSchemaToolbar.mjs +85 -0
  470. package/lib/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.mjs +49 -0
  471. package/lib/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.mjs +76 -0
  472. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaInitializer.test.mjs +123 -0
  473. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaSettings.test.mjs +81 -0
  474. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/templatesOfBug.mjs +1 -0
  475. package/lib/modules/blocks/data-blocks/details-multi/__tests__/createDetailsBlockWithPagingUISchema.test.mjs +20 -0
  476. package/lib/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.mjs +66 -0
  477. package/lib/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.mjs +256 -0
  478. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.mjs +19 -0
  479. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.mjs +11 -0
  480. package/lib/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.mjs +106 -0
  481. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.mjs +94 -0
  482. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.mjs +110 -0
  483. package/lib/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.mjs +108 -0
  484. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaInitializer.test.mjs +110 -0
  485. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaSettings.test.mjs +31 -0
  486. package/lib/modules/blocks/data-blocks/details-single/__e2e__/templatesOfBug.mjs +1 -0
  487. package/lib/modules/blocks/data-blocks/details-single/__tests__/createDetailsBlockWithoutPagingUISchema.test.mjs +21 -0
  488. package/lib/modules/blocks/data-blocks/details-single/createDetailsUISchema.mjs +62 -0
  489. package/lib/modules/blocks/data-blocks/details-single/detailsBlockSettings.mjs +67 -0
  490. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.mjs +43 -0
  491. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.mjs +11 -0
  492. package/lib/modules/blocks/data-blocks/form/CreateFormBlockInitializer.mjs +85 -0
  493. package/lib/modules/blocks/data-blocks/form/FilterItemCustomSettings.mjs +321 -0
  494. package/lib/modules/blocks/data-blocks/form/FormBlockInitializer.mjs +113 -0
  495. package/lib/modules/blocks/data-blocks/form/FormItemSchemaToolbar.mjs +23 -0
  496. package/lib/modules/blocks/data-blocks/form/RecordFormBlockInitializer.mjs +123 -0
  497. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/associationForm.test.mjs +27 -0
  498. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/dragAndDrop.test.mjs +33 -0
  499. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadAssociationFields.test.mjs +207 -0
  500. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadVariables.test.mjs +36 -0
  501. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaInitializer.test.mjs +167 -0
  502. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaSettings.test.mjs +1367 -0
  503. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/templatesOfBug.mjs +6009 -0
  504. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaInitializer.test.mjs +22 -0
  505. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaSettings.test.mjs +235 -0
  506. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/templatesOfBug.mjs +1 -0
  507. package/lib/modules/blocks/data-blocks/form/__tests__/createCreateFormBlockUISchema.test.mjs +27 -0
  508. package/lib/modules/blocks/data-blocks/form/__tests__/createEditFormBlockUISchema.test.mjs +27 -0
  509. package/lib/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.mjs +63 -0
  510. package/lib/modules/blocks/data-blocks/form/createEditFormBlockUISchema.mjs +62 -0
  511. package/lib/modules/blocks/data-blocks/form/createFormActionInitializers.mjs +51 -0
  512. package/lib/modules/blocks/data-blocks/form/createFormBlockSettings.mjs +157 -0
  513. package/lib/modules/blocks/data-blocks/form/editFormBlockSettings.mjs +90 -0
  514. package/lib/modules/blocks/data-blocks/form/fieldSettingsFormItem.mjs +598 -0
  515. package/lib/modules/blocks/data-blocks/form/formActionInitializers.mjs +54 -0
  516. package/lib/modules/blocks/data-blocks/form/formItemInitializers.mjs +51 -0
  517. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.mjs +19 -0
  518. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.mjs +11 -0
  519. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.mjs +29 -0
  520. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.mjs +11 -0
  521. package/lib/modules/blocks/data-blocks/form/index.mjs +31 -0
  522. package/lib/modules/blocks/data-blocks/form/updateFormActionInitializers.mjs +62 -0
  523. package/lib/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.mjs +94 -0
  524. package/lib/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.mjs +69 -0
  525. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaInitializer.test.mjs +231 -0
  526. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaSettings.test.mjs +58 -0
  527. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/templatesOfBug.mjs +1 -0
  528. package/lib/modules/blocks/data-blocks/grid-card/__tests__/createGridCardBlockSchema.test.mjs +32 -0
  529. package/lib/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.mjs +78 -0
  530. package/lib/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.mjs +484 -0
  531. package/lib/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.mjs +109 -0
  532. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.mjs +25 -0
  533. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.mjs +28 -0
  534. package/lib/modules/blocks/data-blocks/grid-card/utils.mjs +17 -0
  535. package/lib/modules/blocks/data-blocks/list/ListActionInitializers.mjs +90 -0
  536. package/lib/modules/blocks/data-blocks/list/ListBlockInitializer.mjs +69 -0
  537. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaInitializer.test.mjs +224 -0
  538. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaSettings.test.mjs +29 -0
  539. package/lib/modules/blocks/data-blocks/list/__e2e__/templatesOfBug.mjs +1 -0
  540. package/lib/modules/blocks/data-blocks/list/__tests__/createListBlockSchema.test.mjs +30 -0
  541. package/lib/modules/blocks/data-blocks/list/createListBlockUISchema.mjs +71 -0
  542. package/lib/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.mjs +19 -0
  543. package/lib/modules/blocks/data-blocks/list/listBlockSettings.mjs +286 -0
  544. package/lib/modules/blocks/data-blocks/list/listItemActionInitializers.mjs +109 -0
  545. package/lib/modules/blocks/data-blocks/table/TableActionColumnInitializers.mjs +287 -0
  546. package/lib/modules/blocks/data-blocks/table/TableActionInitializers.mjs +143 -0
  547. package/lib/modules/blocks/data-blocks/table/TableBlockInitializer.mjs +69 -0
  548. package/lib/modules/blocks/data-blocks/table/TableColumnInitializers.mjs +135 -0
  549. package/lib/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.mjs +35 -0
  550. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/duplicate.test.mjs +19 -0
  551. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/filter.test.mjs +46 -0
  552. package/lib/modules/blocks/data-blocks/table/__e2e__/checkboxForTableRow.test.mjs +28 -0
  553. package/lib/modules/blocks/data-blocks/table/__e2e__/dragAndDrop.test.mjs +40 -0
  554. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaInitializer.test.mjs +450 -0
  555. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaSettings.test.mjs +922 -0
  556. package/lib/modules/blocks/data-blocks/table/__e2e__/templatesOfBug.mjs +937 -0
  557. package/lib/modules/blocks/data-blocks/table/__e2e__/tree/schemaSettings.test.mjs +53 -0
  558. package/lib/modules/blocks/data-blocks/table/__tests__/createTableBLockSchema.test.mjs +24 -0
  559. package/lib/modules/blocks/data-blocks/table/createTableBlockUISchema.mjs +90 -0
  560. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.mjs +54 -0
  561. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockProps.mjs +176 -0
  562. package/lib/modules/blocks/data-blocks/table/index.mjs +21 -0
  563. package/lib/modules/blocks/data-blocks/table/tableBlockSettings.mjs +461 -0
  564. package/lib/modules/blocks/data-blocks/table/tableColumnSettings.mjs +388 -0
  565. package/lib/modules/blocks/data-blocks/table/utils.mjs +30 -0
  566. package/lib/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.mjs +45 -0
  567. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaInitializer.test.mjs +174 -0
  568. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaSettings.test.mjs +169 -0
  569. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/templatesOfBug.mjs +695 -0
  570. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/utils.mjs +20 -0
  571. package/lib/modules/blocks/data-blocks/table-selector/__tests__/createTableSelectorSchema.test.mjs +22 -0
  572. package/lib/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.mjs +55 -0
  573. package/lib/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.mjs +5 -0
  574. package/lib/modules/blocks/data-blocks/table-selector/index.mjs +7 -0
  575. package/lib/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.mjs +353 -0
  576. package/lib/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.mjs +22 -0
  577. package/lib/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.mjs +51 -0
  578. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaInitializer.test.mjs +67 -0
  579. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaSettings.test.mjs +72 -0
  580. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/templatesOfBug.mjs +1 -0
  581. package/lib/modules/blocks/filter-blocks/collapse/__tests__/createCollapseBlockSchema.test.mjs +46 -0
  582. package/lib/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.mjs +37 -0
  583. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.mjs +79 -0
  584. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.mjs +244 -0
  585. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.mjs +170 -0
  586. package/lib/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.mjs +5 -0
  587. package/lib/modules/blocks/filter-blocks/form/FilterFormActionInitializers.mjs +38 -0
  588. package/lib/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.mjs +60 -0
  589. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaInitializer.test.mjs +127 -0
  590. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaSettings.test.mjs +111 -0
  591. package/lib/modules/blocks/filter-blocks/form/__e2e__/templatesOfBug.mjs +1 -0
  592. package/lib/modules/blocks/filter-blocks/form/__tests__/createFilterFormBlockSchema.test.mjs +31 -0
  593. package/lib/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.mjs +56 -0
  594. package/lib/modules/blocks/filter-blocks/form/filterFormBlockSettings.mjs +87 -0
  595. package/lib/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.mjs +394 -0
  596. package/lib/modules/blocks/filter-blocks/form/filterFormItemInitializers.mjs +53 -0
  597. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.mjs +5 -0
  598. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.mjs +11 -0
  599. package/lib/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.mjs +38 -0
  600. package/lib/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.mjs +101 -0
  601. package/lib/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.mjs +87 -0
  602. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.mjs +394 -0
  603. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.mjs +53 -0
  604. package/lib/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.mjs +48 -0
  605. package/lib/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.mjs +42 -0
  606. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaInitializer.test.mjs +16 -0
  607. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaSettings.test.mjs +40 -0
  608. package/lib/modules/blocks/other-blocks/markdown/__e2e__/templatesOfBug.mjs +1 -0
  609. package/lib/modules/blocks/other-blocks/markdown/markdownBlockSettings.mjs +51 -0
  610. package/lib/modules/blocks/useParentRecordCommon.mjs +18 -0
  611. package/lib/modules/blocks/useSourceId.mjs +23 -0
  612. package/lib/modules/blocks/useSourceKey.mjs +16 -0
  613. package/lib/modules/dialog/__e2e__/schemaInitializer.test.mjs +435 -0
  614. package/lib/modules/dialog/__e2e__/schemaSettings.test.mjs +65 -0
  615. package/lib/modules/dialog/__e2e__/templatesOfBug.mjs +2128 -0
  616. package/lib/modules/dialog/__e2e__/zIndex.test.mjs +46 -0
  617. package/lib/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.mjs +120 -0
  618. package/lib/modules/fields/component/Cascader/cascaderComponentFieldSettings.mjs +457 -0
  619. package/lib/modules/fields/component/Checkbox/checkboxComponentFieldSettings.mjs +71 -0
  620. package/lib/modules/fields/component/DatePicker/__e2e__/schemaSettings.test.mjs +86 -0
  621. package/lib/modules/fields/component/DatePicker/__e2e__/utils.mjs +335 -0
  622. package/lib/modules/fields/component/DatePicker/datePickerComponentFieldSettings.mjs +37 -0
  623. package/lib/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.mjs +184 -0
  624. package/lib/modules/fields/component/FileManager/fileManagerComponentFieldSettings.mjs +225 -0
  625. package/lib/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.mjs +123 -0
  626. package/lib/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.mjs +45 -0
  627. package/lib/modules/fields/component/Nester/subformComponentFieldSettings.mjs +157 -0
  628. package/lib/modules/fields/component/Picker/TableSelectorInitializers.mjs +98 -0
  629. package/lib/modules/fields/component/Picker/recordPickerComponentFieldSettings.mjs +222 -0
  630. package/lib/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.mjs +134 -0
  631. package/lib/modules/fields/component/Radio/radioComponentFieldSettings.mjs +71 -0
  632. package/lib/modules/fields/component/Select/selectComponentFieldSettings.mjs +453 -0
  633. package/lib/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.mjs +447 -0
  634. package/lib/modules/fields/component/Tag/tagComponentFieldSettings.mjs +207 -0
  635. package/lib/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.mjs +37 -0
  636. package/lib/modules/fields/initializer/CollectionFieldInitializer.mjs +30 -0
  637. package/lib/modules/fields/initializer/TableCollectionFieldInitializer.mjs +30 -0
  638. package/lib/modules/menu/GroupItem.mjs +110 -0
  639. package/lib/modules/menu/LinkMenuItem.mjs +116 -0
  640. package/lib/modules/menu/PageMenuItem.mjs +125 -0
  641. package/lib/modules/menu/__e2e__/dragAndDrop.test.mjs +34 -0
  642. package/lib/modules/menu/__e2e__/schemaInitializer.test.mjs +114 -0
  643. package/lib/modules/menu/__e2e__/schemaSettings.test.mjs +366 -0
  644. package/lib/modules/menu/__e2e__/templatesOfBug.mjs +1 -0
  645. package/lib/modules/menu/menuItemInitializer.mjs +65 -0
  646. package/lib/modules/page/BlockInitializers.mjs +86 -0
  647. package/lib/modules/page/__e2e__/blockInitializers.test.mjs +23 -0
  648. package/lib/modules/page/__e2e__/dragAndDrop.test.mjs +24 -0
  649. package/lib/modules/page/__e2e__/schemaInitailizer.test.mjs +22 -0
  650. package/lib/modules/page/__e2e__/schemaSettings.test.mjs +154 -0
  651. package/lib/modules/page/__e2e__/templatesOfBug.mjs +1 -0
  652. package/lib/modules/plugin-manager/__e2e__/pluginManager.test.mjs +132 -0
  653. package/lib/modules/plugin-manager/__e2e__/templatesOfBug.mjs +1 -0
  654. package/lib/modules/user-center/__e2e__/settings.test.mjs +18 -0
  655. package/lib/modules/variable/DeclareVariable.mjs +27 -0
  656. package/lib/modules/variable/useVariable.mjs +27 -0
  657. package/lib/powered-by/index.mjs +57 -0
  658. package/lib/record-provider/index.mjs +77 -0
  659. package/lib/route-switch/RouteSchemaComponent.mjs +27 -0
  660. package/lib/route-switch/index.mjs +5 -0
  661. package/lib/schema-component/antd/AntdSchemaComponentProvider.mjs +74 -0
  662. package/lib/schema-component/antd/__builtins__/hooks/index.mjs +9 -0
  663. package/lib/schema-component/antd/__builtins__/hooks/useConfig.mjs +14 -0
  664. package/lib/schema-component/antd/__builtins__/hooks/usePrefixCls.mjs +22 -0
  665. package/lib/schema-component/antd/__builtins__/hooks/useToken.mjs +13 -0
  666. package/lib/schema-component/antd/__builtins__/index.mjs +11 -0
  667. package/lib/schema-component/antd/__builtins__/loading.mjs +21 -0
  668. package/lib/schema-component/antd/__builtins__/portal.mjs +76 -0
  669. package/lib/schema-component/antd/__builtins__/render.mjs +65 -0
  670. package/lib/schema-component/antd/__builtins__/style.mjs +79 -0
  671. package/lib/schema-component/antd/action/Action.Area.mjs +130 -0
  672. package/lib/schema-component/antd/action/Action.Area.style.mjs +48 -0
  673. package/lib/schema-component/antd/action/Action.Container.mjs +75 -0
  674. package/lib/schema-component/antd/action/Action.Designer.mjs +1053 -0
  675. package/lib/schema-component/antd/action/Action.Drawer.mjs +179 -0
  676. package/lib/schema-component/antd/action/Action.Drawer.style.mjs +52 -0
  677. package/lib/schema-component/antd/action/Action.Link.mjs +37 -0
  678. package/lib/schema-component/antd/action/Action.Modal.mjs +214 -0
  679. package/lib/schema-component/antd/action/Action.Page.mjs +112 -0
  680. package/lib/schema-component/antd/action/Action.Popover.mjs +1 -0
  681. package/lib/schema-component/antd/action/Action.Sheet.mjs +115 -0
  682. package/lib/schema-component/antd/action/Action.mjs +349 -0
  683. package/lib/schema-component/antd/action/Action.style.mjs +53 -0
  684. package/lib/schema-component/antd/action/ActionBar.mjs +172 -0
  685. package/lib/schema-component/antd/action/__tests__/action.test.mjs +161 -0
  686. package/lib/schema-component/antd/action/context.mjs +29 -0
  687. package/lib/schema-component/antd/action/demos/demo1.mjs +87 -0
  688. package/lib/schema-component/antd/action/demos/demo2.mjs +90 -0
  689. package/lib/schema-component/antd/action/demos/demo3.mjs +148 -0
  690. package/lib/schema-component/antd/action/demos/demo4.mjs +75 -0
  691. package/lib/schema-component/antd/action/demos/demo5.mjs +237 -0
  692. package/lib/schema-component/antd/action/demos/demo6.mjs +114 -0
  693. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfAction.mjs +62 -0
  694. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.mjs +43 -0
  695. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfModal.mjs +43 -0
  696. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.mjs +43 -0
  697. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.mjs +42 -0
  698. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForModal.mjs +44 -0
  699. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForPopover.mjs +33 -0
  700. package/lib/schema-component/antd/action/hooks.mjs +86 -0
  701. package/lib/schema-component/antd/action/index.mjs +23 -0
  702. package/lib/schema-component/antd/action/types.mjs +4 -0
  703. package/lib/schema-component/antd/action/utils.mjs +229 -0
  704. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelect.mjs +268 -0
  705. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.mjs +267 -0
  706. package/lib/schema-component/antd/appends-tree-select/index.mjs +7 -0
  707. package/lib/schema-component/antd/association-cascader/AssociationCascader.mjs +173 -0
  708. package/lib/schema-component/antd/association-cascader/index.mjs +5 -0
  709. package/lib/schema-component/antd/association-field/AssociationFieldProvider.mjs +166 -0
  710. package/lib/schema-component/antd/association-field/AssociationSelect.mjs +229 -0
  711. package/lib/schema-component/antd/association-field/Editable.mjs +165 -0
  712. package/lib/schema-component/antd/association-field/FileManager.mjs +261 -0
  713. package/lib/schema-component/antd/association-field/InternalCascadeSelect.mjs +467 -0
  714. package/lib/schema-component/antd/association-field/InternalCascader.mjs +443 -0
  715. package/lib/schema-component/antd/association-field/InternalDrawerSubTable.mjs +138 -0
  716. package/lib/schema-component/antd/association-field/InternalNester.mjs +117 -0
  717. package/lib/schema-component/antd/association-field/InternalPicker.mjs +276 -0
  718. package/lib/schema-component/antd/association-field/InternalPopoverNester.mjs +176 -0
  719. package/lib/schema-component/antd/association-field/InternalSubTable.mjs +133 -0
  720. package/lib/schema-component/antd/association-field/InternalTag.mjs +180 -0
  721. package/lib/schema-component/antd/association-field/InternalViewer.mjs +197 -0
  722. package/lib/schema-component/antd/association-field/Nester.mjs +330 -0
  723. package/lib/schema-component/antd/association-field/ReadPretty.mjs +82 -0
  724. package/lib/schema-component/antd/association-field/SubTable.mjs +351 -0
  725. package/lib/schema-component/antd/association-field/SubTabs/InternalCollapse.mjs +384 -0
  726. package/lib/schema-component/antd/association-field/SubTabs/hook.mjs +87 -0
  727. package/lib/schema-component/antd/association-field/SubTabs/index.mjs +5 -0
  728. package/lib/schema-component/antd/association-field/SubTabs/styles.mjs +33 -0
  729. package/lib/schema-component/antd/association-field/components/CreateRecordAction.mjs +84 -0
  730. package/lib/schema-component/antd/association-field/context.mjs +10 -0
  731. package/lib/schema-component/antd/association-field/hooks.mjs +221 -0
  732. package/lib/schema-component/antd/association-field/index.mjs +42 -0
  733. package/lib/schema-component/antd/association-field/schema.mjs +135 -0
  734. package/lib/schema-component/antd/association-field/util.mjs +133 -0
  735. package/lib/schema-component/antd/association-filter/ActionBarAssociationFilterAction.mjs +88 -0
  736. package/lib/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.mjs +67 -0
  737. package/lib/schema-component/antd/association-filter/AssociationFilter.Initializer.mjs +67 -0
  738. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.Designer.mjs +168 -0
  739. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.mjs +183 -0
  740. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.style.mjs +107 -0
  741. package/lib/schema-component/antd/association-filter/AssociationFilter.mjs +128 -0
  742. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDelete.mjs +55 -0
  743. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.mjs +43 -0
  744. package/lib/schema-component/antd/association-filter/utilts.mjs +7 -0
  745. package/lib/schema-component/antd/association-select/AssociationSelect.mjs +1010 -0
  746. package/lib/schema-component/antd/association-select/ReadPretty.mjs +38 -0
  747. package/lib/schema-component/antd/association-select/__tests__/association-select.test.mjs +33 -0
  748. package/lib/schema-component/antd/association-select/demos/demo1.mjs +75 -0
  749. package/lib/schema-component/antd/association-select/index.mjs +5 -0
  750. package/lib/schema-component/antd/association-select/useServiceOptions.mjs +114 -0
  751. package/lib/schema-component/antd/auto-complete/AutoComplete.mjs +92 -0
  752. package/lib/schema-component/antd/auto-complete/index.mjs +5 -0
  753. package/lib/schema-component/antd/block-item/BlockItem.mjs +93 -0
  754. package/lib/schema-component/antd/block-item/BlockToolbar.mjs +114 -0
  755. package/lib/schema-component/antd/block-item/__tests__/block-item.test.mjs +29 -0
  756. package/lib/schema-component/antd/block-item/demos/demo1.mjs +75 -0
  757. package/lib/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.mjs +63 -0
  758. package/lib/schema-component/antd/block-item/index.mjs +5 -0
  759. package/lib/schema-component/antd/block-item/useBlockToolbar.mjs +107 -0
  760. package/lib/schema-component/antd/card-item/CardItem.mjs +49 -0
  761. package/lib/schema-component/antd/card-item/__tests__/card-item.test.mjs +28 -0
  762. package/lib/schema-component/antd/card-item/demos/demo1.mjs +45 -0
  763. package/lib/schema-component/antd/card-item/index.mjs +5 -0
  764. package/lib/schema-component/antd/card-item/style.mjs +33 -0
  765. package/lib/schema-component/antd/cascader/Cascader.mjs +123 -0
  766. package/lib/schema-component/antd/cascader/ReadPretty.mjs +50 -0
  767. package/lib/schema-component/antd/cascader/__tests__/cascader.test.mjs +56 -0
  768. package/lib/schema-component/antd/cascader/defaultFieldNames.mjs +9 -0
  769. package/lib/schema-component/antd/cascader/demos/demo1.mjs +100 -0
  770. package/lib/schema-component/antd/cascader/demos/demo2.mjs +140 -0
  771. package/lib/schema-component/antd/cascader/index.mjs +5 -0
  772. package/lib/schema-component/antd/checkbox/Checkbox.mjs +120 -0
  773. package/lib/schema-component/antd/checkbox/__tests__/checkbox.test.mjs +60 -0
  774. package/lib/schema-component/antd/checkbox/demos/checkbox.group.mjs +73 -0
  775. package/lib/schema-component/antd/checkbox/demos/checkbox.mjs +59 -0
  776. package/lib/schema-component/antd/checkbox/index.mjs +5 -0
  777. package/lib/schema-component/antd/collection-select/CollectionSelect.mjs +194 -0
  778. package/lib/schema-component/antd/collection-select/__tests__/collection-select.test.mjs +33 -0
  779. package/lib/schema-component/antd/collection-select/demos/demo1.mjs +54 -0
  780. package/lib/schema-component/antd/collection-select/index.mjs +5 -0
  781. package/lib/schema-component/antd/color-picker/ColorPicker.mjs +114 -0
  782. package/lib/schema-component/antd/color-picker/ReadPretty.mjs +36 -0
  783. package/lib/schema-component/antd/color-picker/demos/demo1.mjs +68 -0
  784. package/lib/schema-component/antd/color-picker/index.mjs +5 -0
  785. package/lib/schema-component/antd/color-picker/util.mjs +196 -0
  786. package/lib/schema-component/antd/color-select/ColorSelect.mjs +73 -0
  787. package/lib/schema-component/antd/color-select/__tests__/color-select.test.mjs +32 -0
  788. package/lib/schema-component/antd/color-select/demos/demo1.mjs +59 -0
  789. package/lib/schema-component/antd/color-select/index.mjs +5 -0
  790. package/lib/schema-component/antd/cron/Cron.mjs +100 -0
  791. package/lib/schema-component/antd/cron/CronSet.mjs +147 -0
  792. package/lib/schema-component/antd/cron/__tests__/cron-set.test.mjs +50 -0
  793. package/lib/schema-component/antd/cron/demos/demo1.mjs +50 -0
  794. package/lib/schema-component/antd/cron/demos/demo2.mjs +69 -0
  795. package/lib/schema-component/antd/cron/index.mjs +7 -0
  796. package/lib/schema-component/antd/custom-cascader/CustomCascader.mjs +63 -0
  797. package/lib/schema-component/antd/custom-cascader/ReadPretty.mjs +50 -0
  798. package/lib/schema-component/antd/custom-cascader/defaultFieldNames.mjs +9 -0
  799. package/lib/schema-component/antd/custom-cascader/index.mjs +5 -0
  800. package/lib/schema-component/antd/date-picker/DatePicker.mjs +176 -0
  801. package/lib/schema-component/antd/date-picker/ReadPretty.mjs +66 -0
  802. package/lib/schema-component/antd/date-picker/__tests__/date-picker.test.mjs +250 -0
  803. package/lib/schema-component/antd/date-picker/__tests__/getDateRanges.test.mjs +119 -0
  804. package/lib/schema-component/antd/date-picker/__tests__/mapDatePicker.test.mjs +212 -0
  805. package/lib/schema-component/antd/date-picker/__tests__/mapRangePicker.test.mjs +71 -0
  806. package/lib/schema-component/antd/date-picker/__tests__/util.test.mjs +182 -0
  807. package/lib/schema-component/antd/date-picker/demos/demo1.mjs +76 -0
  808. package/lib/schema-component/antd/date-picker/demos/demo10.mjs +80 -0
  809. package/lib/schema-component/antd/date-picker/demos/demo11.mjs +84 -0
  810. package/lib/schema-component/antd/date-picker/demos/demo2.mjs +79 -0
  811. package/lib/schema-component/antd/date-picker/demos/demo3.mjs +77 -0
  812. package/lib/schema-component/antd/date-picker/demos/demo4.mjs +94 -0
  813. package/lib/schema-component/antd/date-picker/demos/demo5.mjs +93 -0
  814. package/lib/schema-component/antd/date-picker/demos/demo6.mjs +93 -0
  815. package/lib/schema-component/antd/date-picker/demos/demo7.mjs +80 -0
  816. package/lib/schema-component/antd/date-picker/demos/demo8.mjs +80 -0
  817. package/lib/schema-component/antd/date-picker/demos/demo9.mjs +80 -0
  818. package/lib/schema-component/antd/date-picker/index.mjs +5 -0
  819. package/lib/schema-component/antd/date-picker/util.mjs +217 -0
  820. package/lib/schema-component/antd/details/Details.mjs +44 -0
  821. package/lib/schema-component/antd/details/__tests__/details.test.mjs +25 -0
  822. package/lib/schema-component/antd/details/demos/demo1.mjs +59 -0
  823. package/lib/schema-component/antd/details/index.mjs +5 -0
  824. package/lib/schema-component/antd/error-fallback/ErrorFallback.mjs +77 -0
  825. package/lib/schema-component/antd/error-fallback/__tests__/error-fallback.test.mjs +33 -0
  826. package/lib/schema-component/antd/error-fallback/demos/demo1.mjs +30 -0
  827. package/lib/schema-component/antd/error-fallback/index.mjs +5 -0
  828. package/lib/schema-component/antd/expand-action/Expand.Action.Design.mjs +134 -0
  829. package/lib/schema-component/antd/expand-action/Expand.Action.mjs +103 -0
  830. package/lib/schema-component/antd/expand-action/index.mjs +15 -0
  831. package/lib/schema-component/antd/filter/DynamicComponent.mjs +81 -0
  832. package/lib/schema-component/antd/filter/Filter.Action.Designer.mjs +156 -0
  833. package/lib/schema-component/antd/filter/Filter.mjs +95 -0
  834. package/lib/schema-component/antd/filter/FilterAction.mjs +218 -0
  835. package/lib/schema-component/antd/filter/FilterGroup.mjs +166 -0
  836. package/lib/schema-component/antd/filter/FilterItem.mjs +120 -0
  837. package/lib/schema-component/antd/filter/FilterItems.mjs +47 -0
  838. package/lib/schema-component/antd/filter/SaveDefaultValue.mjs +61 -0
  839. package/lib/schema-component/antd/filter/__tests__/filter.test.mjs +152 -0
  840. package/lib/schema-component/antd/filter/context.mjs +14 -0
  841. package/lib/schema-component/antd/filter/demos/demo2.mjs +143 -0
  842. package/lib/schema-component/antd/filter/demos/demo3.mjs +213 -0
  843. package/lib/schema-component/antd/filter/demos/demo4.mjs +203 -0
  844. package/lib/schema-component/antd/filter/demos/demo5.mjs +145 -0
  845. package/lib/schema-component/antd/filter/demos/demo6.mjs +140 -0
  846. package/lib/schema-component/antd/filter/index.mjs +9 -0
  847. package/lib/schema-component/antd/filter/useFilterActionProps.mjs +298 -0
  848. package/lib/schema-component/antd/filter/useOperators.mjs +38 -0
  849. package/lib/schema-component/antd/filter/useValues.mjs +155 -0
  850. package/lib/schema-component/antd/filter/utils.mjs +20 -0
  851. package/lib/schema-component/antd/form/Form.Designer.mjs +27 -0
  852. package/lib/schema-component/antd/form/Form.Settings.mjs +48 -0
  853. package/lib/schema-component/antd/form/Form.mjs +187 -0
  854. package/lib/schema-component/antd/form/__tests__/form.test.mjs +155 -0
  855. package/lib/schema-component/antd/form/demos/apiClient.mjs +26 -0
  856. package/lib/schema-component/antd/form/demos/demo1.mjs +93 -0
  857. package/lib/schema-component/antd/form/demos/demo2.mjs +95 -0
  858. package/lib/schema-component/antd/form/demos/demo3.mjs +94 -0
  859. package/lib/schema-component/antd/form/demos/demo4.mjs +98 -0
  860. package/lib/schema-component/antd/form/demos/demo5.mjs +142 -0
  861. package/lib/schema-component/antd/form/demos/demo6.mjs +95 -0
  862. package/lib/schema-component/antd/form/demos/demo7.mjs +103 -0
  863. package/lib/schema-component/antd/form/demos/demo8.mjs +110 -0
  864. package/lib/schema-component/antd/form/index.mjs +7 -0
  865. package/lib/schema-component/antd/form-dialog/index.mjs +199 -0
  866. package/lib/schema-component/antd/form-item/FormItem.FilterFormDesigner.mjs +21 -0
  867. package/lib/schema-component/antd/form-item/FormItem.FilterFormSettings.mjs +183 -0
  868. package/lib/schema-component/antd/form-item/FormItem.Settings.mjs +1326 -0
  869. package/lib/schema-component/antd/form-item/FormItem.mjs +200 -0
  870. package/lib/schema-component/antd/form-item/SchemaSettingOptions.mjs +638 -0
  871. package/lib/schema-component/antd/form-item/__tests__/form-item.test.mjs +27 -0
  872. package/lib/schema-component/antd/form-item/__tests__/hooks/useSpecialCase.test.mjs +33 -0
  873. package/lib/schema-component/antd/form-item/__tests__/utils.test.mjs +71 -0
  874. package/lib/schema-component/antd/form-item/demos/demo1.mjs +56 -0
  875. package/lib/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.mjs +135 -0
  876. package/lib/schema-component/antd/form-item/hooks/useParseDefaultValue.mjs +164 -0
  877. package/lib/schema-component/antd/form-item/hooks/useSpecialCase.mjs +182 -0
  878. package/lib/schema-component/antd/form-item/index.mjs +11 -0
  879. package/lib/schema-component/antd/form-item/utils.mjs +22 -0
  880. package/lib/schema-component/antd/form-tab/index.mjs +168 -0
  881. package/lib/schema-component/antd/form-v2/Form.Designer.mjs +51 -0
  882. package/lib/schema-component/antd/form-v2/Form.FilterDesigner.mjs +36 -0
  883. package/lib/schema-component/antd/form-v2/Form.Settings.mjs +364 -0
  884. package/lib/schema-component/antd/form-v2/Form.mjs +432 -0
  885. package/lib/schema-component/antd/form-v2/FormField.mjs +51 -0
  886. package/lib/schema-component/antd/form-v2/Templates.mjs +257 -0
  887. package/lib/schema-component/antd/form-v2/__tests__/form-v2.test.mjs +69 -0
  888. package/lib/schema-component/antd/form-v2/demos/collections.mjs +1568 -0
  889. package/lib/schema-component/antd/form-v2/demos/demo1.mjs +139 -0
  890. package/lib/schema-component/antd/form-v2/demos/demo2.mjs +162 -0
  891. package/lib/schema-component/antd/form-v2/demos/demo3.mjs +139 -0
  892. package/lib/schema-component/antd/form-v2/index.mjs +30 -0
  893. package/lib/schema-component/antd/form-v2/utils.mjs +182 -0
  894. package/lib/schema-component/antd/grid/Block.mjs +39 -0
  895. package/lib/schema-component/antd/grid/Grid.mjs +562 -0
  896. package/lib/schema-component/antd/grid/Grid.style.mjs +51 -0
  897. package/lib/schema-component/antd/grid/__tests__/grid.test.mjs +47 -0
  898. package/lib/schema-component/antd/grid/demos/demo1.mjs +211 -0
  899. package/lib/schema-component/antd/grid/demos/demo2.mjs +119 -0
  900. package/lib/schema-component/antd/grid/demos/demo3.mjs +101 -0
  901. package/lib/schema-component/antd/grid/index.mjs +7 -0
  902. package/lib/schema-component/antd/grid-card/GridCard.Decorator.mjs +108 -0
  903. package/lib/schema-component/antd/grid-card/GridCard.Decorator.style.mjs +30 -0
  904. package/lib/schema-component/antd/grid-card/GridCard.Designer.mjs +317 -0
  905. package/lib/schema-component/antd/grid-card/GridCard.Item.mjs +120 -0
  906. package/lib/schema-component/antd/grid-card/GridCard.mjs +215 -0
  907. package/lib/schema-component/antd/grid-card/__tests__/grid-card.test.mjs +24 -0
  908. package/lib/schema-component/antd/grid-card/demos/demo1.mjs +17 -0
  909. package/lib/schema-component/antd/grid-card/hooks.mjs +37 -0
  910. package/lib/schema-component/antd/grid-card/index.mjs +5 -0
  911. package/lib/schema-component/antd/grid-card/options.mjs +38 -0
  912. package/lib/schema-component/antd/icon-picker/IconFilterInput.mjs +32 -0
  913. package/lib/schema-component/antd/icon-picker/IconList.mjs +71 -0
  914. package/lib/schema-component/antd/icon-picker/IconPicker.mjs +116 -0
  915. package/lib/schema-component/antd/icon-picker/__tests__/icon-picker.test.mjs +43 -0
  916. package/lib/schema-component/antd/icon-picker/demos/icon-picker.mjs +57 -0
  917. package/lib/schema-component/antd/icon-picker/index.mjs +5 -0
  918. package/lib/schema-component/antd/index.css +30 -0
  919. package/lib/schema-component/antd/index.mjs +137 -0
  920. package/lib/schema-component/antd/input/EllipsisWithTooltip.mjs +82 -0
  921. package/lib/schema-component/antd/input/Input.mjs +56 -0
  922. package/lib/schema-component/antd/input/Json.mjs +83 -0
  923. package/lib/schema-component/antd/input/ReadPretty.mjs +186 -0
  924. package/lib/schema-component/antd/input/__tests__/Input.test.mjs +141 -0
  925. package/lib/schema-component/antd/input/demos/input.mjs +57 -0
  926. package/lib/schema-component/antd/input/demos/json.mjs +63 -0
  927. package/lib/schema-component/antd/input/demos/textarea.mjs +85 -0
  928. package/lib/schema-component/antd/input/demos/url.mjs +59 -0
  929. package/lib/schema-component/antd/input/index.mjs +13 -0
  930. package/lib/schema-component/antd/input/shared.mjs +11 -0
  931. package/lib/schema-component/antd/input-number/InputNumber.mjs +37 -0
  932. package/lib/schema-component/antd/input-number/ReadPretty.mjs +161 -0
  933. package/lib/schema-component/antd/input-number/__tests__/input-number.test.mjs +152 -0
  934. package/lib/schema-component/antd/input-number/demos/addonBefore&addonAfter.mjs +65 -0
  935. package/lib/schema-component/antd/input-number/demos/highPrecisionDecimals.mjs +67 -0
  936. package/lib/schema-component/antd/input-number/demos/inputNumber.mjs +57 -0
  937. package/lib/schema-component/antd/input-number/index.mjs +5 -0
  938. package/lib/schema-component/antd/list/List.Decorator.mjs +135 -0
  939. package/lib/schema-component/antd/list/List.Designer.mjs +260 -0
  940. package/lib/schema-component/antd/list/List.Item.mjs +85 -0
  941. package/lib/schema-component/antd/list/List.mjs +129 -0
  942. package/lib/schema-component/antd/list/List.style.mjs +62 -0
  943. package/lib/schema-component/antd/list/__tests__/list.test.mjs +24 -0
  944. package/lib/schema-component/antd/list/demos/demo1.mjs +17 -0
  945. package/lib/schema-component/antd/list/hooks.mjs +16 -0
  946. package/lib/schema-component/antd/list/index.mjs +5 -0
  947. package/lib/schema-component/antd/markdown/Markdown.Void.Designer.mjs +45 -0
  948. package/lib/schema-component/antd/markdown/Markdown.Void.mjs +148 -0
  949. package/lib/schema-component/antd/markdown/Markdown.mjs +83 -0
  950. package/lib/schema-component/antd/markdown/__tests__/markdown.test.mjs +48 -0
  951. package/lib/schema-component/antd/markdown/demos/demo1.mjs +59 -0
  952. package/lib/schema-component/antd/markdown/demos/demo2.mjs +78 -0
  953. package/lib/schema-component/antd/markdown/index.mjs +5 -0
  954. package/lib/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.mjs +73 -0
  955. package/lib/schema-component/antd/markdown/md.mjs +25 -0
  956. package/lib/schema-component/antd/markdown/style.mjs +233 -0
  957. package/lib/schema-component/antd/markdown/util.mjs +49 -0
  958. package/lib/schema-component/antd/menu/Menu.Designer.mjs +478 -0
  959. package/lib/schema-component/antd/menu/Menu.mjs +686 -0
  960. package/lib/schema-component/antd/menu/Menu.styles.mjs +85 -0
  961. package/lib/schema-component/antd/menu/MenuItemInitializers/index.mjs +17 -0
  962. package/lib/schema-component/antd/menu/__tests__/menu.test.mjs +65 -0
  963. package/lib/schema-component/antd/menu/demos/demo1.mjs +109 -0
  964. package/lib/schema-component/antd/menu/demos/demo2.mjs +112 -0
  965. package/lib/schema-component/antd/menu/demos/demo3.mjs +152 -0
  966. package/lib/schema-component/antd/menu/index.mjs +9 -0
  967. package/lib/schema-component/antd/menu/locale.mjs +11 -0
  968. package/lib/schema-component/antd/menu/util.mjs +56 -0
  969. package/lib/schema-component/antd/nanoIDInput/NanoIDInput.mjs +71 -0
  970. package/lib/schema-component/antd/nanoIDInput/index.mjs +5 -0
  971. package/lib/schema-component/antd/page/FixedBlock.mjs +118 -0
  972. package/lib/schema-component/antd/page/FixedBlockDesignerItem.mjs +72 -0
  973. package/lib/schema-component/antd/page/Page.Settings.mjs +167 -0
  974. package/lib/schema-component/antd/page/Page.mjs +317 -0
  975. package/lib/schema-component/antd/page/PageTab.Settings.mjs +108 -0
  976. package/lib/schema-component/antd/page/PageTabDesigner.mjs +98 -0
  977. package/lib/schema-component/antd/page/__tests__/page.test.mjs +33 -0
  978. package/lib/schema-component/antd/page/demos/demo1.mjs +52 -0
  979. package/lib/schema-component/antd/page/hooks/useIsBlockInPage.mjs +25 -0
  980. package/lib/schema-component/antd/page/index.mjs +13 -0
  981. package/lib/schema-component/antd/page/style.mjs +149 -0
  982. package/lib/schema-component/antd/pagination/index.mjs +48 -0
  983. package/lib/schema-component/antd/password/Password.mjs +102 -0
  984. package/lib/schema-component/antd/password/PasswordStrength.mjs +29 -0
  985. package/lib/schema-component/antd/password/__tests__/password.test.mjs +46 -0
  986. package/lib/schema-component/antd/password/__tests__/utils.test.mjs +27 -0
  987. package/lib/schema-component/antd/password/demos/demo1.mjs +59 -0
  988. package/lib/schema-component/antd/password/demos/demo2.mjs +62 -0
  989. package/lib/schema-component/antd/password/index.mjs +5 -0
  990. package/lib/schema-component/antd/password/utils.mjs +146 -0
  991. package/lib/schema-component/antd/percent/Percent.mjs +59 -0
  992. package/lib/schema-component/antd/percent/__tests__/percent.test.mjs +31 -0
  993. package/lib/schema-component/antd/percent/demos/percent.mjs +57 -0
  994. package/lib/schema-component/antd/percent/index.mjs +5 -0
  995. package/lib/schema-component/antd/popover/Popover.mjs +67 -0
  996. package/lib/schema-component/antd/popover/index.mjs +5 -0
  997. package/lib/schema-component/antd/preview/Preview.mjs +324 -0
  998. package/lib/schema-component/antd/preview/__tests__/preview.test.mjs +26 -0
  999. package/lib/schema-component/antd/preview/demos/demo1.mjs +103 -0
  1000. package/lib/schema-component/antd/preview/index.mjs +5 -0
  1001. package/lib/schema-component/antd/quick-edit/QuickEdit.mjs +148 -0
  1002. package/lib/schema-component/antd/quick-edit/index.mjs +5 -0
  1003. package/lib/schema-component/antd/radio/Radio.mjs +62 -0
  1004. package/lib/schema-component/antd/radio/__tests__/radio.test.mjs +64 -0
  1005. package/lib/schema-component/antd/radio/demos/demo1.mjs +60 -0
  1006. package/lib/schema-component/antd/radio/demos/demo2.mjs +72 -0
  1007. package/lib/schema-component/antd/radio/demos/demo3.mjs +73 -0
  1008. package/lib/schema-component/antd/radio/index.mjs +5 -0
  1009. package/lib/schema-component/antd/record-picker/InputRecordPicker.mjs +308 -0
  1010. package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.mjs +177 -0
  1011. package/lib/schema-component/antd/record-picker/RecordPicker.mjs +17 -0
  1012. package/lib/schema-component/antd/record-picker/__tests__/record-picker.test.mjs +44 -0
  1013. package/lib/schema-component/antd/record-picker/demos/demo1.mjs +198 -0
  1014. package/lib/schema-component/antd/record-picker/demos/mockData.mjs +214 -0
  1015. package/lib/schema-component/antd/record-picker/index.mjs +24 -0
  1016. package/lib/schema-component/antd/record-picker/useFieldNames.mjs +18 -0
  1017. package/lib/schema-component/antd/record-picker/util.mjs +59 -0
  1018. package/lib/schema-component/antd/remote-select/ReadPretty.mjs +71 -0
  1019. package/lib/schema-component/antd/remote-select/RemoteSelect.mjs +291 -0
  1020. package/lib/schema-component/antd/remote-select/__tests__/remote-select.test.mjs +33 -0
  1021. package/lib/schema-component/antd/remote-select/demos/demo1.mjs +75 -0
  1022. package/lib/schema-component/antd/remote-select/index.mjs +5 -0
  1023. package/lib/schema-component/antd/remote-select/shared.mjs +11 -0
  1024. package/lib/schema-component/antd/rich-text/RichText.mjs +85 -0
  1025. package/lib/schema-component/antd/rich-text/__tests__/rich-text.test.mjs +28 -0
  1026. package/lib/schema-component/antd/rich-text/demos/demo1.mjs +61 -0
  1027. package/lib/schema-component/antd/rich-text/index.mjs +5 -0
  1028. package/lib/schema-component/antd/rich-text/style.mjs +818 -0
  1029. package/lib/schema-component/antd/scroll-area/ScrollArea.mjs +63 -0
  1030. package/lib/schema-component/antd/scroll-area/index.mjs +5 -0
  1031. package/lib/schema-component/antd/select/FormulaSelect.mjs +263 -0
  1032. package/lib/schema-component/antd/select/ReadPretty.mjs +61 -0
  1033. package/lib/schema-component/antd/select/Select.mjs +214 -0
  1034. package/lib/schema-component/antd/select/__tests__/select.test.mjs +63 -0
  1035. package/lib/schema-component/antd/select/__tests__/utils.test.mjs +135 -0
  1036. package/lib/schema-component/antd/select/demos/demo1.mjs +91 -0
  1037. package/lib/schema-component/antd/select/demos/demo2.mjs +95 -0
  1038. package/lib/schema-component/antd/select/demos/demo3.mjs +105 -0
  1039. package/lib/schema-component/antd/select/index.mjs +7 -0
  1040. package/lib/schema-component/antd/select/utils.mjs +49 -0
  1041. package/lib/schema-component/antd/space/index.mjs +36 -0
  1042. package/lib/schema-component/antd/table/Table.Array.Designer.mjs +26 -0
  1043. package/lib/schema-component/antd/table/Table.Array.mjs +358 -0
  1044. package/lib/schema-component/antd/table/Table.Column.ActionBar.mjs +62 -0
  1045. package/lib/schema-component/antd/table/Table.Column.Decorator.mjs +77 -0
  1046. package/lib/schema-component/antd/table/Table.Column.Designer.mjs +173 -0
  1047. package/lib/schema-component/antd/table/Table.Column.mjs +22 -0
  1048. package/lib/schema-component/antd/table/Table.Designer.mjs +32 -0
  1049. package/lib/schema-component/antd/table/Table.RowActionDesigner.mjs +60 -0
  1050. package/lib/schema-component/antd/table/Table.RowSelection.mjs +47 -0
  1051. package/lib/schema-component/antd/table/Table.Void.Designer.mjs +278 -0
  1052. package/lib/schema-component/antd/table/Table.Void.mjs +155 -0
  1053. package/lib/schema-component/antd/table/__tests__/table.test.mjs +45 -0
  1054. package/lib/schema-component/antd/table/demos/demo1.mjs +77 -0
  1055. package/lib/schema-component/antd/table/demos/demo2.mjs +77 -0
  1056. package/lib/schema-component/antd/table/demos/demo3.mjs +77 -0
  1057. package/lib/schema-component/antd/table/demos/demo4.mjs +242 -0
  1058. package/lib/schema-component/antd/table/index.mjs +60 -0
  1059. package/lib/schema-component/antd/table-v2/Table.ActionColumnDesigner.mjs +60 -0
  1060. package/lib/schema-component/antd/table-v2/Table.Column.ActionBar.mjs +72 -0
  1061. package/lib/schema-component/antd/table-v2/Table.Column.Decorator.mjs +91 -0
  1062. package/lib/schema-component/antd/table-v2/Table.Column.Designer.mjs +514 -0
  1063. package/lib/schema-component/antd/table-v2/Table.Column.mjs +23 -0
  1064. package/lib/schema-component/antd/table-v2/Table.Designer.mjs +32 -0
  1065. package/lib/schema-component/antd/table-v2/Table.Index.mjs +22 -0
  1066. package/lib/schema-component/antd/table-v2/Table.mjs +574 -0
  1067. package/lib/schema-component/antd/table-v2/Table.styles.mjs +146 -0
  1068. package/lib/schema-component/antd/table-v2/TableBlockDesigner.mjs +392 -0
  1069. package/lib/schema-component/antd/table-v2/TableField.mjs +77 -0
  1070. package/lib/schema-component/antd/table-v2/TableSelector.mjs +9 -0
  1071. package/lib/schema-component/antd/table-v2/TableSelectorDesigner.mjs +347 -0
  1072. package/lib/schema-component/antd/table-v2/__tests__/table-v2.test.mjs +31 -0
  1073. package/lib/schema-component/antd/table-v2/components/ColumnFieldProvider.mjs +59 -0
  1074. package/lib/schema-component/antd/table-v2/demos/collections.mjs +1563 -0
  1075. package/lib/schema-component/antd/table-v2/demos/demo1.mjs +251 -0
  1076. package/lib/schema-component/antd/table-v2/demos/demo2.mjs +145 -0
  1077. package/lib/schema-component/antd/table-v2/index.mjs +52 -0
  1078. package/lib/schema-component/antd/table-v2/utils.mjs +20 -0
  1079. package/lib/schema-component/antd/tabs/Tabs.Designer.mjs +159 -0
  1080. package/lib/schema-component/antd/tabs/Tabs.mjs +141 -0
  1081. package/lib/schema-component/antd/tabs/__tests__/tabs.test.mjs +29 -0
  1082. package/lib/schema-component/antd/tabs/context.mjs +23 -0
  1083. package/lib/schema-component/antd/tabs/demos/demo1.mjs +86 -0
  1084. package/lib/schema-component/antd/tabs/index.mjs +7 -0
  1085. package/lib/schema-component/antd/time-picker/ReadPretty.mjs +42 -0
  1086. package/lib/schema-component/antd/time-picker/TimePicker.mjs +40 -0
  1087. package/lib/schema-component/antd/time-picker/__tests__/time-picker.test.mjs +68 -0
  1088. package/lib/schema-component/antd/time-picker/demos/demo1.mjs +59 -0
  1089. package/lib/schema-component/antd/time-picker/demos/demo2.mjs +59 -0
  1090. package/lib/schema-component/antd/time-picker/index.mjs +5 -0
  1091. package/lib/schema-component/antd/tree/Tree.mjs +115 -0
  1092. package/lib/schema-component/antd/tree/index.mjs +10 -0
  1093. package/lib/schema-component/antd/tree-select/ReadPretty.mjs +91 -0
  1094. package/lib/schema-component/antd/tree-select/TreeSelect.mjs +37 -0
  1095. package/lib/schema-component/antd/tree-select/__tests__/tree-select.test.mjs +29 -0
  1096. package/lib/schema-component/antd/tree-select/demos/demo1.mjs +103 -0
  1097. package/lib/schema-component/antd/tree-select/index.mjs +5 -0
  1098. package/lib/schema-component/antd/unixTimestamp/UnixTimestamp.mjs +69 -0
  1099. package/lib/schema-component/antd/unixTimestamp/index.mjs +5 -0
  1100. package/lib/schema-component/antd/upload/ReadPretty.mjs +249 -0
  1101. package/lib/schema-component/antd/upload/Upload.mjs +394 -0
  1102. package/lib/schema-component/antd/upload/__tests__/upload.test.mjs +31 -0
  1103. package/lib/schema-component/antd/upload/demos/apiClient.mjs +51 -0
  1104. package/lib/schema-component/antd/upload/demos/demo1.mjs +71 -0
  1105. package/lib/schema-component/antd/upload/demos/demo2.mjs +137 -0
  1106. package/lib/schema-component/antd/upload/index.mjs +5 -0
  1107. package/lib/schema-component/antd/upload/placeholder.mjs +66 -0
  1108. package/lib/schema-component/antd/upload/shared.mjs +254 -0
  1109. package/lib/schema-component/antd/upload/style.mjs +81 -0
  1110. package/lib/schema-component/antd/upload/type.d.mjs +7 -0
  1111. package/lib/schema-component/antd/variable/CodeMirror.mjs +124 -0
  1112. package/lib/schema-component/antd/variable/Input.mjs +384 -0
  1113. package/lib/schema-component/antd/variable/JSONInput.mjs +57 -0
  1114. package/lib/schema-component/antd/variable/RawTextArea.mjs +125 -0
  1115. package/lib/schema-component/antd/variable/TextArea.mjs +504 -0
  1116. package/lib/schema-component/antd/variable/Variable.mjs +57 -0
  1117. package/lib/schema-component/antd/variable/VariableSelect.mjs +101 -0
  1118. package/lib/schema-component/antd/variable/VariableSelect.style.mjs +36 -0
  1119. package/lib/schema-component/antd/variable/XButton.mjs +35 -0
  1120. package/lib/schema-component/antd/variable/__tests__/variable.test.mjs +66 -0
  1121. package/lib/schema-component/antd/variable/demos/demo1.mjs +63 -0
  1122. package/lib/schema-component/antd/variable/demos/demo2.mjs +63 -0
  1123. package/lib/schema-component/antd/variable/demos/demo3.mjs +63 -0
  1124. package/lib/schema-component/antd/variable/index.mjs +5 -0
  1125. package/lib/schema-component/antd/variable/style.mjs +186 -0
  1126. package/lib/schema-component/common/dnd-context/index.mjs +124 -0
  1127. package/lib/schema-component/common/index.mjs +7 -0
  1128. package/lib/schema-component/common/infinite-scroll/infinite-scroll.mjs +153 -0
  1129. package/lib/schema-component/common/infinite-scroll/style.mjs +36 -0
  1130. package/lib/schema-component/common/sortable-item/SortableItem.mjs +166 -0
  1131. package/lib/schema-component/common/sortable-item/index.mjs +5 -0
  1132. package/lib/schema-component/common/utils/logic.mjs +578 -0
  1133. package/lib/schema-component/common/utils/uitls.mjs +155 -0
  1134. package/lib/schema-component/context.mjs +10 -0
  1135. package/lib/schema-component/core/DesignableSwitch.mjs +67 -0
  1136. package/lib/schema-component/core/FormProvider.mjs +70 -0
  1137. package/lib/schema-component/core/RemoteSchemaComponent.mjs +72 -0
  1138. package/lib/schema-component/core/SchemaComponent.mjs +86 -0
  1139. package/lib/schema-component/core/SchemaComponentOptions.mjs +62 -0
  1140. package/lib/schema-component/core/SchemaComponentProvider.mjs +116 -0
  1141. package/lib/schema-component/core/index.mjs +32 -0
  1142. package/lib/schema-component/demos/demo1.mjs +111 -0
  1143. package/lib/schema-component/demos/demo2.mjs +40 -0
  1144. package/lib/schema-component/demos/demo3.mjs +41 -0
  1145. package/lib/schema-component/demos/demo4.mjs +41 -0
  1146. package/lib/schema-component/hooks/__tests__/designable.test.mjs +564 -0
  1147. package/lib/schema-component/hooks/__tests__/splitWrapSchema.test.mjs +98 -0
  1148. package/lib/schema-component/hooks/index.mjs +27 -0
  1149. package/lib/schema-component/hooks/useAttach.mjs +24 -0
  1150. package/lib/schema-component/hooks/useCompile.mjs +59 -0
  1151. package/lib/schema-component/hooks/useComponent.mjs +26 -0
  1152. package/lib/schema-component/hooks/useDesignable.mjs +858 -0
  1153. package/lib/schema-component/hooks/useDesigner.mjs +36 -0
  1154. package/lib/schema-component/hooks/useFieldComponentOptions.mjs +106 -0
  1155. package/lib/schema-component/hooks/useFieldModeOptions.mjs +304 -0
  1156. package/lib/schema-component/hooks/useFieldProps.mjs +27 -0
  1157. package/lib/schema-component/hooks/useFieldTitle.mjs +37 -0
  1158. package/lib/schema-component/hooks/useProps.mjs +22 -0
  1159. package/lib/schema-component/hooks/useSchemaComponentContext.mjs +15 -0
  1160. package/lib/schema-component/hooks/useTableSize.mjs +40 -0
  1161. package/lib/schema-component/index.mjs +15 -0
  1162. package/lib/schema-component/types.mjs +7 -0
  1163. package/lib/schema-initializer/buttons/CustomFormItemInitializers.mjs +71 -0
  1164. package/lib/schema-initializer/buttons/FormItemInitializers.mjs +187 -0
  1165. package/lib/schema-initializer/buttons/RecordBlockInitializers.mjs +460 -0
  1166. package/lib/schema-initializer/buttons/SubTableActionInitializers.mjs +41 -0
  1167. package/lib/schema-initializer/buttons/TabPaneInitializers.mjs +232 -0
  1168. package/lib/schema-initializer/buttons/index.mjs +16 -0
  1169. package/lib/schema-initializer/components/CreateRecordAction.mjs +414 -0
  1170. package/lib/schema-initializer/components/DeletedField.mjs +25 -0
  1171. package/lib/schema-initializer/components/assigned-field/AssignedField.mjs +177 -0
  1172. package/lib/schema-initializer/components/assigned-field/index.mjs +5 -0
  1173. package/lib/schema-initializer/components/index.mjs +7 -0
  1174. package/lib/schema-initializer/demos/basic.mjs +81 -0
  1175. package/lib/schema-initializer/demos/build-type.mjs +96 -0
  1176. package/lib/schema-initializer/demos/custom-button.mjs +114 -0
  1177. package/lib/schema-initializer/demos/custom-items-component.mjs +116 -0
  1178. package/lib/schema-initializer/demos/dynamic-visible-children.mjs +94 -0
  1179. package/lib/schema-initializer/demos/insert-schema-action.mjs +111 -0
  1180. package/lib/schema-initializer/demos/insert-schema-basic.mjs +133 -0
  1181. package/lib/schema-initializer/demos/insert-schema-form-item.mjs +153 -0
  1182. package/lib/schema-initializer/demos/nested-items.mjs +170 -0
  1183. package/lib/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.mjs +36 -0
  1184. package/lib/schema-initializer/index.mjs +329 -0
  1185. package/lib/schema-initializer/items/ActionInitializer.mjs +29 -0
  1186. package/lib/schema-initializer/items/BlockInitializer.mjs +43 -0
  1187. package/lib/schema-initializer/items/CreateFilterActionInitializer.mjs +33 -0
  1188. package/lib/schema-initializer/items/CreateResetActionInitializer.mjs +28 -0
  1189. package/lib/schema-initializer/items/CustomFilterFormItemInitializer.mjs +540 -0
  1190. package/lib/schema-initializer/items/CustomizeActionInitializer.mjs +27 -0
  1191. package/lib/schema-initializer/items/DataBlockInitializer.mjs +393 -0
  1192. package/lib/schema-initializer/items/DeleteEventActionInitializer.mjs +36 -0
  1193. package/lib/schema-initializer/items/FilterBlockInitializer.mjs +9 -0
  1194. package/lib/schema-initializer/items/G2PlotInitializer.mjs +28 -0
  1195. package/lib/schema-initializer/items/InitializerWithSwitch.mjs +47 -0
  1196. package/lib/schema-initializer/items/RecordAssociationBlockInitializer.mjs +86 -0
  1197. package/lib/schema-initializer/items/RecordAssociationDetailsBlockInitializer.mjs +84 -0
  1198. package/lib/schema-initializer/items/RecordAssociationFormBlockInitializer.mjs +119 -0
  1199. package/lib/schema-initializer/items/RecordAssociationGridCardBlockInitializer.mjs +86 -0
  1200. package/lib/schema-initializer/items/RecordAssociationListBlockInitializer.mjs +84 -0
  1201. package/lib/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.mjs +118 -0
  1202. package/lib/schema-initializer/items/SelectActionInitializer.mjs +76 -0
  1203. package/lib/schema-initializer/items/SubmitActionInitializer.mjs +34 -0
  1204. package/lib/schema-initializer/items/TableActionColumnInitializer.mjs +57 -0
  1205. package/lib/schema-initializer/items/index.mjs +50 -0
  1206. package/lib/schema-initializer/style.mjs +23 -0
  1207. package/lib/schema-initializer/utils.mjs +1535 -0
  1208. package/lib/schema-items/GeneralSchemaItems.mjs +181 -0
  1209. package/lib/schema-items/GeneralSettings.mjs +226 -0
  1210. package/lib/schema-items/OpenModeSchemaItems.mjs +215 -0
  1211. package/lib/schema-items/index.mjs +7 -0
  1212. package/lib/schema-settings/DataTemplates/FormDataTemplates.mjs +332 -0
  1213. package/lib/schema-settings/DataTemplates/TreeLabel.mjs +42 -0
  1214. package/lib/schema-settings/DataTemplates/components/AsDefaultTemplate.mjs +64 -0
  1215. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.mjs +305 -0
  1216. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.style.mjs +15 -0
  1217. package/lib/schema-settings/DataTemplates/components/Designer.mjs +208 -0
  1218. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.mjs +348 -0
  1219. package/lib/schema-settings/DataTemplates/index.mjs +5 -0
  1220. package/lib/schema-settings/DataTemplates/utils.mjs +300 -0
  1221. package/lib/schema-settings/DateFormat/ExpiresRadio.mjs +160 -0
  1222. package/lib/schema-settings/EditCustomDefaultValue.mjs +137 -0
  1223. package/lib/schema-settings/EditFormulaTitleField.mjs +127 -0
  1224. package/lib/schema-settings/EnableChildCollections/DynamicComponent.mjs +91 -0
  1225. package/lib/schema-settings/EnableChildCollections/index.mjs +129 -0
  1226. package/lib/schema-settings/GeneralSchemaDesigner.mjs +328 -0
  1227. package/lib/schema-settings/LinkageRules/DynamicComponent.mjs +79 -0
  1228. package/lib/schema-settings/LinkageRules/LinkageRuleAction.mjs +272 -0
  1229. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.mjs +116 -0
  1230. package/lib/schema-settings/LinkageRules/ValueDynamicComponent.mjs +200 -0
  1231. package/lib/schema-settings/LinkageRules/Variables.mjs +119 -0
  1232. package/lib/schema-settings/LinkageRules/action-hooks.mjs +128 -0
  1233. package/lib/schema-settings/LinkageRules/components/EnableLinkage.mjs +56 -0
  1234. package/lib/schema-settings/LinkageRules/components/LinkageHeader.mjs +304 -0
  1235. package/lib/schema-settings/LinkageRules/components/LinkageHeader.style.mjs +15 -0
  1236. package/lib/schema-settings/LinkageRules/context.mjs +14 -0
  1237. package/lib/schema-settings/LinkageRules/index.mjs +247 -0
  1238. package/lib/schema-settings/LinkageRules/type.mjs +18 -0
  1239. package/lib/schema-settings/LinkageRules/useValues.mjs +84 -0
  1240. package/lib/schema-settings/SchemaSettingCollection.mjs +73 -0
  1241. package/lib/schema-settings/SchemaSettingComponent.mjs +62 -0
  1242. package/lib/schema-settings/SchemaSettings.mjs +1517 -0
  1243. package/lib/schema-settings/SchemaSettingsDataScope.mjs +152 -0
  1244. package/lib/schema-settings/SchemaSettingsDateFormat.mjs +231 -0
  1245. package/lib/schema-settings/SchemaSettingsDefaultValue.mjs +274 -0
  1246. package/lib/schema-settings/SchemaSettingsNumberFormat.mjs +205 -0
  1247. package/lib/schema-settings/SchemaSettingsPlugin.mjs +265 -0
  1248. package/lib/schema-settings/SchemaSettingsSortingRule.mjs +155 -0
  1249. package/lib/schema-settings/VariableInput/VariableInput.mjs +260 -0
  1250. package/lib/schema-settings/VariableInput/hooks/index.mjs +9 -0
  1251. package/lib/schema-settings/VariableInput/hooks/useBaseVariable.mjs +228 -0
  1252. package/lib/schema-settings/VariableInput/hooks/useBlockCollection.mjs +16 -0
  1253. package/lib/schema-settings/VariableInput/hooks/useContextAssociationFields.mjs +126 -0
  1254. package/lib/schema-settings/VariableInput/hooks/useDateVariable.mjs +179 -0
  1255. package/lib/schema-settings/VariableInput/hooks/useFilterVariable.mjs +77 -0
  1256. package/lib/schema-settings/VariableInput/hooks/useFormVariable.mjs +85 -0
  1257. package/lib/schema-settings/VariableInput/hooks/useIterationVariable.mjs +94 -0
  1258. package/lib/schema-settings/VariableInput/hooks/useParentRecordVariable.mjs +71 -0
  1259. package/lib/schema-settings/VariableInput/hooks/usePopupVariable.mjs +37 -0
  1260. package/lib/schema-settings/VariableInput/hooks/useRecordVariable.mjs +64 -0
  1261. package/lib/schema-settings/VariableInput/hooks/useRoleVariable.mjs +64 -0
  1262. package/lib/schema-settings/VariableInput/hooks/useUserVariable.mjs +67 -0
  1263. package/lib/schema-settings/VariableInput/hooks/useVariableOptions.mjs +140 -0
  1264. package/lib/schema-settings/VariableInput/index.mjs +7 -0
  1265. package/lib/schema-settings/VariableInput/type.mjs +4 -0
  1266. package/lib/schema-settings/VariableInput/utils/formatVariableScop.mjs +16 -0
  1267. package/lib/schema-settings/demos/basic.mjs +75 -0
  1268. package/lib/schema-settings/demos/built-type.mjs +157 -0
  1269. package/lib/schema-settings/demos/custom-component.mjs +58 -0
  1270. package/lib/schema-settings/demos/demo3.mjs +120 -0
  1271. package/lib/schema-settings/demos/schema-basic.mjs +84 -0
  1272. package/lib/schema-settings/filter-form/FormFilterScope.mjs +147 -0
  1273. package/lib/schema-settings/filter-form/context.mjs +14 -0
  1274. package/lib/schema-settings/hooks/useFilterFormCustomProps.mjs +22 -0
  1275. package/lib/schema-settings/hooks/useGetAriaLabelOfDesigner.mjs +39 -0
  1276. package/lib/schema-settings/hooks/useIsAllowToSetDefaultValue.mjs +109 -0
  1277. package/lib/schema-settings/hooks/useIsShowMultipleSwitch.mjs +27 -0
  1278. package/lib/schema-settings/hooks/useParseDataScopeFilter.mjs +83 -0
  1279. package/lib/schema-settings/index.mjs +39 -0
  1280. package/lib/schema-settings/isPatternDisabled.mjs +8 -0
  1281. package/lib/schema-settings/styles.mjs +92 -0
  1282. package/lib/schema-settings/types.mjs +4 -0
  1283. package/lib/schema-templates/BlockTemplate.mjs +63 -0
  1284. package/lib/schema-templates/BlockTemplateDetails.mjs +126 -0
  1285. package/lib/schema-templates/BlockTemplatePage.mjs +55 -0
  1286. package/lib/schema-templates/SchemaTemplateManagerProvider.mjs +103 -0
  1287. package/lib/schema-templates/collections/uiSchemaTemplates.mjs +22 -0
  1288. package/lib/schema-templates/index.mjs +11 -0
  1289. package/lib/schema-templates/schemas/CollectionTitle.mjs +52 -0
  1290. package/lib/schema-templates/schemas/uiSchemaTemplates.mjs +249 -0
  1291. package/lib/schema-templates/useSchemaTemplateManager.mjs +119 -0
  1292. package/lib/style/css-variable/CSSVariableProvider.mjs +90 -0
  1293. package/lib/style/css-variable/index.mjs +9 -0
  1294. package/lib/style/index.mjs +23 -0
  1295. package/lib/style/theme/AntdAppProvider.mjs +54 -0
  1296. package/lib/style/theme/defaultTheme.mjs +24 -0
  1297. package/lib/style/theme/index.mjs +96 -0
  1298. package/lib/style/theme/type.mjs +4 -0
  1299. package/lib/style/useToken.mjs +13 -0
  1300. package/lib/testUtils/index.mjs +5 -0
  1301. package/lib/testUtils/mockAPIClient.mjs +57 -0
  1302. package/lib/user/ChangePassword.mjs +180 -0
  1303. package/lib/user/CurrentUser.mjs +282 -0
  1304. package/lib/user/CurrentUserProvider.mjs +89 -0
  1305. package/lib/user/CurrentUserSettingsMenuProvider.mjs +88 -0
  1306. package/lib/user/EditProfile.mjs +172 -0
  1307. package/lib/user/LanguageSettings.mjs +70 -0
  1308. package/lib/user/SwitchRole.mjs +66 -0
  1309. package/lib/user/VerificationCode.mjs +115 -0
  1310. package/lib/user/__tests__/current-user-settings-menu-provider.test.mjs +64 -0
  1311. package/lib/user/index.mjs +9 -0
  1312. package/lib/variables/VariablesProvider.mjs +319 -0
  1313. package/lib/variables/__tests__/useVariables.test.mjs +473 -0
  1314. package/lib/variables/__tests__/utils/filterEmptyValues.test.mjs +52 -0
  1315. package/lib/variables/__tests__/utils/getPath.test.mjs +10 -0
  1316. package/lib/variables/__tests__/utils/getVariableName.test.mjs +10 -0
  1317. package/lib/variables/__tests__/utils/isVariable.test.mjs +28 -0
  1318. package/lib/variables/__tests__/utils/transformVariableValue.test.mjs +142 -0
  1319. package/lib/variables/__tests__/utils/uniq.test.mjs +83 -0
  1320. package/lib/variables/constants.mjs +5 -0
  1321. package/lib/variables/hooks/useBuiltinVariables.mjs +80 -0
  1322. package/lib/variables/hooks/useContextVariable.mjs +38 -0
  1323. package/lib/variables/hooks/useLocalVariables.mjs +102 -0
  1324. package/lib/variables/hooks/useVariables.mjs +16 -0
  1325. package/lib/variables/index.mjs +36 -0
  1326. package/lib/variables/types.mjs +4 -0
  1327. package/lib/variables/utils/filterEmptyValues.mjs +12 -0
  1328. package/lib/variables/utils/getAction.mjs +14 -0
  1329. package/lib/variables/utils/getPath.mjs +19 -0
  1330. package/lib/variables/utils/getVariableName.mjs +25 -0
  1331. package/lib/variables/utils/hasRequested.mjs +24 -0
  1332. package/lib/variables/utils/isVariable.mjs +15 -0
  1333. package/lib/variables/utils/transformVariableValue.mjs +55 -0
  1334. package/lib/variables/utils/uniq.mjs +26 -0
  1335. package/package.json +5 -5
  1336. package/index.mjs +0 -99617
@@ -0,0 +1,1010 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__ from "react/jsx-runtime";
2
+ import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
3
+ import * as __WEBPACK_EXTERNAL_MODULE__tachybase_components__ from "@tachybase/components";
4
+ import * as __WEBPACK_EXTERNAL_MODULE__tachybase_schema__ from "@tachybase/schema";
5
+ import * as __WEBPACK_EXTERNAL_MODULE__ant_design_icons__ from "@ant-design/icons";
6
+ import * as __WEBPACK_EXTERNAL_MODULE_lodash__ from "lodash";
7
+ import * as __WEBPACK_EXTERNAL_MODULE_react_i18next__ from "react-i18next";
8
+ import * as __WEBPACK_EXTERNAL_MODULE__block_provider_index_mjs__ from "../../../block-provider/index.mjs";
9
+ import * as __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__ from "../../../collection-manager/index.mjs";
10
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_items_index_mjs__ from "../../../schema-items/index.mjs";
11
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_GeneralSchemaDesigner_mjs__ from "../../../schema-settings/GeneralSchemaDesigner.mjs";
12
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsAllowToSetDefaultValue_mjs__ from "../../../schema-settings/hooks/useIsAllowToSetDefaultValue.mjs";
13
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsShowMultipleSwitch_mjs__ from "../../../schema-settings/hooks/useIsShowMultipleSwitch.mjs";
14
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_isPatternDisabled_mjs__ from "../../../schema-settings/isPatternDisabled.mjs";
15
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__ from "../../../schema-settings/SchemaSettings.mjs";
16
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDataScope_mjs__ from "../../../schema-settings/SchemaSettingsDataScope.mjs";
17
+ import * as __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__ from "../../hooks/index.mjs";
18
+ import * as __WEBPACK_EXTERNAL_MODULE__filter_index_mjs__ from "../filter/index.mjs";
19
+ import * as __WEBPACK_EXTERNAL_MODULE__remote_select_index_mjs__ from "../remote-select/index.mjs";
20
+ import * as __WEBPACK_EXTERNAL_MODULE__select_index_mjs__ from "../select/index.mjs";
21
+ import * as __WEBPACK_EXTERNAL_MODULE__ReadPretty_mjs__ from "./ReadPretty.mjs";
22
+ import * as __WEBPACK_EXTERNAL_MODULE__useServiceOptions_mjs__ from "./useServiceOptions.mjs";
23
+
24
+ ;// CONCATENATED MODULE: external "react/jsx-runtime"
25
+
26
+ ;// CONCATENATED MODULE: external "react"
27
+
28
+ ;// CONCATENATED MODULE: external "@tachybase/components"
29
+
30
+ ;// CONCATENATED MODULE: external "@tachybase/schema"
31
+
32
+ ;// CONCATENATED MODULE: external "@ant-design/icons"
33
+
34
+ ;// CONCATENATED MODULE: external "lodash"
35
+
36
+ ;// CONCATENATED MODULE: external "react-i18next"
37
+
38
+ ;// CONCATENATED MODULE: external "../../../block-provider/index.mjs"
39
+
40
+ ;// CONCATENATED MODULE: external "../../../collection-manager/index.mjs"
41
+
42
+ ;// CONCATENATED MODULE: external "../../../schema-items/index.mjs"
43
+
44
+ ;// CONCATENATED MODULE: external "../../../schema-settings/GeneralSchemaDesigner.mjs"
45
+
46
+ ;// CONCATENATED MODULE: external "../../../schema-settings/hooks/useIsAllowToSetDefaultValue.mjs"
47
+
48
+ ;// CONCATENATED MODULE: external "../../../schema-settings/hooks/useIsShowMultipleSwitch.mjs"
49
+
50
+ ;// CONCATENATED MODULE: external "../../../schema-settings/isPatternDisabled.mjs"
51
+
52
+ ;// CONCATENATED MODULE: external "../../../schema-settings/SchemaSettings.mjs"
53
+
54
+ ;// CONCATENATED MODULE: external "../../../schema-settings/SchemaSettingsDataScope.mjs"
55
+
56
+ ;// CONCATENATED MODULE: external "../../hooks/index.mjs"
57
+
58
+ ;// CONCATENATED MODULE: external "../filter/index.mjs"
59
+
60
+ ;// CONCATENATED MODULE: external "../remote-select/index.mjs"
61
+
62
+ ;// CONCATENATED MODULE: external "../select/index.mjs"
63
+
64
+ ;// CONCATENATED MODULE: external "./ReadPretty.mjs"
65
+
66
+ ;// CONCATENATED MODULE: external "./useServiceOptions.mjs"
67
+
68
+ ;// CONCATENATED MODULE: ./packages/client/src/schema-component/antd/association-select/AssociationSelect.tsx?__rslib_entry__
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+ const divWrap = (schema)=>{
92
+ return {
93
+ type: 'void',
94
+ 'x-component': 'div',
95
+ properties: {
96
+ [schema.name || (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.uid)()]: schema
97
+ }
98
+ };
99
+ };
100
+ const InternalAssociationSelect = (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.connect)((props)=>{
101
+ const { fieldNames, objectValue = true } = props;
102
+ const service = (0,__WEBPACK_EXTERNAL_MODULE__useServiceOptions_mjs__["default"])(props);
103
+ (0,__WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useFieldTitle)();
104
+ const normalizeValues = (0,__WEBPACK_EXTERNAL_MODULE_react__.useCallback)((obj)=>{
105
+ if (!objectValue && typeof obj === 'object') {
106
+ return obj[fieldNames.value];
107
+ }
108
+ return obj;
109
+ }, [
110
+ objectValue,
111
+ fieldNames.value
112
+ ]);
113
+ const value = (0,__WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>{
114
+ if (props.value === undefined || props.value === null) {
115
+ return;
116
+ }
117
+ if (Array.isArray(props.value)) {
118
+ return props.value.map(normalizeValues);
119
+ } else {
120
+ return normalizeValues(props.value);
121
+ }
122
+ }, [
123
+ props.value,
124
+ normalizeValues
125
+ ]);
126
+ return /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__remote_select_index_mjs__.RemoteSelect, {
127
+ ...props,
128
+ objectValue: objectValue,
129
+ value: value,
130
+ service: service
131
+ });
132
+ }, (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.mapProps)({
133
+ dataSource: 'options',
134
+ loading: true
135
+ }, (props, field)=>{
136
+ return {
137
+ ...props,
138
+ fieldNames: {
139
+ ...__WEBPACK_EXTERNAL_MODULE__select_index_mjs__.defaultFieldNames,
140
+ ...props.fieldNames,
141
+ ...field.componentProps.fieldNames
142
+ },
143
+ suffixIcon: (field === null || field === void 0 ? void 0 : field['loading']) || (field === null || field === void 0 ? void 0 : field['validating']) ? /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__ant_design_icons__.LoadingOutlined, {}) : props.suffixIcon
144
+ };
145
+ }), (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.mapReadPretty)(__WEBPACK_EXTERNAL_MODULE__ReadPretty_mjs__.ReadPretty));
146
+ const AssociationSelect = InternalAssociationSelect;
147
+ AssociationSelect.Designer = function Designer() {
148
+ var _interfaceConfig_validateSchema, _collectionField_uiSchema, _field_componentProps_service_params, _field_componentProps_service, _field_componentProps, _fieldSchema_xcomponentprops, _field_componentProps_service_params1, _field_componentProps_service1, _field_componentProps1, _field_componentProps_fieldNames, _field_componentProps2;
149
+ const { getCollectionFields, getInterface, getCollectionJoinField, getCollection, isTitleField } = (0,__WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
150
+ const { getField } = (0,__WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollection_deprecated)();
151
+ const { form } = (0,__WEBPACK_EXTERNAL_MODULE__block_provider_index_mjs__.useFormBlockContext)();
152
+ const field = (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
153
+ const fieldSchema = (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
154
+ const { t } = (0,__WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
155
+ const tk = (0,__WEBPACK_EXTERNAL_MODULE__block_provider_index_mjs__.useFilterByTk)();
156
+ const { dn, refresh, insertAdjacent } = (0,__WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
157
+ const compile = (0,__WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useCompile)();
158
+ const IsShowMultipleSwitch = (0,__WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsShowMultipleSwitch_mjs__.useIsShowMultipleSwitch)();
159
+ const { isAllowToSetDefaultValue } = (0,__WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsAllowToSetDefaultValue_mjs__.useIsAllowToSetDefaultValue)();
160
+ const collectionField = getField(fieldSchema['name']) || getCollectionJoinField(fieldSchema['x-collection-field']);
161
+ const fieldComponentOptions = (0,__WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useFieldComponentOptions)();
162
+ const isSubFormAssociationField = field.address.segments.includes('__form_grid');
163
+ const interfaceConfig = getInterface(collectionField === null || collectionField === void 0 ? void 0 : collectionField.interface);
164
+ const validateSchema = interfaceConfig === null || interfaceConfig === void 0 ? void 0 : (_interfaceConfig_validateSchema = interfaceConfig['validateSchema']) === null || _interfaceConfig_validateSchema === void 0 ? void 0 : _interfaceConfig_validateSchema.call(interfaceConfig, fieldSchema);
165
+ const originalTitle = collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema = collectionField.uiSchema) === null || _collectionField_uiSchema === void 0 ? void 0 : _collectionField_uiSchema.title;
166
+ const targetFields = (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? getCollectionFields(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) : [];
167
+ const initialValue = {
168
+ title: field.title === originalTitle ? undefined : field.title
169
+ };
170
+ const sortFields = (0,__WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useSortFields)(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target);
171
+ const defaultSort = ((_field_componentProps = field.componentProps) === null || _field_componentProps === void 0 ? void 0 : (_field_componentProps_service = _field_componentProps.service) === null || _field_componentProps_service === void 0 ? void 0 : (_field_componentProps_service_params = _field_componentProps_service.params) === null || _field_componentProps_service_params === void 0 ? void 0 : _field_componentProps_service_params.sort) || [];
172
+ // TODO: 这里 fieldSchema['x-read-pretty'] 的值为 true,但是 field.readPretty 的值却为 false,不知道什么原因
173
+ (0,__WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
174
+ // 没有这一步判断会出现禁用状态失效的情况
175
+ if (field.readPretty !== fieldSchema['x-read-pretty']) {
176
+ field.readPretty = !!fieldSchema['x-read-pretty'];
177
+ }
178
+ }, [
179
+ fieldSchema['x-read-pretty']
180
+ ]);
181
+ const sort = defaultSort === null || defaultSort === void 0 ? void 0 : defaultSort.map((item)=>{
182
+ return item.startsWith('-') ? {
183
+ field: item.substring(1),
184
+ direction: 'desc'
185
+ } : {
186
+ field: item,
187
+ direction: 'asc'
188
+ };
189
+ });
190
+ if (!field.readPretty) {
191
+ initialValue['required'] = field.required;
192
+ }
193
+ const options = targetFields.filter((field)=>isTitleField(field)).map((field)=>{
194
+ var _field_uiSchema;
195
+ return {
196
+ value: field === null || field === void 0 ? void 0 : field.name,
197
+ label: compile(field === null || field === void 0 ? void 0 : (_field_uiSchema = field.uiSchema) === null || _field_uiSchema === void 0 ? void 0 : _field_uiSchema.title) || (field === null || field === void 0 ? void 0 : field.name)
198
+ };
199
+ });
200
+ let readOnlyMode = 'editable';
201
+ if (fieldSchema['x-disabled'] === true) {
202
+ readOnlyMode = 'readonly';
203
+ }
204
+ if (fieldSchema['x-read-pretty'] === true) {
205
+ readOnlyMode = 'read-pretty';
206
+ }
207
+ const fieldSchemaWithoutRequired = __WEBPACK_EXTERNAL_MODULE_lodash__["default"].omit(fieldSchema, 'required');
208
+ return /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsxs)(__WEBPACK_EXTERNAL_MODULE__schema_settings_GeneralSchemaDesigner_mjs__.GeneralSchemaDesigner, {
209
+ children: [
210
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_items_index_mjs__.GeneralSchemaItems, {}),
211
+ form && !(form === null || form === void 0 ? void 0 : form.readPretty) && validateSchema && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsModalItem, {
212
+ title: t('Set validation rules'),
213
+ components: {
214
+ ArrayCollapse: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.ArrayCollapse,
215
+ FormLayout: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.FormLayout
216
+ },
217
+ schema: {
218
+ type: 'object',
219
+ title: t('Set validation rules'),
220
+ properties: {
221
+ rules: {
222
+ type: 'array',
223
+ default: fieldSchema === null || fieldSchema === void 0 ? void 0 : fieldSchema['x-validator'],
224
+ 'x-component': 'ArrayCollapse',
225
+ 'x-decorator': 'FormItem',
226
+ 'x-component-props': {
227
+ accordion: true
228
+ },
229
+ maxItems: 3,
230
+ items: {
231
+ type: 'object',
232
+ 'x-component': 'ArrayCollapse.CollapsePanel',
233
+ 'x-component-props': {
234
+ header: '{{ t("Validation rule") }}'
235
+ },
236
+ properties: {
237
+ index: {
238
+ type: 'void',
239
+ 'x-component': 'ArrayCollapse.Index'
240
+ },
241
+ layout: {
242
+ type: 'void',
243
+ 'x-component': 'FormLayout',
244
+ 'x-component-props': {
245
+ labelStyle: {
246
+ marginTop: '6px'
247
+ },
248
+ labelCol: 8,
249
+ wrapperCol: 16
250
+ },
251
+ properties: {
252
+ ...validateSchema,
253
+ message: {
254
+ type: 'string',
255
+ title: '{{ t("Error message") }}',
256
+ 'x-decorator': 'FormItem',
257
+ 'x-component': 'Input.TextArea',
258
+ 'x-component-props': {
259
+ autoSize: {
260
+ minRows: 2,
261
+ maxRows: 2
262
+ }
263
+ }
264
+ }
265
+ }
266
+ },
267
+ remove: {
268
+ type: 'void',
269
+ 'x-component': 'ArrayCollapse.Remove'
270
+ },
271
+ moveUp: {
272
+ type: 'void',
273
+ 'x-component': 'ArrayCollapse.MoveUp'
274
+ },
275
+ moveDown: {
276
+ type: 'void',
277
+ 'x-component': 'ArrayCollapse.MoveDown'
278
+ }
279
+ }
280
+ },
281
+ properties: {
282
+ add: {
283
+ type: 'void',
284
+ title: '{{ t("Add validation rule") }}',
285
+ 'x-component': 'ArrayCollapse.Addition',
286
+ 'x-reactions': {
287
+ dependencies: [
288
+ 'rules'
289
+ ],
290
+ fulfill: {
291
+ state: {
292
+ disabled: '{{$deps[0].length >= 3}}'
293
+ }
294
+ }
295
+ }
296
+ }
297
+ }
298
+ }
299
+ }
300
+ },
301
+ onSubmit: (v)=>{
302
+ var _collectionField_uiSchema;
303
+ const rules = [];
304
+ for (const rule of v.rules){
305
+ rules.push(__WEBPACK_EXTERNAL_MODULE_lodash__["default"].pickBy(rule, __WEBPACK_EXTERNAL_MODULE_lodash__["default"].identity));
306
+ }
307
+ const schema = {
308
+ ['x-uid']: fieldSchema['x-uid']
309
+ };
310
+ // return;
311
+ // if (['number'].includes(collectionField?.interface) && collectionField?.uiSchema?.['x-component-props']?.['stringMode'] === true) {
312
+ // rules['numberStringMode'] = true;
313
+ // }
314
+ if ([
315
+ 'percent'
316
+ ].includes(collectionField === null || collectionField === void 0 ? void 0 : collectionField.interface)) {
317
+ for (const rule of rules){
318
+ if (!!rule.maxValue || !!rule.minValue) {
319
+ rule['percentMode'] = true;
320
+ }
321
+ if (rule.percentFormat) {
322
+ rule['percentFormats'] = true;
323
+ }
324
+ }
325
+ }
326
+ const concatValidator = __WEBPACK_EXTERNAL_MODULE_lodash__["default"].concat([], (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema = collectionField.uiSchema) === null || _collectionField_uiSchema === void 0 ? void 0 : _collectionField_uiSchema['x-validator']) || [], rules);
327
+ field.validator = concatValidator;
328
+ fieldSchema['x-validator'] = rules;
329
+ schema['x-validator'] = rules;
330
+ dn.emit('patch', {
331
+ schema
332
+ });
333
+ refresh();
334
+ }
335
+ }),
336
+ isAllowToSetDefaultValue() && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsModalItem, {
337
+ title: t('Set default value'),
338
+ components: {
339
+ ArrayCollapse: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.ArrayCollapse,
340
+ FormLayout: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.FormLayout
341
+ },
342
+ width: 800,
343
+ schema: {
344
+ type: 'object',
345
+ title: t('Set default value'),
346
+ properties: {
347
+ default: {
348
+ ...fieldSchemaWithoutRequired || {},
349
+ 'x-decorator': 'FormItem',
350
+ 'x-component-props': {
351
+ ...fieldSchemaWithoutRequired['x-component-props'],
352
+ component: (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? 'AssociationSelect' : undefined,
353
+ service: {
354
+ resource: collectionField === null || collectionField === void 0 ? void 0 : collectionField.target
355
+ }
356
+ },
357
+ name: 'default',
358
+ title: t('Default value'),
359
+ default: fieldSchema.default || (collectionField === null || collectionField === void 0 ? void 0 : collectionField.defaultValue),
360
+ 'x-read-pretty': false,
361
+ 'x-disabled': false
362
+ }
363
+ }
364
+ },
365
+ onSubmit: (v)=>{
366
+ const schema = {
367
+ ['x-uid']: fieldSchema['x-uid']
368
+ };
369
+ if (field.value !== v.default) {
370
+ field.value = v.default;
371
+ }
372
+ fieldSchema.default = v.default;
373
+ schema.default = v.default;
374
+ dn.emit('patch', {
375
+ schema
376
+ });
377
+ refresh();
378
+ }
379
+ }),
380
+ form && !isSubFormAssociationField && fieldComponentOptions && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsSelectItem, {
381
+ title: t('Field component'),
382
+ options: fieldComponentOptions,
383
+ value: fieldSchema['x-component'],
384
+ onChange: (type)=>{
385
+ var _collectionField_uiSchema, _interfaceConfig_schemaInitialize;
386
+ const schema = {
387
+ name: collectionField === null || collectionField === void 0 ? void 0 : collectionField.name,
388
+ type: 'void',
389
+ required: fieldSchema['required'],
390
+ description: fieldSchema['description'],
391
+ default: fieldSchema['default'],
392
+ 'x-decorator': 'FormItem',
393
+ // 'x-designer': 'FormItem.Designer',
394
+ 'x-toolbar': 'FormItemSchemaToolbar',
395
+ 'x-settings': 'fieldSettings:FormItem',
396
+ 'x-component': type,
397
+ 'x-validator': fieldSchema['x-validator'],
398
+ 'x-collection-field': fieldSchema['x-collection-field'],
399
+ 'x-decorator-props': fieldSchema['x-decorator-props'],
400
+ 'x-component-props': {
401
+ ...collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema = collectionField.uiSchema) === null || _collectionField_uiSchema === void 0 ? void 0 : _collectionField_uiSchema['x-component-props'],
402
+ ...fieldSchema['x-component-props']
403
+ }
404
+ };
405
+ interfaceConfig === null || interfaceConfig === void 0 ? void 0 : (_interfaceConfig_schemaInitialize = interfaceConfig.schemaInitialize) === null || _interfaceConfig_schemaInitialize === void 0 ? void 0 : _interfaceConfig_schemaInitialize.call(interfaceConfig, schema, {
406
+ field: collectionField,
407
+ block: 'Form',
408
+ readPretty: field.readPretty,
409
+ action: tk ? 'get' : null,
410
+ targetCollection: getCollection(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target)
411
+ });
412
+ if (type === 'CollectionField') {
413
+ schema['type'] = 'string';
414
+ }
415
+ insertAdjacent('beforeBegin', divWrap(schema), {
416
+ onSuccess: ()=>{
417
+ dn.remove(null, {
418
+ removeParentsIfNoChildren: true,
419
+ breakRemoveOn: {
420
+ 'x-component': 'Grid'
421
+ }
422
+ });
423
+ }
424
+ });
425
+ }
426
+ }),
427
+ IsShowMultipleSwitch() ? /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsSwitchItem, {
428
+ title: t('Allow multiple'),
429
+ checked: ((_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) === null || _fieldSchema_xcomponentprops === void 0 ? void 0 : _fieldSchema_xcomponentprops.multiple) === undefined ? true : fieldSchema['x-component-props'].multiple,
430
+ onChange: (value)=>{
431
+ const schema = {
432
+ ['x-uid']: fieldSchema['x-uid']
433
+ };
434
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
435
+ field.componentProps = field.componentProps || {};
436
+ fieldSchema['x-component-props'].multiple = value;
437
+ field.componentProps.multiple = value;
438
+ schema['x-component-props'] = fieldSchema['x-component-props'];
439
+ dn.emit('patch', {
440
+ schema
441
+ });
442
+ refresh();
443
+ }
444
+ }, "multiple") : null,
445
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDataScope_mjs__.SchemaSettingsDataScope, {
446
+ collectionName: collectionField === null || collectionField === void 0 ? void 0 : collectionField.target,
447
+ defaultFilter: ((_field_componentProps1 = field.componentProps) === null || _field_componentProps1 === void 0 ? void 0 : (_field_componentProps_service1 = _field_componentProps1.service) === null || _field_componentProps_service1 === void 0 ? void 0 : (_field_componentProps_service_params1 = _field_componentProps_service1.params) === null || _field_componentProps_service_params1 === void 0 ? void 0 : _field_componentProps_service_params1.filter) || {},
448
+ form: form,
449
+ onSubmit: (param)=>{
450
+ let { filter } = param;
451
+ filter = (0,__WEBPACK_EXTERNAL_MODULE__filter_index_mjs__.removeNullCondition)(filter);
452
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field.componentProps, 'service.params.filter', filter);
453
+ fieldSchema['x-component-props'] = field.componentProps;
454
+ dn.emit('patch', {
455
+ schema: {
456
+ ['x-uid']: fieldSchema['x-uid'],
457
+ 'x-component-props': field.componentProps
458
+ }
459
+ });
460
+ }
461
+ }),
462
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsModalItem, {
463
+ title: t('Set default sorting rules'),
464
+ components: {
465
+ ArrayItems: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.ArrayItems
466
+ },
467
+ schema: {
468
+ type: 'object',
469
+ title: t('Set default sorting rules'),
470
+ properties: {
471
+ sort: {
472
+ type: 'array',
473
+ default: sort,
474
+ 'x-component': 'ArrayItems',
475
+ 'x-decorator': 'FormItem',
476
+ items: {
477
+ type: 'object',
478
+ properties: {
479
+ space: {
480
+ type: 'void',
481
+ 'x-component': 'Space',
482
+ properties: {
483
+ sort: {
484
+ type: 'void',
485
+ 'x-decorator': 'FormItem',
486
+ 'x-component': 'ArrayItems.SortHandle'
487
+ },
488
+ field: {
489
+ type: 'string',
490
+ enum: sortFields,
491
+ 'x-decorator': 'FormItem',
492
+ 'x-component': 'Select',
493
+ 'x-component-props': {
494
+ style: {
495
+ width: 260
496
+ }
497
+ }
498
+ },
499
+ direction: {
500
+ type: 'string',
501
+ 'x-decorator': 'FormItem',
502
+ 'x-component': 'Radio.Group',
503
+ 'x-component-props': {
504
+ optionType: 'button'
505
+ },
506
+ enum: [
507
+ {
508
+ label: t('ASC'),
509
+ value: 'asc'
510
+ },
511
+ {
512
+ label: t('DESC'),
513
+ value: 'desc'
514
+ }
515
+ ]
516
+ },
517
+ remove: {
518
+ type: 'void',
519
+ 'x-decorator': 'FormItem',
520
+ 'x-component': 'ArrayItems.Remove'
521
+ }
522
+ }
523
+ }
524
+ }
525
+ },
526
+ properties: {
527
+ add: {
528
+ type: 'void',
529
+ title: t('Add sort field'),
530
+ 'x-component': 'ArrayItems.Addition'
531
+ }
532
+ }
533
+ }
534
+ }
535
+ },
536
+ onSubmit: (param)=>{
537
+ let { sort } = param;
538
+ const sortArr = sort.map((item)=>{
539
+ return item.direction === 'desc' ? "-".concat(item.field) : item.field;
540
+ });
541
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field.componentProps, 'service.params.sort', sortArr);
542
+ fieldSchema['x-component-props'] = field.componentProps;
543
+ dn.emit('patch', {
544
+ schema: {
545
+ ['x-uid']: fieldSchema['x-uid'],
546
+ 'x-component-props': field.componentProps
547
+ }
548
+ });
549
+ }
550
+ }),
551
+ form && !(form === null || form === void 0 ? void 0 : form.readPretty) && !(0,__WEBPACK_EXTERNAL_MODULE__schema_settings_isPatternDisabled_mjs__.isPatternDisabled)(fieldSchema) && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsSelectItem, {
552
+ title: t('Pattern'),
553
+ options: [
554
+ {
555
+ label: t('Editable'),
556
+ value: 'editable'
557
+ },
558
+ {
559
+ label: t('Readonly'),
560
+ value: 'readonly'
561
+ },
562
+ {
563
+ label: t('Easy-reading'),
564
+ value: 'read-pretty'
565
+ }
566
+ ],
567
+ value: readOnlyMode,
568
+ onChange: (v)=>{
569
+ const schema = {
570
+ ['x-uid']: fieldSchema['x-uid']
571
+ };
572
+ switch(v){
573
+ case 'readonly':
574
+ {
575
+ fieldSchema['x-read-pretty'] = false;
576
+ fieldSchema['x-disabled'] = true;
577
+ schema['x-read-pretty'] = false;
578
+ schema['x-disabled'] = true;
579
+ field.readPretty = false;
580
+ field.disabled = true;
581
+ break;
582
+ }
583
+ case 'read-pretty':
584
+ {
585
+ fieldSchema['x-read-pretty'] = true;
586
+ fieldSchema['x-disabled'] = false;
587
+ schema['x-read-pretty'] = true;
588
+ schema['x-disabled'] = false;
589
+ field.readPretty = true;
590
+ break;
591
+ }
592
+ default:
593
+ {
594
+ fieldSchema['x-read-pretty'] = false;
595
+ fieldSchema['x-disabled'] = false;
596
+ schema['x-read-pretty'] = false;
597
+ schema['x-disabled'] = false;
598
+ field.readPretty = false;
599
+ field.disabled = false;
600
+ break;
601
+ }
602
+ }
603
+ dn.emit('patch', {
604
+ schema
605
+ });
606
+ dn.refresh();
607
+ }
608
+ }, "pattern"),
609
+ (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) && [
610
+ 'CollectionField',
611
+ 'AssociationSelect'
612
+ ].includes(fieldSchema['x-component']) && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsSelectItem, {
613
+ title: t('Title field'),
614
+ options: options,
615
+ value: field === null || field === void 0 ? void 0 : (_field_componentProps2 = field.componentProps) === null || _field_componentProps2 === void 0 ? void 0 : (_field_componentProps_fieldNames = _field_componentProps2.fieldNames) === null || _field_componentProps_fieldNames === void 0 ? void 0 : _field_componentProps_fieldNames.label,
616
+ onChange: (label)=>{
617
+ var _collectionField_uiSchema_xcomponentprops, _collectionField_uiSchema;
618
+ const schema = {
619
+ ['x-uid']: fieldSchema['x-uid']
620
+ };
621
+ const fieldNames = {
622
+ ...collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema = collectionField.uiSchema) === null || _collectionField_uiSchema === void 0 ? void 0 : (_collectionField_uiSchema_xcomponentprops = _collectionField_uiSchema['x-component-props']) === null || _collectionField_uiSchema_xcomponentprops === void 0 ? void 0 : _collectionField_uiSchema_xcomponentprops['fieldNames'],
623
+ ...field.componentProps.fieldNames,
624
+ label
625
+ };
626
+ field.componentProps.fieldNames = fieldNames;
627
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
628
+ fieldSchema['x-component-props']['fieldNames'] = fieldNames;
629
+ schema['x-component-props'] = fieldSchema['x-component-props'];
630
+ dn.emit('patch', {
631
+ schema
632
+ });
633
+ dn.refresh();
634
+ }
635
+ }, "title-field"),
636
+ collectionField && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsDivider, {}),
637
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsRemove, {
638
+ removeParentsIfNoChildren: true,
639
+ confirm: {
640
+ title: t('Delete field')
641
+ },
642
+ breakRemoveOn: {
643
+ 'x-component': 'Grid'
644
+ }
645
+ }, "remove")
646
+ ]
647
+ });
648
+ };
649
+ /**
650
+ * 用于筛选表单卡片
651
+ * @returns
652
+ */ AssociationSelect.FilterDesigner = function FilterDesigner() {
653
+ var _interfaceConfig_validateSchema, _collectionField_uiSchema, _field_componentProps_service_params, _field_componentProps_service, _field_componentProps, _collectionField_uiSchema1, _field_componentProps_service_params1, _field_componentProps_service1, _field_componentProps1, _field_componentProps_fieldNames, _field_componentProps2;
654
+ const { getCollectionFields, getInterface, getCollectionJoinField } = (0,__WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
655
+ const { getField } = (0,__WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollection_deprecated)();
656
+ const { form } = (0,__WEBPACK_EXTERNAL_MODULE__block_provider_index_mjs__.useFormBlockContext)();
657
+ const field = (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
658
+ const fieldSchema = (0,__WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
659
+ const { t } = (0,__WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
660
+ const { dn, refresh } = (0,__WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
661
+ const compile = (0,__WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useCompile)();
662
+ const collectionField = getField(fieldSchema['name']) || getCollectionJoinField(fieldSchema['x-collection-field']);
663
+ const interfaceConfig = getInterface(collectionField === null || collectionField === void 0 ? void 0 : collectionField.interface);
664
+ const validateSchema = interfaceConfig === null || interfaceConfig === void 0 ? void 0 : (_interfaceConfig_validateSchema = interfaceConfig['validateSchema']) === null || _interfaceConfig_validateSchema === void 0 ? void 0 : _interfaceConfig_validateSchema.call(interfaceConfig, fieldSchema);
665
+ const originalTitle = collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema = collectionField.uiSchema) === null || _collectionField_uiSchema === void 0 ? void 0 : _collectionField_uiSchema.title;
666
+ const targetFields = (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) ? getCollectionFields(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) : [];
667
+ const initialValue = {
668
+ title: field.title === originalTitle ? undefined : field.title
669
+ };
670
+ const sortFields = (0,__WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useSortFields)(collectionField === null || collectionField === void 0 ? void 0 : collectionField.target);
671
+ const defaultSort = ((_field_componentProps = field.componentProps) === null || _field_componentProps === void 0 ? void 0 : (_field_componentProps_service = _field_componentProps.service) === null || _field_componentProps_service === void 0 ? void 0 : (_field_componentProps_service_params = _field_componentProps_service.params) === null || _field_componentProps_service_params === void 0 ? void 0 : _field_componentProps_service_params.sort) || [];
672
+ const sort = defaultSort === null || defaultSort === void 0 ? void 0 : defaultSort.map((item)=>{
673
+ return item.startsWith('-') ? {
674
+ field: item.substring(1),
675
+ direction: 'desc'
676
+ } : {
677
+ field: item,
678
+ direction: 'asc'
679
+ };
680
+ });
681
+ if (!field.readPretty) {
682
+ initialValue['required'] = field.required;
683
+ }
684
+ const options = targetFields.filter((field)=>!(field === null || field === void 0 ? void 0 : field.target) && field.type !== 'boolean').map((field)=>{
685
+ var _field_uiSchema;
686
+ return {
687
+ value: field === null || field === void 0 ? void 0 : field.name,
688
+ label: compile(field === null || field === void 0 ? void 0 : (_field_uiSchema = field.uiSchema) === null || _field_uiSchema === void 0 ? void 0 : _field_uiSchema.title) || (field === null || field === void 0 ? void 0 : field.name)
689
+ };
690
+ });
691
+ let readOnlyMode = 'editable';
692
+ if (fieldSchema['x-disabled'] === true) {
693
+ readOnlyMode = 'readonly';
694
+ }
695
+ if (fieldSchema['x-read-pretty'] === true) {
696
+ readOnlyMode = 'read-pretty';
697
+ }
698
+ return /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsxs)(__WEBPACK_EXTERNAL_MODULE__schema_settings_GeneralSchemaDesigner_mjs__.GeneralSchemaDesigner, {
699
+ children: [
700
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_items_index_mjs__.GeneralSchemaItems, {
701
+ required: false
702
+ }),
703
+ form && !(form === null || form === void 0 ? void 0 : form.readPretty) && validateSchema && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsModalItem, {
704
+ title: t('Set validation rules'),
705
+ components: {
706
+ ArrayCollapse: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.ArrayCollapse,
707
+ FormLayout: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.FormLayout
708
+ },
709
+ schema: {
710
+ type: 'object',
711
+ title: t('Set validation rules'),
712
+ properties: {
713
+ rules: {
714
+ type: 'array',
715
+ default: fieldSchema === null || fieldSchema === void 0 ? void 0 : fieldSchema['x-validator'],
716
+ 'x-component': 'ArrayCollapse',
717
+ 'x-decorator': 'FormItem',
718
+ 'x-component-props': {
719
+ accordion: true
720
+ },
721
+ maxItems: 3,
722
+ items: {
723
+ type: 'object',
724
+ 'x-component': 'ArrayCollapse.CollapsePanel',
725
+ 'x-component-props': {
726
+ header: '{{ t("Validation rule") }}'
727
+ },
728
+ properties: {
729
+ index: {
730
+ type: 'void',
731
+ 'x-component': 'ArrayCollapse.Index'
732
+ },
733
+ layout: {
734
+ type: 'void',
735
+ 'x-component': 'FormLayout',
736
+ 'x-component-props': {
737
+ labelStyle: {
738
+ marginTop: '6px'
739
+ },
740
+ labelCol: 8,
741
+ wrapperCol: 16
742
+ },
743
+ properties: {
744
+ ...validateSchema,
745
+ message: {
746
+ type: 'string',
747
+ title: '{{ t("Error message") }}',
748
+ 'x-decorator': 'FormItem',
749
+ 'x-component': 'Input.TextArea',
750
+ 'x-component-props': {
751
+ autoSize: {
752
+ minRows: 2,
753
+ maxRows: 2
754
+ }
755
+ }
756
+ }
757
+ }
758
+ },
759
+ remove: {
760
+ type: 'void',
761
+ 'x-component': 'ArrayCollapse.Remove'
762
+ },
763
+ moveUp: {
764
+ type: 'void',
765
+ 'x-component': 'ArrayCollapse.MoveUp'
766
+ },
767
+ moveDown: {
768
+ type: 'void',
769
+ 'x-component': 'ArrayCollapse.MoveDown'
770
+ }
771
+ }
772
+ },
773
+ properties: {
774
+ add: {
775
+ type: 'void',
776
+ title: '{{ t("Add validation rule") }}',
777
+ 'x-component': 'ArrayCollapse.Addition',
778
+ 'x-reactions': {
779
+ dependencies: [
780
+ 'rules'
781
+ ],
782
+ fulfill: {
783
+ state: {
784
+ disabled: '{{$deps[0].length >= 3}}'
785
+ }
786
+ }
787
+ }
788
+ }
789
+ }
790
+ }
791
+ }
792
+ },
793
+ onSubmit: (v)=>{
794
+ var _collectionField_uiSchema;
795
+ const rules = [];
796
+ for (const rule of v.rules){
797
+ rules.push(__WEBPACK_EXTERNAL_MODULE_lodash__["default"].pickBy(rule, __WEBPACK_EXTERNAL_MODULE_lodash__["default"].identity));
798
+ }
799
+ const schema = {
800
+ ['x-uid']: fieldSchema['x-uid']
801
+ };
802
+ // return;
803
+ // if (['number'].includes(collectionField?.interface) && collectionField?.uiSchema?.['x-component-props']?.['stringMode'] === true) {
804
+ // rules['numberStringMode'] = true;
805
+ // }
806
+ if ([
807
+ 'percent'
808
+ ].includes(collectionField === null || collectionField === void 0 ? void 0 : collectionField.interface)) {
809
+ for (const rule of rules){
810
+ if (!!rule.maxValue || !!rule.minValue) {
811
+ rule['percentMode'] = true;
812
+ }
813
+ if (rule.percentFormat) {
814
+ rule['percentFormats'] = true;
815
+ }
816
+ }
817
+ }
818
+ const concatValidator = __WEBPACK_EXTERNAL_MODULE_lodash__["default"].concat([], (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema = collectionField.uiSchema) === null || _collectionField_uiSchema === void 0 ? void 0 : _collectionField_uiSchema['x-validator']) || [], rules);
819
+ field.validator = concatValidator;
820
+ fieldSchema['x-validator'] = rules;
821
+ schema['x-validator'] = rules;
822
+ dn.emit('patch', {
823
+ schema
824
+ });
825
+ refresh();
826
+ }
827
+ }),
828
+ form && !(form === null || form === void 0 ? void 0 : form.readPretty) && (collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema1 = collectionField.uiSchema) === null || _collectionField_uiSchema1 === void 0 ? void 0 : _collectionField_uiSchema1.type) && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsModalItem, {
829
+ title: t('Set default value'),
830
+ components: {
831
+ ArrayCollapse: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.ArrayCollapse,
832
+ FormLayout: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.FormLayout
833
+ },
834
+ schema: {
835
+ type: 'object',
836
+ title: t('Set default value'),
837
+ properties: {
838
+ default: {
839
+ ...__WEBPACK_EXTERNAL_MODULE_lodash__["default"].omit(collectionField === null || collectionField === void 0 ? void 0 : collectionField.uiSchema, 'required'),
840
+ name: 'default',
841
+ title: t('Default value'),
842
+ 'x-decorator': 'FormItem',
843
+ default: fieldSchema.default || (collectionField === null || collectionField === void 0 ? void 0 : collectionField.defaultValue)
844
+ }
845
+ }
846
+ },
847
+ onSubmit: (v)=>{
848
+ const schema = {
849
+ ['x-uid']: fieldSchema['x-uid']
850
+ };
851
+ if (field.value !== v.default) {
852
+ field.value = v.default;
853
+ }
854
+ fieldSchema.default = v.default;
855
+ schema.default = v.default;
856
+ dn.emit('patch', {
857
+ schema
858
+ });
859
+ refresh();
860
+ }
861
+ }),
862
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDataScope_mjs__.SchemaSettingsDataScope, {
863
+ collectionName: collectionField === null || collectionField === void 0 ? void 0 : collectionField.target,
864
+ defaultFilter: ((_field_componentProps1 = field.componentProps) === null || _field_componentProps1 === void 0 ? void 0 : (_field_componentProps_service1 = _field_componentProps1.service) === null || _field_componentProps_service1 === void 0 ? void 0 : (_field_componentProps_service_params1 = _field_componentProps_service1.params) === null || _field_componentProps_service_params1 === void 0 ? void 0 : _field_componentProps_service_params1.filter) || {},
865
+ form: form,
866
+ onSubmit: (param)=>{
867
+ let { filter } = param;
868
+ filter = (0,__WEBPACK_EXTERNAL_MODULE__filter_index_mjs__.removeNullCondition)(filter);
869
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field.componentProps, 'service.params.filter', filter);
870
+ fieldSchema['x-component-props'] = field.componentProps;
871
+ dn.emit('patch', {
872
+ schema: {
873
+ ['x-uid']: fieldSchema['x-uid'],
874
+ 'x-component-props': field.componentProps
875
+ }
876
+ });
877
+ }
878
+ }),
879
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsModalItem, {
880
+ title: t('Set default sorting rules'),
881
+ components: {
882
+ ArrayItems: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.ArrayItems
883
+ },
884
+ schema: {
885
+ type: 'object',
886
+ title: t('Set default sorting rules'),
887
+ properties: {
888
+ sort: {
889
+ type: 'array',
890
+ default: sort,
891
+ 'x-component': 'ArrayItems',
892
+ 'x-decorator': 'FormItem',
893
+ items: {
894
+ type: 'object',
895
+ properties: {
896
+ space: {
897
+ type: 'void',
898
+ 'x-component': 'Space',
899
+ properties: {
900
+ sort: {
901
+ type: 'void',
902
+ 'x-decorator': 'FormItem',
903
+ 'x-component': 'ArrayItems.SortHandle'
904
+ },
905
+ field: {
906
+ type: 'string',
907
+ enum: sortFields,
908
+ 'x-decorator': 'FormItem',
909
+ 'x-component': 'Select',
910
+ 'x-component-props': {
911
+ style: {
912
+ width: 260
913
+ }
914
+ }
915
+ },
916
+ direction: {
917
+ type: 'string',
918
+ 'x-decorator': 'FormItem',
919
+ 'x-component': 'Radio.Group',
920
+ 'x-component-props': {
921
+ optionType: 'button'
922
+ },
923
+ enum: [
924
+ {
925
+ label: t('ASC'),
926
+ value: 'asc'
927
+ },
928
+ {
929
+ label: t('DESC'),
930
+ value: 'desc'
931
+ }
932
+ ]
933
+ },
934
+ remove: {
935
+ type: 'void',
936
+ 'x-decorator': 'FormItem',
937
+ 'x-component': 'ArrayItems.Remove'
938
+ }
939
+ }
940
+ }
941
+ }
942
+ },
943
+ properties: {
944
+ add: {
945
+ type: 'void',
946
+ title: t('Add sort field'),
947
+ 'x-component': 'ArrayItems.Addition'
948
+ }
949
+ }
950
+ }
951
+ }
952
+ },
953
+ onSubmit: (param)=>{
954
+ let { sort } = param;
955
+ const sortArr = sort.map((item)=>{
956
+ return item.direction === 'desc' ? "-".concat(item.field) : item.field;
957
+ });
958
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field.componentProps, 'service.params.sort', sortArr);
959
+ fieldSchema['x-component-props'] = field.componentProps;
960
+ dn.emit('patch', {
961
+ schema: {
962
+ ['x-uid']: fieldSchema['x-uid'],
963
+ 'x-component-props': field.componentProps
964
+ }
965
+ });
966
+ }
967
+ }),
968
+ (collectionField === null || collectionField === void 0 ? void 0 : collectionField.target) && [
969
+ 'CollectionField',
970
+ 'AssociationSelect'
971
+ ].includes(fieldSchema['x-component']) && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsSelectItem, {
972
+ title: t('Title field'),
973
+ options: options,
974
+ value: field === null || field === void 0 ? void 0 : (_field_componentProps2 = field.componentProps) === null || _field_componentProps2 === void 0 ? void 0 : (_field_componentProps_fieldNames = _field_componentProps2.fieldNames) === null || _field_componentProps_fieldNames === void 0 ? void 0 : _field_componentProps_fieldNames.label,
975
+ onChange: (label)=>{
976
+ var _collectionField_uiSchema_xcomponentprops, _collectionField_uiSchema;
977
+ const schema = {
978
+ ['x-uid']: fieldSchema['x-uid']
979
+ };
980
+ const fieldNames = {
981
+ ...collectionField === null || collectionField === void 0 ? void 0 : (_collectionField_uiSchema = collectionField.uiSchema) === null || _collectionField_uiSchema === void 0 ? void 0 : (_collectionField_uiSchema_xcomponentprops = _collectionField_uiSchema['x-component-props']) === null || _collectionField_uiSchema_xcomponentprops === void 0 ? void 0 : _collectionField_uiSchema_xcomponentprops['fieldNames'],
982
+ ...field.componentProps.fieldNames,
983
+ label
984
+ };
985
+ field.componentProps.fieldNames = fieldNames;
986
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
987
+ fieldSchema['x-component-props']['fieldNames'] = fieldNames;
988
+ schema['x-component-props'] = fieldSchema['x-component-props'];
989
+ dn.emit('patch', {
990
+ schema
991
+ });
992
+ dn.refresh();
993
+ }
994
+ }, "title-field"),
995
+ collectionField && /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsDivider, {}),
996
+ /*#__PURE__*/ (0,__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettings_mjs__.SchemaSettingsRemove, {
997
+ removeParentsIfNoChildren: true,
998
+ confirm: {
999
+ title: t('Delete field')
1000
+ },
1001
+ breakRemoveOn: {
1002
+ 'x-component': 'Grid'
1003
+ }
1004
+ }, "remove")
1005
+ ]
1006
+ });
1007
+ };
1008
+ /* ESM default export */ const AssociationSelect_rslib_entry_ = (AssociationSelect);
1009
+
1010
+ export { AssociationSelect, AssociationSelect_rslib_entry_ as default };