@tachybase/client 0.23.8-alpha.30 → 0.23.8-alpha.32

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 (2675) hide show
  1. package/es/api-client/APIClient.mjs +131 -0
  2. package/es/api-client/APIClientProvider.mjs +11 -0
  3. package/es/api-client/__tests__/APIClient.test.mjs +55 -0
  4. package/es/api-client/context.mjs +5 -0
  5. package/es/api-client/demos/demo1.mjs +32 -0
  6. package/es/api-client/demos/demo2.mjs +31 -0
  7. package/es/api-client/demos/demo3.mjs +74 -0
  8. package/es/api-client/hooks/assign.mjs +61 -0
  9. package/es/api-client/hooks/index.mjs +3 -0
  10. package/es/api-client/hooks/useAPIClient.mjs +6 -0
  11. package/es/api-client/hooks/useRequest.mjs +38 -0
  12. package/es/api-client/hooks/useResource.mjs +6 -0
  13. package/es/api-client/index.mjs +4 -0
  14. package/es/application/AppSchemaComponentProvider.mjs +29 -0
  15. package/es/application/Application.mjs +312 -0
  16. package/es/application/AttachmentPreviewManager.mjs +31 -0
  17. package/es/application/NoticesManager.mjs +99 -0
  18. package/es/application/Plugin.mjs +60 -0
  19. package/es/application/PluginContextMenu.mjs +29 -0
  20. package/es/application/PluginManager.mjs +83 -0
  21. package/es/application/RouterManager.mjs +101 -0
  22. package/es/application/SystemSettingsManager.mjs +108 -0
  23. package/es/application/UserSettingsManager.mjs +110 -0
  24. package/es/application/WebSocketClient.mjs +156 -0
  25. package/es/application/__tests__/Application.test.mjs +481 -0
  26. package/es/application/__tests__/Plugin.test.mjs +197 -0
  27. package/es/application/__tests__/PluginSettingsManager.test.mjs +156 -0
  28. package/es/application/__tests__/RouterManager.test.mjs +311 -0
  29. package/es/application/__tests__/SchemaInitializer.test.mjs +163 -0
  30. package/es/application/__tests__/SchemaToolbar.test.mjs +143 -0
  31. package/es/application/__tests__/hoc/withDynamicSchemaProps.test.mjs +187 -0
  32. package/es/application/__tests__/hooks.test.mjs +85 -0
  33. package/es/application/__tests__/utils/remotePlugins.test.mjs +318 -0
  34. package/es/application/__tests__/utils.test.mjs +99 -0
  35. package/es/application/components/AppComponent.mjs +55 -0
  36. package/es/application/components/BlankComponent.mjs +9 -0
  37. package/es/application/components/MainComponent.mjs +17 -0
  38. package/es/application/components/RouterContextCleaner.mjs +16 -0
  39. package/es/application/components/defaultComponents.mjs +25 -0
  40. package/es/application/components/index.mjs +4 -0
  41. package/es/application/context.mjs +4 -0
  42. package/es/application/demos/demo1.mjs +110 -0
  43. package/es/application/demos/demo2.mjs +126 -0
  44. package/es/application/demos/demo3.mjs +11 -0
  45. package/es/application/hoc/index.mjs +1 -0
  46. package/es/application/hoc/withDynamicSchemaProps.mjs +115 -0
  47. package/es/application/hooks/index.mjs +3 -0
  48. package/es/application/hooks/useApp.mjs +4 -0
  49. package/es/application/hooks/usePlugin.mjs +6 -0
  50. package/es/application/hooks/useRouter.mjs +6 -0
  51. package/es/application/index.mjs +17 -0
  52. package/es/application/schema-initializer/SchemaInitializer.mjs +76 -0
  53. package/es/application/schema-initializer/SchemaInitializerManager.mjs +72 -0
  54. package/es/application/schema-initializer/components/SchemaInitializerActionModal.mjs +110 -0
  55. package/es/application/schema-initializer/components/SchemaInitializerButton.mjs +39 -0
  56. package/es/application/schema-initializer/components/SchemaInitializerChildren.mjs +69 -0
  57. package/es/application/schema-initializer/components/SchemaInitializerDivider.mjs +13 -0
  58. package/es/application/schema-initializer/components/SchemaInitializerItem.mjs +89 -0
  59. package/es/application/schema-initializer/components/SchemaInitializerItemGroup.mjs +36 -0
  60. package/es/application/schema-initializer/components/SchemaInitializerItems.mjs +11 -0
  61. package/es/application/schema-initializer/components/SchemaInitializerSelect.mjs +63 -0
  62. package/es/application/schema-initializer/components/SchemaInitializerSubMenu.mjs +105 -0
  63. package/es/application/schema-initializer/components/SchemaInitializerSwitch.mjs +38 -0
  64. package/es/application/schema-initializer/components/index.mjs +10 -0
  65. package/es/application/schema-initializer/components/style.mjs +41 -0
  66. package/es/application/schema-initializer/context/index.mjs +8 -0
  67. package/es/application/schema-initializer/hoc/index.mjs +117 -0
  68. package/es/application/schema-initializer/hooks/index.mjs +153 -0
  69. package/es/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.mjs +17 -0
  70. package/es/application/schema-initializer/index.mjs +7 -0
  71. package/es/application/schema-initializer/types.mjs +0 -0
  72. package/es/application/schema-settings/SchemaSettings.mjs +71 -0
  73. package/es/application/schema-settings/SchemaSettingsDefaults.mjs +215 -0
  74. package/es/application/schema-settings/SchemaSettingsManager.mjs +72 -0
  75. package/es/application/schema-settings/components/SchemaSettingsChildren.mjs +90 -0
  76. package/es/application/schema-settings/components/SchemaSettingsIcon.mjs +19 -0
  77. package/es/application/schema-settings/components/SchemaSettingsWrapper.mjs +33 -0
  78. package/es/application/schema-settings/components/index.mjs +2 -0
  79. package/es/application/schema-settings/context/index.mjs +7 -0
  80. package/es/application/schema-settings/hooks/index.mjs +44 -0
  81. package/es/application/schema-settings/index.mjs +6 -0
  82. package/es/application/schema-settings/types.mjs +0 -0
  83. package/es/application/schema-toolbar/context/index.mjs +15 -0
  84. package/es/application/schema-toolbar/hooks/index.mjs +25 -0
  85. package/es/application/schema-toolbar/index.mjs +2 -0
  86. package/es/application/utils/globalDeps.mjs +60 -0
  87. package/es/application/utils/index.mjs +39 -0
  88. package/es/application/utils/remotePlugins.mjs +102 -0
  89. package/es/async-data-provider/index.mjs +21 -0
  90. package/es/block-provider/BlockProvider.mjs +308 -0
  91. package/es/block-provider/DetailsBlockProvider.mjs +98 -0
  92. package/es/block-provider/FilterFormBlockProvider.mjs +19 -0
  93. package/es/block-provider/FormBlockProvider.mjs +166 -0
  94. package/es/block-provider/FormFieldProvider.mjs +84 -0
  95. package/es/block-provider/MobileProvider.mjs +15 -0
  96. package/es/block-provider/PageLayout.mjs +9 -0
  97. package/es/block-provider/TableBlockProvider.mjs +110 -0
  98. package/es/block-provider/TableFieldProvider.mjs +163 -0
  99. package/es/block-provider/TableSelectorProvider.mjs +285 -0
  100. package/es/block-provider/TreeBlockProvider.mjs +117 -0
  101. package/es/block-provider/hooks/index.mjs +1206 -0
  102. package/es/block-provider/hooks/useDataBlockSourceId.mjs +14 -0
  103. package/es/block-provider/hooks/useFormActiveFields.mjs +34 -0
  104. package/es/block-provider/hooks/useIsMobile.mjs +7 -0
  105. package/es/block-provider/hooks/useParsedFilter.mjs +48 -0
  106. package/es/block-provider/index.mjs +11 -0
  107. package/es/built-in/acl/ACLPlugin.mjs +13 -0
  108. package/es/built-in/acl/ACLProvider.mjs +280 -0
  109. package/es/built-in/acl/ACLShortcut.mjs +23 -0
  110. package/es/built-in/acl/Configuration/ConfigureCenter.mjs +123 -0
  111. package/es/built-in/acl/Configuration/MenuConfigure.mjs +147 -0
  112. package/es/built-in/acl/Configuration/MenuItemsProvider.mjs +40 -0
  113. package/es/built-in/acl/Configuration/PermisionProvider.mjs +69 -0
  114. package/es/built-in/acl/Configuration/RoleConfigure.mjs +127 -0
  115. package/es/built-in/acl/Configuration/RoleTable.mjs +40 -0
  116. package/es/built-in/acl/Configuration/RolesResourcesActions.mjs +216 -0
  117. package/es/built-in/acl/Configuration/ScopeSelect.mjs +41 -0
  118. package/es/built-in/acl/Configuration/StrategyActions.mjs +109 -0
  119. package/es/built-in/acl/Configuration/index.mjs +17 -0
  120. package/es/built-in/acl/Configuration/schemas/roles.mjs +395 -0
  121. package/es/built-in/acl/Configuration/schemas/scopes.mjs +362 -0
  122. package/es/built-in/acl/Configuration/schemas/useRoleResourceValues.mjs +35 -0
  123. package/es/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.mjs +23 -0
  124. package/es/built-in/acl/index.mjs +4 -0
  125. package/es/built-in/acl/style.mjs +23 -0
  126. package/es/built-in/admin-layout/AdminContent.mjs +13 -0
  127. package/es/built-in/admin-layout/AdminTabs.mjs +9 -0
  128. package/es/built-in/admin-layout/NoticeArea.mjs +16 -0
  129. package/es/built-in/admin-layout/components/AddNewButton.mjs +55 -0
  130. package/es/built-in/admin-layout/components/WelcomeCard.mjs +81 -0
  131. package/es/built-in/admin-layout/index.mjs +233 -0
  132. package/es/built-in/admin-layout/style.mjs +142 -0
  133. package/es/built-in/assistant/Assistant.provider.mjs +77 -0
  134. package/es/built-in/assistant/ai-chat/index.mjs +330 -0
  135. package/es/built-in/assistant/ai-chat/index.module.mjs +30 -0
  136. package/es/built-in/assistant/calculator/AutoScalingText.mjs +33 -0
  137. package/es/built-in/assistant/calculator/Calculator.mjs +235 -0
  138. package/es/built-in/assistant/calculator/CalculatorDisplay.mjs +21 -0
  139. package/es/built-in/assistant/calculator/CalculatorKey.mjs +11 -0
  140. package/es/built-in/assistant/calculator/CalculatorProvider.mjs +29 -0
  141. package/es/built-in/assistant/calculator/Draggable.mjs +54 -0
  142. package/es/built-in/assistant/calculator/style.mjs +25 -0
  143. package/es/built-in/assistant/index.mjs +12 -0
  144. package/es/built-in/assistant/search-and-jump/index.mjs +59 -0
  145. package/es/built-in/attachment-preview/index.mjs +15 -0
  146. package/es/built-in/attachment-preview/interface.mjs +0 -0
  147. package/es/built-in/attachment-preview/previewers/file-default.mjs +83 -0
  148. package/es/built-in/attachment-preview/previewers/file-pdf.mjs +109 -0
  149. package/es/built-in/attachment-preview/previewers/file-pdf.style.mjs +45 -0
  150. package/es/built-in/attachment-preview/previewers/file-sheet.mjs +103 -0
  151. package/es/built-in/attachment-preview/previewers/file-sheet.style.mjs +45 -0
  152. package/es/built-in/attachment-preview/previewers/image-jpeg.mjs +34 -0
  153. package/es/built-in/attachment-preview/previewers/image-png.mjs +34 -0
  154. package/es/built-in/attachment-preview/previewers/image-svg.mjs +20 -0
  155. package/es/built-in/attachment-preview/previewers/index.mjs +6 -0
  156. package/es/built-in/block-schema-component/index.mjs +87 -0
  157. package/es/built-in/built-in-collections/index.mjs +59 -0
  158. package/es/built-in/context-menu/ContextMenu.provider.mjs +68 -0
  159. package/es/built-in/context-menu/ContextMenuItemsProps.mjs +146 -0
  160. package/es/built-in/context-menu/index.mjs +18 -0
  161. package/es/built-in/context-menu/useContextMenu.mjs +4 -0
  162. package/es/built-in/document-title/index.mjs +52 -0
  163. package/es/built-in/dynamic-page/DynamicPage.mjs +36 -0
  164. package/es/built-in/dynamic-page/index.mjs +58 -0
  165. package/es/built-in/dynamic-page/style.mjs +52 -0
  166. package/es/built-in/dynamic-page/utils.mjs +61 -0
  167. package/es/built-in/index.mjs +454 -0
  168. package/es/built-in/locale/LocalePlugin.mjs +70 -0
  169. package/es/built-in/locale/loadConstrueLocale.mjs +185 -0
  170. package/es/built-in/page-style/CustomAdminHeader.mjs +9 -0
  171. package/es/built-in/page-style/PageStyle.provider.mjs +32 -0
  172. package/es/built-in/page-style/TabContent.mjs +65 -0
  173. package/es/built-in/page-style/TabHeader.mjs +80 -0
  174. package/es/built-in/page-style/index.mjs +14 -0
  175. package/es/built-in/page-style/usePageStyle.mjs +4 -0
  176. package/es/built-in/page-style/useTabSettings.mjs +69 -0
  177. package/es/built-in/pinned-list/PinnedPluginListProvider.mjs +61 -0
  178. package/es/built-in/pinned-list/PluginPinnedList.mjs +8 -0
  179. package/es/built-in/pinned-list/context.mjs +6 -0
  180. package/es/built-in/pinned-list/index.mjs +2 -0
  181. package/es/built-in/pm/PluginCard.mjs +256 -0
  182. package/es/built-in/pm/PluginDetail.mjs +320 -0
  183. package/es/built-in/pm/PluginDocument.mjs +71 -0
  184. package/es/built-in/pm/PluginForm/form/PluginNpmForm.mjs +140 -0
  185. package/es/built-in/pm/PluginForm/form/PluginUploadForm.mjs +107 -0
  186. package/es/built-in/pm/PluginForm/form/PluginUrlForm.mjs +101 -0
  187. package/es/built-in/pm/PluginForm/modal/PluginAddModal.mjs +61 -0
  188. package/es/built-in/pm/PluginForm/modal/PluginUpgradeModal.mjs +65 -0
  189. package/es/built-in/pm/PluginManager.mjs +271 -0
  190. package/es/built-in/pm/index.mjs +55 -0
  191. package/es/built-in/pm/style.mjs +72 -0
  192. package/es/built-in/pm/types.mjs +0 -0
  193. package/es/built-in/quick-access/Action.mjs +90 -0
  194. package/es/built-in/quick-access/Block.mjs +128 -0
  195. package/es/built-in/quick-access/CustomRequestActionSchemaInitializerItem.mjs +90 -0
  196. package/es/built-in/quick-access/LinkActionSchemaInitializerItem.mjs +83 -0
  197. package/es/built-in/quick-access/ModalActionSchemaInitializerItem.mjs +92 -0
  198. package/es/built-in/quick-access/PopupActionSchemaInitializerItem.mjs +118 -0
  199. package/es/built-in/quick-access/SchemaSettingsBlockTitleItem.mjs +45 -0
  200. package/es/built-in/quick-access/blockInitializerItem.mjs +19 -0
  201. package/es/built-in/quick-access/blockSchema.mjs +17 -0
  202. package/es/built-in/quick-access/blockSettings.mjs +65 -0
  203. package/es/built-in/quick-access/configureActions.mjs +15 -0
  204. package/es/built-in/quick-access/index.mjs +31 -0
  205. package/es/built-in/scroll-assistant/ScrollAssistant.provider.mjs +42 -0
  206. package/es/built-in/scroll-assistant/ScrollAssistantStatus.provider.mjs +22 -0
  207. package/es/built-in/scroll-assistant/index.mjs +26 -0
  208. package/es/built-in/scroll-assistant/useJoystick.mjs +167 -0
  209. package/es/built-in/setting-layout/AdminSettings.mjs +126 -0
  210. package/es/built-in/setting-layout/SettingLayout.mjs +136 -0
  211. package/es/built-in/setting-layout/SettingsCenterDropdown.mjs +75 -0
  212. package/es/built-in/system-settings/SystemSettingsProvider.mjs +17 -0
  213. package/es/built-in/system-settings/SystemSettingsShortcut.mjs +148 -0
  214. package/es/built-in/system-settings/index.mjs +12 -0
  215. package/es/built-in/system-version/SystemVersion.provider.mjs +34 -0
  216. package/es/built-in/system-version/index.mjs +8 -0
  217. package/es/built-in/user-settings/UserSettingsLayout.mjs +169 -0
  218. package/es/built-in/user-settings/index.mjs +17 -0
  219. package/es/built-in/user-settings/style.mjs +72 -0
  220. package/es/collection-manager/CollectionHistoryProvider.mjs +58 -0
  221. package/es/collection-manager/CollectionManagerProvider.mjs +57 -0
  222. package/es/collection-manager/CollectionManagerSchemaComponentProvider.mjs +23 -0
  223. package/es/collection-manager/CollectionProvider_deprecated.mjs +21 -0
  224. package/es/collection-manager/Configuration/AddCollectionAction.mjs +224 -0
  225. package/es/collection-manager/Configuration/AddFieldAction.mjs +359 -0
  226. package/es/collection-manager/Configuration/AddSubFieldAction.mjs +140 -0
  227. package/es/collection-manager/Configuration/DeleteCollectionAction.mjs +218 -0
  228. package/es/collection-manager/Configuration/EditCollectionAction.mjs +171 -0
  229. package/es/collection-manager/Configuration/EditFieldAction.mjs +245 -0
  230. package/es/collection-manager/Configuration/EditSubFieldAction.mjs +115 -0
  231. package/es/collection-manager/Configuration/ImportCollectionMetaAction.mjs +128 -0
  232. package/es/collection-manager/Configuration/OverridingCollectionField.mjs +216 -0
  233. package/es/collection-manager/Configuration/SyncFieldsAction.mjs +198 -0
  234. package/es/collection-manager/Configuration/SyncSQLFieldsAction.mjs +166 -0
  235. package/es/collection-manager/Configuration/ViewInheritedField.mjs +138 -0
  236. package/es/collection-manager/Configuration/components/CollectionCategory.mjs +18 -0
  237. package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.mjs +19 -0
  238. package/es/collection-manager/Configuration/components/CollectionTemplateTag.mjs +18 -0
  239. package/es/collection-manager/Configuration/components/FieldSummary.mjs +19 -0
  240. package/es/collection-manager/Configuration/components/Summary.mjs +61 -0
  241. package/es/collection-manager/Configuration/components/TemplateSummary.mjs +19 -0
  242. package/es/collection-manager/Configuration/components/index.mjs +319 -0
  243. package/es/collection-manager/Configuration/index.mjs +22 -0
  244. package/es/collection-manager/Configuration/interfaces.mjs +35 -0
  245. package/es/collection-manager/ResourceActionProvider.mjs +136 -0
  246. package/es/collection-manager/action-hooks.mjs +538 -0
  247. package/es/collection-manager/collectionPlugin.mjs +129 -0
  248. package/es/collection-manager/context.mjs +7 -0
  249. package/es/collection-manager/demos/demo2.mjs +106 -0
  250. package/es/collection-manager/demos/demo3.mjs +76 -0
  251. package/es/collection-manager/demos/demo4.mjs +168 -0
  252. package/es/collection-manager/demos/demo5.mjs +152 -0
  253. package/es/collection-manager/hooks/index.mjs +4 -0
  254. package/es/collection-manager/hooks/useCollectionDataSource.mjs +17 -0
  255. package/es/collection-manager/hooks/useCollectionField_deprecated.mjs +21 -0
  256. package/es/collection-manager/hooks/useCollectionManager_deprecated.mjs +224 -0
  257. package/es/collection-manager/hooks/useCollection_deprecated.mjs +54 -0
  258. package/es/collection-manager/hooks/useDialect.mjs +11 -0
  259. package/es/collection-manager/index.mjs +30 -0
  260. package/es/collection-manager/interfaces/__tests__/json.mjs +40 -0
  261. package/es/collection-manager/interfaces/checkbox.mjs +49 -0
  262. package/es/collection-manager/interfaces/checkboxGroup.mjs +43 -0
  263. package/es/collection-manager/interfaces/chinaRegion.mjs +102 -0
  264. package/es/collection-manager/interfaces/collection.mjs +43 -0
  265. package/es/collection-manager/interfaces/color.mjs +31 -0
  266. package/es/collection-manager/interfaces/components/index.mjs +49 -0
  267. package/es/collection-manager/interfaces/createdAt.mjs +35 -0
  268. package/es/collection-manager/interfaces/createdBy.mjs +55 -0
  269. package/es/collection-manager/interfaces/datetime.mjs +44 -0
  270. package/es/collection-manager/interfaces/email.mjs +42 -0
  271. package/es/collection-manager/interfaces/icon.mjs +28 -0
  272. package/es/collection-manager/interfaces/id.mjs +54 -0
  273. package/es/collection-manager/interfaces/index.mjs +39 -0
  274. package/es/collection-manager/interfaces/input.mjs +182 -0
  275. package/es/collection-manager/interfaces/integer.mjs +118 -0
  276. package/es/collection-manager/interfaces/json.mjs +75 -0
  277. package/es/collection-manager/interfaces/linkTo.mjs +92 -0
  278. package/es/collection-manager/interfaces/m2m.mjs +217 -0
  279. package/es/collection-manager/interfaces/m2o.mjs +159 -0
  280. package/es/collection-manager/interfaces/markdown.mjs +77 -0
  281. package/es/collection-manager/interfaces/multipleSelect.mjs +48 -0
  282. package/es/collection-manager/interfaces/nanoid.mjs +60 -0
  283. package/es/collection-manager/interfaces/number.mjs +131 -0
  284. package/es/collection-manager/interfaces/o2m.mjs +191 -0
  285. package/es/collection-manager/interfaces/o2o.mjs +452 -0
  286. package/es/collection-manager/interfaces/password.mjs +63 -0
  287. package/es/collection-manager/interfaces/percent.mjs +162 -0
  288. package/es/collection-manager/interfaces/phone.mjs +34 -0
  289. package/es/collection-manager/interfaces/properties/index.mjs +493 -0
  290. package/es/collection-manager/interfaces/properties/operators.mjs +367 -0
  291. package/es/collection-manager/interfaces/radioGroup.mjs +34 -0
  292. package/es/collection-manager/interfaces/richText.mjs +75 -0
  293. package/es/collection-manager/interfaces/select.mjs +46 -0
  294. package/es/collection-manager/interfaces/sort.mjs +106 -0
  295. package/es/collection-manager/interfaces/subTable.mjs +197 -0
  296. package/es/collection-manager/interfaces/tableoid.mjs +48 -0
  297. package/es/collection-manager/interfaces/textarea.mjs +75 -0
  298. package/es/collection-manager/interfaces/time.mjs +47 -0
  299. package/es/collection-manager/interfaces/types.mjs +0 -0
  300. package/es/collection-manager/interfaces/unixTimestamp.mjs +52 -0
  301. package/es/collection-manager/interfaces/updatedAt.mjs +35 -0
  302. package/es/collection-manager/interfaces/updatedBy.mjs +55 -0
  303. package/es/collection-manager/interfaces/url.mjs +34 -0
  304. package/es/collection-manager/interfaces/uuid.mjs +48 -0
  305. package/es/collection-manager/mixins/InheritanceCollectionMixin.mjs +187 -0
  306. package/es/collection-manager/sub-table.mjs +238 -0
  307. package/es/collection-manager/templates/components/PresetFields.mjs +228 -0
  308. package/es/collection-manager/templates/components/PreviewFields.mjs +309 -0
  309. package/es/collection-manager/templates/components/PreviewTable.mjs +140 -0
  310. package/es/collection-manager/templates/components/sql-collection/FieldsConfigure.mjs +280 -0
  311. package/es/collection-manager/templates/components/sql-collection/PreviewTable.mjs +60 -0
  312. package/es/collection-manager/templates/components/sql-collection/SQLInput.mjs +90 -0
  313. package/es/collection-manager/templates/components/sql-collection/SQLRequestProvider.mjs +51 -0
  314. package/es/collection-manager/templates/components/sql-collection/index.mjs +4 -0
  315. package/es/collection-manager/templates/expression.mjs +62 -0
  316. package/es/collection-manager/templates/general.mjs +20 -0
  317. package/es/collection-manager/templates/import.mjs +19 -0
  318. package/es/collection-manager/templates/index.mjs +6 -0
  319. package/es/collection-manager/templates/properties/index.mjs +69 -0
  320. package/es/collection-manager/templates/sql.mjs +85 -0
  321. package/es/collection-manager/templates/tree.mjs +78 -0
  322. package/es/collection-manager/templates/types.mjs +0 -0
  323. package/es/collection-manager/templates/view.mjs +159 -0
  324. package/es/collection-manager/types.mjs +0 -0
  325. package/es/collection-manager/utils.mjs +16 -0
  326. package/es/common/SelectWithTitle.mjs +44 -0
  327. package/es/common/appInfo/CurrentAppInfoProvider.mjs +17 -0
  328. package/es/common/appInfo/index.mjs +1 -0
  329. package/es/common/index.mjs +3 -0
  330. package/es/common/useFieldComponentName.mjs +23 -0
  331. package/es/common/useNiceDropdownHeight.mjs +18 -0
  332. package/es/data-source/__tests__/collection/AssociationProvider.test.mjs +113 -0
  333. package/es/data-source/__tests__/collection/Collection.test.mjs +297 -0
  334. package/es/data-source/__tests__/collection/CollectionManager.test.mjs +297 -0
  335. package/es/data-source/__tests__/collection/CollectionManagerProvider.test.mjs +114 -0
  336. package/es/data-source/__tests__/collection/CollectionProvider.test.mjs +106 -0
  337. package/es/data-source/__tests__/collection/ExtendCollectionsProvider.test.mjs +87 -0
  338. package/es/data-source/__tests__/collection-field/CollectionField.test.mjs +67 -0
  339. package/es/data-source/__tests__/collection-field/CollectionFieldProvider.test.mjs +51 -0
  340. package/es/data-source/__tests__/collection-field-interface/CollectionFieldInterfaceManager.test.mjs +162 -0
  341. package/es/data-source/__tests__/collection-record/CollectionRecord.test.mjs +21 -0
  342. package/es/data-source/__tests__/collection-record/CollectionRecordProvider.test.mjs +253 -0
  343. package/es/data-source/__tests__/collection-record/isNewRecord.test.mjs +45 -0
  344. package/es/data-source/__tests__/collection-template/CollectionTemplateManager.test.mjs +123 -0
  345. package/es/data-source/__tests__/components/CollectionDeletedPlaceholder.test.mjs +43 -0
  346. package/es/data-source/__tests__/data-block/DataBlockProvider.test.mjs +114 -0
  347. package/es/data-source/__tests__/data-block/data-block-demos/association-table-list-and-parent-record.mjs +88 -0
  348. package/es/data-source/__tests__/data-block/data-block-demos/association-table-list-and-source-id.mjs +139 -0
  349. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-create.mjs +109 -0
  350. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-get-and-update.mjs +174 -0
  351. package/es/data-source/__tests__/data-block/data-block-demos/collection-form-record-and-update.mjs +138 -0
  352. package/es/data-source/__tests__/data-block/data-block-demos/collection-table-list.mjs +94 -0
  353. package/es/data-source/__tests__/data-block/data-block-demos/createApp.mjs +55 -0
  354. package/es/data-source/__tests__/data-source/CollectionDataSourceProvider.test.mjs +35 -0
  355. package/es/data-source/__tests__/data-source/DataSource.test.mjs +75 -0
  356. package/es/data-source/__tests__/data-source/DataSourceManager.test.mjs +166 -0
  357. package/es/data-source/__tests__/data-source/DataSourceManagerProvider.test.mjs +30 -0
  358. package/es/data-source/__tests__/data-source/DataSourceProvider.test.mjs +79 -0
  359. package/es/data-source/__tests__/utils.test.mjs +55 -0
  360. package/es/data-source/collection/AssociationProvider.mjs +42 -0
  361. package/es/data-source/collection/Collection.mjs +177 -0
  362. package/es/data-source/collection/CollectionManager.mjs +119 -0
  363. package/es/data-source/collection/CollectionManagerProvider.mjs +47 -0
  364. package/es/data-source/collection/CollectionProvider.mjs +38 -0
  365. package/es/data-source/collection/ExtendCollectionsProvider.mjs +30 -0
  366. package/es/data-source/collection/index.mjs +6 -0
  367. package/es/data-source/collection/utils.mjs +46 -0
  368. package/es/data-source/collection-field/CollectionField.mjs +73 -0
  369. package/es/data-source/collection-field/CollectionFieldProvider.mjs +40 -0
  370. package/es/data-source/collection-field/index.mjs +2 -0
  371. package/es/data-source/collection-field-interface/CollectionFieldInterface.mjs +33 -0
  372. package/es/data-source/collection-field-interface/CollectionFieldInterfaceManager.mjs +59 -0
  373. package/es/data-source/collection-field-interface/index.mjs +2 -0
  374. package/es/data-source/collection-record/CollectionRecord.mjs +28 -0
  375. package/es/data-source/collection-record/CollectionRecordProvider.mjs +62 -0
  376. package/es/data-source/collection-record/index.mjs +2 -0
  377. package/es/data-source/collection-record/isNewRecord.mjs +9 -0
  378. package/es/data-source/collection-template/CollectionTemplate.mjs +32 -0
  379. package/es/data-source/collection-template/CollectionTemplateManager.mjs +52 -0
  380. package/es/data-source/collection-template/index.mjs +2 -0
  381. package/es/data-source/commonsSettingsItem/fieldComponent.mjs +57 -0
  382. package/es/data-source/commonsSettingsItem/index.mjs +1 -0
  383. package/es/data-source/components/CollectionDeletedPlaceholder.mjs +81 -0
  384. package/es/data-source/components/DataSourceApplicationProvider.mjs +15 -0
  385. package/es/data-source/components/index.mjs +2 -0
  386. package/es/data-source/data-block/DataBlockProvider.mjs +79 -0
  387. package/es/data-source/data-block/DataBlockRequestProvider.mjs +124 -0
  388. package/es/data-source/data-block/DataBlockResourceProvider.mjs +54 -0
  389. package/es/data-source/data-block/context/ConfigSetting.provider.mjs +10 -0
  390. package/es/data-source/data-block/index.mjs +4 -0
  391. package/es/data-source/data-source/DataSource.mjs +72 -0
  392. package/es/data-source/data-source/DataSourceManager.mjs +108 -0
  393. package/es/data-source/data-source/DataSourceManagerProvider.mjs +16 -0
  394. package/es/data-source/data-source/DataSourceProvider.mjs +54 -0
  395. package/es/data-source/data-source/index.mjs +4 -0
  396. package/es/data-source/index.mjs +10 -0
  397. package/es/data-source/utils.mjs +17 -0
  398. package/es/env.d.mjs +0 -0
  399. package/es/filter-provider/FilterProvider.mjs +127 -0
  400. package/es/filter-provider/__tests__/transformToFilter.mjs +65 -0
  401. package/es/filter-provider/__tests__/useFilter.mjs +41 -0
  402. package/es/filter-provider/__tests__/utiles.test.mjs +265 -0
  403. package/es/filter-provider/index.mjs +2 -0
  404. package/es/filter-provider/utils.mjs +180 -0
  405. package/es/flag-provider/FlagProvider.mjs +8 -0
  406. package/es/flag-provider/__tests__/flag-provider.test.mjs +19 -0
  407. package/es/flag-provider/hooks/useFlag.mjs +4 -0
  408. package/es/flag-provider/index.mjs +2 -0
  409. package/es/hooks/index.mjs +2 -0
  410. package/es/hooks/useAdminSchemaUid.mjs +2 -0
  411. package/es/hooks/useMenuItem.mjs +70 -0
  412. package/es/hooks/useViewport.mjs +35 -0
  413. package/es/i18n/i18n.mjs +23 -0
  414. package/es/i18n/index.mjs +1 -0
  415. package/es/icon/Icon.mjs +56 -0
  416. package/es/icon/__tests__/icon.test.mjs +25 -0
  417. package/es/icon/demos/antd-icon.mjs +7 -0
  418. package/es/icon/demos/custom-icon.mjs +16 -0
  419. package/es/icon/demos/iconfont.mjs +10 -0
  420. package/es/icon/demos/register-icon.mjs +23 -0
  421. package/es/icon/index.mjs +1 -0
  422. package/es/icon/preloaded.mjs +122 -0
  423. package/es/index.mjs +50 -0
  424. package/es/locale/index.mjs +269 -0
  425. package/es/modules/actions/ActionSchemaToolbar.mjs +10 -0
  426. package/es/modules/actions/add-child/CreateChildInitializer.mjs +64 -0
  427. package/es/modules/actions/add-child/addChildActionSettings.mjs +64 -0
  428. package/es/modules/actions/add-new/CreateActionInitializer.mjs +67 -0
  429. package/es/modules/actions/add-new/addNewActionSettings.mjs +57 -0
  430. package/es/modules/actions/add-new/createFormBlockInitializers.mjs +56 -0
  431. package/es/modules/actions/add-record/CustomizeAddRecordActionInitializer.mjs +63 -0
  432. package/es/modules/actions/add-record/customizeAddRecordActionSettings.mjs +35 -0
  433. package/es/modules/actions/add-record/customizeCreateFormBlockInitializers.mjs +36 -0
  434. package/es/modules/actions/bulk-destroy/BulkDestroyActionInitializer.mjs +35 -0
  435. package/es/modules/actions/bulk-destroy/bulkDeleteActionSettings.mjs +30 -0
  436. package/es/modules/actions/delete/DestroyActionInitializer.mjs +28 -0
  437. package/es/modules/actions/delete/deleteActionSettings.mjs +39 -0
  438. package/es/modules/actions/disassociate/DisassociateActionInitializer.mjs +28 -0
  439. package/es/modules/actions/disassociate/__e2e__/disassociate.test.mjs +39 -0
  440. package/es/modules/actions/disassociate/__e2e__/templatesOfPage.mjs +383 -0
  441. package/es/modules/actions/disassociate/disassociateActionSettings.mjs +39 -0
  442. package/es/modules/actions/expand-collapse/ExpandableActionInitializer.mjs +26 -0
  443. package/es/modules/actions/expand-collapse/expendableActionSettings.mjs +118 -0
  444. package/es/modules/actions/filter/FilterActionInitializer.mjs +22 -0
  445. package/es/modules/actions/filter/filterActionSettings.mjs +83 -0
  446. package/es/modules/actions/link/customizeLinkActionSettings.mjs +107 -0
  447. package/es/modules/actions/link/hooks.mjs +199 -0
  448. package/es/modules/actions/refresh/RefreshActionInitializer.mjs +21 -0
  449. package/es/modules/actions/refresh/refreshActionSettings.mjs +30 -0
  450. package/es/modules/actions/save-record/SaveRecordActionInitializer.mjs +34 -0
  451. package/es/modules/actions/save-record/customizeSaveRecordActionSettings.mjs +52 -0
  452. package/es/modules/actions/submit/CreateSubmitActionInitializer.mjs +27 -0
  453. package/es/modules/actions/submit/UpdateSubmitActionInitializer.mjs +31 -0
  454. package/es/modules/actions/submit/createSubmitActionSettings.mjs +210 -0
  455. package/es/modules/actions/submit/updateSubmitActionSettings.mjs +89 -0
  456. package/es/modules/actions/update-record/UpdateRecordActionInitializer.mjs +32 -0
  457. package/es/modules/actions/update-record/customizeUpdateRecordActionSettings.mjs +62 -0
  458. package/es/modules/actions/view-edit-popup/PopupActionInitializer.mjs +59 -0
  459. package/es/modules/actions/view-edit-popup/RecordFormBlockInitializers.mjs +35 -0
  460. package/es/modules/actions/view-edit-popup/UpdateActionInitializer.mjs +57 -0
  461. package/es/modules/actions/view-edit-popup/ViewActionInitializer.mjs +56 -0
  462. package/es/modules/actions/view-edit-popup/customizePopupActionSettings.mjs +49 -0
  463. package/es/modules/actions/view-edit-popup/editActionSettings.mjs +44 -0
  464. package/es/modules/actions/view-edit-popup/viewActionSettings.mjs +49 -0
  465. package/es/modules/blocks/BlockSchemaToolbar.mjs +56 -0
  466. package/es/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.mjs +40 -0
  467. package/es/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.mjs +49 -0
  468. package/es/modules/blocks/data-blocks/details-multi/__e2e__/schemaInitializer.test.mjs +112 -0
  469. package/es/modules/blocks/data-blocks/details-multi/__e2e__/schemaSettings.test.mjs +72 -0
  470. package/es/modules/blocks/data-blocks/details-multi/__e2e__/templatesOfBug.mjs +0 -0
  471. package/es/modules/blocks/data-blocks/details-multi/__tests__/createDetailsBlockWithPagingUISchema.test.mjs +14 -0
  472. package/es/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.mjs +58 -0
  473. package/es/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.mjs +216 -0
  474. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.mjs +9 -0
  475. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.mjs +5 -0
  476. package/es/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.mjs +73 -0
  477. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.mjs +85 -0
  478. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.mjs +86 -0
  479. package/es/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.mjs +73 -0
  480. package/es/modules/blocks/data-blocks/details-single/__e2e__/schemaInitializer.test.mjs +98 -0
  481. package/es/modules/blocks/data-blocks/details-single/__e2e__/schemaSettings.test.mjs +24 -0
  482. package/es/modules/blocks/data-blocks/details-single/__e2e__/templatesOfBug.mjs +0 -0
  483. package/es/modules/blocks/data-blocks/details-single/__tests__/createDetailsBlockWithoutPagingUISchema.test.mjs +14 -0
  484. package/es/modules/blocks/data-blocks/details-single/createDetailsUISchema.mjs +54 -0
  485. package/es/modules/blocks/data-blocks/details-single/detailsBlockSettings.mjs +49 -0
  486. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.mjs +21 -0
  487. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.mjs +5 -0
  488. package/es/modules/blocks/data-blocks/form/CreateFormBlockInitializer.mjs +48 -0
  489. package/es/modules/blocks/data-blocks/form/FilterItemCustomSettings.mjs +279 -0
  490. package/es/modules/blocks/data-blocks/form/FormBlockInitializer.mjs +79 -0
  491. package/es/modules/blocks/data-blocks/form/FormItemSchemaToolbar.mjs +9 -0
  492. package/es/modules/blocks/data-blocks/form/RecordFormBlockInitializer.mjs +84 -0
  493. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/associationForm.test.mjs +14 -0
  494. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/dragAndDrop.test.mjs +26 -0
  495. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadAssociationFields.test.mjs +168 -0
  496. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadVariables.test.mjs +28 -0
  497. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/schemaInitializer.test.mjs +141 -0
  498. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/schemaSettings.test.mjs +1254 -0
  499. package/es/modules/blocks/data-blocks/form/__e2e__/form-create/templatesOfBug.mjs +6002 -0
  500. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaInitializer.test.mjs +16 -0
  501. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaSettings.test.mjs +212 -0
  502. package/es/modules/blocks/data-blocks/form/__e2e__/form-edit/templatesOfBug.mjs +0 -0
  503. package/es/modules/blocks/data-blocks/form/__tests__/createCreateFormBlockUISchema.test.mjs +19 -0
  504. package/es/modules/blocks/data-blocks/form/__tests__/createEditFormBlockUISchema.test.mjs +18 -0
  505. package/es/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.mjs +51 -0
  506. package/es/modules/blocks/data-blocks/form/createEditFormBlockUISchema.mjs +54 -0
  507. package/es/modules/blocks/data-blocks/form/createFormActionInitializers.mjs +45 -0
  508. package/es/modules/blocks/data-blocks/form/createFormBlockSettings.mjs +138 -0
  509. package/es/modules/blocks/data-blocks/form/editFormBlockSettings.mjs +72 -0
  510. package/es/modules/blocks/data-blocks/form/fieldSettingsFormItem.mjs +525 -0
  511. package/es/modules/blocks/data-blocks/form/formActionInitializers.mjs +45 -0
  512. package/es/modules/blocks/data-blocks/form/formItemInitializers.mjs +39 -0
  513. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.mjs +9 -0
  514. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.mjs +5 -0
  515. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.mjs +15 -0
  516. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.mjs +5 -0
  517. package/es/modules/blocks/data-blocks/form/index.d.ts +2 -2
  518. package/es/modules/blocks/data-blocks/form/index.mjs +14 -0
  519. package/es/modules/blocks/data-blocks/form/updateFormActionInitializers.mjs +56 -0
  520. package/es/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.mjs +85 -0
  521. package/es/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.mjs +43 -0
  522. package/es/modules/blocks/data-blocks/grid-card/__e2e__/schemaInitializer.test.mjs +220 -0
  523. package/es/modules/blocks/data-blocks/grid-card/__e2e__/schemaSettings.test.mjs +48 -0
  524. package/es/modules/blocks/data-blocks/grid-card/__e2e__/templatesOfBug.mjs +0 -0
  525. package/es/modules/blocks/data-blocks/grid-card/__tests__/createGridCardBlockSchema.test.mjs +26 -0
  526. package/es/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.mjs +73 -0
  527. package/es/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.mjs +431 -0
  528. package/es/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.mjs +100 -0
  529. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.mjs +12 -0
  530. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.mjs +17 -0
  531. package/es/modules/blocks/data-blocks/grid-card/utils.mjs +14 -0
  532. package/es/modules/blocks/data-blocks/list/ListActionInitializers.mjs +81 -0
  533. package/es/modules/blocks/data-blocks/list/ListBlockInitializer.mjs +43 -0
  534. package/es/modules/blocks/data-blocks/list/__e2e__/schemaInitializer.test.mjs +211 -0
  535. package/es/modules/blocks/data-blocks/list/__e2e__/schemaSettings.test.mjs +23 -0
  536. package/es/modules/blocks/data-blocks/list/__e2e__/templatesOfBug.mjs +0 -0
  537. package/es/modules/blocks/data-blocks/list/__tests__/createListBlockSchema.test.mjs +24 -0
  538. package/es/modules/blocks/data-blocks/list/createListBlockUISchema.mjs +68 -0
  539. package/es/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.mjs +9 -0
  540. package/es/modules/blocks/data-blocks/list/listBlockSettings.mjs +249 -0
  541. package/es/modules/blocks/data-blocks/list/listItemActionInitializers.mjs +100 -0
  542. package/es/modules/blocks/data-blocks/table/TableActionColumnInitializers.mjs +238 -0
  543. package/es/modules/blocks/data-blocks/table/TableActionInitializers.mjs +131 -0
  544. package/es/modules/blocks/data-blocks/table/TableBlockInitializer.mjs +43 -0
  545. package/es/modules/blocks/data-blocks/table/TableColumnInitializers.mjs +105 -0
  546. package/es/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.mjs +15 -0
  547. package/es/modules/blocks/data-blocks/table/__e2e__/actions/duplicate.test.mjs +9 -0
  548. package/es/modules/blocks/data-blocks/table/__e2e__/actions/filter.test.mjs +33 -0
  549. package/es/modules/blocks/data-blocks/table/__e2e__/checkboxForTableRow.test.mjs +19 -0
  550. package/es/modules/blocks/data-blocks/table/__e2e__/dragAndDrop.test.mjs +31 -0
  551. package/es/modules/blocks/data-blocks/table/__e2e__/schemaInitializer.test.mjs +419 -0
  552. package/es/modules/blocks/data-blocks/table/__e2e__/schemaSettings.test.mjs +869 -0
  553. package/es/modules/blocks/data-blocks/table/__e2e__/templatesOfBug.mjs +934 -0
  554. package/es/modules/blocks/data-blocks/table/__e2e__/tree/schemaSettings.test.mjs +42 -0
  555. package/es/modules/blocks/data-blocks/table/__tests__/createTableBLockSchema.test.mjs +16 -0
  556. package/es/modules/blocks/data-blocks/table/createTableBlockUISchema.mjs +82 -0
  557. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.mjs +35 -0
  558. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockProps.mjs +137 -0
  559. package/es/modules/blocks/data-blocks/table/index.mjs +9 -0
  560. package/es/modules/blocks/data-blocks/table/tableBlockSettings.mjs +416 -0
  561. package/es/modules/blocks/data-blocks/table/tableColumnSettings.mjs +333 -0
  562. package/es/modules/blocks/data-blocks/table/utils.mjs +17 -0
  563. package/es/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.mjs +24 -0
  564. package/es/modules/blocks/data-blocks/table-selector/__e2e__/schemaInitializer.test.mjs +159 -0
  565. package/es/modules/blocks/data-blocks/table-selector/__e2e__/schemaSettings.test.mjs +146 -0
  566. package/es/modules/blocks/data-blocks/table-selector/__e2e__/templatesOfBug.mjs +692 -0
  567. package/es/modules/blocks/data-blocks/table-selector/__e2e__/utils.mjs +12 -0
  568. package/es/modules/blocks/data-blocks/table-selector/__tests__/createTableSelectorSchema.test.mjs +14 -0
  569. package/es/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.mjs +47 -0
  570. package/es/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.mjs +2 -0
  571. package/es/modules/blocks/data-blocks/table-selector/index.mjs +2 -0
  572. package/es/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.mjs +310 -0
  573. package/es/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.mjs +8 -0
  574. package/es/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.mjs +29 -0
  575. package/es/modules/blocks/filter-blocks/collapse/__e2e__/schemaInitializer.test.mjs +59 -0
  576. package/es/modules/blocks/filter-blocks/collapse/__e2e__/schemaSettings.test.mjs +62 -0
  577. package/es/modules/blocks/filter-blocks/collapse/__e2e__/templatesOfBug.mjs +0 -0
  578. package/es/modules/blocks/filter-blocks/collapse/__tests__/createCollapseBlockSchema.test.mjs +40 -0
  579. package/es/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.mjs +31 -0
  580. package/es/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.mjs +58 -0
  581. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.mjs +213 -0
  582. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.mjs +153 -0
  583. package/es/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.mjs +2 -0
  584. package/es/modules/blocks/filter-blocks/form/FilterFormActionInitializers.mjs +32 -0
  585. package/es/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.mjs +37 -0
  586. package/es/modules/blocks/filter-blocks/form/__e2e__/schemaInitializer.test.mjs +115 -0
  587. package/es/modules/blocks/filter-blocks/form/__e2e__/schemaSettings.test.mjs +98 -0
  588. package/es/modules/blocks/filter-blocks/form/__e2e__/templatesOfBug.mjs +0 -0
  589. package/es/modules/blocks/filter-blocks/form/__tests__/createFilterFormBlockSchema.test.mjs +23 -0
  590. package/es/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.mjs +46 -0
  591. package/es/modules/blocks/filter-blocks/form/filterFormBlockSettings.mjs +66 -0
  592. package/es/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.mjs +355 -0
  593. package/es/modules/blocks/filter-blocks/form/filterFormItemInitializers.mjs +41 -0
  594. package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.mjs +2 -0
  595. package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.mjs +5 -0
  596. package/es/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.mjs +32 -0
  597. package/es/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.mjs +73 -0
  598. package/es/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.mjs +66 -0
  599. package/es/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.mjs +355 -0
  600. package/es/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.mjs +41 -0
  601. package/es/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.mjs +30 -0
  602. package/es/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.mjs +26 -0
  603. package/es/modules/blocks/other-blocks/markdown/__e2e__/schemaInitializer.test.mjs +10 -0
  604. package/es/modules/blocks/other-blocks/markdown/__e2e__/schemaSettings.test.mjs +33 -0
  605. package/es/modules/blocks/other-blocks/markdown/__e2e__/templatesOfBug.mjs +0 -0
  606. package/es/modules/blocks/other-blocks/markdown/markdownBlockSettings.mjs +39 -0
  607. package/es/modules/blocks/useParentRecordCommon.mjs +7 -0
  608. package/es/modules/blocks/useSourceId.mjs +12 -0
  609. package/es/modules/blocks/useSourceKey.mjs +6 -0
  610. package/es/modules/dialog/__e2e__/schemaInitializer.test.mjs +388 -0
  611. package/es/modules/dialog/__e2e__/schemaSettings.test.mjs +59 -0
  612. package/es/modules/dialog/__e2e__/templatesOfBug.mjs +2122 -0
  613. package/es/modules/dialog/__e2e__/zIndex.test.mjs +35 -0
  614. package/es/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.mjs +91 -0
  615. package/es/modules/fields/component/Cascader/cascaderComponentFieldSettings.mjs +380 -0
  616. package/es/modules/fields/component/Checkbox/checkboxComponentFieldSettings.mjs +53 -0
  617. package/es/modules/fields/component/DatePicker/__e2e__/schemaSettings.test.mjs +74 -0
  618. package/es/modules/fields/component/DatePicker/__e2e__/utils.mjs +323 -0
  619. package/es/modules/fields/component/DatePicker/datePickerComponentFieldSettings.mjs +22 -0
  620. package/es/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.mjs +149 -0
  621. package/es/modules/fields/component/FileManager/fileManagerComponentFieldSettings.mjs +190 -0
  622. package/es/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.mjs +102 -0
  623. package/es/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.mjs +27 -0
  624. package/es/modules/fields/component/Nester/subformComponentFieldSettings.mjs +125 -0
  625. package/es/modules/fields/component/Picker/TableSelectorInitializers.mjs +86 -0
  626. package/es/modules/fields/component/Picker/recordPickerComponentFieldSettings.mjs +190 -0
  627. package/es/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.mjs +99 -0
  628. package/es/modules/fields/component/Radio/radioComponentFieldSettings.mjs +53 -0
  629. package/es/modules/fields/component/Select/selectComponentFieldSettings.mjs +378 -0
  630. package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.mjs +404 -0
  631. package/es/modules/fields/component/Tag/tagComponentFieldSettings.mjs +172 -0
  632. package/es/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.mjs +22 -0
  633. package/es/modules/fields/initializer/CollectionFieldInitializer.mjs +15 -0
  634. package/es/modules/fields/initializer/TableCollectionFieldInitializer.mjs +15 -0
  635. package/es/modules/menu/GroupItem.mjs +78 -0
  636. package/es/modules/menu/LinkMenuItem.mjs +84 -0
  637. package/es/modules/menu/PageMenuItem.mjs +93 -0
  638. package/es/modules/menu/__e2e__/dragAndDrop.test.mjs +27 -0
  639. package/es/modules/menu/__e2e__/schemaInitializer.test.mjs +101 -0
  640. package/es/modules/menu/__e2e__/schemaSettings.test.mjs +347 -0
  641. package/es/modules/menu/__e2e__/templatesOfBug.mjs +0 -0
  642. package/es/modules/menu/menuItemInitializer.mjs +48 -0
  643. package/es/modules/page/BlockInitializers.mjs +77 -0
  644. package/es/modules/page/__e2e__/blockInitializers.test.mjs +17 -0
  645. package/es/modules/page/__e2e__/dragAndDrop.test.mjs +16 -0
  646. package/es/modules/page/__e2e__/schemaInitailizer.test.mjs +15 -0
  647. package/es/modules/page/__e2e__/schemaSettings.test.mjs +134 -0
  648. package/es/modules/page/__e2e__/templatesOfBug.mjs +0 -0
  649. package/es/modules/plugin-manager/__e2e__/pluginManager.test.mjs +113 -0
  650. package/es/modules/plugin-manager/__e2e__/templatesOfBug.mjs +0 -0
  651. package/es/modules/user-center/__e2e__/settings.test.mjs +12 -0
  652. package/es/modules/variable/DeclareVariable.mjs +16 -0
  653. package/es/modules/variable/useVariable.mjs +12 -0
  654. package/es/powered-by/index.mjs +43 -0
  655. package/es/record-provider/index.mjs +51 -0
  656. package/es/route-switch/RouteSchemaComponent.mjs +12 -0
  657. package/es/route-switch/index.mjs +1 -0
  658. package/es/schema-component/antd/AntdSchemaComponentProvider.mjs +39 -0
  659. package/es/schema-component/antd/__builtins__/hooks/index.mjs +3 -0
  660. package/es/schema-component/antd/__builtins__/hooks/useConfig.mjs +5 -0
  661. package/es/schema-component/antd/__builtins__/hooks/usePrefixCls.mjs +12 -0
  662. package/es/schema-component/antd/__builtins__/hooks/useToken.mjs +6 -0
  663. package/es/schema-component/antd/__builtins__/index.mjs +4 -0
  664. package/es/schema-component/antd/__builtins__/loading.mjs +15 -0
  665. package/es/schema-component/antd/__builtins__/portal.mjs +51 -0
  666. package/es/schema-component/antd/__builtins__/render.mjs +47 -0
  667. package/es/schema-component/antd/__builtins__/style.mjs +65 -0
  668. package/es/schema-component/antd/action/Action.Area.mjs +102 -0
  669. package/es/schema-component/antd/action/Action.Area.style.mjs +40 -0
  670. package/es/schema-component/antd/action/Action.Container.mjs +42 -0
  671. package/es/schema-component/antd/action/Action.Designer.mjs +906 -0
  672. package/es/schema-component/antd/action/Action.Drawer.mjs +136 -0
  673. package/es/schema-component/antd/action/Action.Drawer.style.mjs +46 -0
  674. package/es/schema-component/antd/action/Action.Link.mjs +14 -0
  675. package/es/schema-component/antd/action/Action.Modal.mjs +172 -0
  676. package/es/schema-component/antd/action/Action.Page.mjs +83 -0
  677. package/es/schema-component/antd/action/Action.Popover.mjs +0 -0
  678. package/es/schema-component/antd/action/Action.Sheet.mjs +81 -0
  679. package/es/schema-component/antd/action/Action.mjs +228 -0
  680. package/es/schema-component/antd/action/Action.style.mjs +47 -0
  681. package/es/schema-component/antd/action/ActionBar.mjs +128 -0
  682. package/es/schema-component/antd/action/__tests__/action.test.mjs +116 -0
  683. package/es/schema-component/antd/action/context.mjs +17 -0
  684. package/es/schema-component/antd/action/demos/demo1.mjs +70 -0
  685. package/es/schema-component/antd/action/demos/demo2.mjs +75 -0
  686. package/es/schema-component/antd/action/demos/demo3.mjs +127 -0
  687. package/es/schema-component/antd/action/demos/demo4.mjs +58 -0
  688. package/es/schema-component/antd/action/demos/demo5.mjs +211 -0
  689. package/es/schema-component/antd/action/demos/demo6.mjs +95 -0
  690. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfAction.mjs +37 -0
  691. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.mjs +25 -0
  692. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfModal.mjs +25 -0
  693. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.mjs +25 -0
  694. package/es/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.mjs +30 -0
  695. package/es/schema-component/antd/action/hooks/useSetAriaLabelForModal.mjs +30 -0
  696. package/es/schema-component/antd/action/hooks/useSetAriaLabelForPopover.mjs +22 -0
  697. package/es/schema-component/antd/action/hooks.mjs +60 -0
  698. package/es/schema-component/antd/action/index.mjs +10 -0
  699. package/es/schema-component/antd/action/types.mjs +0 -0
  700. package/es/schema-component/antd/action/utils.mjs +213 -0
  701. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelect.mjs +216 -0
  702. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.mjs +215 -0
  703. package/es/schema-component/antd/appends-tree-select/index.mjs +2 -0
  704. package/es/schema-component/antd/association-cascader/AssociationCascader.mjs +135 -0
  705. package/es/schema-component/antd/association-cascader/index.mjs +1 -0
  706. package/es/schema-component/antd/association-field/AssociationFieldProvider.mjs +125 -0
  707. package/es/schema-component/antd/association-field/AssociationSelect.mjs +172 -0
  708. package/es/schema-component/antd/association-field/Editable.mjs +103 -0
  709. package/es/schema-component/antd/association-field/FileManager.mjs +201 -0
  710. package/es/schema-component/antd/association-field/InternalCascadeSelect.mjs +394 -0
  711. package/es/schema-component/antd/association-field/InternalCascader.mjs +365 -0
  712. package/es/schema-component/antd/association-field/InternalDrawerSubTable.mjs +99 -0
  713. package/es/schema-component/antd/association-field/InternalNester.mjs +80 -0
  714. package/es/schema-component/antd/association-field/InternalPicker.mjs +228 -0
  715. package/es/schema-component/antd/association-field/InternalPopoverNester.mjs +131 -0
  716. package/es/schema-component/antd/association-field/InternalSubTable.mjs +91 -0
  717. package/es/schema-component/antd/association-field/InternalTag.mjs +122 -0
  718. package/es/schema-component/antd/association-field/InternalViewer.mjs +136 -0
  719. package/es/schema-component/antd/association-field/Nester.mjs +247 -0
  720. package/es/schema-component/antd/association-field/ReadPretty.mjs +47 -0
  721. package/es/schema-component/antd/association-field/SubTable.mjs +278 -0
  722. package/es/schema-component/antd/association-field/SubTabs/InternalCollapse.mjs +321 -0
  723. package/es/schema-component/antd/association-field/SubTabs/hook.mjs +53 -0
  724. package/es/schema-component/antd/association-field/SubTabs/index.mjs +1 -0
  725. package/es/schema-component/antd/association-field/SubTabs/styles.mjs +25 -0
  726. package/es/schema-component/antd/association-field/components/CreateRecordAction.mjs +55 -0
  727. package/es/schema-component/antd/association-field/context.mjs +4 -0
  728. package/es/schema-component/antd/association-field/hooks.mjs +150 -0
  729. package/es/schema-component/antd/association-field/index.mjs +17 -0
  730. package/es/schema-component/antd/association-field/schema.mjs +131 -0
  731. package/es/schema-component/antd/association-field/util.mjs +103 -0
  732. package/es/schema-component/antd/association-filter/ActionBarAssociationFilterAction.mjs +54 -0
  733. package/es/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.mjs +40 -0
  734. package/es/schema-component/antd/association-filter/AssociationFilter.Initializer.mjs +55 -0
  735. package/es/schema-component/antd/association-filter/AssociationFilter.Item.Designer.mjs +134 -0
  736. package/es/schema-component/antd/association-filter/AssociationFilter.Item.mjs +131 -0
  737. package/es/schema-component/antd/association-filter/AssociationFilter.Item.style.mjs +101 -0
  738. package/es/schema-component/antd/association-filter/AssociationFilter.mjs +75 -0
  739. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDelete.mjs +31 -0
  740. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.mjs +23 -0
  741. package/es/schema-component/antd/association-filter/utilts.mjs +2 -0
  742. package/es/schema-component/antd/association-select/AssociationSelect.mjs +865 -0
  743. package/es/schema-component/antd/association-select/ReadPretty.mjs +17 -0
  744. package/es/schema-component/antd/association-select/__tests__/association-select.test.mjs +16 -0
  745. package/es/schema-component/antd/association-select/demos/demo1.mjs +55 -0
  746. package/es/schema-component/antd/association-select/index.mjs +1 -0
  747. package/es/schema-component/antd/association-select/useServiceOptions.mjs +82 -0
  748. package/es/schema-component/antd/auto-complete/AutoComplete.mjs +58 -0
  749. package/es/schema-component/antd/auto-complete/index.mjs +1 -0
  750. package/es/schema-component/antd/block-item/BlockItem.mjs +49 -0
  751. package/es/schema-component/antd/block-item/BlockToolbar.d.ts +48 -3
  752. package/es/schema-component/antd/block-item/BlockToolbar.mjs +88 -0
  753. package/es/schema-component/antd/block-item/__tests__/block-item.test.mjs +14 -0
  754. package/es/schema-component/antd/block-item/demos/demo1.mjs +60 -0
  755. package/es/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.mjs +39 -0
  756. package/es/schema-component/antd/block-item/index.mjs +1 -0
  757. package/es/schema-component/antd/block-item/useBlockToolbar.mjs +81 -0
  758. package/es/schema-component/antd/card-item/CardItem.mjs +25 -0
  759. package/es/schema-component/antd/card-item/__tests__/card-item.test.mjs +11 -0
  760. package/es/schema-component/antd/card-item/demos/demo1.mjs +31 -0
  761. package/es/schema-component/antd/card-item/index.mjs +1 -0
  762. package/es/schema-component/antd/card-item/style.mjs +25 -0
  763. package/es/schema-component/antd/cascader/Cascader.mjs +73 -0
  764. package/es/schema-component/antd/cascader/ReadPretty.mjs +30 -0
  765. package/es/schema-component/antd/cascader/__tests__/cascader.test.mjs +29 -0
  766. package/es/schema-component/antd/cascader/defaultFieldNames.mjs +6 -0
  767. package/es/schema-component/antd/cascader/demos/demo1.mjs +82 -0
  768. package/es/schema-component/antd/cascader/demos/demo2.mjs +115 -0
  769. package/es/schema-component/antd/cascader/index.mjs +1 -0
  770. package/es/schema-component/antd/checkbox/Checkbox.mjs +83 -0
  771. package/es/schema-component/antd/checkbox/__tests__/checkbox.test.mjs +40 -0
  772. package/es/schema-component/antd/checkbox/demos/checkbox.group.mjs +54 -0
  773. package/es/schema-component/antd/checkbox/demos/checkbox.mjs +40 -0
  774. package/es/schema-component/antd/checkbox/index.mjs +1 -0
  775. package/es/schema-component/antd/collection-select/CollectionSelect.mjs +146 -0
  776. package/es/schema-component/antd/collection-select/__tests__/collection-select.test.mjs +16 -0
  777. package/es/schema-component/antd/collection-select/demos/demo1.mjs +36 -0
  778. package/es/schema-component/antd/collection-select/index.mjs +1 -0
  779. package/es/schema-component/antd/color-picker/ColorPicker.mjs +86 -0
  780. package/es/schema-component/antd/color-picker/ReadPretty.mjs +19 -0
  781. package/es/schema-component/antd/color-picker/demos/demo1.mjs +49 -0
  782. package/es/schema-component/antd/color-picker/index.mjs +1 -0
  783. package/es/schema-component/antd/color-picker/util.mjs +158 -0
  784. package/es/schema-component/antd/color-select/ColorSelect.mjs +48 -0
  785. package/es/schema-component/antd/color-select/__tests__/color-select.test.mjs +16 -0
  786. package/es/schema-component/antd/color-select/demos/demo1.mjs +40 -0
  787. package/es/schema-component/antd/color-select/index.mjs +1 -0
  788. package/es/schema-component/antd/cron/Cron.mjs +68 -0
  789. package/es/schema-component/antd/cron/CronSet.mjs +106 -0
  790. package/es/schema-component/antd/cron/__tests__/cron-set.test.mjs +30 -0
  791. package/es/schema-component/antd/cron/demos/demo1.mjs +32 -0
  792. package/es/schema-component/antd/cron/demos/demo2.mjs +51 -0
  793. package/es/schema-component/antd/cron/index.mjs +2 -0
  794. package/es/schema-component/antd/custom-cascader/CustomCascader.mjs +34 -0
  795. package/es/schema-component/antd/custom-cascader/ReadPretty.mjs +30 -0
  796. package/es/schema-component/antd/custom-cascader/defaultFieldNames.mjs +6 -0
  797. package/es/schema-component/antd/custom-cascader/index.mjs +1 -0
  798. package/es/schema-component/antd/date-picker/DatePicker.mjs +144 -0
  799. package/es/schema-component/antd/date-picker/ReadPretty.mjs +38 -0
  800. package/es/schema-component/antd/date-picker/__tests__/date-picker.test.mjs +178 -0
  801. package/es/schema-component/antd/date-picker/__tests__/getDateRanges.test.mjs +110 -0
  802. package/es/schema-component/antd/date-picker/__tests__/mapDatePicker.test.mjs +200 -0
  803. package/es/schema-component/antd/date-picker/__tests__/mapRangePicker.test.mjs +59 -0
  804. package/es/schema-component/antd/date-picker/__tests__/util.test.mjs +166 -0
  805. package/es/schema-component/antd/date-picker/demos/demo1.mjs +57 -0
  806. package/es/schema-component/antd/date-picker/demos/demo10.mjs +61 -0
  807. package/es/schema-component/antd/date-picker/demos/demo11.mjs +65 -0
  808. package/es/schema-component/antd/date-picker/demos/demo2.mjs +60 -0
  809. package/es/schema-component/antd/date-picker/demos/demo3.mjs +58 -0
  810. package/es/schema-component/antd/date-picker/demos/demo4.mjs +72 -0
  811. package/es/schema-component/antd/date-picker/demos/demo5.mjs +71 -0
  812. package/es/schema-component/antd/date-picker/demos/demo6.mjs +71 -0
  813. package/es/schema-component/antd/date-picker/demos/demo7.mjs +61 -0
  814. package/es/schema-component/antd/date-picker/demos/demo8.mjs +61 -0
  815. package/es/schema-component/antd/date-picker/demos/demo9.mjs +61 -0
  816. package/es/schema-component/antd/date-picker/index.mjs +1 -0
  817. package/es/schema-component/antd/date-picker/util.mjs +179 -0
  818. package/es/schema-component/antd/details/Details.mjs +18 -0
  819. package/es/schema-component/antd/details/__tests__/details.test.mjs +10 -0
  820. package/es/schema-component/antd/details/demos/demo1.mjs +42 -0
  821. package/es/schema-component/antd/details/index.mjs +1 -0
  822. package/es/schema-component/antd/error-fallback/ErrorFallback.mjs +59 -0
  823. package/es/schema-component/antd/error-fallback/__tests__/error-fallback.test.mjs +17 -0
  824. package/es/schema-component/antd/error-fallback/demos/demo1.mjs +13 -0
  825. package/es/schema-component/antd/error-fallback/index.mjs +1 -0
  826. package/es/schema-component/antd/expand-action/Expand.Action.Design.mjs +107 -0
  827. package/es/schema-component/antd/expand-action/Expand.Action.mjs +70 -0
  828. package/es/schema-component/antd/expand-action/index.mjs +6 -0
  829. package/es/schema-component/antd/filter/DynamicComponent.mjs +58 -0
  830. package/es/schema-component/antd/filter/Filter.Action.Designer.mjs +121 -0
  831. package/es/schema-component/antd/filter/Filter.mjs +56 -0
  832. package/es/schema-component/antd/filter/FilterAction.mjs +164 -0
  833. package/es/schema-component/antd/filter/FilterGroup.mjs +134 -0
  834. package/es/schema-component/antd/filter/FilterItem.mjs +85 -0
  835. package/es/schema-component/antd/filter/FilterItems.mjs +24 -0
  836. package/es/schema-component/antd/filter/SaveDefaultValue.mjs +36 -0
  837. package/es/schema-component/antd/filter/__tests__/filter.test.mjs +113 -0
  838. package/es/schema-component/antd/filter/context.mjs +8 -0
  839. package/es/schema-component/antd/filter/demos/demo2.mjs +129 -0
  840. package/es/schema-component/antd/filter/demos/demo3.mjs +196 -0
  841. package/es/schema-component/antd/filter/demos/demo4.mjs +184 -0
  842. package/es/schema-component/antd/filter/demos/demo5.mjs +131 -0
  843. package/es/schema-component/antd/filter/demos/demo6.mjs +118 -0
  844. package/es/schema-component/antd/filter/index.mjs +3 -0
  845. package/es/schema-component/antd/filter/useFilterActionProps.mjs +213 -0
  846. package/es/schema-component/antd/filter/useOperators.mjs +23 -0
  847. package/es/schema-component/antd/filter/useValues.mjs +122 -0
  848. package/es/schema-component/antd/filter/utils.mjs +13 -0
  849. package/es/schema-component/antd/form/Form.Designer.mjs +12 -0
  850. package/es/schema-component/antd/form/Form.Settings.mjs +34 -0
  851. package/es/schema-component/antd/form/Form.mjs +148 -0
  852. package/es/schema-component/antd/form/__tests__/form.test.mjs +113 -0
  853. package/es/schema-component/antd/form/demos/apiClient.mjs +17 -0
  854. package/es/schema-component/antd/form/demos/demo1.mjs +73 -0
  855. package/es/schema-component/antd/form/demos/demo2.mjs +73 -0
  856. package/es/schema-component/antd/form/demos/demo3.mjs +72 -0
  857. package/es/schema-component/antd/form/demos/demo4.mjs +80 -0
  858. package/es/schema-component/antd/form/demos/demo5.mjs +114 -0
  859. package/es/schema-component/antd/form/demos/demo6.mjs +71 -0
  860. package/es/schema-component/antd/form/demos/demo7.mjs +75 -0
  861. package/es/schema-component/antd/form/demos/demo8.mjs +86 -0
  862. package/es/schema-component/antd/form/index.mjs +2 -0
  863. package/es/schema-component/antd/form-dialog/index.mjs +154 -0
  864. package/es/schema-component/antd/form-item/FormItem.FilterFormDesigner.mjs +7 -0
  865. package/es/schema-component/antd/form-item/FormItem.FilterFormSettings.mjs +128 -0
  866. package/es/schema-component/antd/form-item/FormItem.Settings.mjs +1204 -0
  867. package/es/schema-component/antd/form-item/FormItem.mjs +133 -0
  868. package/es/schema-component/antd/form-item/SchemaSettingOptions.mjs +562 -0
  869. package/es/schema-component/antd/form-item/__tests__/form-item.test.mjs +12 -0
  870. package/es/schema-component/antd/form-item/__tests__/hooks/useSpecialCase.test.mjs +27 -0
  871. package/es/schema-component/antd/form-item/__tests__/utils.test.mjs +65 -0
  872. package/es/schema-component/antd/form-item/demos/demo1.mjs +37 -0
  873. package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.mjs +69 -0
  874. package/es/schema-component/antd/form-item/hooks/useParseDefaultValue.mjs +84 -0
  875. package/es/schema-component/antd/form-item/hooks/useSpecialCase.mjs +106 -0
  876. package/es/schema-component/antd/form-item/index.mjs +4 -0
  877. package/es/schema-component/antd/form-item/utils.mjs +7 -0
  878. package/es/schema-component/antd/form-tab/index.mjs +140 -0
  879. package/es/schema-component/antd/form-v2/Form.Designer.mjs +33 -0
  880. package/es/schema-component/antd/form-v2/Form.FilterDesigner.mjs +15 -0
  881. package/es/schema-component/antd/form-v2/Form.Settings.mjs +315 -0
  882. package/es/schema-component/antd/form-v2/Form.mjs +330 -0
  883. package/es/schema-component/antd/form-v2/FormField.mjs +30 -0
  884. package/es/schema-component/antd/form-v2/Templates.mjs +191 -0
  885. package/es/schema-component/antd/form-v2/__tests__/form-v2.test.mjs +47 -0
  886. package/es/schema-component/antd/form-v2/demos/collections.mjs +1565 -0
  887. package/es/schema-component/antd/form-v2/demos/demo1.mjs +108 -0
  888. package/es/schema-component/antd/form-v2/demos/demo2.mjs +131 -0
  889. package/es/schema-component/antd/form-v2/demos/demo3.mjs +117 -0
  890. package/es/schema-component/antd/form-v2/index.mjs +14 -0
  891. package/es/schema-component/antd/form-v2/utils.mjs +143 -0
  892. package/es/schema-component/antd/grid/Block.mjs +24 -0
  893. package/es/schema-component/antd/grid/Grid.mjs +479 -0
  894. package/es/schema-component/antd/grid/Grid.style.mjs +45 -0
  895. package/es/schema-component/antd/grid/__tests__/grid.test.mjs +26 -0
  896. package/es/schema-component/antd/grid/demos/demo1.mjs +194 -0
  897. package/es/schema-component/antd/grid/demos/demo2.mjs +97 -0
  898. package/es/schema-component/antd/grid/demos/demo3.mjs +83 -0
  899. package/es/schema-component/antd/grid/index.mjs +2 -0
  900. package/es/schema-component/antd/grid-card/GridCard.Decorator.mjs +67 -0
  901. package/es/schema-component/antd/grid-card/GridCard.Decorator.style.mjs +24 -0
  902. package/es/schema-component/antd/grid-card/GridCard.Designer.mjs +252 -0
  903. package/es/schema-component/antd/grid-card/GridCard.Item.mjs +77 -0
  904. package/es/schema-component/antd/grid-card/GridCard.mjs +156 -0
  905. package/es/schema-component/antd/grid-card/__tests__/grid-card.test.mjs +9 -0
  906. package/es/schema-component/antd/grid-card/demos/demo1.mjs +6 -0
  907. package/es/schema-component/antd/grid-card/hooks.mjs +32 -0
  908. package/es/schema-component/antd/grid-card/index.mjs +1 -0
  909. package/es/schema-component/antd/grid-card/options.mjs +35 -0
  910. package/es/schema-component/antd/icon-picker/IconFilterInput.mjs +17 -0
  911. package/es/schema-component/antd/icon-picker/IconList.mjs +50 -0
  912. package/es/schema-component/antd/icon-picker/IconPicker.mjs +74 -0
  913. package/es/schema-component/antd/icon-picker/__tests__/icon-picker.test.mjs +25 -0
  914. package/es/schema-component/antd/icon-picker/demos/icon-picker.mjs +40 -0
  915. package/es/schema-component/antd/icon-picker/index.mjs +1 -0
  916. package/es/schema-component/antd/index.mjs +65 -0
  917. package/es/schema-component/antd/input/EllipsisWithTooltip.mjs +64 -0
  918. package/es/schema-component/antd/input/Input.mjs +27 -0
  919. package/es/schema-component/antd/input/Json.mjs +60 -0
  920. package/es/schema-component/antd/input/ReadPretty.mjs +153 -0
  921. package/es/schema-component/antd/input/__tests__/Input.test.mjs +115 -0
  922. package/es/schema-component/antd/input/demos/input.mjs +40 -0
  923. package/es/schema-component/antd/input/demos/json.mjs +46 -0
  924. package/es/schema-component/antd/input/demos/textarea.mjs +68 -0
  925. package/es/schema-component/antd/input/demos/url.mjs +42 -0
  926. package/es/schema-component/antd/input/index.mjs +5 -0
  927. package/es/schema-component/antd/input/shared.mjs +8 -0
  928. package/es/schema-component/antd/input-number/InputNumber.mjs +19 -0
  929. package/es/schema-component/antd/input-number/ReadPretty.mjs +115 -0
  930. package/es/schema-component/antd/input-number/__tests__/input-number.test.mjs +116 -0
  931. package/es/schema-component/antd/input-number/demos/addonBefore&addonAfter.mjs +48 -0
  932. package/es/schema-component/antd/input-number/demos/highPrecisionDecimals.mjs +50 -0
  933. package/es/schema-component/antd/input-number/demos/inputNumber.mjs +40 -0
  934. package/es/schema-component/antd/input-number/index.mjs +1 -0
  935. package/es/schema-component/antd/list/List.Decorator.mjs +94 -0
  936. package/es/schema-component/antd/list/List.Designer.mjs +206 -0
  937. package/es/schema-component/antd/list/List.Item.mjs +53 -0
  938. package/es/schema-component/antd/list/List.mjs +80 -0
  939. package/es/schema-component/antd/list/List.style.mjs +55 -0
  940. package/es/schema-component/antd/list/__tests__/list.test.mjs +9 -0
  941. package/es/schema-component/antd/list/demos/demo1.mjs +6 -0
  942. package/es/schema-component/antd/list/hooks.mjs +11 -0
  943. package/es/schema-component/antd/list/index.mjs +1 -0
  944. package/es/schema-component/antd/markdown/Markdown.Void.Designer.mjs +27 -0
  945. package/es/schema-component/antd/markdown/Markdown.Void.mjs +110 -0
  946. package/es/schema-component/antd/markdown/Markdown.mjs +46 -0
  947. package/es/schema-component/antd/markdown/__tests__/markdown.test.mjs +27 -0
  948. package/es/schema-component/antd/markdown/demos/demo1.mjs +40 -0
  949. package/es/schema-component/antd/markdown/demos/demo2.mjs +51 -0
  950. package/es/schema-component/antd/markdown/index.mjs +1 -0
  951. package/es/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.mjs +51 -0
  952. package/es/schema-component/antd/markdown/md.mjs +13 -0
  953. package/es/schema-component/antd/markdown/style.mjs +220 -0
  954. package/es/schema-component/antd/markdown/util.mjs +38 -0
  955. package/es/schema-component/antd/menu/Menu.Designer.mjs +435 -0
  956. package/es/schema-component/antd/menu/Menu.mjs +591 -0
  957. package/es/schema-component/antd/menu/Menu.styles.mjs +77 -0
  958. package/es/schema-component/antd/menu/MenuItemInitializers/index.mjs +11 -0
  959. package/es/schema-component/antd/menu/__tests__/menu.test.mjs +38 -0
  960. package/es/schema-component/antd/menu/demos/demo1.mjs +93 -0
  961. package/es/schema-component/antd/menu/demos/demo2.mjs +96 -0
  962. package/es/schema-component/antd/menu/demos/demo3.mjs +135 -0
  963. package/es/schema-component/antd/menu/index.mjs +3 -0
  964. package/es/schema-component/antd/menu/locale.mjs +3 -0
  965. package/es/schema-component/antd/menu/util.mjs +34 -0
  966. package/es/schema-component/antd/nanoIDInput/NanoIDInput.mjs +33 -0
  967. package/es/schema-component/antd/nanoIDInput/index.mjs +1 -0
  968. package/es/schema-component/antd/page/FixedBlock.mjs +96 -0
  969. package/es/schema-component/antd/page/FixedBlockDesignerItem.mjs +40 -0
  970. package/es/schema-component/antd/page/Page.Settings.mjs +147 -0
  971. package/es/schema-component/antd/page/Page.mjs +220 -0
  972. package/es/schema-component/antd/page/PageTab.Settings.mjs +88 -0
  973. package/es/schema-component/antd/page/PageTabDesigner.mjs +64 -0
  974. package/es/schema-component/antd/page/__tests__/page.test.mjs +18 -0
  975. package/es/schema-component/antd/page/demos/demo1.mjs +38 -0
  976. package/es/schema-component/antd/page/hooks/useIsBlockInPage.mjs +12 -0
  977. package/es/schema-component/antd/page/index.mjs +5 -0
  978. package/es/schema-component/antd/page/style.mjs +143 -0
  979. package/es/schema-component/antd/pagination/index.mjs +22 -0
  980. package/es/schema-component/antd/password/Password.mjs +80 -0
  981. package/es/schema-component/antd/password/PasswordStrength.mjs +11 -0
  982. package/es/schema-component/antd/password/__tests__/password.test.mjs +28 -0
  983. package/es/schema-component/antd/password/__tests__/utils.test.mjs +21 -0
  984. package/es/schema-component/antd/password/demos/demo1.mjs +40 -0
  985. package/es/schema-component/antd/password/demos/demo2.mjs +43 -0
  986. package/es/schema-component/antd/password/index.mjs +1 -0
  987. package/es/schema-component/antd/password/utils.mjs +104 -0
  988. package/es/schema-component/antd/percent/Percent.mjs +34 -0
  989. package/es/schema-component/antd/percent/__tests__/percent.test.mjs +16 -0
  990. package/es/schema-component/antd/percent/demos/percent.mjs +40 -0
  991. package/es/schema-component/antd/percent/index.mjs +1 -0
  992. package/es/schema-component/antd/popover/Popover.mjs +39 -0
  993. package/es/schema-component/antd/popover/index.mjs +1 -0
  994. package/es/schema-component/antd/preview/Preview.mjs +273 -0
  995. package/es/schema-component/antd/preview/__tests__/preview.test.mjs +11 -0
  996. package/es/schema-component/antd/preview/demos/demo1.mjs +81 -0
  997. package/es/schema-component/antd/preview/index.mjs +1 -0
  998. package/es/schema-component/antd/quick-edit/QuickEdit.mjs +115 -0
  999. package/es/schema-component/antd/quick-edit/index.mjs +1 -0
  1000. package/es/schema-component/antd/radio/Radio.mjs +40 -0
  1001. package/es/schema-component/antd/radio/__tests__/radio.test.mjs +43 -0
  1002. package/es/schema-component/antd/radio/demos/demo1.mjs +40 -0
  1003. package/es/schema-component/antd/radio/demos/demo2.mjs +52 -0
  1004. package/es/schema-component/antd/radio/demos/demo3.mjs +54 -0
  1005. package/es/schema-component/antd/radio/index.mjs +1 -0
  1006. package/es/schema-component/antd/record-picker/InputRecordPicker.mjs +252 -0
  1007. package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.mjs +120 -0
  1008. package/es/schema-component/antd/record-picker/RecordPicker.mjs +5 -0
  1009. package/es/schema-component/antd/record-picker/__tests__/record-picker.test.mjs +27 -0
  1010. package/es/schema-component/antd/record-picker/demos/demo1.mjs +175 -0
  1011. package/es/schema-component/antd/record-picker/demos/mockData.mjs +211 -0
  1012. package/es/schema-component/antd/record-picker/index.mjs +10 -0
  1013. package/es/schema-component/antd/record-picker/useFieldNames.mjs +12 -0
  1014. package/es/schema-component/antd/record-picker/util.mjs +37 -0
  1015. package/es/schema-component/antd/remote-select/ReadPretty.mjs +44 -0
  1016. package/es/schema-component/antd/remote-select/RemoteSelect.mjs +224 -0
  1017. package/es/schema-component/antd/remote-select/__tests__/remote-select.test.mjs +16 -0
  1018. package/es/schema-component/antd/remote-select/demos/demo1.mjs +55 -0
  1019. package/es/schema-component/antd/remote-select/index.mjs +1 -0
  1020. package/es/schema-component/antd/remote-select/shared.mjs +3 -0
  1021. package/es/schema-component/antd/rich-text/RichText.mjs +59 -0
  1022. package/es/schema-component/antd/rich-text/__tests__/rich-text.test.mjs +13 -0
  1023. package/es/schema-component/antd/rich-text/demos/demo1.mjs +41 -0
  1024. package/es/schema-component/antd/rich-text/index.mjs +1 -0
  1025. package/es/schema-component/antd/rich-text/style.mjs +813 -0
  1026. package/es/schema-component/antd/rich-text/style.mjs.LICENSE.txt +6 -0
  1027. package/es/schema-component/antd/scroll-area/ScrollArea.mjs +43 -0
  1028. package/es/schema-component/antd/scroll-area/index.mjs +1 -0
  1029. package/es/schema-component/antd/select/FormulaSelect.mjs +196 -0
  1030. package/es/schema-component/antd/select/ReadPretty.mjs +33 -0
  1031. package/es/schema-component/antd/select/Select.mjs +155 -0
  1032. package/es/schema-component/antd/select/__tests__/select.test.mjs +41 -0
  1033. package/es/schema-component/antd/select/__tests__/utils.test.mjs +129 -0
  1034. package/es/schema-component/antd/select/demos/demo1.mjs +72 -0
  1035. package/es/schema-component/antd/select/demos/demo2.mjs +76 -0
  1036. package/es/schema-component/antd/select/demos/demo3.mjs +84 -0
  1037. package/es/schema-component/antd/select/index.mjs +2 -0
  1038. package/es/schema-component/antd/select/utils.mjs +38 -0
  1039. package/es/schema-component/antd/space/index.mjs +19 -0
  1040. package/es/schema-component/antd/table/Table.Array.Designer.mjs +12 -0
  1041. package/es/schema-component/antd/table/Table.Array.mjs +293 -0
  1042. package/es/schema-component/antd/table/Table.Column.ActionBar.mjs +42 -0
  1043. package/es/schema-component/antd/table/Table.Column.Decorator.mjs +49 -0
  1044. package/es/schema-component/antd/table/Table.Column.Designer.mjs +144 -0
  1045. package/es/schema-component/antd/table/Table.Column.mjs +10 -0
  1046. package/es/schema-component/antd/table/Table.Designer.mjs +17 -0
  1047. package/es/schema-component/antd/table/Table.RowActionDesigner.mjs +33 -0
  1048. package/es/schema-component/antd/table/Table.RowSelection.mjs +29 -0
  1049. package/es/schema-component/antd/table/Table.Void.Designer.mjs +241 -0
  1050. package/es/schema-component/antd/table/Table.Void.mjs +119 -0
  1051. package/es/schema-component/antd/table/__tests__/table.test.mjs +21 -0
  1052. package/es/schema-component/antd/table/demos/demo1.mjs +63 -0
  1053. package/es/schema-component/antd/table/demos/demo2.mjs +63 -0
  1054. package/es/schema-component/antd/table/demos/demo3.mjs +63 -0
  1055. package/es/schema-component/antd/table/demos/demo4.mjs +217 -0
  1056. package/es/schema-component/antd/table/index.mjs +24 -0
  1057. package/es/schema-component/antd/table-v2/Table.ActionColumnDesigner.mjs +33 -0
  1058. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.mjs +49 -0
  1059. package/es/schema-component/antd/table-v2/Table.Column.Decorator.mjs +60 -0
  1060. package/es/schema-component/antd/table-v2/Table.Column.Designer.mjs +445 -0
  1061. package/es/schema-component/antd/table-v2/Table.Column.mjs +11 -0
  1062. package/es/schema-component/antd/table-v2/Table.Designer.mjs +17 -0
  1063. package/es/schema-component/antd/table-v2/Table.Index.mjs +10 -0
  1064. package/es/schema-component/antd/table-v2/Table.mjs +445 -0
  1065. package/es/schema-component/antd/table-v2/Table.styles.mjs +135 -0
  1066. package/es/schema-component/antd/table-v2/TableBlockDesigner.mjs +328 -0
  1067. package/es/schema-component/antd/table-v2/TableField.mjs +51 -0
  1068. package/es/schema-component/antd/table-v2/TableSelector.mjs +3 -0
  1069. package/es/schema-component/antd/table-v2/TableSelectorDesigner.mjs +272 -0
  1070. package/es/schema-component/antd/table-v2/__tests__/table-v2.test.mjs +13 -0
  1071. package/es/schema-component/antd/table-v2/components/ColumnFieldProvider.mjs +39 -0
  1072. package/es/schema-component/antd/table-v2/demos/collections.mjs +1560 -0
  1073. package/es/schema-component/antd/table-v2/demos/demo1.mjs +220 -0
  1074. package/es/schema-component/antd/table-v2/demos/demo2.mjs +117 -0
  1075. package/es/schema-component/antd/table-v2/index.mjs +21 -0
  1076. package/es/schema-component/antd/table-v2/utils.mjs +13 -0
  1077. package/es/schema-component/antd/tabs/Tabs.Designer.mjs +132 -0
  1078. package/es/schema-component/antd/tabs/Tabs.mjs +98 -0
  1079. package/es/schema-component/antd/tabs/__tests__/tabs.test.mjs +14 -0
  1080. package/es/schema-component/antd/tabs/context.mjs +12 -0
  1081. package/es/schema-component/antd/tabs/demos/demo1.mjs +67 -0
  1082. package/es/schema-component/antd/tabs/index.mjs +2 -0
  1083. package/es/schema-component/antd/time-picker/ReadPretty.mjs +21 -0
  1084. package/es/schema-component/antd/time-picker/TimePicker.mjs +22 -0
  1085. package/es/schema-component/antd/time-picker/__tests__/time-picker.test.mjs +45 -0
  1086. package/es/schema-component/antd/time-picker/demos/demo1.mjs +40 -0
  1087. package/es/schema-component/antd/time-picker/demos/demo2.mjs +40 -0
  1088. package/es/schema-component/antd/time-picker/index.mjs +1 -0
  1089. package/es/schema-component/antd/tree/Tree.mjs +82 -0
  1090. package/es/schema-component/antd/tree/index.mjs +3 -0
  1091. package/es/schema-component/antd/tree-select/ReadPretty.mjs +62 -0
  1092. package/es/schema-component/antd/tree-select/TreeSelect.mjs +14 -0
  1093. package/es/schema-component/antd/tree-select/__tests__/tree-select.test.mjs +14 -0
  1094. package/es/schema-component/antd/tree-select/demos/demo1.mjs +84 -0
  1095. package/es/schema-component/antd/tree-select/index.mjs +1 -0
  1096. package/es/schema-component/antd/unixTimestamp/UnixTimestamp.mjs +42 -0
  1097. package/es/schema-component/antd/unixTimestamp/index.mjs +1 -0
  1098. package/es/schema-component/antd/upload/ReadPretty.mjs +199 -0
  1099. package/es/schema-component/antd/upload/Upload.mjs +330 -0
  1100. package/es/schema-component/antd/upload/__tests__/upload.test.mjs +13 -0
  1101. package/es/schema-component/antd/upload/demos/apiClient.mjs +43 -0
  1102. package/es/schema-component/antd/upload/demos/demo1.mjs +48 -0
  1103. package/es/schema-component/antd/upload/demos/demo2.mjs +115 -0
  1104. package/es/schema-component/antd/upload/index.mjs +1 -0
  1105. package/es/schema-component/antd/upload/placeholder.mjs +63 -0
  1106. package/es/schema-component/antd/upload/shared.mjs +185 -0
  1107. package/es/schema-component/antd/upload/style.mjs +75 -0
  1108. package/es/schema-component/antd/upload/type.d.mjs +1 -0
  1109. package/es/schema-component/antd/variable/CodeMirror.mjs +98 -0
  1110. package/es/schema-component/antd/variable/Input.mjs +310 -0
  1111. package/es/schema-component/antd/variable/JSONInput.mjs +37 -0
  1112. package/es/schema-component/antd/variable/RawTextArea.mjs +99 -0
  1113. package/es/schema-component/antd/variable/TextArea.mjs +387 -0
  1114. package/es/schema-component/antd/variable/Variable.mjs +30 -0
  1115. package/es/schema-component/antd/variable/VariableSelect.mjs +66 -0
  1116. package/es/schema-component/antd/variable/VariableSelect.style.mjs +30 -0
  1117. package/es/schema-component/antd/variable/XButton.mjs +21 -0
  1118. package/es/schema-component/antd/variable/__tests__/variable.test.mjs +45 -0
  1119. package/es/schema-component/antd/variable/demos/demo1.mjs +44 -0
  1120. package/es/schema-component/antd/variable/demos/demo2.mjs +44 -0
  1121. package/es/schema-component/antd/variable/demos/demo3.mjs +44 -0
  1122. package/es/schema-component/antd/variable/index.mjs +1 -0
  1123. package/es/schema-component/antd/variable/style.mjs +175 -0
  1124. package/es/schema-component/common/dnd-context/index.mjs +100 -0
  1125. package/es/schema-component/common/index.mjs +2 -0
  1126. package/es/schema-component/common/infinite-scroll/infinite-scroll.mjs +123 -0
  1127. package/es/schema-component/common/infinite-scroll/style.mjs +28 -0
  1128. package/es/schema-component/common/sortable-item/SortableItem.mjs +131 -0
  1129. package/es/schema-component/common/sortable-item/index.mjs +1 -0
  1130. package/es/schema-component/common/utils/logic.mjs +386 -0
  1131. package/es/schema-component/common/utils/uitls.mjs +111 -0
  1132. package/es/schema-component/context.mjs +4 -0
  1133. package/es/schema-component/core/DesignableSwitch.mjs +37 -0
  1134. package/es/schema-component/core/FormProvider.mjs +53 -0
  1135. package/es/schema-component/core/RemoteSchemaComponent.mjs +44 -0
  1136. package/es/schema-component/core/SchemaComponent.mjs +60 -0
  1137. package/es/schema-component/core/SchemaComponentOptions.mjs +44 -0
  1138. package/es/schema-component/core/SchemaComponentPlugin.d.ts +1 -1
  1139. package/es/schema-component/core/SchemaComponentPlugin.mjs +13 -0
  1140. package/es/schema-component/core/SchemaComponentProvider.mjs +84 -0
  1141. package/es/schema-component/core/index.mjs +7 -0
  1142. package/es/schema-component/demos/demo1.mjs +89 -0
  1143. package/es/schema-component/demos/demo2.mjs +23 -0
  1144. package/es/schema-component/demos/demo3.mjs +24 -0
  1145. package/es/schema-component/demos/demo4.mjs +24 -0
  1146. package/es/schema-component/hooks/__tests__/designable.test.mjs +548 -0
  1147. package/es/schema-component/hooks/__tests__/splitWrapSchema.test.mjs +89 -0
  1148. package/es/schema-component/hooks/index.mjs +12 -0
  1149. package/es/schema-component/hooks/useAttach.mjs +16 -0
  1150. package/es/schema-component/hooks/useCompile.mjs +40 -0
  1151. package/es/schema-component/hooks/useComponent.mjs +10 -0
  1152. package/es/schema-component/hooks/useDesignable.mjs +675 -0
  1153. package/es/schema-component/hooks/useDesigner.mjs +19 -0
  1154. package/es/schema-component/hooks/useFieldComponentOptions.mjs +87 -0
  1155. package/es/schema-component/hooks/useFieldModeOptions.mjs +283 -0
  1156. package/es/schema-component/hooks/useFieldProps.mjs +18 -0
  1157. package/es/schema-component/hooks/useFieldTitle.mjs +22 -0
  1158. package/es/schema-component/hooks/useProps.mjs +13 -0
  1159. package/es/schema-component/hooks/useSchemaComponentContext.mjs +6 -0
  1160. package/es/schema-component/hooks/useTableSize.mjs +31 -0
  1161. package/es/schema-component/index.mjs +6 -0
  1162. package/es/schema-component/types.mjs +1 -0
  1163. package/es/schema-initializer/SchemaInitializerPlugin.d.ts +1 -1
  1164. package/es/schema-initializer/SchemaInitializerPlugin.mjs +126 -0
  1165. package/es/schema-initializer/buttons/CustomFormItemInitializers.mjs +46 -0
  1166. package/es/schema-initializer/buttons/FormItemInitializers.mjs +152 -0
  1167. package/es/schema-initializer/buttons/RecordBlockInitializers.mjs +375 -0
  1168. package/es/schema-initializer/buttons/SubTableActionInitializers.mjs +35 -0
  1169. package/es/schema-initializer/buttons/TabPaneInitializers.mjs +162 -0
  1170. package/es/schema-initializer/buttons/index.mjs +6 -0
  1171. package/es/schema-initializer/components/CreateRecordAction.mjs +340 -0
  1172. package/es/schema-initializer/components/DeletedField.mjs +13 -0
  1173. package/es/schema-initializer/components/assigned-field/AssignedField.mjs +119 -0
  1174. package/es/schema-initializer/components/assigned-field/index.mjs +1 -0
  1175. package/es/schema-initializer/components/index.mjs +2 -0
  1176. package/es/schema-initializer/demos/basic.mjs +62 -0
  1177. package/es/schema-initializer/demos/build-type.mjs +83 -0
  1178. package/es/schema-initializer/demos/custom-button.mjs +94 -0
  1179. package/es/schema-initializer/demos/custom-items-component.mjs +100 -0
  1180. package/es/schema-initializer/demos/dynamic-visible-children.mjs +81 -0
  1181. package/es/schema-initializer/demos/insert-schema-action.mjs +92 -0
  1182. package/es/schema-initializer/demos/insert-schema-basic.mjs +112 -0
  1183. package/es/schema-initializer/demos/insert-schema-form-item.mjs +136 -0
  1184. package/es/schema-initializer/demos/nested-items.mjs +148 -0
  1185. package/es/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.mjs +21 -0
  1186. package/es/schema-initializer/index.mjs +20 -0
  1187. package/es/schema-initializer/items/ActionInitializer.mjs +14 -0
  1188. package/es/schema-initializer/items/BlockInitializer.mjs +27 -0
  1189. package/es/schema-initializer/items/CreateFilterActionInitializer.mjs +21 -0
  1190. package/es/schema-initializer/items/CreateResetActionInitializer.mjs +16 -0
  1191. package/es/schema-initializer/items/CustomFilterFormItemInitializer.mjs +461 -0
  1192. package/es/schema-initializer/items/CustomizeActionInitializer.mjs +12 -0
  1193. package/es/schema-initializer/items/DataBlockInitializer.mjs +310 -0
  1194. package/es/schema-initializer/items/DeleteEventActionInitializer.mjs +24 -0
  1195. package/es/schema-initializer/items/FilterBlockInitializer.mjs +3 -0
  1196. package/es/schema-initializer/items/G2PlotInitializer.mjs +16 -0
  1197. package/es/schema-initializer/items/InitializerWithSwitch.mjs +25 -0
  1198. package/es/schema-initializer/items/RecordAssociationBlockInitializer.mjs +55 -0
  1199. package/es/schema-initializer/items/RecordAssociationDetailsBlockInitializer.mjs +55 -0
  1200. package/es/schema-initializer/items/RecordAssociationFormBlockInitializer.mjs +81 -0
  1201. package/es/schema-initializer/items/RecordAssociationGridCardBlockInitializer.mjs +55 -0
  1202. package/es/schema-initializer/items/RecordAssociationListBlockInitializer.mjs +55 -0
  1203. package/es/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.mjs +80 -0
  1204. package/es/schema-initializer/items/SelectActionInitializer.mjs +63 -0
  1205. package/es/schema-initializer/items/SubmitActionInitializer.mjs +21 -0
  1206. package/es/schema-initializer/items/TableActionColumnInitializer.mjs +39 -0
  1207. package/es/schema-initializer/items/index.mjs +23 -0
  1208. package/es/schema-initializer/style.mjs +17 -0
  1209. package/es/schema-initializer/utils.mjs +1368 -0
  1210. package/es/schema-items/GeneralSchemaItems.mjs +150 -0
  1211. package/es/schema-items/GeneralSettings.mjs +207 -0
  1212. package/es/schema-items/OpenModeSchemaItems.mjs +186 -0
  1213. package/es/schema-items/index.mjs +2 -0
  1214. package/es/schema-settings/DataTemplates/FormDataTemplates.mjs +274 -0
  1215. package/es/schema-settings/DataTemplates/TreeLabel.mjs +30 -0
  1216. package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.mjs +46 -0
  1217. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.mjs +256 -0
  1218. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.style.mjs +7 -0
  1219. package/es/schema-settings/DataTemplates/components/Designer.mjs +159 -0
  1220. package/es/schema-settings/DataTemplates/hooks/useCollectionState.mjs +270 -0
  1221. package/es/schema-settings/DataTemplates/index.mjs +1 -0
  1222. package/es/schema-settings/DataTemplates/utils.mjs +233 -0
  1223. package/es/schema-settings/DateFormat/ExpiresRadio.mjs +122 -0
  1224. package/es/schema-settings/EditCustomDefaultValue.mjs +108 -0
  1225. package/es/schema-settings/EditFormulaTitleField.d.ts +2 -2
  1226. package/es/schema-settings/EditFormulaTitleField.mjs +97 -0
  1227. package/es/schema-settings/EnableChildCollections/DynamicComponent.mjs +64 -0
  1228. package/es/schema-settings/EnableChildCollections/index.mjs +101 -0
  1229. package/es/schema-settings/GeneralSchemaDesigner.mjs +264 -0
  1230. package/es/schema-settings/LinkageRules/DynamicComponent.mjs +56 -0
  1231. package/es/schema-settings/LinkageRules/LinkageRuleAction.mjs +223 -0
  1232. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.mjs +83 -0
  1233. package/es/schema-settings/LinkageRules/ValueDynamicComponent.mjs +156 -0
  1234. package/es/schema-settings/LinkageRules/Variables.mjs +98 -0
  1235. package/es/schema-settings/LinkageRules/action-hooks.mjs +103 -0
  1236. package/es/schema-settings/LinkageRules/components/EnableLinkage.mjs +38 -0
  1237. package/es/schema-settings/LinkageRules/components/LinkageHeader.mjs +254 -0
  1238. package/es/schema-settings/LinkageRules/components/LinkageHeader.style.mjs +7 -0
  1239. package/es/schema-settings/LinkageRules/context.mjs +8 -0
  1240. package/es/schema-settings/LinkageRules/index.mjs +194 -0
  1241. package/es/schema-settings/LinkageRules/type.mjs +15 -0
  1242. package/es/schema-settings/LinkageRules/useValues.mjs +68 -0
  1243. package/es/schema-settings/SchemaSettingCollection.mjs +50 -0
  1244. package/es/schema-settings/SchemaSettingComponent.d.ts +1 -1
  1245. package/es/schema-settings/SchemaSettingComponent.mjs +38 -0
  1246. package/es/schema-settings/SchemaSettings.mjs +1334 -0
  1247. package/es/schema-settings/SchemaSettingsDataScope.mjs +100 -0
  1248. package/es/schema-settings/SchemaSettingsDateFormat.mjs +199 -0
  1249. package/es/schema-settings/SchemaSettingsDefaultValue.mjs +204 -0
  1250. package/es/schema-settings/SchemaSettingsNumberFormat.mjs +178 -0
  1251. package/es/schema-settings/SchemaSettingsPlugin.mjs +108 -0
  1252. package/es/schema-settings/SchemaSettingsSortingRule.mjs +123 -0
  1253. package/es/schema-settings/VariableInput/VariableInput.mjs +164 -0
  1254. package/es/schema-settings/VariableInput/hooks/index.mjs +3 -0
  1255. package/es/schema-settings/VariableInput/hooks/useBaseVariable.mjs +160 -0
  1256. package/es/schema-settings/VariableInput/hooks/useBlockCollection.mjs +10 -0
  1257. package/es/schema-settings/VariableInput/hooks/useContextAssociationFields.mjs +97 -0
  1258. package/es/schema-settings/VariableInput/hooks/useDateVariable.mjs +163 -0
  1259. package/es/schema-settings/VariableInput/hooks/useFilterVariable.mjs +52 -0
  1260. package/es/schema-settings/VariableInput/hooks/useFormVariable.mjs +42 -0
  1261. package/es/schema-settings/VariableInput/hooks/useIterationVariable.mjs +45 -0
  1262. package/es/schema-settings/VariableInput/hooks/useParentRecordVariable.mjs +43 -0
  1263. package/es/schema-settings/VariableInput/hooks/usePopupVariable.mjs +24 -0
  1264. package/es/schema-settings/VariableInput/hooks/useRecordVariable.mjs +38 -0
  1265. package/es/schema-settings/VariableInput/hooks/useRoleVariable.mjs +41 -0
  1266. package/es/schema-settings/VariableInput/hooks/useUserVariable.mjs +41 -0
  1267. package/es/schema-settings/VariableInput/hooks/useVariableOptions.mjs +102 -0
  1268. package/es/schema-settings/VariableInput/index.mjs +2 -0
  1269. package/es/schema-settings/VariableInput/type.mjs +0 -0
  1270. package/es/schema-settings/VariableInput/utils/formatVariableScop.mjs +11 -0
  1271. package/es/schema-settings/demos/basic.mjs +60 -0
  1272. package/es/schema-settings/demos/built-type.mjs +142 -0
  1273. package/es/schema-settings/demos/custom-component.mjs +42 -0
  1274. package/es/schema-settings/demos/demo3.mjs +100 -0
  1275. package/es/schema-settings/demos/schema-basic.mjs +64 -0
  1276. package/es/schema-settings/filter-form/FormFilterScope.mjs +109 -0
  1277. package/es/schema-settings/filter-form/context.mjs +6 -0
  1278. package/es/schema-settings/hooks/useFilterFormCustomProps.mjs +16 -0
  1279. package/es/schema-settings/hooks/useGetAriaLabelOfDesigner.mjs +24 -0
  1280. package/es/schema-settings/hooks/useIsAllowToSetDefaultValue.mjs +67 -0
  1281. package/es/schema-settings/hooks/useIsShowMultipleSwitch.mjs +16 -0
  1282. package/es/schema-settings/hooks/useParseDataScopeFilter.mjs +54 -0
  1283. package/es/schema-settings/index.mjs +18 -0
  1284. package/es/schema-settings/isPatternDisabled.mjs +5 -0
  1285. package/es/schema-settings/styles.mjs +84 -0
  1286. package/es/schema-settings/types.mjs +0 -0
  1287. package/es/schema-templates/BlockTemplate.mjs +41 -0
  1288. package/es/schema-templates/BlockTemplateDetails.mjs +100 -0
  1289. package/es/schema-templates/BlockTemplatePage.mjs +32 -0
  1290. package/es/schema-templates/SchemaTemplateManagerProvider.mjs +74 -0
  1291. package/es/schema-templates/collections/uiSchemaTemplates.mjs +19 -0
  1292. package/es/schema-templates/index.mjs +4 -0
  1293. package/es/schema-templates/schemas/CollectionTitle.mjs +37 -0
  1294. package/es/schema-templates/schemas/uiSchemaTemplates.mjs +231 -0
  1295. package/es/schema-templates/useSchemaTemplateManager.mjs +88 -0
  1296. package/es/style/css-variable/CSSVariableProvider.mjs +74 -0
  1297. package/es/style/css-variable/index.mjs +3 -0
  1298. package/es/style/index.mjs +11 -0
  1299. package/es/style/theme/AntdAppProvider.mjs +35 -0
  1300. package/es/style/theme/defaultTheme.mjs +19 -0
  1301. package/es/style/theme/index.mjs +63 -0
  1302. package/es/style/theme/type.mjs +0 -0
  1303. package/es/style/useToken.mjs +6 -0
  1304. package/es/testUtils/index.mjs +1 -0
  1305. package/es/testUtils/mockAPIClient.mjs +32 -0
  1306. package/es/user/ChangePassword.mjs +157 -0
  1307. package/es/user/CurrentUser.mjs +222 -0
  1308. package/es/user/CurrentUserProvider.mjs +59 -0
  1309. package/es/user/CurrentUserSettingsMenuProvider.mjs +69 -0
  1310. package/es/user/EditProfile.mjs +149 -0
  1311. package/es/user/LanguageSettings.mjs +46 -0
  1312. package/es/user/SwitchRole.mjs +41 -0
  1313. package/es/user/VerificationCode.mjs +83 -0
  1314. package/es/user/__tests__/current-user-settings-menu-provider.test.mjs +36 -0
  1315. package/es/user/index.mjs +3 -0
  1316. package/es/variables/VariablesProvider.mjs +214 -0
  1317. package/es/variables/__tests__/useVariables.test.mjs +406 -0
  1318. package/es/variables/__tests__/utils/filterEmptyValues.test.mjs +46 -0
  1319. package/es/variables/__tests__/utils/getPath.test.mjs +4 -0
  1320. package/es/variables/__tests__/utils/getVariableName.test.mjs +4 -0
  1321. package/es/variables/__tests__/utils/isVariable.test.mjs +22 -0
  1322. package/es/variables/__tests__/utils/transformVariableValue.test.mjs +136 -0
  1323. package/es/variables/__tests__/utils/uniq.test.mjs +77 -0
  1324. package/es/variables/constants.mjs +2 -0
  1325. package/es/variables/hooks/useBuiltinVariables.mjs +51 -0
  1326. package/es/variables/hooks/useContextVariable.mjs +27 -0
  1327. package/es/variables/hooks/useLocalVariables.mjs +68 -0
  1328. package/es/variables/hooks/useVariables.mjs +5 -0
  1329. package/es/variables/index.mjs +15 -0
  1330. package/es/variables/types.mjs +0 -0
  1331. package/es/variables/utils/filterEmptyValues.mjs +5 -0
  1332. package/es/variables/utils/getAction.mjs +8 -0
  1333. package/es/variables/utils/getPath.mjs +7 -0
  1334. package/es/variables/utils/getVariableName.mjs +10 -0
  1335. package/es/variables/utils/hasRequested.mjs +13 -0
  1336. package/es/variables/utils/isVariable.mjs +8 -0
  1337. package/es/variables/utils/transformVariableValue.mjs +30 -0
  1338. package/es/variables/utils/uniq.mjs +10 -0
  1339. package/lib/index.css +321 -0
  1340. package/lib/index.mjs +94747 -48
  1341. package/package.json +4 -6
  1342. package/LICENSE +0 -201
  1343. package/lib/api-client/APIClient.mjs +0 -176
  1344. package/lib/api-client/APIClientProvider.mjs +0 -23
  1345. package/lib/api-client/__tests__/APIClient.test.mjs +0 -64
  1346. package/lib/api-client/context.mjs +0 -14
  1347. package/lib/api-client/demos/demo1.mjs +0 -47
  1348. package/lib/api-client/demos/demo2.mjs +0 -46
  1349. package/lib/api-client/demos/demo3.mjs +0 -97
  1350. package/lib/api-client/hooks/assign.mjs +0 -106
  1351. package/lib/api-client/hooks/index.mjs +0 -9
  1352. package/lib/api-client/hooks/useAPIClient.mjs +0 -15
  1353. package/lib/api-client/hooks/useRequest.mjs +0 -70
  1354. package/lib/api-client/hooks/useResource.mjs +0 -12
  1355. package/lib/api-client/index.mjs +0 -11
  1356. package/lib/application/AppSchemaComponentProvider.mjs +0 -48
  1357. package/lib/application/Application.mjs +0 -431
  1358. package/lib/application/AttachmentPreviewManager.mjs +0 -37
  1359. package/lib/application/NoticesManager.mjs +0 -132
  1360. package/lib/application/Plugin.mjs +0 -66
  1361. package/lib/application/PluginContextMenu.mjs +0 -35
  1362. package/lib/application/PluginManager.mjs +0 -113
  1363. package/lib/application/RouterManager.mjs +0 -148
  1364. package/lib/application/SystemSettingsManager.mjs +0 -133
  1365. package/lib/application/UserSettingsManager.mjs +0 -135
  1366. package/lib/application/WebSocketClient.mjs +0 -202
  1367. package/lib/application/__tests__/Application.test.mjs +0 -518
  1368. package/lib/application/__tests__/Plugin.test.mjs +0 -213
  1369. package/lib/application/__tests__/PluginSettingsManager.test.mjs +0 -168
  1370. package/lib/application/__tests__/RouterManager.test.mjs +0 -345
  1371. package/lib/application/__tests__/SchemaInitializer.test.mjs +0 -169
  1372. package/lib/application/__tests__/SchemaToolbar.test.mjs +0 -171
  1373. package/lib/application/__tests__/hoc/withDynamicSchemaProps.test.mjs +0 -207
  1374. package/lib/application/__tests__/hooks.test.mjs +0 -112
  1375. package/lib/application/__tests__/utils/remotePlugins.test.mjs +0 -331
  1376. package/lib/application/__tests__/utils.test.mjs +0 -117
  1377. package/lib/application/components/AppComponent.mjs +0 -78
  1378. package/lib/application/components/BlankComponent.mjs +0 -18
  1379. package/lib/application/components/MainComponent.mjs +0 -29
  1380. package/lib/application/components/RouterContextCleaner.mjs +0 -30
  1381. package/lib/application/components/defaultComponents.mjs +0 -37
  1382. package/lib/application/components/index.mjs +0 -11
  1383. package/lib/application/context.mjs +0 -10
  1384. package/lib/application/demos/demo1.mjs +0 -136
  1385. package/lib/application/demos/demo2.mjs +0 -149
  1386. package/lib/application/demos/demo3.mjs +0 -17
  1387. package/lib/application/hoc/index.mjs +0 -5
  1388. package/lib/application/hoc/withDynamicSchemaProps.mjs +0 -165
  1389. package/lib/application/hooks/index.mjs +0 -9
  1390. package/lib/application/hooks/useApp.mjs +0 -15
  1391. package/lib/application/hooks/usePlugin.mjs +0 -12
  1392. package/lib/application/hooks/useRouter.mjs +0 -12
  1393. package/lib/application/index.mjs +0 -37
  1394. package/lib/application/schema-initializer/SchemaInitializer.mjs +0 -103
  1395. package/lib/application/schema-initializer/SchemaInitializerManager.mjs +0 -86
  1396. package/lib/application/schema-initializer/components/SchemaInitializerActionModal.mjs +0 -134
  1397. package/lib/application/schema-initializer/components/SchemaInitializerButton.mjs +0 -60
  1398. package/lib/application/schema-initializer/components/SchemaInitializerChildren.mjs +0 -91
  1399. package/lib/application/schema-initializer/components/SchemaInitializerDivider.mjs +0 -25
  1400. package/lib/application/schema-initializer/components/SchemaInitializerItem.mjs +0 -124
  1401. package/lib/application/schema-initializer/components/SchemaInitializerItemGroup.mjs +0 -63
  1402. package/lib/application/schema-initializer/components/SchemaInitializerItems.mjs +0 -23
  1403. package/lib/application/schema-initializer/components/SchemaInitializerSelect.mjs +0 -86
  1404. package/lib/application/schema-initializer/components/SchemaInitializerSubMenu.mjs +0 -147
  1405. package/lib/application/schema-initializer/components/SchemaInitializerSwitch.mjs +0 -59
  1406. package/lib/application/schema-initializer/components/index.mjs +0 -23
  1407. package/lib/application/schema-initializer/components/style.mjs +0 -47
  1408. package/lib/application/schema-initializer/context/index.mjs +0 -18
  1409. package/lib/application/schema-initializer/hoc/index.mjs +0 -159
  1410. package/lib/application/schema-initializer/hooks/index.mjs +0 -193
  1411. package/lib/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.mjs +0 -32
  1412. package/lib/application/schema-initializer/index.mjs +0 -17
  1413. package/lib/application/schema-initializer/types.mjs +0 -4
  1414. package/lib/application/schema-settings/SchemaSettings.mjs +0 -94
  1415. package/lib/application/schema-settings/SchemaSettingsDefaults.mjs +0 -241
  1416. package/lib/application/schema-settings/SchemaSettingsManager.mjs +0 -86
  1417. package/lib/application/schema-settings/components/SchemaSettingsChildren.mjs +0 -123
  1418. package/lib/application/schema-settings/components/SchemaSettingsIcon.mjs +0 -34
  1419. package/lib/application/schema-settings/components/SchemaSettingsWrapper.mjs +0 -59
  1420. package/lib/application/schema-settings/components/index.mjs +0 -7
  1421. package/lib/application/schema-settings/context/index.mjs +0 -13
  1422. package/lib/application/schema-settings/hooks/index.mjs +0 -63
  1423. package/lib/application/schema-settings/index.mjs +0 -15
  1424. package/lib/application/schema-settings/types.mjs +0 -4
  1425. package/lib/application/schema-toolbar/context/index.mjs +0 -24
  1426. package/lib/application/schema-toolbar/hooks/index.mjs +0 -46
  1427. package/lib/application/schema-toolbar/index.mjs +0 -7
  1428. package/lib/application/utils/globalDeps.mjs +0 -162
  1429. package/lib/application/utils/index.mjs +0 -59
  1430. package/lib/application/utils/remotePlugins.mjs +0 -129
  1431. package/lib/async-data-provider/index.mjs +0 -37
  1432. package/lib/block-provider/BlockProvider.mjs +0 -401
  1433. package/lib/block-provider/DetailsBlockProvider.mjs +0 -145
  1434. package/lib/block-provider/FilterFormBlockProvider.mjs +0 -42
  1435. package/lib/block-provider/FormBlockProvider.mjs +0 -222
  1436. package/lib/block-provider/FormFieldProvider.mjs +0 -124
  1437. package/lib/block-provider/MobileProvider.mjs +0 -24
  1438. package/lib/block-provider/PageLayout.mjs +0 -25
  1439. package/lib/block-provider/TableBlockProvider.mjs +0 -155
  1440. package/lib/block-provider/TableFieldProvider.mjs +0 -197
  1441. package/lib/block-provider/TableSelectorProvider.mjs +0 -372
  1442. package/lib/block-provider/TreeBlockProvider.mjs +0 -158
  1443. package/lib/block-provider/hooks/index.mjs +0 -1465
  1444. package/lib/block-provider/hooks/useDataBlockSourceId.mjs +0 -33
  1445. package/lib/block-provider/hooks/useFormActiveFields.mjs +0 -56
  1446. package/lib/block-provider/hooks/useIsMobile.mjs +0 -16
  1447. package/lib/block-provider/hooks/useParsedFilter.mjs +0 -85
  1448. package/lib/block-provider/index.mjs +0 -25
  1449. package/lib/built-in/acl/ACLPlugin.mjs +0 -22
  1450. package/lib/built-in/acl/ACLProvider.mjs +0 -396
  1451. package/lib/built-in/acl/ACLShortcut.mjs +0 -46
  1452. package/lib/built-in/acl/Configuration/ConfigureCenter.mjs +0 -182
  1453. package/lib/built-in/acl/Configuration/MenuConfigure.mjs +0 -188
  1454. package/lib/built-in/acl/Configuration/MenuItemsProvider.mjs +0 -66
  1455. package/lib/built-in/acl/Configuration/PermisionProvider.mjs +0 -95
  1456. package/lib/built-in/acl/Configuration/RoleConfigure.mjs +0 -173
  1457. package/lib/built-in/acl/Configuration/RoleTable.mjs +0 -73
  1458. package/lib/built-in/acl/Configuration/RolesResourcesActions.mjs +0 -265
  1459. package/lib/built-in/acl/Configuration/ScopeSelect.mjs +0 -61
  1460. package/lib/built-in/acl/Configuration/StrategyActions.mjs +0 -143
  1461. package/lib/built-in/acl/Configuration/index.mjs +0 -41
  1462. package/lib/built-in/acl/Configuration/schemas/roles.mjs +0 -427
  1463. package/lib/built-in/acl/Configuration/schemas/scopes.mjs +0 -384
  1464. package/lib/built-in/acl/Configuration/schemas/useRoleResourceValues.mjs +0 -46
  1465. package/lib/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.mjs +0 -32
  1466. package/lib/built-in/acl/index.mjs +0 -11
  1467. package/lib/built-in/acl/style.mjs +0 -31
  1468. package/lib/built-in/admin-layout/AdminContent.mjs +0 -34
  1469. package/lib/built-in/admin-layout/AdminTabs.mjs +0 -21
  1470. package/lib/built-in/admin-layout/NoticeArea.mjs +0 -37
  1471. package/lib/built-in/admin-layout/components/AddNewButton.mjs +0 -89
  1472. package/lib/built-in/admin-layout/components/WelcomeCard.mjs +0 -114
  1473. package/lib/built-in/admin-layout/index.mjs +0 -299
  1474. package/lib/built-in/admin-layout/style.mjs +0 -150
  1475. package/lib/built-in/assistant/Assistant.provider.mjs +0 -114
  1476. package/lib/built-in/assistant/ai-chat/index.mjs +0 -359
  1477. package/lib/built-in/assistant/ai-chat/index.module.mjs +0 -9
  1478. package/lib/built-in/assistant/calculator/AutoScalingText.mjs +0 -45
  1479. package/lib/built-in/assistant/calculator/Calculator.mjs +0 -259
  1480. package/lib/built-in/assistant/calculator/CalculatorDisplay.mjs +0 -34
  1481. package/lib/built-in/assistant/calculator/CalculatorKey.mjs +0 -20
  1482. package/lib/built-in/assistant/calculator/CalculatorProvider.mjs +0 -52
  1483. package/lib/built-in/assistant/calculator/Draggable.mjs +0 -66
  1484. package/lib/built-in/assistant/calculator/style.mjs +0 -33
  1485. package/lib/built-in/assistant/index.mjs +0 -27
  1486. package/lib/built-in/assistant/search-and-jump/index.mjs +0 -75
  1487. package/lib/built-in/attachment-preview/index.mjs +0 -24
  1488. package/lib/built-in/attachment-preview/interface.mjs +0 -4
  1489. package/lib/built-in/attachment-preview/previewers/file-default.mjs +0 -97
  1490. package/lib/built-in/attachment-preview/previewers/file-pdf.mjs +0 -142
  1491. package/lib/built-in/attachment-preview/previewers/file-pdf.style.mjs +0 -53
  1492. package/lib/built-in/attachment-preview/previewers/file-sheet.mjs +0 -132
  1493. package/lib/built-in/attachment-preview/previewers/file-sheet.style.mjs +0 -53
  1494. package/lib/built-in/attachment-preview/previewers/image-jpeg.mjs +0 -43
  1495. package/lib/built-in/attachment-preview/previewers/image-png.mjs +0 -43
  1496. package/lib/built-in/attachment-preview/previewers/image-svg.mjs +0 -29
  1497. package/lib/built-in/attachment-preview/previewers/index.mjs +0 -15
  1498. package/lib/built-in/block-schema-component/index.mjs +0 -186
  1499. package/lib/built-in/built-in-collections/index.mjs +0 -74
  1500. package/lib/built-in/context-menu/ContextMenu.provider.mjs +0 -89
  1501. package/lib/built-in/context-menu/ContextMenuItemsProps.mjs +0 -176
  1502. package/lib/built-in/context-menu/index.mjs +0 -37
  1503. package/lib/built-in/context-menu/useContextMenu.mjs +0 -12
  1504. package/lib/built-in/document-title/index.mjs +0 -75
  1505. package/lib/built-in/dynamic-page/DynamicPage.mjs +0 -67
  1506. package/lib/built-in/dynamic-page/index.mjs +0 -79
  1507. package/lib/built-in/dynamic-page/style.mjs +0 -60
  1508. package/lib/built-in/dynamic-page/utils.mjs +0 -84
  1509. package/lib/built-in/index.mjs +0 -595
  1510. package/lib/built-in/locale/LocalePlugin.mjs +0 -96
  1511. package/lib/built-in/locale/loadConstrueLocale.mjs +0 -194
  1512. package/lib/built-in/page-style/CustomAdminHeader.mjs +0 -24
  1513. package/lib/built-in/page-style/PageStyle.provider.mjs +0 -47
  1514. package/lib/built-in/page-style/TabContent.mjs +0 -97
  1515. package/lib/built-in/page-style/TabHeader.mjs +0 -114
  1516. package/lib/built-in/page-style/index.mjs +0 -29
  1517. package/lib/built-in/page-style/usePageStyle.mjs +0 -15
  1518. package/lib/built-in/page-style/useTabSettings.mjs +0 -97
  1519. package/lib/built-in/pinned-list/PinnedPluginListProvider.mjs +0 -87
  1520. package/lib/built-in/pinned-list/PluginPinnedList.mjs +0 -17
  1521. package/lib/built-in/pinned-list/context.mjs +0 -12
  1522. package/lib/built-in/pinned-list/index.mjs +0 -7
  1523. package/lib/built-in/pm/PluginCard.mjs +0 -306
  1524. package/lib/built-in/pm/PluginDetail.mjs +0 -350
  1525. package/lib/built-in/pm/PluginDocument.mjs +0 -99
  1526. package/lib/built-in/pm/PluginForm/form/PluginNpmForm.mjs +0 -189
  1527. package/lib/built-in/pm/PluginForm/form/PluginUploadForm.mjs +0 -142
  1528. package/lib/built-in/pm/PluginForm/form/PluginUrlForm.mjs +0 -133
  1529. package/lib/built-in/pm/PluginForm/modal/PluginAddModal.mjs +0 -88
  1530. package/lib/built-in/pm/PluginForm/modal/PluginUpgradeModal.mjs +0 -92
  1531. package/lib/built-in/pm/PluginManager.mjs +0 -341
  1532. package/lib/built-in/pm/index.mjs +0 -88
  1533. package/lib/built-in/pm/style.mjs +0 -86
  1534. package/lib/built-in/pm/types.mjs +0 -4
  1535. package/lib/built-in/quick-access/Action.mjs +0 -125
  1536. package/lib/built-in/quick-access/Block.mjs +0 -170
  1537. package/lib/built-in/quick-access/CustomRequestActionSchemaInitializerItem.mjs +0 -115
  1538. package/lib/built-in/quick-access/LinkActionSchemaInitializerItem.mjs +0 -108
  1539. package/lib/built-in/quick-access/ModalActionSchemaInitializerItem.mjs +0 -118
  1540. package/lib/built-in/quick-access/PopupActionSchemaInitializerItem.mjs +0 -143
  1541. package/lib/built-in/quick-access/SchemaSettingsBlockTitleItem.mjs +0 -66
  1542. package/lib/built-in/quick-access/blockInitializerItem.mjs +0 -31
  1543. package/lib/built-in/quick-access/blockSchema.mjs +0 -20
  1544. package/lib/built-in/quick-access/blockSettings.mjs +0 -92
  1545. package/lib/built-in/quick-access/configureActions.mjs +0 -25
  1546. package/lib/built-in/quick-access/index.mjs +0 -66
  1547. package/lib/built-in/scroll-assistant/ScrollAssistant.provider.mjs +0 -62
  1548. package/lib/built-in/scroll-assistant/ScrollAssistantStatus.provider.mjs +0 -31
  1549. package/lib/built-in/scroll-assistant/index.mjs +0 -41
  1550. package/lib/built-in/scroll-assistant/useJoystick.mjs +0 -216
  1551. package/lib/built-in/setting-layout/AdminSettings.mjs +0 -174
  1552. package/lib/built-in/setting-layout/SettingLayout.mjs +0 -171
  1553. package/lib/built-in/setting-layout/SettingsCenterDropdown.mjs +0 -104
  1554. package/lib/built-in/system-settings/SystemSettingsProvider.mjs +0 -33
  1555. package/lib/built-in/system-settings/SystemSettingsShortcut.mjs +0 -189
  1556. package/lib/built-in/system-settings/index.mjs +0 -23
  1557. package/lib/built-in/system-version/SystemVersion.provider.mjs +0 -52
  1558. package/lib/built-in/system-version/index.mjs +0 -17
  1559. package/lib/built-in/user-settings/UserSettingsLayout.mjs +0 -221
  1560. package/lib/built-in/user-settings/index.mjs +0 -38
  1561. package/lib/built-in/user-settings/style.mjs +0 -86
  1562. package/lib/collection-manager/CollectionHistoryProvider.mjs +0 -81
  1563. package/lib/collection-manager/CollectionManagerProvider.mjs +0 -92
  1564. package/lib/collection-manager/CollectionManagerSchemaComponentProvider.mjs +0 -46
  1565. package/lib/collection-manager/CollectionProvider_deprecated.mjs +0 -40
  1566. package/lib/collection-manager/Configuration/AddCollectionAction.mjs +0 -292
  1567. package/lib/collection-manager/Configuration/AddFieldAction.mjs +0 -457
  1568. package/lib/collection-manager/Configuration/AddSubFieldAction.mjs +0 -211
  1569. package/lib/collection-manager/Configuration/DeleteCollectionAction.mjs +0 -268
  1570. package/lib/collection-manager/Configuration/EditCollectionAction.mjs +0 -221
  1571. package/lib/collection-manager/Configuration/EditFieldAction.mjs +0 -315
  1572. package/lib/collection-manager/Configuration/EditSubFieldAction.mjs +0 -163
  1573. package/lib/collection-manager/Configuration/ImportCollectionMetaAction.mjs +0 -210
  1574. package/lib/collection-manager/Configuration/OverridingCollectionField.mjs +0 -274
  1575. package/lib/collection-manager/Configuration/SyncFieldsAction.mjs +0 -257
  1576. package/lib/collection-manager/Configuration/SyncSQLFieldsAction.mjs +0 -214
  1577. package/lib/collection-manager/Configuration/ViewInheritedField.mjs +0 -187
  1578. package/lib/collection-manager/Configuration/components/CollectionCategory.mjs +0 -38
  1579. package/lib/collection-manager/Configuration/components/CollectionFieldInterfaceTag.mjs +0 -40
  1580. package/lib/collection-manager/Configuration/components/CollectionTemplateTag.mjs +0 -39
  1581. package/lib/collection-manager/Configuration/components/FieldSummary.mjs +0 -39
  1582. package/lib/collection-manager/Configuration/components/Summary.mjs +0 -84
  1583. package/lib/collection-manager/Configuration/components/TemplateSummary.mjs +0 -39
  1584. package/lib/collection-manager/Configuration/components/index.mjs +0 -359
  1585. package/lib/collection-manager/Configuration/index.mjs +0 -46
  1586. package/lib/collection-manager/Configuration/interfaces.mjs +0 -48
  1587. package/lib/collection-manager/ResourceActionProvider.mjs +0 -168
  1588. package/lib/collection-manager/action-hooks.mjs +0 -658
  1589. package/lib/collection-manager/collectionPlugin.mjs +0 -151
  1590. package/lib/collection-manager/context.mjs +0 -13
  1591. package/lib/collection-manager/demos/demo2.mjs +0 -143
  1592. package/lib/collection-manager/demos/demo3.mjs +0 -96
  1593. package/lib/collection-manager/demos/demo4.mjs +0 -183
  1594. package/lib/collection-manager/demos/demo5.mjs +0 -187
  1595. package/lib/collection-manager/hooks/index.mjs +0 -11
  1596. package/lib/collection-manager/hooks/useCollectionDataSource.mjs +0 -29
  1597. package/lib/collection-manager/hooks/useCollectionField_deprecated.mjs +0 -43
  1598. package/lib/collection-manager/hooks/useCollectionManager_deprecated.mjs +0 -272
  1599. package/lib/collection-manager/hooks/useCollection_deprecated.mjs +0 -70
  1600. package/lib/collection-manager/hooks/useDialect.mjs +0 -17
  1601. package/lib/collection-manager/index.mjs +0 -63
  1602. package/lib/collection-manager/interfaces/__tests__/json.mjs +0 -73
  1603. package/lib/collection-manager/interfaces/checkbox.mjs +0 -61
  1604. package/lib/collection-manager/interfaces/checkboxGroup.mjs +0 -55
  1605. package/lib/collection-manager/interfaces/chinaRegion.mjs +0 -127
  1606. package/lib/collection-manager/interfaces/collection.mjs +0 -57
  1607. package/lib/collection-manager/interfaces/color.mjs +0 -43
  1608. package/lib/collection-manager/interfaces/components/index.mjs +0 -73
  1609. package/lib/collection-manager/interfaces/createdAt.mjs +0 -47
  1610. package/lib/collection-manager/interfaces/createdBy.mjs +0 -70
  1611. package/lib/collection-manager/interfaces/datetime.mjs +0 -56
  1612. package/lib/collection-manager/interfaces/email.mjs +0 -54
  1613. package/lib/collection-manager/interfaces/icon.mjs +0 -40
  1614. package/lib/collection-manager/interfaces/id.mjs +0 -66
  1615. package/lib/collection-manager/interfaces/index.mjs +0 -81
  1616. package/lib/collection-manager/interfaces/input.mjs +0 -200
  1617. package/lib/collection-manager/interfaces/integer.mjs +0 -138
  1618. package/lib/collection-manager/interfaces/json.mjs +0 -102
  1619. package/lib/collection-manager/interfaces/linkTo.mjs +0 -119
  1620. package/lib/collection-manager/interfaces/m2m.mjs +0 -253
  1621. package/lib/collection-manager/interfaces/m2o.mjs +0 -182
  1622. package/lib/collection-manager/interfaces/markdown.mjs +0 -94
  1623. package/lib/collection-manager/interfaces/multipleSelect.mjs +0 -62
  1624. package/lib/collection-manager/interfaces/nanoid.mjs +0 -72
  1625. package/lib/collection-manager/interfaces/number.mjs +0 -146
  1626. package/lib/collection-manager/interfaces/o2m.mjs +0 -211
  1627. package/lib/collection-manager/interfaces/o2o.mjs +0 -493
  1628. package/lib/collection-manager/interfaces/password.mjs +0 -80
  1629. package/lib/collection-manager/interfaces/percent.mjs +0 -193
  1630. package/lib/collection-manager/interfaces/phone.mjs +0 -46
  1631. package/lib/collection-manager/interfaces/properties/index.mjs +0 -506
  1632. package/lib/collection-manager/interfaces/properties/operators.mjs +0 -370
  1633. package/lib/collection-manager/interfaces/radioGroup.mjs +0 -46
  1634. package/lib/collection-manager/interfaces/richText.mjs +0 -92
  1635. package/lib/collection-manager/interfaces/select.mjs +0 -60
  1636. package/lib/collection-manager/interfaces/sort.mjs +0 -123
  1637. package/lib/collection-manager/interfaces/subTable.mjs +0 -218
  1638. package/lib/collection-manager/interfaces/tableoid.mjs +0 -60
  1639. package/lib/collection-manager/interfaces/textarea.mjs +0 -92
  1640. package/lib/collection-manager/interfaces/time.mjs +0 -59
  1641. package/lib/collection-manager/interfaces/types.mjs +0 -4
  1642. package/lib/collection-manager/interfaces/unixTimestamp.mjs +0 -64
  1643. package/lib/collection-manager/interfaces/updatedAt.mjs +0 -47
  1644. package/lib/collection-manager/interfaces/updatedBy.mjs +0 -70
  1645. package/lib/collection-manager/interfaces/url.mjs +0 -46
  1646. package/lib/collection-manager/interfaces/uuid.mjs +0 -60
  1647. package/lib/collection-manager/mixins/InheritanceCollectionMixin.mjs +0 -249
  1648. package/lib/collection-manager/sub-table.mjs +0 -270
  1649. package/lib/collection-manager/templates/components/PresetFields.mjs +0 -271
  1650. package/lib/collection-manager/templates/components/PreviewFields.mjs +0 -345
  1651. package/lib/collection-manager/templates/components/PreviewTable.mjs +0 -171
  1652. package/lib/collection-manager/templates/components/sql-collection/FieldsConfigure.mjs +0 -348
  1653. package/lib/collection-manager/templates/components/sql-collection/PreviewTable.mjs +0 -81
  1654. package/lib/collection-manager/templates/components/sql-collection/SQLInput.mjs +0 -130
  1655. package/lib/collection-manager/templates/components/sql-collection/SQLRequestProvider.mjs +0 -74
  1656. package/lib/collection-manager/templates/components/sql-collection/index.mjs +0 -11
  1657. package/lib/collection-manager/templates/expression.mjs +0 -78
  1658. package/lib/collection-manager/templates/general.mjs +0 -32
  1659. package/lib/collection-manager/templates/import.mjs +0 -28
  1660. package/lib/collection-manager/templates/index.mjs +0 -15
  1661. package/lib/collection-manager/templates/properties/index.mjs +0 -81
  1662. package/lib/collection-manager/templates/sql.mjs +0 -105
  1663. package/lib/collection-manager/templates/tree.mjs +0 -94
  1664. package/lib/collection-manager/templates/types.mjs +0 -4
  1665. package/lib/collection-manager/templates/view.mjs +0 -177
  1666. package/lib/collection-manager/types.mjs +0 -4
  1667. package/lib/collection-manager/utils.mjs +0 -23
  1668. package/lib/common/SelectWithTitle.mjs +0 -56
  1669. package/lib/common/appInfo/CurrentAppInfoProvider.mjs +0 -33
  1670. package/lib/common/appInfo/index.mjs +0 -5
  1671. package/lib/common/index.mjs +0 -9
  1672. package/lib/common/useFieldComponentName.mjs +0 -39
  1673. package/lib/common/useNiceDropdownHeight.mjs +0 -28
  1674. package/lib/data-source/__tests__/collection/AssociationProvider.test.mjs +0 -132
  1675. package/lib/data-source/__tests__/collection/Collection.test.mjs +0 -308
  1676. package/lib/data-source/__tests__/collection/CollectionManager.test.mjs +0 -308
  1677. package/lib/data-source/__tests__/collection/CollectionManagerProvider.test.mjs +0 -135
  1678. package/lib/data-source/__tests__/collection/CollectionProvider.test.mjs +0 -123
  1679. package/lib/data-source/__tests__/collection/ExtendCollectionsProvider.test.mjs +0 -105
  1680. package/lib/data-source/__tests__/collection-field/CollectionField.test.mjs +0 -84
  1681. package/lib/data-source/__tests__/collection-field/CollectionFieldProvider.test.mjs +0 -70
  1682. package/lib/data-source/__tests__/collection-field-interface/CollectionFieldInterfaceManager.test.mjs +0 -171
  1683. package/lib/data-source/__tests__/collection-record/CollectionRecord.test.mjs +0 -27
  1684. package/lib/data-source/__tests__/collection-record/CollectionRecordProvider.test.mjs +0 -268
  1685. package/lib/data-source/__tests__/collection-record/isNewRecord.test.mjs +0 -55
  1686. package/lib/data-source/__tests__/collection-template/CollectionTemplateManager.test.mjs +0 -132
  1687. package/lib/data-source/__tests__/components/CollectionDeletedPlaceholder.test.mjs +0 -58
  1688. package/lib/data-source/__tests__/data-block/DataBlockProvider.test.mjs +0 -151
  1689. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-parent-record.mjs +0 -108
  1690. package/lib/data-source/__tests__/data-block/data-block-demos/association-table-list-and-source-id.mjs +0 -160
  1691. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-create.mjs +0 -131
  1692. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-get-and-update.mjs +0 -197
  1693. package/lib/data-source/__tests__/data-block/data-block-demos/collection-form-record-and-update.mjs +0 -160
  1694. package/lib/data-source/__tests__/data-block/data-block-demos/collection-table-list.mjs +0 -114
  1695. package/lib/data-source/__tests__/data-block/data-block-demos/createApp.mjs +0 -66
  1696. package/lib/data-source/__tests__/data-source/CollectionDataSourceProvider.test.mjs +0 -56
  1697. package/lib/data-source/__tests__/data-source/DataSource.test.mjs +0 -81
  1698. package/lib/data-source/__tests__/data-source/DataSourceManager.test.mjs +0 -174
  1699. package/lib/data-source/__tests__/data-source/DataSourceManagerProvider.test.mjs +0 -45
  1700. package/lib/data-source/__tests__/data-source/DataSourceProvider.test.mjs +0 -100
  1701. package/lib/data-source/__tests__/utils.test.mjs +0 -66
  1702. package/lib/data-source/collection/AssociationProvider.mjs +0 -68
  1703. package/lib/data-source/collection/Collection.mjs +0 -200
  1704. package/lib/data-source/collection/CollectionManager.mjs +0 -165
  1705. package/lib/data-source/collection/CollectionManagerProvider.mjs +0 -64
  1706. package/lib/data-source/collection/CollectionProvider.mjs +0 -53
  1707. package/lib/data-source/collection/ExtendCollectionsProvider.mjs +0 -47
  1708. package/lib/data-source/collection/index.mjs +0 -15
  1709. package/lib/data-source/collection/utils.mjs +0 -62
  1710. package/lib/data-source/collection-field/CollectionField.mjs +0 -116
  1711. package/lib/data-source/collection-field/CollectionFieldProvider.mjs +0 -65
  1712. package/lib/data-source/collection-field/index.mjs +0 -7
  1713. package/lib/data-source/collection-field-interface/CollectionFieldInterface.mjs +0 -42
  1714. package/lib/data-source/collection-field-interface/CollectionFieldInterfaceManager.mjs +0 -65
  1715. package/lib/data-source/collection-field-interface/index.mjs +0 -7
  1716. package/lib/data-source/collection-record/CollectionRecord.mjs +0 -34
  1717. package/lib/data-source/collection-record/CollectionRecordProvider.mjs +0 -78
  1718. package/lib/data-source/collection-record/index.mjs +0 -7
  1719. package/lib/data-source/collection-record/isNewRecord.mjs +0 -26
  1720. package/lib/data-source/collection-template/CollectionTemplate.mjs +0 -39
  1721. package/lib/data-source/collection-template/CollectionTemplateManager.mjs +0 -61
  1722. package/lib/data-source/collection-template/index.mjs +0 -7
  1723. package/lib/data-source/commonsSettingsItem/fieldComponent.mjs +0 -80
  1724. package/lib/data-source/commonsSettingsItem/index.mjs +0 -5
  1725. package/lib/data-source/components/CollectionDeletedPlaceholder.mjs +0 -125
  1726. package/lib/data-source/components/DataSourceApplicationProvider.mjs +0 -32
  1727. package/lib/data-source/components/index.mjs +0 -7
  1728. package/lib/data-source/data-block/DataBlockProvider.mjs +0 -115
  1729. package/lib/data-source/data-block/DataBlockRequestProvider.mjs +0 -168
  1730. package/lib/data-source/data-block/DataBlockResourceProvider.mjs +0 -84
  1731. package/lib/data-source/data-block/context/ConfigSetting.provider.mjs +0 -18
  1732. package/lib/data-source/data-block/index.mjs +0 -11
  1733. package/lib/data-source/data-source/DataSource.mjs +0 -83
  1734. package/lib/data-source/data-source/DataSourceManager.mjs +0 -127
  1735. package/lib/data-source/data-source/DataSourceManagerProvider.mjs +0 -25
  1736. package/lib/data-source/data-source/DataSourceProvider.mjs +0 -87
  1737. package/lib/data-source/data-source/index.mjs +0 -11
  1738. package/lib/data-source/index.mjs +0 -23
  1739. package/lib/data-source/utils.mjs +0 -28
  1740. package/lib/env.d.mjs +0 -1
  1741. package/lib/filter-provider/FilterProvider.mjs +0 -182
  1742. package/lib/filter-provider/__tests__/transformToFilter.mjs +0 -74
  1743. package/lib/filter-provider/__tests__/useFilter.mjs +0 -61
  1744. package/lib/filter-provider/__tests__/utiles.test.mjs +0 -271
  1745. package/lib/filter-provider/index.mjs +0 -7
  1746. package/lib/filter-provider/utils.mjs +0 -262
  1747. package/lib/flag-provider/FlagProvider.mjs +0 -19
  1748. package/lib/flag-provider/__tests__/flag-provider.test.mjs +0 -37
  1749. package/lib/flag-provider/hooks/useFlag.mjs +0 -15
  1750. package/lib/flag-provider/index.mjs +0 -7
  1751. package/lib/hooks/index.mjs +0 -7
  1752. package/lib/hooks/useAdminSchemaUid.mjs +0 -7
  1753. package/lib/hooks/useMenuItem.mjs +0 -101
  1754. package/lib/hooks/useViewport.mjs +0 -47
  1755. package/lib/i18n/i18n.mjs +0 -37
  1756. package/lib/i18n/index.mjs +0 -5
  1757. package/lib/icon/Icon.mjs +0 -80
  1758. package/lib/icon/__tests__/icon.test.mjs +0 -49
  1759. package/lib/icon/demos/antd-icon.mjs +0 -19
  1760. package/lib/icon/demos/custom-icon.mjs +0 -28
  1761. package/lib/icon/demos/iconfont.mjs +0 -22
  1762. package/lib/icon/demos/register-icon.mjs +0 -35
  1763. package/lib/icon/index.mjs +0 -5
  1764. package/lib/icon/preloaded.mjs +0 -139
  1765. package/lib/locale/index.mjs +0 -274
  1766. package/lib/modules/actions/ActionSchemaToolbar.mjs +0 -24
  1767. package/lib/modules/actions/add-child/CreateChildInitializer.mjs +0 -76
  1768. package/lib/modules/actions/add-child/addChildActionSettings.mjs +0 -88
  1769. package/lib/modules/actions/add-new/CreateActionInitializer.mjs +0 -82
  1770. package/lib/modules/actions/add-new/addNewActionSettings.mjs +0 -81
  1771. package/lib/modules/actions/add-new/createFormBlockInitializers.mjs +0 -75
  1772. package/lib/modules/actions/add-record/CustomizeAddRecordActionInitializer.mjs +0 -78
  1773. package/lib/modules/actions/add-record/customizeAddRecordActionSettings.mjs +0 -50
  1774. package/lib/modules/actions/add-record/customizeCreateFormBlockInitializers.mjs +0 -45
  1775. package/lib/modules/actions/bulk-destroy/BulkDestroyActionInitializer.mjs +0 -52
  1776. package/lib/modules/actions/bulk-destroy/bulkDeleteActionSettings.mjs +0 -42
  1777. package/lib/modules/actions/delete/DestroyActionInitializer.mjs +0 -40
  1778. package/lib/modules/actions/delete/deleteActionSettings.mjs +0 -57
  1779. package/lib/modules/actions/disassociate/DisassociateActionInitializer.mjs +0 -40
  1780. package/lib/modules/actions/disassociate/__e2e__/disassociate.test.mjs +0 -53
  1781. package/lib/modules/actions/disassociate/__e2e__/templatesOfPage.mjs +0 -386
  1782. package/lib/modules/actions/disassociate/disassociateActionSettings.mjs +0 -57
  1783. package/lib/modules/actions/expand-collapse/ExpandableActionInitializer.mjs +0 -40
  1784. package/lib/modules/actions/expand-collapse/expendableActionSettings.mjs +0 -148
  1785. package/lib/modules/actions/filter/FilterActionInitializer.mjs +0 -34
  1786. package/lib/modules/actions/filter/filterActionSettings.mjs +0 -103
  1787. package/lib/modules/actions/link/customizeLinkActionSettings.mjs +0 -149
  1788. package/lib/modules/actions/link/hooks.mjs +0 -243
  1789. package/lib/modules/actions/refresh/RefreshActionInitializer.mjs +0 -33
  1790. package/lib/modules/actions/refresh/refreshActionSettings.mjs +0 -42
  1791. package/lib/modules/actions/save-record/SaveRecordActionInitializer.mjs +0 -49
  1792. package/lib/modules/actions/save-record/customizeSaveRecordActionSettings.mjs +0 -67
  1793. package/lib/modules/actions/submit/CreateSubmitActionInitializer.mjs +0 -39
  1794. package/lib/modules/actions/submit/UpdateSubmitActionInitializer.mjs +0 -44
  1795. package/lib/modules/actions/submit/createSubmitActionSettings.mjs +0 -250
  1796. package/lib/modules/actions/submit/updateSubmitActionSettings.mjs +0 -107
  1797. package/lib/modules/actions/update-record/UpdateRecordActionInitializer.mjs +0 -48
  1798. package/lib/modules/actions/update-record/customizeUpdateRecordActionSettings.mjs +0 -83
  1799. package/lib/modules/actions/view-edit-popup/PopupActionInitializer.mjs +0 -74
  1800. package/lib/modules/actions/view-edit-popup/RecordFormBlockInitializers.mjs +0 -46
  1801. package/lib/modules/actions/view-edit-popup/UpdateActionInitializer.mjs +0 -69
  1802. package/lib/modules/actions/view-edit-popup/ViewActionInitializer.mjs +0 -68
  1803. package/lib/modules/actions/view-edit-popup/customizePopupActionSettings.mjs +0 -70
  1804. package/lib/modules/actions/view-edit-popup/editActionSettings.mjs +0 -65
  1805. package/lib/modules/actions/view-edit-popup/viewActionSettings.mjs +0 -70
  1806. package/lib/modules/blocks/BlockSchemaToolbar.mjs +0 -85
  1807. package/lib/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.mjs +0 -49
  1808. package/lib/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.mjs +0 -76
  1809. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaInitializer.test.mjs +0 -123
  1810. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/schemaSettings.test.mjs +0 -81
  1811. package/lib/modules/blocks/data-blocks/details-multi/__e2e__/templatesOfBug.mjs +0 -1
  1812. package/lib/modules/blocks/data-blocks/details-multi/__tests__/createDetailsBlockWithPagingUISchema.test.mjs +0 -20
  1813. package/lib/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.mjs +0 -66
  1814. package/lib/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.mjs +0 -256
  1815. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.mjs +0 -19
  1816. package/lib/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.mjs +0 -11
  1817. package/lib/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.mjs +0 -106
  1818. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.mjs +0 -94
  1819. package/lib/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.mjs +0 -110
  1820. package/lib/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.mjs +0 -108
  1821. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaInitializer.test.mjs +0 -110
  1822. package/lib/modules/blocks/data-blocks/details-single/__e2e__/schemaSettings.test.mjs +0 -31
  1823. package/lib/modules/blocks/data-blocks/details-single/__e2e__/templatesOfBug.mjs +0 -1
  1824. package/lib/modules/blocks/data-blocks/details-single/__tests__/createDetailsBlockWithoutPagingUISchema.test.mjs +0 -21
  1825. package/lib/modules/blocks/data-blocks/details-single/createDetailsUISchema.mjs +0 -62
  1826. package/lib/modules/blocks/data-blocks/details-single/detailsBlockSettings.mjs +0 -67
  1827. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.mjs +0 -43
  1828. package/lib/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.mjs +0 -11
  1829. package/lib/modules/blocks/data-blocks/form/CreateFormBlockInitializer.mjs +0 -85
  1830. package/lib/modules/blocks/data-blocks/form/FilterItemCustomSettings.mjs +0 -321
  1831. package/lib/modules/blocks/data-blocks/form/FormBlockInitializer.mjs +0 -113
  1832. package/lib/modules/blocks/data-blocks/form/FormItemSchemaToolbar.mjs +0 -23
  1833. package/lib/modules/blocks/data-blocks/form/RecordFormBlockInitializer.mjs +0 -123
  1834. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/associationForm.test.mjs +0 -27
  1835. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/dragAndDrop.test.mjs +0 -33
  1836. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadAssociationFields.test.mjs +0 -207
  1837. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/lazyLoadVariables.test.mjs +0 -36
  1838. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaInitializer.test.mjs +0 -167
  1839. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/schemaSettings.test.mjs +0 -1367
  1840. package/lib/modules/blocks/data-blocks/form/__e2e__/form-create/templatesOfBug.mjs +0 -6009
  1841. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaInitializer.test.mjs +0 -22
  1842. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/schemaSettings.test.mjs +0 -235
  1843. package/lib/modules/blocks/data-blocks/form/__e2e__/form-edit/templatesOfBug.mjs +0 -1
  1844. package/lib/modules/blocks/data-blocks/form/__tests__/createCreateFormBlockUISchema.test.mjs +0 -27
  1845. package/lib/modules/blocks/data-blocks/form/__tests__/createEditFormBlockUISchema.test.mjs +0 -27
  1846. package/lib/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.mjs +0 -63
  1847. package/lib/modules/blocks/data-blocks/form/createEditFormBlockUISchema.mjs +0 -62
  1848. package/lib/modules/blocks/data-blocks/form/createFormActionInitializers.mjs +0 -51
  1849. package/lib/modules/blocks/data-blocks/form/createFormBlockSettings.mjs +0 -157
  1850. package/lib/modules/blocks/data-blocks/form/editFormBlockSettings.mjs +0 -90
  1851. package/lib/modules/blocks/data-blocks/form/fieldSettingsFormItem.mjs +0 -598
  1852. package/lib/modules/blocks/data-blocks/form/formActionInitializers.mjs +0 -54
  1853. package/lib/modules/blocks/data-blocks/form/formItemInitializers.mjs +0 -51
  1854. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.mjs +0 -19
  1855. package/lib/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.mjs +0 -11
  1856. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.mjs +0 -29
  1857. package/lib/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.mjs +0 -11
  1858. package/lib/modules/blocks/data-blocks/form/index.mjs +0 -31
  1859. package/lib/modules/blocks/data-blocks/form/updateFormActionInitializers.mjs +0 -62
  1860. package/lib/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.mjs +0 -94
  1861. package/lib/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.mjs +0 -69
  1862. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaInitializer.test.mjs +0 -231
  1863. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/schemaSettings.test.mjs +0 -58
  1864. package/lib/modules/blocks/data-blocks/grid-card/__e2e__/templatesOfBug.mjs +0 -1
  1865. package/lib/modules/blocks/data-blocks/grid-card/__tests__/createGridCardBlockSchema.test.mjs +0 -32
  1866. package/lib/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.mjs +0 -78
  1867. package/lib/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.mjs +0 -484
  1868. package/lib/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.mjs +0 -109
  1869. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.mjs +0 -25
  1870. package/lib/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.mjs +0 -28
  1871. package/lib/modules/blocks/data-blocks/grid-card/utils.mjs +0 -17
  1872. package/lib/modules/blocks/data-blocks/list/ListActionInitializers.mjs +0 -90
  1873. package/lib/modules/blocks/data-blocks/list/ListBlockInitializer.mjs +0 -69
  1874. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaInitializer.test.mjs +0 -224
  1875. package/lib/modules/blocks/data-blocks/list/__e2e__/schemaSettings.test.mjs +0 -29
  1876. package/lib/modules/blocks/data-blocks/list/__e2e__/templatesOfBug.mjs +0 -1
  1877. package/lib/modules/blocks/data-blocks/list/__tests__/createListBlockSchema.test.mjs +0 -30
  1878. package/lib/modules/blocks/data-blocks/list/createListBlockUISchema.mjs +0 -71
  1879. package/lib/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.mjs +0 -19
  1880. package/lib/modules/blocks/data-blocks/list/listBlockSettings.mjs +0 -286
  1881. package/lib/modules/blocks/data-blocks/list/listItemActionInitializers.mjs +0 -109
  1882. package/lib/modules/blocks/data-blocks/table/TableActionColumnInitializers.mjs +0 -287
  1883. package/lib/modules/blocks/data-blocks/table/TableActionInitializers.mjs +0 -143
  1884. package/lib/modules/blocks/data-blocks/table/TableBlockInitializer.mjs +0 -69
  1885. package/lib/modules/blocks/data-blocks/table/TableColumnInitializers.mjs +0 -135
  1886. package/lib/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.mjs +0 -35
  1887. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/duplicate.test.mjs +0 -19
  1888. package/lib/modules/blocks/data-blocks/table/__e2e__/actions/filter.test.mjs +0 -46
  1889. package/lib/modules/blocks/data-blocks/table/__e2e__/checkboxForTableRow.test.mjs +0 -28
  1890. package/lib/modules/blocks/data-blocks/table/__e2e__/dragAndDrop.test.mjs +0 -40
  1891. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaInitializer.test.mjs +0 -450
  1892. package/lib/modules/blocks/data-blocks/table/__e2e__/schemaSettings.test.mjs +0 -922
  1893. package/lib/modules/blocks/data-blocks/table/__e2e__/templatesOfBug.mjs +0 -937
  1894. package/lib/modules/blocks/data-blocks/table/__e2e__/tree/schemaSettings.test.mjs +0 -53
  1895. package/lib/modules/blocks/data-blocks/table/__tests__/createTableBLockSchema.test.mjs +0 -24
  1896. package/lib/modules/blocks/data-blocks/table/createTableBlockUISchema.mjs +0 -90
  1897. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.mjs +0 -54
  1898. package/lib/modules/blocks/data-blocks/table/hooks/useTableBlockProps.mjs +0 -176
  1899. package/lib/modules/blocks/data-blocks/table/index.mjs +0 -21
  1900. package/lib/modules/blocks/data-blocks/table/tableBlockSettings.mjs +0 -461
  1901. package/lib/modules/blocks/data-blocks/table/tableColumnSettings.mjs +0 -388
  1902. package/lib/modules/blocks/data-blocks/table/utils.mjs +0 -30
  1903. package/lib/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.mjs +0 -45
  1904. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaInitializer.test.mjs +0 -174
  1905. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/schemaSettings.test.mjs +0 -169
  1906. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/templatesOfBug.mjs +0 -695
  1907. package/lib/modules/blocks/data-blocks/table-selector/__e2e__/utils.mjs +0 -20
  1908. package/lib/modules/blocks/data-blocks/table-selector/__tests__/createTableSelectorSchema.test.mjs +0 -22
  1909. package/lib/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.mjs +0 -55
  1910. package/lib/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.mjs +0 -5
  1911. package/lib/modules/blocks/data-blocks/table-selector/index.mjs +0 -7
  1912. package/lib/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.mjs +0 -353
  1913. package/lib/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.mjs +0 -22
  1914. package/lib/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.mjs +0 -51
  1915. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaInitializer.test.mjs +0 -67
  1916. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/schemaSettings.test.mjs +0 -72
  1917. package/lib/modules/blocks/filter-blocks/collapse/__e2e__/templatesOfBug.mjs +0 -1
  1918. package/lib/modules/blocks/filter-blocks/collapse/__tests__/createCollapseBlockSchema.test.mjs +0 -46
  1919. package/lib/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.mjs +0 -37
  1920. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.mjs +0 -79
  1921. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.mjs +0 -244
  1922. package/lib/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.mjs +0 -170
  1923. package/lib/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.mjs +0 -5
  1924. package/lib/modules/blocks/filter-blocks/form/FilterFormActionInitializers.mjs +0 -38
  1925. package/lib/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.mjs +0 -60
  1926. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaInitializer.test.mjs +0 -127
  1927. package/lib/modules/blocks/filter-blocks/form/__e2e__/schemaSettings.test.mjs +0 -111
  1928. package/lib/modules/blocks/filter-blocks/form/__e2e__/templatesOfBug.mjs +0 -1
  1929. package/lib/modules/blocks/filter-blocks/form/__tests__/createFilterFormBlockSchema.test.mjs +0 -31
  1930. package/lib/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.mjs +0 -56
  1931. package/lib/modules/blocks/filter-blocks/form/filterFormBlockSettings.mjs +0 -87
  1932. package/lib/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.mjs +0 -394
  1933. package/lib/modules/blocks/filter-blocks/form/filterFormItemInitializers.mjs +0 -53
  1934. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.mjs +0 -5
  1935. package/lib/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.mjs +0 -11
  1936. package/lib/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.mjs +0 -38
  1937. package/lib/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.mjs +0 -101
  1938. package/lib/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.mjs +0 -87
  1939. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.mjs +0 -394
  1940. package/lib/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.mjs +0 -53
  1941. package/lib/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.mjs +0 -48
  1942. package/lib/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.mjs +0 -42
  1943. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaInitializer.test.mjs +0 -16
  1944. package/lib/modules/blocks/other-blocks/markdown/__e2e__/schemaSettings.test.mjs +0 -40
  1945. package/lib/modules/blocks/other-blocks/markdown/__e2e__/templatesOfBug.mjs +0 -1
  1946. package/lib/modules/blocks/other-blocks/markdown/markdownBlockSettings.mjs +0 -51
  1947. package/lib/modules/blocks/useParentRecordCommon.mjs +0 -18
  1948. package/lib/modules/blocks/useSourceId.mjs +0 -23
  1949. package/lib/modules/blocks/useSourceKey.mjs +0 -16
  1950. package/lib/modules/dialog/__e2e__/schemaInitializer.test.mjs +0 -435
  1951. package/lib/modules/dialog/__e2e__/schemaSettings.test.mjs +0 -65
  1952. package/lib/modules/dialog/__e2e__/templatesOfBug.mjs +0 -2128
  1953. package/lib/modules/dialog/__e2e__/zIndex.test.mjs +0 -46
  1954. package/lib/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.mjs +0 -120
  1955. package/lib/modules/fields/component/Cascader/cascaderComponentFieldSettings.mjs +0 -457
  1956. package/lib/modules/fields/component/Checkbox/checkboxComponentFieldSettings.mjs +0 -71
  1957. package/lib/modules/fields/component/DatePicker/__e2e__/schemaSettings.test.mjs +0 -86
  1958. package/lib/modules/fields/component/DatePicker/__e2e__/utils.mjs +0 -335
  1959. package/lib/modules/fields/component/DatePicker/datePickerComponentFieldSettings.mjs +0 -37
  1960. package/lib/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.mjs +0 -184
  1961. package/lib/modules/fields/component/FileManager/fileManagerComponentFieldSettings.mjs +0 -225
  1962. package/lib/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.mjs +0 -123
  1963. package/lib/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.mjs +0 -45
  1964. package/lib/modules/fields/component/Nester/subformComponentFieldSettings.mjs +0 -157
  1965. package/lib/modules/fields/component/Picker/TableSelectorInitializers.mjs +0 -98
  1966. package/lib/modules/fields/component/Picker/recordPickerComponentFieldSettings.mjs +0 -222
  1967. package/lib/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.mjs +0 -134
  1968. package/lib/modules/fields/component/Radio/radioComponentFieldSettings.mjs +0 -71
  1969. package/lib/modules/fields/component/Select/selectComponentFieldSettings.mjs +0 -453
  1970. package/lib/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.mjs +0 -447
  1971. package/lib/modules/fields/component/Tag/tagComponentFieldSettings.mjs +0 -207
  1972. package/lib/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.mjs +0 -37
  1973. package/lib/modules/fields/initializer/CollectionFieldInitializer.mjs +0 -30
  1974. package/lib/modules/fields/initializer/TableCollectionFieldInitializer.mjs +0 -30
  1975. package/lib/modules/menu/GroupItem.mjs +0 -110
  1976. package/lib/modules/menu/LinkMenuItem.mjs +0 -116
  1977. package/lib/modules/menu/PageMenuItem.mjs +0 -125
  1978. package/lib/modules/menu/__e2e__/dragAndDrop.test.mjs +0 -34
  1979. package/lib/modules/menu/__e2e__/schemaInitializer.test.mjs +0 -114
  1980. package/lib/modules/menu/__e2e__/schemaSettings.test.mjs +0 -366
  1981. package/lib/modules/menu/__e2e__/templatesOfBug.mjs +0 -1
  1982. package/lib/modules/menu/menuItemInitializer.mjs +0 -65
  1983. package/lib/modules/page/BlockInitializers.mjs +0 -86
  1984. package/lib/modules/page/__e2e__/blockInitializers.test.mjs +0 -23
  1985. package/lib/modules/page/__e2e__/dragAndDrop.test.mjs +0 -24
  1986. package/lib/modules/page/__e2e__/schemaInitailizer.test.mjs +0 -22
  1987. package/lib/modules/page/__e2e__/schemaSettings.test.mjs +0 -154
  1988. package/lib/modules/page/__e2e__/templatesOfBug.mjs +0 -1
  1989. package/lib/modules/plugin-manager/__e2e__/pluginManager.test.mjs +0 -132
  1990. package/lib/modules/plugin-manager/__e2e__/templatesOfBug.mjs +0 -1
  1991. package/lib/modules/user-center/__e2e__/settings.test.mjs +0 -18
  1992. package/lib/modules/variable/DeclareVariable.mjs +0 -27
  1993. package/lib/modules/variable/useVariable.mjs +0 -27
  1994. package/lib/powered-by/index.mjs +0 -57
  1995. package/lib/record-provider/index.mjs +0 -77
  1996. package/lib/route-switch/RouteSchemaComponent.mjs +0 -27
  1997. package/lib/route-switch/index.mjs +0 -5
  1998. package/lib/schema-component/antd/AntdSchemaComponentProvider.mjs +0 -74
  1999. package/lib/schema-component/antd/__builtins__/hooks/index.mjs +0 -9
  2000. package/lib/schema-component/antd/__builtins__/hooks/useConfig.mjs +0 -14
  2001. package/lib/schema-component/antd/__builtins__/hooks/usePrefixCls.mjs +0 -22
  2002. package/lib/schema-component/antd/__builtins__/hooks/useToken.mjs +0 -13
  2003. package/lib/schema-component/antd/__builtins__/index.mjs +0 -11
  2004. package/lib/schema-component/antd/__builtins__/loading.mjs +0 -21
  2005. package/lib/schema-component/antd/__builtins__/portal.mjs +0 -76
  2006. package/lib/schema-component/antd/__builtins__/render.mjs +0 -65
  2007. package/lib/schema-component/antd/__builtins__/style.mjs +0 -79
  2008. package/lib/schema-component/antd/action/Action.Area.mjs +0 -130
  2009. package/lib/schema-component/antd/action/Action.Area.style.mjs +0 -48
  2010. package/lib/schema-component/antd/action/Action.Container.mjs +0 -75
  2011. package/lib/schema-component/antd/action/Action.Designer.mjs +0 -1053
  2012. package/lib/schema-component/antd/action/Action.Drawer.mjs +0 -179
  2013. package/lib/schema-component/antd/action/Action.Drawer.style.mjs +0 -52
  2014. package/lib/schema-component/antd/action/Action.Link.mjs +0 -37
  2015. package/lib/schema-component/antd/action/Action.Modal.mjs +0 -214
  2016. package/lib/schema-component/antd/action/Action.Page.mjs +0 -112
  2017. package/lib/schema-component/antd/action/Action.Popover.mjs +0 -1
  2018. package/lib/schema-component/antd/action/Action.Sheet.mjs +0 -115
  2019. package/lib/schema-component/antd/action/Action.mjs +0 -349
  2020. package/lib/schema-component/antd/action/Action.style.mjs +0 -53
  2021. package/lib/schema-component/antd/action/ActionBar.mjs +0 -172
  2022. package/lib/schema-component/antd/action/__tests__/action.test.mjs +0 -161
  2023. package/lib/schema-component/antd/action/context.mjs +0 -29
  2024. package/lib/schema-component/antd/action/demos/demo1.mjs +0 -87
  2025. package/lib/schema-component/antd/action/demos/demo2.mjs +0 -90
  2026. package/lib/schema-component/antd/action/demos/demo3.mjs +0 -148
  2027. package/lib/schema-component/antd/action/demos/demo4.mjs +0 -75
  2028. package/lib/schema-component/antd/action/demos/demo5.mjs +0 -237
  2029. package/lib/schema-component/antd/action/demos/demo6.mjs +0 -114
  2030. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfAction.mjs +0 -62
  2031. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.mjs +0 -43
  2032. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfModal.mjs +0 -43
  2033. package/lib/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.mjs +0 -43
  2034. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.mjs +0 -42
  2035. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForModal.mjs +0 -44
  2036. package/lib/schema-component/antd/action/hooks/useSetAriaLabelForPopover.mjs +0 -33
  2037. package/lib/schema-component/antd/action/hooks.mjs +0 -86
  2038. package/lib/schema-component/antd/action/index.mjs +0 -23
  2039. package/lib/schema-component/antd/action/types.mjs +0 -4
  2040. package/lib/schema-component/antd/action/utils.mjs +0 -229
  2041. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelect.mjs +0 -268
  2042. package/lib/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.mjs +0 -267
  2043. package/lib/schema-component/antd/appends-tree-select/index.mjs +0 -7
  2044. package/lib/schema-component/antd/association-cascader/AssociationCascader.mjs +0 -173
  2045. package/lib/schema-component/antd/association-cascader/index.mjs +0 -5
  2046. package/lib/schema-component/antd/association-field/AssociationFieldProvider.mjs +0 -166
  2047. package/lib/schema-component/antd/association-field/AssociationSelect.mjs +0 -229
  2048. package/lib/schema-component/antd/association-field/Editable.mjs +0 -165
  2049. package/lib/schema-component/antd/association-field/FileManager.mjs +0 -261
  2050. package/lib/schema-component/antd/association-field/InternalCascadeSelect.mjs +0 -467
  2051. package/lib/schema-component/antd/association-field/InternalCascader.mjs +0 -443
  2052. package/lib/schema-component/antd/association-field/InternalDrawerSubTable.mjs +0 -138
  2053. package/lib/schema-component/antd/association-field/InternalNester.mjs +0 -117
  2054. package/lib/schema-component/antd/association-field/InternalPicker.mjs +0 -276
  2055. package/lib/schema-component/antd/association-field/InternalPopoverNester.mjs +0 -176
  2056. package/lib/schema-component/antd/association-field/InternalSubTable.mjs +0 -133
  2057. package/lib/schema-component/antd/association-field/InternalTag.mjs +0 -180
  2058. package/lib/schema-component/antd/association-field/InternalViewer.mjs +0 -197
  2059. package/lib/schema-component/antd/association-field/Nester.mjs +0 -330
  2060. package/lib/schema-component/antd/association-field/ReadPretty.mjs +0 -82
  2061. package/lib/schema-component/antd/association-field/SubTable.mjs +0 -351
  2062. package/lib/schema-component/antd/association-field/SubTabs/InternalCollapse.mjs +0 -384
  2063. package/lib/schema-component/antd/association-field/SubTabs/hook.mjs +0 -87
  2064. package/lib/schema-component/antd/association-field/SubTabs/index.mjs +0 -5
  2065. package/lib/schema-component/antd/association-field/SubTabs/styles.mjs +0 -33
  2066. package/lib/schema-component/antd/association-field/components/CreateRecordAction.mjs +0 -84
  2067. package/lib/schema-component/antd/association-field/context.mjs +0 -10
  2068. package/lib/schema-component/antd/association-field/hooks.mjs +0 -221
  2069. package/lib/schema-component/antd/association-field/index.mjs +0 -42
  2070. package/lib/schema-component/antd/association-field/schema.mjs +0 -135
  2071. package/lib/schema-component/antd/association-field/util.mjs +0 -133
  2072. package/lib/schema-component/antd/association-filter/ActionBarAssociationFilterAction.mjs +0 -88
  2073. package/lib/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.mjs +0 -67
  2074. package/lib/schema-component/antd/association-filter/AssociationFilter.Initializer.mjs +0 -67
  2075. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.Designer.mjs +0 -168
  2076. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.mjs +0 -183
  2077. package/lib/schema-component/antd/association-filter/AssociationFilter.Item.style.mjs +0 -107
  2078. package/lib/schema-component/antd/association-filter/AssociationFilter.mjs +0 -128
  2079. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDelete.mjs +0 -55
  2080. package/lib/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.mjs +0 -43
  2081. package/lib/schema-component/antd/association-filter/utilts.mjs +0 -7
  2082. package/lib/schema-component/antd/association-select/AssociationSelect.mjs +0 -1010
  2083. package/lib/schema-component/antd/association-select/ReadPretty.mjs +0 -38
  2084. package/lib/schema-component/antd/association-select/__tests__/association-select.test.mjs +0 -33
  2085. package/lib/schema-component/antd/association-select/demos/demo1.mjs +0 -75
  2086. package/lib/schema-component/antd/association-select/index.mjs +0 -5
  2087. package/lib/schema-component/antd/association-select/useServiceOptions.mjs +0 -114
  2088. package/lib/schema-component/antd/auto-complete/AutoComplete.mjs +0 -92
  2089. package/lib/schema-component/antd/auto-complete/index.mjs +0 -5
  2090. package/lib/schema-component/antd/block-item/BlockItem.mjs +0 -93
  2091. package/lib/schema-component/antd/block-item/BlockToolbar.mjs +0 -114
  2092. package/lib/schema-component/antd/block-item/__tests__/block-item.test.mjs +0 -29
  2093. package/lib/schema-component/antd/block-item/demos/demo1.mjs +0 -75
  2094. package/lib/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.mjs +0 -63
  2095. package/lib/schema-component/antd/block-item/index.mjs +0 -5
  2096. package/lib/schema-component/antd/block-item/useBlockToolbar.mjs +0 -107
  2097. package/lib/schema-component/antd/card-item/CardItem.mjs +0 -49
  2098. package/lib/schema-component/antd/card-item/__tests__/card-item.test.mjs +0 -28
  2099. package/lib/schema-component/antd/card-item/demos/demo1.mjs +0 -45
  2100. package/lib/schema-component/antd/card-item/index.mjs +0 -5
  2101. package/lib/schema-component/antd/card-item/style.mjs +0 -33
  2102. package/lib/schema-component/antd/cascader/Cascader.mjs +0 -123
  2103. package/lib/schema-component/antd/cascader/ReadPretty.mjs +0 -50
  2104. package/lib/schema-component/antd/cascader/__tests__/cascader.test.mjs +0 -56
  2105. package/lib/schema-component/antd/cascader/defaultFieldNames.mjs +0 -9
  2106. package/lib/schema-component/antd/cascader/demos/demo1.mjs +0 -100
  2107. package/lib/schema-component/antd/cascader/demos/demo2.mjs +0 -140
  2108. package/lib/schema-component/antd/cascader/index.mjs +0 -5
  2109. package/lib/schema-component/antd/checkbox/Checkbox.mjs +0 -120
  2110. package/lib/schema-component/antd/checkbox/__tests__/checkbox.test.mjs +0 -60
  2111. package/lib/schema-component/antd/checkbox/demos/checkbox.group.mjs +0 -73
  2112. package/lib/schema-component/antd/checkbox/demos/checkbox.mjs +0 -59
  2113. package/lib/schema-component/antd/checkbox/index.mjs +0 -5
  2114. package/lib/schema-component/antd/collection-select/CollectionSelect.mjs +0 -194
  2115. package/lib/schema-component/antd/collection-select/__tests__/collection-select.test.mjs +0 -33
  2116. package/lib/schema-component/antd/collection-select/demos/demo1.mjs +0 -54
  2117. package/lib/schema-component/antd/collection-select/index.mjs +0 -5
  2118. package/lib/schema-component/antd/color-picker/ColorPicker.mjs +0 -114
  2119. package/lib/schema-component/antd/color-picker/ReadPretty.mjs +0 -36
  2120. package/lib/schema-component/antd/color-picker/demos/demo1.mjs +0 -68
  2121. package/lib/schema-component/antd/color-picker/index.mjs +0 -5
  2122. package/lib/schema-component/antd/color-picker/util.mjs +0 -196
  2123. package/lib/schema-component/antd/color-select/ColorSelect.mjs +0 -73
  2124. package/lib/schema-component/antd/color-select/__tests__/color-select.test.mjs +0 -32
  2125. package/lib/schema-component/antd/color-select/demos/demo1.mjs +0 -59
  2126. package/lib/schema-component/antd/color-select/index.mjs +0 -5
  2127. package/lib/schema-component/antd/cron/Cron.mjs +0 -100
  2128. package/lib/schema-component/antd/cron/CronSet.mjs +0 -147
  2129. package/lib/schema-component/antd/cron/__tests__/cron-set.test.mjs +0 -50
  2130. package/lib/schema-component/antd/cron/demos/demo1.mjs +0 -50
  2131. package/lib/schema-component/antd/cron/demos/demo2.mjs +0 -69
  2132. package/lib/schema-component/antd/cron/index.mjs +0 -7
  2133. package/lib/schema-component/antd/custom-cascader/CustomCascader.mjs +0 -63
  2134. package/lib/schema-component/antd/custom-cascader/ReadPretty.mjs +0 -50
  2135. package/lib/schema-component/antd/custom-cascader/defaultFieldNames.mjs +0 -9
  2136. package/lib/schema-component/antd/custom-cascader/index.mjs +0 -5
  2137. package/lib/schema-component/antd/date-picker/DatePicker.mjs +0 -176
  2138. package/lib/schema-component/antd/date-picker/ReadPretty.mjs +0 -66
  2139. package/lib/schema-component/antd/date-picker/__tests__/date-picker.test.mjs +0 -250
  2140. package/lib/schema-component/antd/date-picker/__tests__/getDateRanges.test.mjs +0 -119
  2141. package/lib/schema-component/antd/date-picker/__tests__/mapDatePicker.test.mjs +0 -212
  2142. package/lib/schema-component/antd/date-picker/__tests__/mapRangePicker.test.mjs +0 -71
  2143. package/lib/schema-component/antd/date-picker/__tests__/util.test.mjs +0 -182
  2144. package/lib/schema-component/antd/date-picker/demos/demo1.mjs +0 -76
  2145. package/lib/schema-component/antd/date-picker/demos/demo10.mjs +0 -80
  2146. package/lib/schema-component/antd/date-picker/demos/demo11.mjs +0 -84
  2147. package/lib/schema-component/antd/date-picker/demos/demo2.mjs +0 -79
  2148. package/lib/schema-component/antd/date-picker/demos/demo3.mjs +0 -77
  2149. package/lib/schema-component/antd/date-picker/demos/demo4.mjs +0 -94
  2150. package/lib/schema-component/antd/date-picker/demos/demo5.mjs +0 -93
  2151. package/lib/schema-component/antd/date-picker/demos/demo6.mjs +0 -93
  2152. package/lib/schema-component/antd/date-picker/demos/demo7.mjs +0 -80
  2153. package/lib/schema-component/antd/date-picker/demos/demo8.mjs +0 -80
  2154. package/lib/schema-component/antd/date-picker/demos/demo9.mjs +0 -80
  2155. package/lib/schema-component/antd/date-picker/index.mjs +0 -5
  2156. package/lib/schema-component/antd/date-picker/util.mjs +0 -217
  2157. package/lib/schema-component/antd/details/Details.mjs +0 -44
  2158. package/lib/schema-component/antd/details/__tests__/details.test.mjs +0 -25
  2159. package/lib/schema-component/antd/details/demos/demo1.mjs +0 -59
  2160. package/lib/schema-component/antd/details/index.mjs +0 -5
  2161. package/lib/schema-component/antd/error-fallback/ErrorFallback.mjs +0 -77
  2162. package/lib/schema-component/antd/error-fallback/__tests__/error-fallback.test.mjs +0 -33
  2163. package/lib/schema-component/antd/error-fallback/demos/demo1.mjs +0 -30
  2164. package/lib/schema-component/antd/error-fallback/index.mjs +0 -5
  2165. package/lib/schema-component/antd/expand-action/Expand.Action.Design.mjs +0 -134
  2166. package/lib/schema-component/antd/expand-action/Expand.Action.mjs +0 -103
  2167. package/lib/schema-component/antd/expand-action/index.mjs +0 -15
  2168. package/lib/schema-component/antd/filter/DynamicComponent.mjs +0 -81
  2169. package/lib/schema-component/antd/filter/Filter.Action.Designer.mjs +0 -156
  2170. package/lib/schema-component/antd/filter/Filter.mjs +0 -95
  2171. package/lib/schema-component/antd/filter/FilterAction.mjs +0 -218
  2172. package/lib/schema-component/antd/filter/FilterGroup.mjs +0 -166
  2173. package/lib/schema-component/antd/filter/FilterItem.mjs +0 -120
  2174. package/lib/schema-component/antd/filter/FilterItems.mjs +0 -47
  2175. package/lib/schema-component/antd/filter/SaveDefaultValue.mjs +0 -61
  2176. package/lib/schema-component/antd/filter/__tests__/filter.test.mjs +0 -152
  2177. package/lib/schema-component/antd/filter/context.mjs +0 -14
  2178. package/lib/schema-component/antd/filter/demos/demo2.mjs +0 -143
  2179. package/lib/schema-component/antd/filter/demos/demo3.mjs +0 -213
  2180. package/lib/schema-component/antd/filter/demos/demo4.mjs +0 -203
  2181. package/lib/schema-component/antd/filter/demos/demo5.mjs +0 -145
  2182. package/lib/schema-component/antd/filter/demos/demo6.mjs +0 -140
  2183. package/lib/schema-component/antd/filter/index.mjs +0 -9
  2184. package/lib/schema-component/antd/filter/useFilterActionProps.mjs +0 -298
  2185. package/lib/schema-component/antd/filter/useOperators.mjs +0 -38
  2186. package/lib/schema-component/antd/filter/useValues.mjs +0 -155
  2187. package/lib/schema-component/antd/filter/utils.mjs +0 -20
  2188. package/lib/schema-component/antd/form/Form.Designer.mjs +0 -27
  2189. package/lib/schema-component/antd/form/Form.Settings.mjs +0 -48
  2190. package/lib/schema-component/antd/form/Form.mjs +0 -187
  2191. package/lib/schema-component/antd/form/__tests__/form.test.mjs +0 -155
  2192. package/lib/schema-component/antd/form/demos/apiClient.mjs +0 -26
  2193. package/lib/schema-component/antd/form/demos/demo1.mjs +0 -93
  2194. package/lib/schema-component/antd/form/demos/demo2.mjs +0 -95
  2195. package/lib/schema-component/antd/form/demos/demo3.mjs +0 -94
  2196. package/lib/schema-component/antd/form/demos/demo4.mjs +0 -98
  2197. package/lib/schema-component/antd/form/demos/demo5.mjs +0 -142
  2198. package/lib/schema-component/antd/form/demos/demo6.mjs +0 -95
  2199. package/lib/schema-component/antd/form/demos/demo7.mjs +0 -103
  2200. package/lib/schema-component/antd/form/demos/demo8.mjs +0 -110
  2201. package/lib/schema-component/antd/form/index.mjs +0 -7
  2202. package/lib/schema-component/antd/form-dialog/index.mjs +0 -199
  2203. package/lib/schema-component/antd/form-item/FormItem.FilterFormDesigner.mjs +0 -21
  2204. package/lib/schema-component/antd/form-item/FormItem.FilterFormSettings.mjs +0 -183
  2205. package/lib/schema-component/antd/form-item/FormItem.Settings.mjs +0 -1326
  2206. package/lib/schema-component/antd/form-item/FormItem.mjs +0 -200
  2207. package/lib/schema-component/antd/form-item/SchemaSettingOptions.mjs +0 -638
  2208. package/lib/schema-component/antd/form-item/__tests__/form-item.test.mjs +0 -27
  2209. package/lib/schema-component/antd/form-item/__tests__/hooks/useSpecialCase.test.mjs +0 -33
  2210. package/lib/schema-component/antd/form-item/__tests__/utils.test.mjs +0 -71
  2211. package/lib/schema-component/antd/form-item/demos/demo1.mjs +0 -56
  2212. package/lib/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.mjs +0 -135
  2213. package/lib/schema-component/antd/form-item/hooks/useParseDefaultValue.mjs +0 -164
  2214. package/lib/schema-component/antd/form-item/hooks/useSpecialCase.mjs +0 -182
  2215. package/lib/schema-component/antd/form-item/index.mjs +0 -11
  2216. package/lib/schema-component/antd/form-item/utils.mjs +0 -22
  2217. package/lib/schema-component/antd/form-tab/index.mjs +0 -168
  2218. package/lib/schema-component/antd/form-v2/Form.Designer.mjs +0 -51
  2219. package/lib/schema-component/antd/form-v2/Form.FilterDesigner.mjs +0 -36
  2220. package/lib/schema-component/antd/form-v2/Form.Settings.mjs +0 -364
  2221. package/lib/schema-component/antd/form-v2/Form.mjs +0 -432
  2222. package/lib/schema-component/antd/form-v2/FormField.mjs +0 -51
  2223. package/lib/schema-component/antd/form-v2/Templates.mjs +0 -257
  2224. package/lib/schema-component/antd/form-v2/__tests__/form-v2.test.mjs +0 -69
  2225. package/lib/schema-component/antd/form-v2/demos/collections.mjs +0 -1568
  2226. package/lib/schema-component/antd/form-v2/demos/demo1.mjs +0 -139
  2227. package/lib/schema-component/antd/form-v2/demos/demo2.mjs +0 -162
  2228. package/lib/schema-component/antd/form-v2/demos/demo3.mjs +0 -139
  2229. package/lib/schema-component/antd/form-v2/index.mjs +0 -32
  2230. package/lib/schema-component/antd/form-v2/utils.mjs +0 -182
  2231. package/lib/schema-component/antd/grid/Block.mjs +0 -39
  2232. package/lib/schema-component/antd/grid/Grid.mjs +0 -562
  2233. package/lib/schema-component/antd/grid/Grid.style.mjs +0 -51
  2234. package/lib/schema-component/antd/grid/__tests__/grid.test.mjs +0 -47
  2235. package/lib/schema-component/antd/grid/demos/demo1.mjs +0 -211
  2236. package/lib/schema-component/antd/grid/demos/demo2.mjs +0 -119
  2237. package/lib/schema-component/antd/grid/demos/demo3.mjs +0 -101
  2238. package/lib/schema-component/antd/grid/index.mjs +0 -7
  2239. package/lib/schema-component/antd/grid-card/GridCard.Decorator.mjs +0 -108
  2240. package/lib/schema-component/antd/grid-card/GridCard.Decorator.style.mjs +0 -30
  2241. package/lib/schema-component/antd/grid-card/GridCard.Designer.mjs +0 -317
  2242. package/lib/schema-component/antd/grid-card/GridCard.Item.mjs +0 -120
  2243. package/lib/schema-component/antd/grid-card/GridCard.mjs +0 -215
  2244. package/lib/schema-component/antd/grid-card/__tests__/grid-card.test.mjs +0 -24
  2245. package/lib/schema-component/antd/grid-card/demos/demo1.mjs +0 -17
  2246. package/lib/schema-component/antd/grid-card/hooks.mjs +0 -37
  2247. package/lib/schema-component/antd/grid-card/index.mjs +0 -5
  2248. package/lib/schema-component/antd/grid-card/options.mjs +0 -38
  2249. package/lib/schema-component/antd/icon-picker/IconFilterInput.mjs +0 -32
  2250. package/lib/schema-component/antd/icon-picker/IconList.mjs +0 -71
  2251. package/lib/schema-component/antd/icon-picker/IconPicker.mjs +0 -116
  2252. package/lib/schema-component/antd/icon-picker/__tests__/icon-picker.test.mjs +0 -43
  2253. package/lib/schema-component/antd/icon-picker/demos/icon-picker.mjs +0 -57
  2254. package/lib/schema-component/antd/icon-picker/index.mjs +0 -5
  2255. package/lib/schema-component/antd/index.mjs +0 -137
  2256. package/lib/schema-component/antd/input/EllipsisWithTooltip.mjs +0 -82
  2257. package/lib/schema-component/antd/input/Input.mjs +0 -56
  2258. package/lib/schema-component/antd/input/Json.mjs +0 -83
  2259. package/lib/schema-component/antd/input/ReadPretty.mjs +0 -186
  2260. package/lib/schema-component/antd/input/__tests__/Input.test.mjs +0 -141
  2261. package/lib/schema-component/antd/input/demos/input.mjs +0 -57
  2262. package/lib/schema-component/antd/input/demos/json.mjs +0 -63
  2263. package/lib/schema-component/antd/input/demos/textarea.mjs +0 -85
  2264. package/lib/schema-component/antd/input/demos/url.mjs +0 -59
  2265. package/lib/schema-component/antd/input/index.mjs +0 -13
  2266. package/lib/schema-component/antd/input/shared.mjs +0 -11
  2267. package/lib/schema-component/antd/input-number/InputNumber.mjs +0 -37
  2268. package/lib/schema-component/antd/input-number/ReadPretty.mjs +0 -161
  2269. package/lib/schema-component/antd/input-number/__tests__/input-number.test.mjs +0 -152
  2270. package/lib/schema-component/antd/input-number/demos/addonBefore&addonAfter.mjs +0 -65
  2271. package/lib/schema-component/antd/input-number/demos/highPrecisionDecimals.mjs +0 -67
  2272. package/lib/schema-component/antd/input-number/demos/inputNumber.mjs +0 -57
  2273. package/lib/schema-component/antd/input-number/index.mjs +0 -5
  2274. package/lib/schema-component/antd/list/List.Decorator.mjs +0 -135
  2275. package/lib/schema-component/antd/list/List.Designer.mjs +0 -260
  2276. package/lib/schema-component/antd/list/List.Item.mjs +0 -85
  2277. package/lib/schema-component/antd/list/List.mjs +0 -129
  2278. package/lib/schema-component/antd/list/List.style.mjs +0 -62
  2279. package/lib/schema-component/antd/list/__tests__/list.test.mjs +0 -24
  2280. package/lib/schema-component/antd/list/demos/demo1.mjs +0 -17
  2281. package/lib/schema-component/antd/list/hooks.mjs +0 -16
  2282. package/lib/schema-component/antd/list/index.mjs +0 -5
  2283. package/lib/schema-component/antd/markdown/Markdown.Void.Designer.mjs +0 -45
  2284. package/lib/schema-component/antd/markdown/Markdown.Void.mjs +0 -148
  2285. package/lib/schema-component/antd/markdown/Markdown.mjs +0 -83
  2286. package/lib/schema-component/antd/markdown/__tests__/markdown.test.mjs +0 -48
  2287. package/lib/schema-component/antd/markdown/demos/demo1.mjs +0 -59
  2288. package/lib/schema-component/antd/markdown/demos/demo2.mjs +0 -78
  2289. package/lib/schema-component/antd/markdown/index.mjs +0 -5
  2290. package/lib/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.mjs +0 -73
  2291. package/lib/schema-component/antd/markdown/md.mjs +0 -25
  2292. package/lib/schema-component/antd/markdown/style.mjs +0 -233
  2293. package/lib/schema-component/antd/markdown/util.mjs +0 -49
  2294. package/lib/schema-component/antd/menu/Menu.Designer.mjs +0 -478
  2295. package/lib/schema-component/antd/menu/Menu.mjs +0 -686
  2296. package/lib/schema-component/antd/menu/Menu.styles.mjs +0 -85
  2297. package/lib/schema-component/antd/menu/MenuItemInitializers/index.mjs +0 -17
  2298. package/lib/schema-component/antd/menu/__tests__/menu.test.mjs +0 -65
  2299. package/lib/schema-component/antd/menu/demos/demo1.mjs +0 -109
  2300. package/lib/schema-component/antd/menu/demos/demo2.mjs +0 -112
  2301. package/lib/schema-component/antd/menu/demos/demo3.mjs +0 -152
  2302. package/lib/schema-component/antd/menu/index.mjs +0 -9
  2303. package/lib/schema-component/antd/menu/locale.mjs +0 -11
  2304. package/lib/schema-component/antd/menu/util.mjs +0 -56
  2305. package/lib/schema-component/antd/nanoIDInput/NanoIDInput.mjs +0 -71
  2306. package/lib/schema-component/antd/nanoIDInput/index.mjs +0 -5
  2307. package/lib/schema-component/antd/page/FixedBlock.mjs +0 -118
  2308. package/lib/schema-component/antd/page/FixedBlockDesignerItem.mjs +0 -72
  2309. package/lib/schema-component/antd/page/Page.Settings.mjs +0 -167
  2310. package/lib/schema-component/antd/page/Page.mjs +0 -317
  2311. package/lib/schema-component/antd/page/PageTab.Settings.mjs +0 -108
  2312. package/lib/schema-component/antd/page/PageTabDesigner.mjs +0 -98
  2313. package/lib/schema-component/antd/page/__tests__/page.test.mjs +0 -33
  2314. package/lib/schema-component/antd/page/demos/demo1.mjs +0 -52
  2315. package/lib/schema-component/antd/page/hooks/useIsBlockInPage.mjs +0 -25
  2316. package/lib/schema-component/antd/page/index.mjs +0 -13
  2317. package/lib/schema-component/antd/page/style.mjs +0 -149
  2318. package/lib/schema-component/antd/pagination/index.mjs +0 -48
  2319. package/lib/schema-component/antd/password/Password.mjs +0 -102
  2320. package/lib/schema-component/antd/password/PasswordStrength.mjs +0 -29
  2321. package/lib/schema-component/antd/password/__tests__/password.test.mjs +0 -46
  2322. package/lib/schema-component/antd/password/__tests__/utils.test.mjs +0 -27
  2323. package/lib/schema-component/antd/password/demos/demo1.mjs +0 -59
  2324. package/lib/schema-component/antd/password/demos/demo2.mjs +0 -62
  2325. package/lib/schema-component/antd/password/index.mjs +0 -5
  2326. package/lib/schema-component/antd/password/utils.mjs +0 -146
  2327. package/lib/schema-component/antd/percent/Percent.mjs +0 -59
  2328. package/lib/schema-component/antd/percent/__tests__/percent.test.mjs +0 -31
  2329. package/lib/schema-component/antd/percent/demos/percent.mjs +0 -57
  2330. package/lib/schema-component/antd/percent/index.mjs +0 -5
  2331. package/lib/schema-component/antd/popover/Popover.mjs +0 -67
  2332. package/lib/schema-component/antd/popover/index.mjs +0 -5
  2333. package/lib/schema-component/antd/preview/Preview.mjs +0 -324
  2334. package/lib/schema-component/antd/preview/__tests__/preview.test.mjs +0 -26
  2335. package/lib/schema-component/antd/preview/demos/demo1.mjs +0 -103
  2336. package/lib/schema-component/antd/preview/index.mjs +0 -5
  2337. package/lib/schema-component/antd/quick-edit/QuickEdit.mjs +0 -148
  2338. package/lib/schema-component/antd/quick-edit/index.mjs +0 -5
  2339. package/lib/schema-component/antd/radio/Radio.mjs +0 -62
  2340. package/lib/schema-component/antd/radio/__tests__/radio.test.mjs +0 -64
  2341. package/lib/schema-component/antd/radio/demos/demo1.mjs +0 -60
  2342. package/lib/schema-component/antd/radio/demos/demo2.mjs +0 -72
  2343. package/lib/schema-component/antd/radio/demos/demo3.mjs +0 -73
  2344. package/lib/schema-component/antd/radio/index.mjs +0 -5
  2345. package/lib/schema-component/antd/record-picker/InputRecordPicker.mjs +0 -308
  2346. package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.mjs +0 -177
  2347. package/lib/schema-component/antd/record-picker/RecordPicker.mjs +0 -17
  2348. package/lib/schema-component/antd/record-picker/__tests__/record-picker.test.mjs +0 -44
  2349. package/lib/schema-component/antd/record-picker/demos/demo1.mjs +0 -198
  2350. package/lib/schema-component/antd/record-picker/demos/mockData.mjs +0 -214
  2351. package/lib/schema-component/antd/record-picker/index.mjs +0 -24
  2352. package/lib/schema-component/antd/record-picker/useFieldNames.mjs +0 -18
  2353. package/lib/schema-component/antd/record-picker/util.mjs +0 -59
  2354. package/lib/schema-component/antd/remote-select/ReadPretty.mjs +0 -71
  2355. package/lib/schema-component/antd/remote-select/RemoteSelect.mjs +0 -291
  2356. package/lib/schema-component/antd/remote-select/__tests__/remote-select.test.mjs +0 -33
  2357. package/lib/schema-component/antd/remote-select/demos/demo1.mjs +0 -75
  2358. package/lib/schema-component/antd/remote-select/index.mjs +0 -5
  2359. package/lib/schema-component/antd/remote-select/shared.mjs +0 -11
  2360. package/lib/schema-component/antd/rich-text/RichText.mjs +0 -85
  2361. package/lib/schema-component/antd/rich-text/__tests__/rich-text.test.mjs +0 -28
  2362. package/lib/schema-component/antd/rich-text/demos/demo1.mjs +0 -61
  2363. package/lib/schema-component/antd/rich-text/index.mjs +0 -5
  2364. package/lib/schema-component/antd/rich-text/style.mjs +0 -818
  2365. package/lib/schema-component/antd/scroll-area/ScrollArea.mjs +0 -63
  2366. package/lib/schema-component/antd/scroll-area/index.mjs +0 -5
  2367. package/lib/schema-component/antd/select/FormulaSelect.mjs +0 -263
  2368. package/lib/schema-component/antd/select/ReadPretty.mjs +0 -61
  2369. package/lib/schema-component/antd/select/Select.mjs +0 -214
  2370. package/lib/schema-component/antd/select/__tests__/select.test.mjs +0 -63
  2371. package/lib/schema-component/antd/select/__tests__/utils.test.mjs +0 -135
  2372. package/lib/schema-component/antd/select/demos/demo1.mjs +0 -91
  2373. package/lib/schema-component/antd/select/demos/demo2.mjs +0 -95
  2374. package/lib/schema-component/antd/select/demos/demo3.mjs +0 -105
  2375. package/lib/schema-component/antd/select/index.mjs +0 -7
  2376. package/lib/schema-component/antd/select/utils.mjs +0 -49
  2377. package/lib/schema-component/antd/space/index.mjs +0 -36
  2378. package/lib/schema-component/antd/table/Table.Array.Designer.mjs +0 -26
  2379. package/lib/schema-component/antd/table/Table.Array.mjs +0 -358
  2380. package/lib/schema-component/antd/table/Table.Column.ActionBar.mjs +0 -62
  2381. package/lib/schema-component/antd/table/Table.Column.Decorator.mjs +0 -77
  2382. package/lib/schema-component/antd/table/Table.Column.Designer.mjs +0 -173
  2383. package/lib/schema-component/antd/table/Table.Column.mjs +0 -22
  2384. package/lib/schema-component/antd/table/Table.Designer.mjs +0 -32
  2385. package/lib/schema-component/antd/table/Table.RowActionDesigner.mjs +0 -60
  2386. package/lib/schema-component/antd/table/Table.RowSelection.mjs +0 -47
  2387. package/lib/schema-component/antd/table/Table.Void.Designer.mjs +0 -278
  2388. package/lib/schema-component/antd/table/Table.Void.mjs +0 -155
  2389. package/lib/schema-component/antd/table/__tests__/table.test.mjs +0 -45
  2390. package/lib/schema-component/antd/table/demos/demo1.mjs +0 -77
  2391. package/lib/schema-component/antd/table/demos/demo2.mjs +0 -77
  2392. package/lib/schema-component/antd/table/demos/demo3.mjs +0 -77
  2393. package/lib/schema-component/antd/table/demos/demo4.mjs +0 -242
  2394. package/lib/schema-component/antd/table/index.mjs +0 -60
  2395. package/lib/schema-component/antd/table-v2/Table.ActionColumnDesigner.mjs +0 -60
  2396. package/lib/schema-component/antd/table-v2/Table.Column.ActionBar.mjs +0 -72
  2397. package/lib/schema-component/antd/table-v2/Table.Column.Decorator.mjs +0 -91
  2398. package/lib/schema-component/antd/table-v2/Table.Column.Designer.mjs +0 -514
  2399. package/lib/schema-component/antd/table-v2/Table.Column.mjs +0 -23
  2400. package/lib/schema-component/antd/table-v2/Table.Designer.mjs +0 -32
  2401. package/lib/schema-component/antd/table-v2/Table.Index.mjs +0 -22
  2402. package/lib/schema-component/antd/table-v2/Table.mjs +0 -574
  2403. package/lib/schema-component/antd/table-v2/Table.styles.mjs +0 -146
  2404. package/lib/schema-component/antd/table-v2/TableBlockDesigner.mjs +0 -392
  2405. package/lib/schema-component/antd/table-v2/TableField.mjs +0 -77
  2406. package/lib/schema-component/antd/table-v2/TableSelector.mjs +0 -9
  2407. package/lib/schema-component/antd/table-v2/TableSelectorDesigner.mjs +0 -347
  2408. package/lib/schema-component/antd/table-v2/__tests__/table-v2.test.mjs +0 -31
  2409. package/lib/schema-component/antd/table-v2/components/ColumnFieldProvider.mjs +0 -59
  2410. package/lib/schema-component/antd/table-v2/demos/collections.mjs +0 -1563
  2411. package/lib/schema-component/antd/table-v2/demos/demo1.mjs +0 -251
  2412. package/lib/schema-component/antd/table-v2/demos/demo2.mjs +0 -145
  2413. package/lib/schema-component/antd/table-v2/index.mjs +0 -52
  2414. package/lib/schema-component/antd/table-v2/utils.mjs +0 -20
  2415. package/lib/schema-component/antd/tabs/Tabs.Designer.mjs +0 -159
  2416. package/lib/schema-component/antd/tabs/Tabs.mjs +0 -141
  2417. package/lib/schema-component/antd/tabs/__tests__/tabs.test.mjs +0 -29
  2418. package/lib/schema-component/antd/tabs/context.mjs +0 -23
  2419. package/lib/schema-component/antd/tabs/demos/demo1.mjs +0 -86
  2420. package/lib/schema-component/antd/tabs/index.mjs +0 -7
  2421. package/lib/schema-component/antd/time-picker/ReadPretty.mjs +0 -42
  2422. package/lib/schema-component/antd/time-picker/TimePicker.mjs +0 -40
  2423. package/lib/schema-component/antd/time-picker/__tests__/time-picker.test.mjs +0 -68
  2424. package/lib/schema-component/antd/time-picker/demos/demo1.mjs +0 -59
  2425. package/lib/schema-component/antd/time-picker/demos/demo2.mjs +0 -59
  2426. package/lib/schema-component/antd/time-picker/index.mjs +0 -5
  2427. package/lib/schema-component/antd/tree/Tree.mjs +0 -115
  2428. package/lib/schema-component/antd/tree/index.mjs +0 -10
  2429. package/lib/schema-component/antd/tree-select/ReadPretty.mjs +0 -91
  2430. package/lib/schema-component/antd/tree-select/TreeSelect.mjs +0 -37
  2431. package/lib/schema-component/antd/tree-select/__tests__/tree-select.test.mjs +0 -29
  2432. package/lib/schema-component/antd/tree-select/demos/demo1.mjs +0 -103
  2433. package/lib/schema-component/antd/tree-select/index.mjs +0 -5
  2434. package/lib/schema-component/antd/unixTimestamp/UnixTimestamp.mjs +0 -69
  2435. package/lib/schema-component/antd/unixTimestamp/index.mjs +0 -5
  2436. package/lib/schema-component/antd/upload/ReadPretty.mjs +0 -249
  2437. package/lib/schema-component/antd/upload/Upload.mjs +0 -394
  2438. package/lib/schema-component/antd/upload/__tests__/upload.test.mjs +0 -31
  2439. package/lib/schema-component/antd/upload/demos/apiClient.mjs +0 -51
  2440. package/lib/schema-component/antd/upload/demos/demo1.mjs +0 -71
  2441. package/lib/schema-component/antd/upload/demos/demo2.mjs +0 -137
  2442. package/lib/schema-component/antd/upload/index.mjs +0 -5
  2443. package/lib/schema-component/antd/upload/placeholder.mjs +0 -66
  2444. package/lib/schema-component/antd/upload/shared.mjs +0 -254
  2445. package/lib/schema-component/antd/upload/style.mjs +0 -81
  2446. package/lib/schema-component/antd/upload/type.d.mjs +0 -7
  2447. package/lib/schema-component/antd/variable/CodeMirror.mjs +0 -124
  2448. package/lib/schema-component/antd/variable/Input.mjs +0 -384
  2449. package/lib/schema-component/antd/variable/JSONInput.mjs +0 -57
  2450. package/lib/schema-component/antd/variable/RawTextArea.mjs +0 -125
  2451. package/lib/schema-component/antd/variable/TextArea.mjs +0 -504
  2452. package/lib/schema-component/antd/variable/Variable.mjs +0 -57
  2453. package/lib/schema-component/antd/variable/VariableSelect.mjs +0 -101
  2454. package/lib/schema-component/antd/variable/VariableSelect.style.mjs +0 -36
  2455. package/lib/schema-component/antd/variable/XButton.mjs +0 -35
  2456. package/lib/schema-component/antd/variable/__tests__/variable.test.mjs +0 -66
  2457. package/lib/schema-component/antd/variable/demos/demo1.mjs +0 -63
  2458. package/lib/schema-component/antd/variable/demos/demo2.mjs +0 -63
  2459. package/lib/schema-component/antd/variable/demos/demo3.mjs +0 -63
  2460. package/lib/schema-component/antd/variable/index.mjs +0 -5
  2461. package/lib/schema-component/antd/variable/style.mjs +0 -186
  2462. package/lib/schema-component/common/dnd-context/index.mjs +0 -124
  2463. package/lib/schema-component/common/index.mjs +0 -7
  2464. package/lib/schema-component/common/infinite-scroll/infinite-scroll.mjs +0 -153
  2465. package/lib/schema-component/common/infinite-scroll/style.mjs +0 -36
  2466. package/lib/schema-component/common/sortable-item/SortableItem.mjs +0 -166
  2467. package/lib/schema-component/common/sortable-item/index.mjs +0 -5
  2468. package/lib/schema-component/common/utils/logic.mjs +0 -578
  2469. package/lib/schema-component/common/utils/uitls.mjs +0 -155
  2470. package/lib/schema-component/context.mjs +0 -10
  2471. package/lib/schema-component/core/DesignableSwitch.mjs +0 -67
  2472. package/lib/schema-component/core/FormProvider.mjs +0 -70
  2473. package/lib/schema-component/core/RemoteSchemaComponent.mjs +0 -72
  2474. package/lib/schema-component/core/SchemaComponent.mjs +0 -86
  2475. package/lib/schema-component/core/SchemaComponentOptions.mjs +0 -62
  2476. package/lib/schema-component/core/SchemaComponentPlugin.mjs +0 -22
  2477. package/lib/schema-component/core/SchemaComponentProvider.mjs +0 -116
  2478. package/lib/schema-component/core/index.mjs +0 -17
  2479. package/lib/schema-component/demos/demo1.mjs +0 -111
  2480. package/lib/schema-component/demos/demo2.mjs +0 -40
  2481. package/lib/schema-component/demos/demo3.mjs +0 -41
  2482. package/lib/schema-component/demos/demo4.mjs +0 -41
  2483. package/lib/schema-component/hooks/__tests__/designable.test.mjs +0 -564
  2484. package/lib/schema-component/hooks/__tests__/splitWrapSchema.test.mjs +0 -98
  2485. package/lib/schema-component/hooks/index.mjs +0 -27
  2486. package/lib/schema-component/hooks/useAttach.mjs +0 -24
  2487. package/lib/schema-component/hooks/useCompile.mjs +0 -59
  2488. package/lib/schema-component/hooks/useComponent.mjs +0 -26
  2489. package/lib/schema-component/hooks/useDesignable.mjs +0 -858
  2490. package/lib/schema-component/hooks/useDesigner.mjs +0 -36
  2491. package/lib/schema-component/hooks/useFieldComponentOptions.mjs +0 -106
  2492. package/lib/schema-component/hooks/useFieldModeOptions.mjs +0 -304
  2493. package/lib/schema-component/hooks/useFieldProps.mjs +0 -27
  2494. package/lib/schema-component/hooks/useFieldTitle.mjs +0 -37
  2495. package/lib/schema-component/hooks/useProps.mjs +0 -22
  2496. package/lib/schema-component/hooks/useSchemaComponentContext.mjs +0 -15
  2497. package/lib/schema-component/hooks/useTableSize.mjs +0 -40
  2498. package/lib/schema-component/index.mjs +0 -15
  2499. package/lib/schema-component/types.mjs +0 -7
  2500. package/lib/schema-initializer/SchemaInitializerPlugin.mjs +0 -292
  2501. package/lib/schema-initializer/buttons/CustomFormItemInitializers.mjs +0 -71
  2502. package/lib/schema-initializer/buttons/FormItemInitializers.mjs +0 -187
  2503. package/lib/schema-initializer/buttons/RecordBlockInitializers.mjs +0 -460
  2504. package/lib/schema-initializer/buttons/SubTableActionInitializers.mjs +0 -41
  2505. package/lib/schema-initializer/buttons/TabPaneInitializers.mjs +0 -232
  2506. package/lib/schema-initializer/buttons/index.mjs +0 -16
  2507. package/lib/schema-initializer/components/CreateRecordAction.mjs +0 -414
  2508. package/lib/schema-initializer/components/DeletedField.mjs +0 -25
  2509. package/lib/schema-initializer/components/assigned-field/AssignedField.mjs +0 -177
  2510. package/lib/schema-initializer/components/assigned-field/index.mjs +0 -5
  2511. package/lib/schema-initializer/components/index.mjs +0 -7
  2512. package/lib/schema-initializer/demos/basic.mjs +0 -81
  2513. package/lib/schema-initializer/demos/build-type.mjs +0 -96
  2514. package/lib/schema-initializer/demos/custom-button.mjs +0 -114
  2515. package/lib/schema-initializer/demos/custom-items-component.mjs +0 -116
  2516. package/lib/schema-initializer/demos/dynamic-visible-children.mjs +0 -94
  2517. package/lib/schema-initializer/demos/insert-schema-action.mjs +0 -111
  2518. package/lib/schema-initializer/demos/insert-schema-basic.mjs +0 -133
  2519. package/lib/schema-initializer/demos/insert-schema-form-item.mjs +0 -153
  2520. package/lib/schema-initializer/demos/nested-items.mjs +0 -170
  2521. package/lib/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.mjs +0 -36
  2522. package/lib/schema-initializer/index.mjs +0 -29
  2523. package/lib/schema-initializer/items/ActionInitializer.mjs +0 -29
  2524. package/lib/schema-initializer/items/BlockInitializer.mjs +0 -43
  2525. package/lib/schema-initializer/items/CreateFilterActionInitializer.mjs +0 -33
  2526. package/lib/schema-initializer/items/CreateResetActionInitializer.mjs +0 -28
  2527. package/lib/schema-initializer/items/CustomFilterFormItemInitializer.mjs +0 -540
  2528. package/lib/schema-initializer/items/CustomizeActionInitializer.mjs +0 -27
  2529. package/lib/schema-initializer/items/DataBlockInitializer.mjs +0 -393
  2530. package/lib/schema-initializer/items/DeleteEventActionInitializer.mjs +0 -36
  2531. package/lib/schema-initializer/items/FilterBlockInitializer.mjs +0 -9
  2532. package/lib/schema-initializer/items/G2PlotInitializer.mjs +0 -28
  2533. package/lib/schema-initializer/items/InitializerWithSwitch.mjs +0 -47
  2534. package/lib/schema-initializer/items/RecordAssociationBlockInitializer.mjs +0 -86
  2535. package/lib/schema-initializer/items/RecordAssociationDetailsBlockInitializer.mjs +0 -84
  2536. package/lib/schema-initializer/items/RecordAssociationFormBlockInitializer.mjs +0 -119
  2537. package/lib/schema-initializer/items/RecordAssociationGridCardBlockInitializer.mjs +0 -86
  2538. package/lib/schema-initializer/items/RecordAssociationListBlockInitializer.mjs +0 -84
  2539. package/lib/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.mjs +0 -118
  2540. package/lib/schema-initializer/items/SelectActionInitializer.mjs +0 -76
  2541. package/lib/schema-initializer/items/SubmitActionInitializer.mjs +0 -34
  2542. package/lib/schema-initializer/items/TableActionColumnInitializer.mjs +0 -57
  2543. package/lib/schema-initializer/items/index.mjs +0 -50
  2544. package/lib/schema-initializer/style.mjs +0 -23
  2545. package/lib/schema-initializer/utils.mjs +0 -1535
  2546. package/lib/schema-items/GeneralSchemaItems.mjs +0 -181
  2547. package/lib/schema-items/GeneralSettings.mjs +0 -226
  2548. package/lib/schema-items/OpenModeSchemaItems.mjs +0 -215
  2549. package/lib/schema-items/index.mjs +0 -7
  2550. package/lib/schema-settings/DataTemplates/FormDataTemplates.mjs +0 -332
  2551. package/lib/schema-settings/DataTemplates/TreeLabel.mjs +0 -42
  2552. package/lib/schema-settings/DataTemplates/components/AsDefaultTemplate.mjs +0 -64
  2553. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.mjs +0 -305
  2554. package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.style.mjs +0 -15
  2555. package/lib/schema-settings/DataTemplates/components/Designer.mjs +0 -208
  2556. package/lib/schema-settings/DataTemplates/hooks/useCollectionState.mjs +0 -348
  2557. package/lib/schema-settings/DataTemplates/index.mjs +0 -5
  2558. package/lib/schema-settings/DataTemplates/utils.mjs +0 -300
  2559. package/lib/schema-settings/DateFormat/ExpiresRadio.mjs +0 -160
  2560. package/lib/schema-settings/EditCustomDefaultValue.mjs +0 -137
  2561. package/lib/schema-settings/EditFormulaTitleField.mjs +0 -127
  2562. package/lib/schema-settings/EnableChildCollections/DynamicComponent.mjs +0 -91
  2563. package/lib/schema-settings/EnableChildCollections/index.mjs +0 -129
  2564. package/lib/schema-settings/GeneralSchemaDesigner.mjs +0 -328
  2565. package/lib/schema-settings/LinkageRules/DynamicComponent.mjs +0 -79
  2566. package/lib/schema-settings/LinkageRules/LinkageRuleAction.mjs +0 -272
  2567. package/lib/schema-settings/LinkageRules/LinkageRuleActionGroup.mjs +0 -116
  2568. package/lib/schema-settings/LinkageRules/ValueDynamicComponent.mjs +0 -200
  2569. package/lib/schema-settings/LinkageRules/Variables.mjs +0 -119
  2570. package/lib/schema-settings/LinkageRules/action-hooks.mjs +0 -128
  2571. package/lib/schema-settings/LinkageRules/components/EnableLinkage.mjs +0 -56
  2572. package/lib/schema-settings/LinkageRules/components/LinkageHeader.mjs +0 -304
  2573. package/lib/schema-settings/LinkageRules/components/LinkageHeader.style.mjs +0 -15
  2574. package/lib/schema-settings/LinkageRules/context.mjs +0 -14
  2575. package/lib/schema-settings/LinkageRules/index.mjs +0 -247
  2576. package/lib/schema-settings/LinkageRules/type.mjs +0 -18
  2577. package/lib/schema-settings/LinkageRules/useValues.mjs +0 -84
  2578. package/lib/schema-settings/SchemaSettingCollection.mjs +0 -73
  2579. package/lib/schema-settings/SchemaSettingComponent.mjs +0 -62
  2580. package/lib/schema-settings/SchemaSettings.mjs +0 -1517
  2581. package/lib/schema-settings/SchemaSettingsDataScope.mjs +0 -152
  2582. package/lib/schema-settings/SchemaSettingsDateFormat.mjs +0 -231
  2583. package/lib/schema-settings/SchemaSettingsDefaultValue.mjs +0 -274
  2584. package/lib/schema-settings/SchemaSettingsNumberFormat.mjs +0 -205
  2585. package/lib/schema-settings/SchemaSettingsPlugin.mjs +0 -265
  2586. package/lib/schema-settings/SchemaSettingsSortingRule.mjs +0 -155
  2587. package/lib/schema-settings/VariableInput/VariableInput.mjs +0 -260
  2588. package/lib/schema-settings/VariableInput/hooks/index.mjs +0 -9
  2589. package/lib/schema-settings/VariableInput/hooks/useBaseVariable.mjs +0 -228
  2590. package/lib/schema-settings/VariableInput/hooks/useBlockCollection.mjs +0 -16
  2591. package/lib/schema-settings/VariableInput/hooks/useContextAssociationFields.mjs +0 -126
  2592. package/lib/schema-settings/VariableInput/hooks/useDateVariable.mjs +0 -179
  2593. package/lib/schema-settings/VariableInput/hooks/useFilterVariable.mjs +0 -77
  2594. package/lib/schema-settings/VariableInput/hooks/useFormVariable.mjs +0 -85
  2595. package/lib/schema-settings/VariableInput/hooks/useIterationVariable.mjs +0 -94
  2596. package/lib/schema-settings/VariableInput/hooks/useParentRecordVariable.mjs +0 -71
  2597. package/lib/schema-settings/VariableInput/hooks/usePopupVariable.mjs +0 -37
  2598. package/lib/schema-settings/VariableInput/hooks/useRecordVariable.mjs +0 -64
  2599. package/lib/schema-settings/VariableInput/hooks/useRoleVariable.mjs +0 -64
  2600. package/lib/schema-settings/VariableInput/hooks/useUserVariable.mjs +0 -67
  2601. package/lib/schema-settings/VariableInput/hooks/useVariableOptions.mjs +0 -140
  2602. package/lib/schema-settings/VariableInput/index.mjs +0 -7
  2603. package/lib/schema-settings/VariableInput/type.mjs +0 -4
  2604. package/lib/schema-settings/VariableInput/utils/formatVariableScop.mjs +0 -16
  2605. package/lib/schema-settings/demos/basic.mjs +0 -75
  2606. package/lib/schema-settings/demos/built-type.mjs +0 -157
  2607. package/lib/schema-settings/demos/custom-component.mjs +0 -58
  2608. package/lib/schema-settings/demos/demo3.mjs +0 -120
  2609. package/lib/schema-settings/demos/schema-basic.mjs +0 -84
  2610. package/lib/schema-settings/filter-form/FormFilterScope.mjs +0 -147
  2611. package/lib/schema-settings/filter-form/context.mjs +0 -14
  2612. package/lib/schema-settings/hooks/useFilterFormCustomProps.mjs +0 -22
  2613. package/lib/schema-settings/hooks/useGetAriaLabelOfDesigner.mjs +0 -39
  2614. package/lib/schema-settings/hooks/useIsAllowToSetDefaultValue.mjs +0 -109
  2615. package/lib/schema-settings/hooks/useIsShowMultipleSwitch.mjs +0 -27
  2616. package/lib/schema-settings/hooks/useParseDataScopeFilter.mjs +0 -83
  2617. package/lib/schema-settings/index.mjs +0 -39
  2618. package/lib/schema-settings/isPatternDisabled.mjs +0 -8
  2619. package/lib/schema-settings/styles.mjs +0 -92
  2620. package/lib/schema-settings/types.mjs +0 -4
  2621. package/lib/schema-templates/BlockTemplate.mjs +0 -63
  2622. package/lib/schema-templates/BlockTemplateDetails.mjs +0 -126
  2623. package/lib/schema-templates/BlockTemplatePage.mjs +0 -55
  2624. package/lib/schema-templates/SchemaTemplateManagerProvider.mjs +0 -103
  2625. package/lib/schema-templates/collections/uiSchemaTemplates.mjs +0 -22
  2626. package/lib/schema-templates/index.mjs +0 -11
  2627. package/lib/schema-templates/schemas/CollectionTitle.mjs +0 -52
  2628. package/lib/schema-templates/schemas/uiSchemaTemplates.mjs +0 -249
  2629. package/lib/schema-templates/useSchemaTemplateManager.mjs +0 -119
  2630. package/lib/style/css-variable/CSSVariableProvider.mjs +0 -90
  2631. package/lib/style/css-variable/index.mjs +0 -9
  2632. package/lib/style/index.mjs +0 -23
  2633. package/lib/style/theme/AntdAppProvider.mjs +0 -54
  2634. package/lib/style/theme/defaultTheme.mjs +0 -24
  2635. package/lib/style/theme/index.mjs +0 -96
  2636. package/lib/style/theme/type.mjs +0 -4
  2637. package/lib/style/useToken.mjs +0 -13
  2638. package/lib/testUtils/index.mjs +0 -5
  2639. package/lib/testUtils/mockAPIClient.mjs +0 -57
  2640. package/lib/user/ChangePassword.mjs +0 -180
  2641. package/lib/user/CurrentUser.mjs +0 -282
  2642. package/lib/user/CurrentUserProvider.mjs +0 -89
  2643. package/lib/user/CurrentUserSettingsMenuProvider.mjs +0 -88
  2644. package/lib/user/EditProfile.mjs +0 -172
  2645. package/lib/user/LanguageSettings.mjs +0 -70
  2646. package/lib/user/SwitchRole.mjs +0 -66
  2647. package/lib/user/VerificationCode.mjs +0 -115
  2648. package/lib/user/__tests__/current-user-settings-menu-provider.test.mjs +0 -64
  2649. package/lib/user/index.mjs +0 -9
  2650. package/lib/variables/VariablesProvider.mjs +0 -319
  2651. package/lib/variables/__tests__/useVariables.test.mjs +0 -473
  2652. package/lib/variables/__tests__/utils/filterEmptyValues.test.mjs +0 -52
  2653. package/lib/variables/__tests__/utils/getPath.test.mjs +0 -10
  2654. package/lib/variables/__tests__/utils/getVariableName.test.mjs +0 -10
  2655. package/lib/variables/__tests__/utils/isVariable.test.mjs +0 -28
  2656. package/lib/variables/__tests__/utils/transformVariableValue.test.mjs +0 -142
  2657. package/lib/variables/__tests__/utils/uniq.test.mjs +0 -83
  2658. package/lib/variables/constants.mjs +0 -5
  2659. package/lib/variables/hooks/useBuiltinVariables.mjs +0 -80
  2660. package/lib/variables/hooks/useContextVariable.mjs +0 -38
  2661. package/lib/variables/hooks/useLocalVariables.mjs +0 -102
  2662. package/lib/variables/hooks/useVariables.mjs +0 -16
  2663. package/lib/variables/index.mjs +0 -36
  2664. package/lib/variables/types.mjs +0 -4
  2665. package/lib/variables/utils/filterEmptyValues.mjs +0 -12
  2666. package/lib/variables/utils/getAction.mjs +0 -14
  2667. package/lib/variables/utils/getPath.mjs +0 -19
  2668. package/lib/variables/utils/getVariableName.mjs +0 -25
  2669. package/lib/variables/utils/hasRequested.mjs +0 -24
  2670. package/lib/variables/utils/isVariable.mjs +0 -15
  2671. package/lib/variables/utils/transformVariableValue.mjs +0 -55
  2672. package/lib/variables/utils/uniq.mjs +0 -26
  2673. /package/{lib → es}/built-in/assistant/ai-chat/index_module.css +0 -0
  2674. /package/{lib → es}/global.css +0 -0
  2675. /package/{lib → es}/schema-component/antd/index.css +0 -0
@@ -0,0 +1,1204 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__ from "react/jsx-runtime";
2
+ import "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_lodash__ from "lodash";
6
+ import * as __WEBPACK_EXTERNAL_MODULE_react_i18next__ from "react-i18next";
7
+ import * as __WEBPACK_EXTERNAL_MODULE__application_schema_settings_index_mjs__ from "../../../application/schema-settings/index.mjs";
8
+ import * as __WEBPACK_EXTERNAL_MODULE__block_provider_FormBlockProvider_mjs__ from "../../../block-provider/FormBlockProvider.mjs";
9
+ import * as __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__ from "../../../collection-manager/index.mjs";
10
+ import * as __WEBPACK_EXTERNAL_MODULE__data_source_index_mjs__ from "../../../data-source/index.mjs";
11
+ import * as __WEBPACK_EXTERNAL_MODULE__record_provider_index_mjs__ from "../../../record-provider/index.mjs";
12
+ import * as __WEBPACK_EXTERNAL_MODULE__table_v2_Table_Column_Decorator_mjs__ from "../table-v2/Table.Column.Decorator.mjs";
13
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_items_GeneralSettings_mjs__ from "../../../schema-items/GeneralSettings.mjs";
14
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsAllowToSetDefaultValue_mjs__ from "../../../schema-settings/hooks/useIsAllowToSetDefaultValue.mjs";
15
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsShowMultipleSwitch_mjs__ from "../../../schema-settings/hooks/useIsShowMultipleSwitch.mjs";
16
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_isPatternDisabled_mjs__ from "../../../schema-settings/isPatternDisabled.mjs";
17
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_LinkageRules_type_mjs__ from "../../../schema-settings/LinkageRules/type.mjs";
18
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDataScope_mjs__ from "../../../schema-settings/SchemaSettingsDataScope.mjs";
19
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDateFormat_mjs__ from "../../../schema-settings/SchemaSettingsDateFormat.mjs";
20
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDefaultValue_mjs__ from "../../../schema-settings/SchemaSettingsDefaultValue.mjs";
21
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsSortingRule_mjs__ from "../../../schema-settings/SchemaSettingsSortingRule.mjs";
22
+ import * as __WEBPACK_EXTERNAL_MODULE__schema_settings_VariableInput_VariableInput_mjs__ from "../../../schema-settings/VariableInput/VariableInput.mjs";
23
+ import * as __WEBPACK_EXTERNAL_MODULE__variables_index_mjs__ from "../../../variables/index.mjs";
24
+ import * as __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__ from "../../hooks/index.mjs";
25
+ import * as __WEBPACK_EXTERNAL_MODULE__association_field_util_mjs__ from "../association-field/util.mjs";
26
+ import * as __WEBPACK_EXTERNAL_MODULE__filter_index_mjs__ from "../filter/index.mjs";
27
+ import * as __WEBPACK_EXTERNAL_MODULE__form_v2_utils_mjs__ from "../form-v2/utils.mjs";
28
+ import * as __WEBPACK_EXTERNAL_MODULE__table_v2_Table_Column_Designer_mjs__ from "../table-v2/Table.Column.Designer.mjs";
29
+ const formItemSettings = new __WEBPACK_EXTERNAL_MODULE__application_schema_settings_index_mjs__.SchemaSettings({
30
+ name: 'FormItemSettings',
31
+ items: [
32
+ ...__WEBPACK_EXTERNAL_MODULE__schema_items_GeneralSettings_mjs__.generalSettingsItems,
33
+ {
34
+ name: 'allowAddNewData',
35
+ type: 'switch',
36
+ useVisible () {
37
+ const readPretty = useIsFieldReadPretty();
38
+ const isAssociationField = useIsAssociationField();
39
+ const fieldMode = useFieldMode();
40
+ return !readPretty && isAssociationField && [
41
+ 'SubTable'
42
+ ].includes(fieldMode);
43
+ },
44
+ useComponentProps () {
45
+ var _fieldSchema_xcomponentprops;
46
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
47
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
48
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
49
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
50
+ return {
51
+ title: t('Allow add new'),
52
+ checked: (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.allowAddnew) !== false,
53
+ onChange (value) {
54
+ const schema = {
55
+ ['x-uid']: fieldSchema['x-uid']
56
+ };
57
+ field.componentProps.allowAddnew = value;
58
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
59
+ fieldSchema['x-component-props'].allowAddnew = value;
60
+ schema['x-component-props'] = fieldSchema['x-component-props'];
61
+ dn.emit('patch', {
62
+ schema
63
+ });
64
+ refresh();
65
+ }
66
+ };
67
+ }
68
+ },
69
+ {
70
+ name: 'allowSelectExistingRecord',
71
+ type: 'switch',
72
+ useVisible () {
73
+ const readPretty = useIsFieldReadPretty();
74
+ const isAssociationField = useIsAssociationField();
75
+ const fieldMode = useFieldMode();
76
+ return !readPretty && isAssociationField && [
77
+ 'SubTable'
78
+ ].includes(fieldMode);
79
+ },
80
+ useComponentProps () {
81
+ var _fieldSchema_xcomponentprops;
82
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
83
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
84
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
85
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
86
+ return {
87
+ title: t('Allow selection of existing records'),
88
+ checked: null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.allowSelectExistingRecord,
89
+ onChange (value) {
90
+ const schema = {
91
+ ['x-uid']: fieldSchema['x-uid']
92
+ };
93
+ field.componentProps.allowSelectExistingRecord = value;
94
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
95
+ fieldSchema['x-component-props'].allowSelectExistingRecord = value;
96
+ schema['x-component-props'] = fieldSchema['x-component-props'];
97
+ dn.emit('patch', {
98
+ schema
99
+ });
100
+ refresh();
101
+ }
102
+ };
103
+ }
104
+ },
105
+ {
106
+ name: 'quickUpload',
107
+ type: 'switch',
108
+ useVisible () {
109
+ const isFileField = useIsFileField();
110
+ const isFormReadPretty = useIsFormReadPretty();
111
+ return !isFormReadPretty && isFileField;
112
+ },
113
+ useComponentProps () {
114
+ var _fieldSchema_xcomponentprops;
115
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
116
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
117
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
118
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
119
+ return {
120
+ title: t('Quick upload'),
121
+ checked: (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.quickUpload) !== false,
122
+ onChange (value) {
123
+ const schema = {
124
+ ['x-uid']: fieldSchema['x-uid']
125
+ };
126
+ field.componentProps.quickUpload = value;
127
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
128
+ fieldSchema['x-component-props'].quickUpload = value;
129
+ schema['x-component-props'] = fieldSchema['x-component-props'];
130
+ dn.emit('patch', {
131
+ schema
132
+ });
133
+ refresh();
134
+ }
135
+ };
136
+ }
137
+ },
138
+ {
139
+ name: 'selectFile',
140
+ type: 'switch',
141
+ useVisible () {
142
+ const isFileField = useIsFileField();
143
+ const isFormReadPretty = useIsFormReadPretty();
144
+ return !isFormReadPretty && isFileField;
145
+ },
146
+ useComponentProps () {
147
+ var _fieldSchema_xcomponentprops;
148
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
149
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
150
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
151
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
152
+ return {
153
+ title: t('Select file'),
154
+ checked: (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.selectFile) !== false,
155
+ onChange (value) {
156
+ const schema = {
157
+ ['x-uid']: fieldSchema['x-uid']
158
+ };
159
+ field.componentProps.selectFile = value;
160
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
161
+ fieldSchema['x-component-props'].selectFile = value;
162
+ schema['x-component-props'] = fieldSchema['x-component-props'];
163
+ dn.emit('patch', {
164
+ schema
165
+ });
166
+ refresh();
167
+ }
168
+ };
169
+ }
170
+ },
171
+ {
172
+ name: 'validationRules',
173
+ type: 'modal',
174
+ useComponentProps () {
175
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
176
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
177
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
178
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
179
+ const validateSchema = useValidateSchema();
180
+ const { getCollectionJoinField } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
181
+ const { getField } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollection_deprecated)();
182
+ const collectionField = getField(fieldSchema['name']) || getCollectionJoinField(fieldSchema['x-collection-field']);
183
+ return {
184
+ title: t('Set validation rules'),
185
+ components: {
186
+ ArrayCollapse: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.ArrayCollapse,
187
+ FormLayout: __WEBPACK_EXTERNAL_MODULE__tachybase_components__.FormLayout
188
+ },
189
+ schema: {
190
+ type: 'object',
191
+ title: t('Set validation rules'),
192
+ properties: {
193
+ rules: {
194
+ type: 'array',
195
+ default: null == fieldSchema ? void 0 : fieldSchema['x-validator'],
196
+ 'x-component': 'ArrayCollapse',
197
+ 'x-decorator': 'FormItem',
198
+ 'x-component-props': {
199
+ accordion: true
200
+ },
201
+ maxItems: 3,
202
+ items: {
203
+ type: 'object',
204
+ 'x-component': 'ArrayCollapse.CollapsePanel',
205
+ 'x-component-props': {
206
+ header: '{{ t("Validation rule") }}'
207
+ },
208
+ properties: {
209
+ index: {
210
+ type: 'void',
211
+ 'x-component': 'ArrayCollapse.Index'
212
+ },
213
+ layout: {
214
+ type: 'void',
215
+ 'x-component': 'FormLayout',
216
+ 'x-component-props': {
217
+ labelStyle: {
218
+ marginTop: '6px'
219
+ },
220
+ labelCol: 8,
221
+ wrapperCol: 16
222
+ },
223
+ properties: {
224
+ ...validateSchema,
225
+ message: {
226
+ type: 'string',
227
+ title: '{{ t("Error message") }}',
228
+ 'x-decorator': 'FormItem',
229
+ 'x-component': 'Input.TextArea',
230
+ 'x-component-props': {
231
+ autoSize: {
232
+ minRows: 2,
233
+ maxRows: 2
234
+ }
235
+ }
236
+ }
237
+ }
238
+ },
239
+ remove: {
240
+ type: 'void',
241
+ 'x-component': 'ArrayCollapse.Remove'
242
+ },
243
+ moveUp: {
244
+ type: 'void',
245
+ 'x-component': 'ArrayCollapse.MoveUp'
246
+ },
247
+ moveDown: {
248
+ type: 'void',
249
+ 'x-component': 'ArrayCollapse.MoveDown'
250
+ }
251
+ }
252
+ },
253
+ properties: {
254
+ add: {
255
+ type: 'void',
256
+ title: '{{ t("Add validation rule") }}',
257
+ 'x-component': 'ArrayCollapse.Addition',
258
+ 'x-reactions': {
259
+ dependencies: [
260
+ 'rules'
261
+ ],
262
+ fulfill: {
263
+ state: {
264
+ disabled: '{{$deps[0].length >= 3}}'
265
+ }
266
+ }
267
+ }
268
+ }
269
+ }
270
+ }
271
+ }
272
+ },
273
+ onSubmit (v) {
274
+ var _collectionField_uiSchema;
275
+ const rules = [];
276
+ for (const rule of v.rules)rules.push(__WEBPACK_EXTERNAL_MODULE_lodash__["default"].pickBy(rule, __WEBPACK_EXTERNAL_MODULE_lodash__["default"].identity));
277
+ const schema = {
278
+ ['x-uid']: fieldSchema['x-uid']
279
+ };
280
+ if ([
281
+ 'percent'
282
+ ].includes(null == collectionField ? void 0 : collectionField.interface)) for (const rule of rules){
283
+ if (!!rule.maxValue || !!rule.minValue) rule['percentMode'] = true;
284
+ if (rule.percentFormat) rule['percentFormats'] = true;
285
+ }
286
+ const concatValidator = __WEBPACK_EXTERNAL_MODULE_lodash__["default"].concat([], (null == collectionField ? void 0 : null === (_collectionField_uiSchema = collectionField.uiSchema) || void 0 === _collectionField_uiSchema ? void 0 : _collectionField_uiSchema['x-validator']) || [], rules);
287
+ field.validator = concatValidator;
288
+ fieldSchema['x-validator'] = rules;
289
+ schema['x-validator'] = rules;
290
+ dn.emit('patch', {
291
+ schema
292
+ });
293
+ refresh();
294
+ }
295
+ };
296
+ },
297
+ useVisible () {
298
+ const { form } = (0, __WEBPACK_EXTERNAL_MODULE__block_provider_FormBlockProvider_mjs__.useFormBlockContext)();
299
+ const isFormReadPretty = useIsFormReadPretty();
300
+ const validateSchema = useValidateSchema();
301
+ return form && !isFormReadPretty && validateSchema;
302
+ }
303
+ },
304
+ {
305
+ name: 'isquickaddtabs',
306
+ type: 'switch',
307
+ useVisible () {
308
+ const readPretty = useIsFieldReadPretty();
309
+ const isAssociationField = useIsAssociationField();
310
+ const fieldMode = useFieldMode();
311
+ return !readPretty && isAssociationField && [
312
+ 'SubTable'
313
+ ].includes(fieldMode);
314
+ },
315
+ useComponentProps () {
316
+ var _fieldSchema_xcomponentprops;
317
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
318
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
319
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
320
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
321
+ return {
322
+ title: t('Is Quick Add Tabs'),
323
+ checked: (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.isQuickAdd) || false,
324
+ onChange (value) {
325
+ const schema = {
326
+ ['x-uid']: fieldSchema['x-uid']
327
+ };
328
+ field.componentProps['isQuickAdd'] = value;
329
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
330
+ fieldSchema['x-component-props']['isQuickAdd'] = value;
331
+ schema['x-component-props'] = fieldSchema['x-component-props'];
332
+ dn.emit('patch', {
333
+ schema
334
+ });
335
+ refresh();
336
+ }
337
+ };
338
+ }
339
+ },
340
+ {
341
+ name: 'setquickaddtabs',
342
+ type: 'select',
343
+ useComponentProps () {
344
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
345
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
346
+ const compile = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useCompile)();
347
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
348
+ const cm = (0, __WEBPACK_EXTERNAL_MODULE__data_source_index_mjs__.useCollectionManager)();
349
+ const options = cm.getCollection(fieldSchema['x-collection-field']);
350
+ const defVal = fieldSchema['x-component-props']['quickAddField'] || 'none';
351
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
352
+ const isAddNewForm = useIsAddNewForm();
353
+ const fieldTabsOptions = options.fields.map((item)=>{
354
+ if ('m2o' === item.interface || 'select' === item.interface) {
355
+ var _item_uiSchema;
356
+ return {
357
+ ...item,
358
+ label: compile(null === (_item_uiSchema = item.uiSchema) || void 0 === _item_uiSchema ? void 0 : _item_uiSchema.title),
359
+ value: item.name
360
+ };
361
+ }
362
+ }).filter(Boolean);
363
+ fieldTabsOptions.unshift({
364
+ label: 'none',
365
+ value: 'none'
366
+ });
367
+ return {
368
+ title: t('Set Quick Add Tabs'),
369
+ options: fieldTabsOptions,
370
+ value: defVal,
371
+ onChange (mode) {
372
+ const schema = {
373
+ ['x-uid']: fieldSchema['x-uid']
374
+ };
375
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
376
+ fieldSchema['x-component-props']['quickAddField'] = {
377
+ fieldInterface: fieldTabsOptions.find((item)=>item.value === mode)['interface'] || 'none',
378
+ value: mode
379
+ };
380
+ schema['x-component-props'] = fieldSchema['x-component-props'];
381
+ field.componentProps = field.componentProps || {};
382
+ field.componentProps['quickAddField'] = fieldSchema['x-component-props']['quickAddField'];
383
+ if ((0, __WEBPACK_EXTERNAL_MODULE__association_field_util_mjs__.isSubMode)(fieldSchema) && isAddNewForm) {
384
+ schema.default = null;
385
+ fieldSchema.default = null;
386
+ field.setInitialValue(null);
387
+ field.setValue(null);
388
+ }
389
+ dn.emit('patch', {
390
+ schema
391
+ });
392
+ dn.refresh();
393
+ }
394
+ };
395
+ },
396
+ useVisible () {
397
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
398
+ return fieldSchema['x-component-props']['isQuickAdd'];
399
+ }
400
+ },
401
+ {
402
+ name: 'setquickaddparenttabs',
403
+ type: 'select',
404
+ useComponentProps () {
405
+ var _fieldSchema_xcomponentprops, _fieldSchema_xcomponentprops_quickAddParentCollection, _fieldSchema_xcomponentprops1;
406
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
407
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
408
+ const compile = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useCompile)();
409
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
410
+ const cm = (0, __WEBPACK_EXTERNAL_MODULE__data_source_index_mjs__.useCollectionManager)();
411
+ const { value: quickField } = (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops['quickAddField']) || {};
412
+ const options = cm.getCollectionFields("".concat(fieldSchema['x-collection-field'], ".").concat(quickField));
413
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
414
+ const isAddNewForm = useIsAddNewForm();
415
+ const fieldTabsOptions = options.map((item)=>{
416
+ if ('m2o' === item.interface) return {
417
+ ...item,
418
+ label: compile(item.uiSchema.title),
419
+ value: item.name
420
+ };
421
+ }).filter(Boolean);
422
+ fieldTabsOptions.unshift({
423
+ label: t('none'),
424
+ value: 'none'
425
+ });
426
+ const defValue = (null === (_fieldSchema_xcomponentprops1 = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops1 ? void 0 : null === (_fieldSchema_xcomponentprops_quickAddParentCollection = _fieldSchema_xcomponentprops1['quickAddParentCollection']) || void 0 === _fieldSchema_xcomponentprops_quickAddParentCollection ? void 0 : _fieldSchema_xcomponentprops_quickAddParentCollection.value) || 'none';
427
+ return {
428
+ title: t('Set Quick Add Parent Tabs'),
429
+ options: fieldTabsOptions,
430
+ value: defValue,
431
+ onChange (mode) {
432
+ const schema = {
433
+ ['x-uid']: fieldSchema['x-uid']
434
+ };
435
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
436
+ fieldSchema['x-component-props']['quickAddParentCollection'] = {
437
+ collectionField: "".concat(fieldSchema['x-collection-field'], ".").concat(quickField, ".").concat(mode),
438
+ value: mode
439
+ };
440
+ schema['x-component-props'] = fieldSchema['x-component-props'];
441
+ field.componentProps = field.componentProps || {};
442
+ field.componentProps['quickAddParentCollection'] = {
443
+ collectionField: "".concat(fieldSchema['x-collection-field'], ".").concat(quickField, ".").concat(mode),
444
+ value: mode
445
+ };
446
+ if ((0, __WEBPACK_EXTERNAL_MODULE__association_field_util_mjs__.isSubMode)(fieldSchema) && isAddNewForm) {
447
+ schema.default = null;
448
+ fieldSchema.default = null;
449
+ field.setInitialValue(null);
450
+ field.setValue(null);
451
+ }
452
+ dn.emit('patch', {
453
+ schema
454
+ });
455
+ dn.refresh();
456
+ }
457
+ };
458
+ },
459
+ useVisible () {
460
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
461
+ return fieldSchema['x-component-props']['isQuickAdd'] && fieldSchema['x-component-props']['quickAddField'] && 'none' !== fieldSchema['x-component-props']['quickAddField'];
462
+ }
463
+ },
464
+ {
465
+ name: 'defaultValue',
466
+ Component: __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDefaultValue_mjs__.SchemaSettingsDefaultValue,
467
+ useVisible () {
468
+ const { isAllowToSetDefaultValue } = (0, __WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsAllowToSetDefaultValue_mjs__.useIsAllowToSetDefaultValue)();
469
+ return isAllowToSetDefaultValue();
470
+ }
471
+ },
472
+ {
473
+ name: 'dataScope',
474
+ Component: __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDataScope_mjs__.SchemaSettingsDataScope,
475
+ useVisible () {
476
+ const isSelectFieldMode = useIsSelectFieldMode();
477
+ const isFormReadPretty = useIsFormReadPretty();
478
+ return isSelectFieldMode && !isFormReadPretty;
479
+ },
480
+ useComponentProps () {
481
+ var _fieldSchema_xcomponentprops_service_params, _fieldSchema_xcomponentprops_service, _fieldSchema_xcomponentprops;
482
+ const { getCollectionJoinField, getAllCollectionsInheritChain } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
483
+ const { getField } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollection_deprecated)();
484
+ const { form } = (0, __WEBPACK_EXTERNAL_MODULE__block_provider_FormBlockProvider_mjs__.useFormBlockContext)();
485
+ const record = (0, __WEBPACK_EXTERNAL_MODULE__record_provider_index_mjs__.useRecord)();
486
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
487
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
488
+ const collectionField = getField(fieldSchema['name']) || getCollectionJoinField(fieldSchema['x-collection-field']);
489
+ const variables = (0, __WEBPACK_EXTERNAL_MODULE__variables_index_mjs__.useVariables)();
490
+ const localVariables = (0, __WEBPACK_EXTERNAL_MODULE__variables_index_mjs__.useLocalVariables)();
491
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
492
+ return {
493
+ collectionName: null == collectionField ? void 0 : collectionField.target,
494
+ defaultFilter: (null == fieldSchema ? void 0 : null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : null === (_fieldSchema_xcomponentprops_service = _fieldSchema_xcomponentprops.service) || void 0 === _fieldSchema_xcomponentprops_service ? void 0 : null === (_fieldSchema_xcomponentprops_service_params = _fieldSchema_xcomponentprops_service.params) || void 0 === _fieldSchema_xcomponentprops_service_params ? void 0 : _fieldSchema_xcomponentprops_service_params.filter) || {},
495
+ form,
496
+ dynamicComponent: (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime__.jsx)(__WEBPACK_EXTERNAL_MODULE__schema_settings_VariableInput_VariableInput_mjs__.VariableInput, {
497
+ ...props,
498
+ form: form,
499
+ collectionField: props.collectionField,
500
+ record: record,
501
+ shouldChange: (0, __WEBPACK_EXTERNAL_MODULE__schema_settings_VariableInput_VariableInput_mjs__.getShouldChange)({
502
+ collectionField: props.collectionField,
503
+ variables,
504
+ localVariables,
505
+ getAllCollectionsInheritChain
506
+ })
507
+ }),
508
+ onSubmit: (param)=>{
509
+ let { filter } = param;
510
+ filter = (0, __WEBPACK_EXTERNAL_MODULE__filter_index_mjs__.removeNullCondition)(filter);
511
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field.componentProps, 'service.params.filter', filter);
512
+ fieldSchema['x-component-props'] = field.componentProps;
513
+ dn.emit('patch', {
514
+ schema: {
515
+ ['x-uid']: fieldSchema['x-uid'],
516
+ 'x-component-props': field.componentProps
517
+ }
518
+ });
519
+ }
520
+ };
521
+ }
522
+ },
523
+ {
524
+ name: 'sortingRule',
525
+ Component: __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsSortingRule_mjs__.SchemaSettingsSortingRule,
526
+ useVisible () {
527
+ const isSelectFieldMode = useIsSelectFieldMode();
528
+ const isFormReadPretty = useIsFormReadPretty();
529
+ return isSelectFieldMode && !isFormReadPretty;
530
+ }
531
+ },
532
+ {
533
+ name: 'fieldMode',
534
+ type: 'select',
535
+ useComponentProps () {
536
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
537
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
538
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
539
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
540
+ const fieldModeOptions = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useFieldModeOptions)();
541
+ const isAddNewForm = useIsAddNewForm();
542
+ const fieldMode = useFieldMode();
543
+ return {
544
+ title: t('Field component'),
545
+ options: fieldModeOptions,
546
+ value: fieldMode,
547
+ onChange (mode) {
548
+ const schema = {
549
+ ['x-uid']: fieldSchema['x-uid']
550
+ };
551
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
552
+ fieldSchema['x-component-props']['mode'] = mode;
553
+ schema['x-component-props'] = fieldSchema['x-component-props'];
554
+ field.componentProps = field.componentProps || {};
555
+ field.componentProps.mode = mode;
556
+ if ((0, __WEBPACK_EXTERNAL_MODULE__association_field_util_mjs__.isSubMode)(fieldSchema) && isAddNewForm) {
557
+ schema.default = null;
558
+ fieldSchema.default = null;
559
+ field.setInitialValue(null);
560
+ field.setValue(null);
561
+ }
562
+ dn.emit('patch', {
563
+ schema
564
+ });
565
+ dn.refresh();
566
+ }
567
+ };
568
+ },
569
+ useVisible: useShowFieldMode
570
+ },
571
+ {
572
+ name: 'popupSize',
573
+ type: 'select',
574
+ useComponentProps () {
575
+ var _fieldSchema_xcomponentprops;
576
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
577
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
578
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
579
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
580
+ var _fieldSchema_xcomponentprops_openSize;
581
+ return {
582
+ title: t('Popup size'),
583
+ options: [
584
+ {
585
+ label: t('Small'),
586
+ value: 'small'
587
+ },
588
+ {
589
+ label: t('Middle'),
590
+ value: 'middle'
591
+ },
592
+ {
593
+ label: t('Large'),
594
+ value: 'large'
595
+ }
596
+ ],
597
+ value: null !== (_fieldSchema_xcomponentprops_openSize = null == fieldSchema ? void 0 : null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops['openSize']) && void 0 !== _fieldSchema_xcomponentprops_openSize ? _fieldSchema_xcomponentprops_openSize : 'middle',
598
+ onChange: (value)=>{
599
+ field.componentProps.openSize = value;
600
+ fieldSchema['x-component-props'] = field.componentProps;
601
+ dn.emit('patch', {
602
+ schema: {
603
+ 'x-uid': fieldSchema['x-uid'],
604
+ 'x-component-props': fieldSchema['x-component-props']
605
+ }
606
+ });
607
+ dn.refresh();
608
+ }
609
+ };
610
+ },
611
+ useVisible () {
612
+ var _fieldSchema_xcomponentprops;
613
+ const showFieldMode = useShowFieldMode();
614
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
615
+ const isPickerMode = (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.mode) === 'Picker';
616
+ const showModeSelect = showFieldMode && isPickerMode;
617
+ return showModeSelect;
618
+ }
619
+ },
620
+ {
621
+ name: 'allowAddNew',
622
+ type: 'switch',
623
+ useVisible () {
624
+ const readPretty = useIsFieldReadPretty();
625
+ const isAssociationField = useIsAssociationField();
626
+ const fieldMode = useFieldMode();
627
+ return !readPretty && isAssociationField && [
628
+ 'Picker'
629
+ ].includes(fieldMode);
630
+ },
631
+ useComponentProps () {
632
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
633
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
634
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
635
+ const { dn, refresh, insertAdjacent } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
636
+ return {
637
+ title: t('Allow add new data'),
638
+ checked: fieldSchema['x-add-new'],
639
+ onChange (allowAddNew) {
640
+ const hasAddNew = fieldSchema.reduceProperties((buf, schema)=>{
641
+ if ('Action' === schema['x-component']) return schema;
642
+ return buf;
643
+ }, null);
644
+ if (!hasAddNew) {
645
+ const addNewActionschema = {
646
+ 'x-action': 'create',
647
+ 'x-acl-action': 'create',
648
+ title: "{{t('Add new')}}",
649
+ 'x-toolbar': 'ActionSchemaToolbar',
650
+ 'x-settings': 'actonSettings:addNew',
651
+ 'x-component': 'Action',
652
+ 'x-decorator': 'ACLActionProvider',
653
+ 'x-component-props': {
654
+ openMode: 'drawer',
655
+ type: 'default',
656
+ component: 'CreateRecordAction'
657
+ }
658
+ };
659
+ insertAdjacent('afterBegin', addNewActionschema);
660
+ }
661
+ const schema = {
662
+ ['x-uid']: fieldSchema['x-uid']
663
+ };
664
+ field['x-add-new'] = allowAddNew;
665
+ fieldSchema['x-add-new'] = allowAddNew;
666
+ schema['x-add-new'] = allowAddNew;
667
+ dn.emit('patch', {
668
+ schema
669
+ });
670
+ refresh();
671
+ }
672
+ };
673
+ }
674
+ },
675
+ {
676
+ name: 'addMode',
677
+ type: 'select',
678
+ useVisible () {
679
+ const readPretty = useIsFieldReadPretty();
680
+ const isAssociationField = useIsAssociationField();
681
+ const fieldMode = useFieldMode();
682
+ return !readPretty && isAssociationField && [
683
+ 'Select'
684
+ ].includes(fieldMode);
685
+ },
686
+ useComponentProps () {
687
+ var _field_componentProps;
688
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
689
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
690
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
691
+ const { dn, insertAdjacent } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
692
+ return {
693
+ title: t('Quick create'),
694
+ options: [
695
+ {
696
+ label: t('None'),
697
+ value: 'none'
698
+ },
699
+ {
700
+ label: t('Dropdown'),
701
+ value: 'quickAdd'
702
+ },
703
+ {
704
+ label: t('Pop-up'),
705
+ value: 'modalAdd'
706
+ }
707
+ ],
708
+ value: (null === (_field_componentProps = field.componentProps) || void 0 === _field_componentProps ? void 0 : _field_componentProps.addMode) || 'none',
709
+ onChange (mode) {
710
+ if ('modalAdd' === mode) {
711
+ const hasAddNew = fieldSchema.reduceProperties((buf, schema)=>{
712
+ if ('Action' === schema['x-component']) return schema;
713
+ return buf;
714
+ }, null);
715
+ if (!hasAddNew) {
716
+ const addNewActionschema = {
717
+ 'x-action': 'create',
718
+ 'x-acl-action': 'create',
719
+ title: "{{t('Add new')}}",
720
+ 'x-toolbar': 'ActionSchemaToolbar',
721
+ 'x-settings': 'actonSettings:addNew',
722
+ 'x-component': 'Action',
723
+ 'x-decorator': 'ACLActionProvider',
724
+ 'x-component-props': {
725
+ openMode: 'drawer',
726
+ type: 'default',
727
+ component: 'CreateRecordAction'
728
+ }
729
+ };
730
+ insertAdjacent('afterBegin', addNewActionschema);
731
+ }
732
+ }
733
+ const schema = {
734
+ ['x-uid']: fieldSchema['x-uid']
735
+ };
736
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
737
+ fieldSchema['x-component-props']['addMode'] = mode;
738
+ schema['x-component-props'] = fieldSchema['x-component-props'];
739
+ field.componentProps = field.componentProps || {};
740
+ field.componentProps.addMode = mode;
741
+ dn.emit('patch', {
742
+ schema
743
+ });
744
+ dn.refresh();
745
+ }
746
+ };
747
+ }
748
+ },
749
+ {
750
+ name: 'multiple',
751
+ type: 'switch',
752
+ useVisible () {
753
+ const isAssociationField = useIsAssociationField();
754
+ const IsShowMultipleSwitch = (0, __WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsShowMultipleSwitch_mjs__.useIsShowMultipleSwitch)();
755
+ return isAssociationField && IsShowMultipleSwitch();
756
+ },
757
+ useComponentProps () {
758
+ var _fieldSchema_xcomponentprops;
759
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
760
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
761
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
762
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
763
+ return {
764
+ title: t('Allow multiple'),
765
+ checked: (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.multiple) === void 0 || fieldSchema['x-component-props'].multiple,
766
+ onChange (value) {
767
+ const schema = {
768
+ ['x-uid']: fieldSchema['x-uid']
769
+ };
770
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
771
+ field.componentProps = field.componentProps || {};
772
+ fieldSchema['x-component-props'].multiple = value;
773
+ field.componentProps.multiple = value;
774
+ schema['x-component-props'] = fieldSchema['x-component-props'];
775
+ dn.emit('patch', {
776
+ schema
777
+ });
778
+ refresh();
779
+ }
780
+ };
781
+ }
782
+ },
783
+ {
784
+ name: 'allowDissociate',
785
+ type: 'switch',
786
+ useVisible () {
787
+ var _fieldSchema_xcomponentprops;
788
+ const IsShowMultipleSwitch = (0, __WEBPACK_EXTERNAL_MODULE__schema_settings_hooks_useIsShowMultipleSwitch_mjs__.useIsShowMultipleSwitch)();
789
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
790
+ const isSubFormMode = (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.mode) === 'Nester';
791
+ return isSubFormMode && IsShowMultipleSwitch();
792
+ },
793
+ useComponentProps () {
794
+ var _fieldSchema_xcomponentprops;
795
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
796
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
797
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
798
+ const { dn, refresh } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
799
+ return {
800
+ title: t('Allow dissociate'),
801
+ checked: (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.allowDissociate) !== false,
802
+ onChange (value) {
803
+ const schema = {
804
+ ['x-uid']: fieldSchema['x-uid']
805
+ };
806
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
807
+ field.componentProps = field.componentProps || {};
808
+ fieldSchema['x-component-props'].allowDissociate = value;
809
+ field.componentProps.allowDissociate = value;
810
+ schema['x-component-props'] = fieldSchema['x-component-props'];
811
+ dn.emit('patch', {
812
+ schema
813
+ });
814
+ refresh();
815
+ }
816
+ };
817
+ }
818
+ },
819
+ {
820
+ name: 'enableLink',
821
+ type: 'switch',
822
+ useVisible () {
823
+ const options = useTitleFieldOptions();
824
+ const readPretty = useIsFieldReadPretty();
825
+ const isFileField = useIsFileField();
826
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
827
+ return readPretty && options.length > 0 && !isFileField && 'CollectionField' === fieldSchema['x-component'];
828
+ },
829
+ useComponentProps () {
830
+ var _fieldSchema_xcomponentprops;
831
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
832
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
833
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
834
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
835
+ return {
836
+ title: t('Enable link'),
837
+ checked: (null === (_fieldSchema_xcomponentprops = fieldSchema['x-component-props']) || void 0 === _fieldSchema_xcomponentprops ? void 0 : _fieldSchema_xcomponentprops.enableLink) !== false,
838
+ onChange (flag) {
839
+ fieldSchema['x-component-props'] = {
840
+ ...null == fieldSchema ? void 0 : fieldSchema['x-component-props'],
841
+ enableLink: flag
842
+ };
843
+ field.componentProps['enableLink'] = flag;
844
+ dn.emit('patch', {
845
+ schema: {
846
+ 'x-uid': fieldSchema['x-uid'],
847
+ 'x-component-props': {
848
+ ...null == fieldSchema ? void 0 : fieldSchema['x-component-props']
849
+ }
850
+ }
851
+ });
852
+ dn.refresh();
853
+ }
854
+ };
855
+ }
856
+ },
857
+ {
858
+ name: 'pattern',
859
+ type: 'select',
860
+ useVisible () {
861
+ const { form } = (0, __WEBPACK_EXTERNAL_MODULE__block_provider_FormBlockProvider_mjs__.useFormBlockContext)();
862
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
863
+ return form && !(null == form ? void 0 : form.readPretty) && !(0, __WEBPACK_EXTERNAL_MODULE__schema_settings_isPatternDisabled_mjs__.isPatternDisabled)(fieldSchema);
864
+ },
865
+ useComponentProps () {
866
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
867
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
868
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
869
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
870
+ let readOnlyMode = 'editable';
871
+ if (true === fieldSchema['x-disabled']) readOnlyMode = 'readonly';
872
+ if (true === fieldSchema['x-read-pretty']) readOnlyMode = 'read-pretty';
873
+ return {
874
+ title: t('Pattern'),
875
+ options: [
876
+ {
877
+ label: t('Editable'),
878
+ value: 'editable'
879
+ },
880
+ {
881
+ label: t('Readonly'),
882
+ value: 'readonly'
883
+ },
884
+ {
885
+ label: t('Easy-reading'),
886
+ value: 'read-pretty'
887
+ }
888
+ ],
889
+ value: readOnlyMode,
890
+ onChange (v) {
891
+ const schema = {
892
+ ['x-uid']: fieldSchema['x-uid']
893
+ };
894
+ switch(v){
895
+ case 'readonly':
896
+ fieldSchema['x-read-pretty'] = false;
897
+ fieldSchema['x-disabled'] = true;
898
+ schema['x-read-pretty'] = false;
899
+ schema['x-disabled'] = true;
900
+ field.readPretty = false;
901
+ field.disabled = true;
902
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field, 'initStateOfLinkageRules.pattern', (0, __WEBPACK_EXTERNAL_MODULE__form_v2_utils_mjs__.getTempFieldState)(true, __WEBPACK_EXTERNAL_MODULE__schema_settings_LinkageRules_type_mjs__.ActionType.ReadOnly));
903
+ break;
904
+ case 'read-pretty':
905
+ fieldSchema['x-read-pretty'] = true;
906
+ fieldSchema['x-disabled'] = false;
907
+ schema['x-read-pretty'] = true;
908
+ schema['x-disabled'] = false;
909
+ field.readPretty = true;
910
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field, 'initStateOfLinkageRules.pattern', (0, __WEBPACK_EXTERNAL_MODULE__form_v2_utils_mjs__.getTempFieldState)(true, __WEBPACK_EXTERNAL_MODULE__schema_settings_LinkageRules_type_mjs__.ActionType.ReadPretty));
911
+ break;
912
+ default:
913
+ fieldSchema['x-read-pretty'] = false;
914
+ fieldSchema['x-disabled'] = false;
915
+ schema['x-read-pretty'] = false;
916
+ schema['x-disabled'] = false;
917
+ field.readPretty = false;
918
+ field.disabled = false;
919
+ __WEBPACK_EXTERNAL_MODULE_lodash__["default"].set(field, 'initStateOfLinkageRules.pattern', (0, __WEBPACK_EXTERNAL_MODULE__form_v2_utils_mjs__.getTempFieldState)(true, __WEBPACK_EXTERNAL_MODULE__schema_settings_LinkageRules_type_mjs__.ActionType.Editable));
920
+ break;
921
+ }
922
+ dn.emit('patch', {
923
+ schema
924
+ });
925
+ dn.refresh();
926
+ }
927
+ };
928
+ }
929
+ },
930
+ {
931
+ name: 'titleField',
932
+ type: 'select',
933
+ useVisible () {
934
+ const options = useTitleFieldOptions();
935
+ const isAssociationField = useIsAssociationField();
936
+ const fieldMode = useFieldMode();
937
+ return options.length > 0 && isAssociationField && 'SubTable' !== fieldMode;
938
+ },
939
+ useComponentProps () {
940
+ var _field_componentProps_fieldNames, _field_componentProps;
941
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
942
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
943
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
944
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
945
+ const options = useTitleFieldOptions();
946
+ const collectionField = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionField_deprecated)();
947
+ return {
948
+ title: t('Title field'),
949
+ options,
950
+ value: null == field ? void 0 : null === (_field_componentProps = field.componentProps) || void 0 === _field_componentProps ? void 0 : null === (_field_componentProps_fieldNames = _field_componentProps.fieldNames) || void 0 === _field_componentProps_fieldNames ? void 0 : _field_componentProps_fieldNames.label,
951
+ onChange (label) {
952
+ var _collectionField_uiSchema_xcomponentprops, _collectionField_uiSchema;
953
+ const schema = {
954
+ ['x-uid']: fieldSchema['x-uid']
955
+ };
956
+ const fieldNames = {
957
+ ...null == collectionField ? void 0 : null === (_collectionField_uiSchema = collectionField.uiSchema) || void 0 === _collectionField_uiSchema ? void 0 : null === (_collectionField_uiSchema_xcomponentprops = _collectionField_uiSchema['x-component-props']) || void 0 === _collectionField_uiSchema_xcomponentprops ? void 0 : _collectionField_uiSchema_xcomponentprops['fieldNames'],
958
+ ...field.componentProps.fieldNames,
959
+ label
960
+ };
961
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
962
+ fieldSchema['x-component-props']['fieldNames'] = fieldNames;
963
+ schema['x-component-props'] = fieldSchema['x-component-props'];
964
+ field.componentProps.fieldNames = fieldSchema['x-component-props'].fieldNames;
965
+ dn.emit('patch', {
966
+ schema
967
+ });
968
+ dn.refresh();
969
+ }
970
+ };
971
+ }
972
+ },
973
+ {
974
+ name: 'dateFormat',
975
+ Component: __WEBPACK_EXTERNAL_MODULE__schema_settings_SchemaSettingsDateFormat_mjs__.SchemaSettingsDateFormat,
976
+ useVisible () {
977
+ const collectionField = useFormItemCollectionField();
978
+ const isDateField = [
979
+ 'datetime',
980
+ 'createdAt',
981
+ 'updatedAt'
982
+ ].includes(null == collectionField ? void 0 : collectionField.interface);
983
+ return isDateField;
984
+ },
985
+ useComponentProps () {
986
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
987
+ return {
988
+ fieldSchema
989
+ };
990
+ }
991
+ },
992
+ {
993
+ name: 'size',
994
+ type: 'select',
995
+ useVisible () {
996
+ const readPretty = useIsFieldReadPretty();
997
+ const collectionField = useFormItemCollectionField();
998
+ const { getCollection } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
999
+ const targetCollection = getCollection(null == collectionField ? void 0 : collectionField.target);
1000
+ const isAttachmentField = [
1001
+ 'attachment'
1002
+ ].includes(null == collectionField ? void 0 : collectionField.interface) || (null == targetCollection ? void 0 : targetCollection.template) === 'file';
1003
+ return readPretty && isAttachmentField;
1004
+ },
1005
+ useComponentProps () {
1006
+ var _field_componentProps;
1007
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
1008
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
1009
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
1010
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
1011
+ return {
1012
+ title: t('Size'),
1013
+ options: [
1014
+ {
1015
+ label: t('Large'),
1016
+ value: 'large'
1017
+ },
1018
+ {
1019
+ label: t('Default'),
1020
+ value: 'default'
1021
+ },
1022
+ {
1023
+ label: t('Small'),
1024
+ value: 'small'
1025
+ }
1026
+ ],
1027
+ value: (null == field ? void 0 : null === (_field_componentProps = field.componentProps) || void 0 === _field_componentProps ? void 0 : _field_componentProps.size) || 'default',
1028
+ onChange (size) {
1029
+ const schema = {
1030
+ ['x-uid']: fieldSchema['x-uid']
1031
+ };
1032
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
1033
+ fieldSchema['x-component-props']['size'] = size;
1034
+ schema['x-component-props'] = fieldSchema['x-component-props'];
1035
+ field.componentProps = field.componentProps || {};
1036
+ field.componentProps.size = size;
1037
+ dn.emit('patch', {
1038
+ schema
1039
+ });
1040
+ dn.refresh();
1041
+ }
1042
+ };
1043
+ }
1044
+ },
1045
+ {
1046
+ name: 'tagColor',
1047
+ type: 'select',
1048
+ useVisible () {
1049
+ const isAssociationField = useIsAssociationField();
1050
+ const fieldMode = useFieldMode();
1051
+ return isAssociationField && [
1052
+ 'Tag'
1053
+ ].includes(fieldMode);
1054
+ },
1055
+ useComponentProps () {
1056
+ var _field_componentProps;
1057
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
1058
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
1059
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
1060
+ const { dn } = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useDesignable)();
1061
+ const collectionField = useFormItemCollectionField();
1062
+ var _collectionField_target;
1063
+ const colorFieldOptions = (0, __WEBPACK_EXTERNAL_MODULE__table_v2_Table_Column_Designer_mjs__.useColorFields)(null !== (_collectionField_target = null == collectionField ? void 0 : collectionField.target) && void 0 !== _collectionField_target ? _collectionField_target : null == collectionField ? void 0 : collectionField.targetCollection);
1064
+ return {
1065
+ title: t('Tag color field'),
1066
+ options: colorFieldOptions,
1067
+ value: null == field ? void 0 : null === (_field_componentProps = field.componentProps) || void 0 === _field_componentProps ? void 0 : _field_componentProps.tagColorField,
1068
+ onChange (tagColorField) {
1069
+ const schema = {
1070
+ ['x-uid']: fieldSchema['x-uid']
1071
+ };
1072
+ fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
1073
+ fieldSchema['x-component-props']['tagColorField'] = tagColorField;
1074
+ schema['x-component-props'] = fieldSchema['x-component-props'];
1075
+ field.componentProps.tagColorField = tagColorField;
1076
+ dn.emit('patch', {
1077
+ schema
1078
+ });
1079
+ dn.refresh();
1080
+ }
1081
+ };
1082
+ }
1083
+ },
1084
+ {
1085
+ name: 'divider',
1086
+ type: 'divider',
1087
+ useVisible () {
1088
+ const collectionField = useFormItemCollectionField();
1089
+ return !!collectionField;
1090
+ }
1091
+ },
1092
+ {
1093
+ name: 'remove',
1094
+ type: 'remove',
1095
+ useComponentProps () {
1096
+ const { t } = (0, __WEBPACK_EXTERNAL_MODULE_react_i18next__.useTranslation)();
1097
+ return {
1098
+ removeParentsIfNoChildren: true,
1099
+ confirm: {
1100
+ title: t('Delete field')
1101
+ },
1102
+ breakRemoveOn: {
1103
+ 'x-component': 'Grid'
1104
+ }
1105
+ };
1106
+ }
1107
+ }
1108
+ ]
1109
+ });
1110
+ function useIsAddNewForm() {
1111
+ const record = (0, __WEBPACK_EXTERNAL_MODULE__record_provider_index_mjs__.useRecord)();
1112
+ const isAddNewForm = __WEBPACK_EXTERNAL_MODULE_lodash__["default"].isEmpty(__WEBPACK_EXTERNAL_MODULE_lodash__["default"].omit(record, [
1113
+ '__parent',
1114
+ '__collectionName'
1115
+ ]));
1116
+ return isAddNewForm;
1117
+ }
1118
+ function isFileCollection(collection) {
1119
+ return (null == collection ? void 0 : collection.template) === 'file';
1120
+ }
1121
+ function useIsFormReadPretty() {
1122
+ const { form } = (0, __WEBPACK_EXTERNAL_MODULE__block_provider_FormBlockProvider_mjs__.useFormBlockContext)();
1123
+ return !!(null == form ? void 0 : form.readPretty);
1124
+ }
1125
+ function useIsFieldReadPretty() {
1126
+ const { fieldSchema: tableColumnSchema } = (0, __WEBPACK_EXTERNAL_MODULE__table_v2_Table_Column_Decorator_mjs__.useColumnSchema)();
1127
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
1128
+ return field.readPretty || (null == tableColumnSchema ? void 0 : tableColumnSchema['x-read-pretty']);
1129
+ }
1130
+ function useFormItemCollectionField() {
1131
+ const { getCollectionJoinField } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
1132
+ const { getField } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollection_deprecated)();
1133
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
1134
+ const collectionField = getField(fieldSchema['name']) || getCollectionJoinField(fieldSchema['x-collection-field']);
1135
+ const { collectionField: columnCollectionField } = (0, __WEBPACK_EXTERNAL_MODULE__table_v2_Table_Column_Decorator_mjs__.useColumnSchema)();
1136
+ return collectionField || columnCollectionField;
1137
+ }
1138
+ function useIsAssociationField() {
1139
+ const collectionField = useFormItemCollectionField();
1140
+ const isAssociationField = [
1141
+ 'obo',
1142
+ 'oho',
1143
+ 'o2o',
1144
+ 'o2m',
1145
+ 'm2m',
1146
+ 'm2o',
1147
+ 'updatedBy',
1148
+ 'createdBy'
1149
+ ].includes(null == collectionField ? void 0 : collectionField.interface);
1150
+ return isAssociationField;
1151
+ }
1152
+ function useIsFileField() {
1153
+ const { getCollection } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
1154
+ const collectionField = useFormItemCollectionField();
1155
+ const targetCollection = getCollection(null == collectionField ? void 0 : collectionField.target);
1156
+ const isFileField = isFileCollection(targetCollection);
1157
+ return isFileField;
1158
+ }
1159
+ function useFieldMode() {
1160
+ var _field_componentProps;
1161
+ const field = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useField)();
1162
+ const isFileField = useIsFileField();
1163
+ const fieldMode = (null == field ? void 0 : null === (_field_componentProps = field.componentProps) || void 0 === _field_componentProps ? void 0 : _field_componentProps['mode']) || (isFileField ? 'FileManager' : 'Select');
1164
+ return fieldMode;
1165
+ }
1166
+ function useIsSelectFieldMode() {
1167
+ const fieldMode = useFieldMode();
1168
+ const isAssociationField = useIsAssociationField();
1169
+ const isSelectFieldMode = isAssociationField && 'Select' === fieldMode;
1170
+ return isSelectFieldMode;
1171
+ }
1172
+ function useValidateSchema() {
1173
+ var _interfaceConfig_validateSchema;
1174
+ const { getInterface } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
1175
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
1176
+ const collectionField = useFormItemCollectionField();
1177
+ const interfaceConfig = getInterface(null == collectionField ? void 0 : collectionField.interface);
1178
+ const validateSchema = null == interfaceConfig ? void 0 : null === (_interfaceConfig_validateSchema = interfaceConfig['validateSchema']) || void 0 === _interfaceConfig_validateSchema ? void 0 : _interfaceConfig_validateSchema.call(interfaceConfig, fieldSchema);
1179
+ return validateSchema;
1180
+ }
1181
+ function useShowFieldMode() {
1182
+ const fieldSchema = (0, __WEBPACK_EXTERNAL_MODULE__tachybase_schema__.useFieldSchema)();
1183
+ const fieldModeOptions = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useFieldModeOptions)();
1184
+ const isTableField = 'TableField' === fieldSchema['x-component'];
1185
+ const isAssociationField = useIsAssociationField();
1186
+ const showFieldMode = isAssociationField && fieldModeOptions && !isTableField;
1187
+ return showFieldMode;
1188
+ }
1189
+ function useTitleFieldOptions() {
1190
+ const { getCollectionFields, isTitleField } = (0, __WEBPACK_EXTERNAL_MODULE__collection_manager_index_mjs__.useCollectionManager_deprecated)();
1191
+ const compile = (0, __WEBPACK_EXTERNAL_MODULE__hooks_index_mjs__.useCompile)();
1192
+ const collectionField = useFormItemCollectionField();
1193
+ var _getCollectionFields;
1194
+ const targetFields = (null == collectionField ? void 0 : collectionField.target) ? getCollectionFields(null == collectionField ? void 0 : collectionField.target) : null !== (_getCollectionFields = getCollectionFields(null == collectionField ? void 0 : collectionField.targetCollection)) && void 0 !== _getCollectionFields ? _getCollectionFields : [];
1195
+ const options = targetFields.map((field)=>{
1196
+ var _field_uiSchema;
1197
+ return {
1198
+ value: null == field ? void 0 : field.name,
1199
+ label: compile(null == field ? void 0 : null === (_field_uiSchema = field.uiSchema) || void 0 === _field_uiSchema ? void 0 : _field_uiSchema.title) || (null == field ? void 0 : field.name)
1200
+ };
1201
+ });
1202
+ return options;
1203
+ }
1204
+ export { formItemSettings, useFieldMode, useIsAddNewForm, useIsAssociationField, useIsFieldReadPretty, useIsFileField, useIsFormReadPretty, useIsSelectFieldMode, useTitleFieldOptions, useValidateSchema };