@tachybase/client 0.23.8-alpha.15

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 (1038) hide show
  1. package/es/api-client/APIClient.d.ts +15 -0
  2. package/es/api-client/APIClientProvider.d.ts +7 -0
  3. package/es/api-client/context.d.ts +2 -0
  4. package/es/api-client/hooks/assign.d.ts +9 -0
  5. package/es/api-client/hooks/index.d.ts +3 -0
  6. package/es/api-client/hooks/useAPIClient.d.ts +1 -0
  7. package/es/api-client/hooks/useRequest.d.ts +22 -0
  8. package/es/api-client/hooks/useResource.d.ts +1 -0
  9. package/es/api-client/index.d.ts +4 -0
  10. package/es/application/AppSchemaComponentProvider.d.ts +3 -0
  11. package/es/application/Application.d.ts +108 -0
  12. package/es/application/AttachmentPreviewManager.d.ts +15 -0
  13. package/es/application/NoticesManager.d.ts +46 -0
  14. package/es/application/Plugin.d.ts +21 -0
  15. package/es/application/PluginContextMenu.d.ts +17 -0
  16. package/es/application/PluginManager.d.ts +38 -0
  17. package/es/application/RouterManager.d.ts +46 -0
  18. package/es/application/SystemSettingsManager.d.ts +54 -0
  19. package/es/application/UserSettingsManager.d.ts +54 -0
  20. package/es/application/WebSocketClient.d.ts +35 -0
  21. package/es/application/components/AppComponent.d.ts +6 -0
  22. package/es/application/components/BlankComponent.d.ts +4 -0
  23. package/es/application/components/MainComponent.d.ts +2 -0
  24. package/es/application/components/RouterContextCleaner.d.ts +4 -0
  25. package/es/application/components/defaultComponents.d.ts +9 -0
  26. package/es/application/components/index.d.ts +4 -0
  27. package/es/application/context.d.ts +2 -0
  28. package/es/application/hoc/index.d.ts +1 -0
  29. package/es/application/hoc/withDynamicSchemaProps.d.ts +7 -0
  30. package/es/application/hooks/index.d.ts +3 -0
  31. package/es/application/hooks/useApp.d.ts +2 -0
  32. package/es/application/hooks/usePlugin.d.ts +3 -0
  33. package/es/application/hooks/useRouter.d.ts +1 -0
  34. package/es/application/index.d.ts +15 -0
  35. package/es/application/schema-initializer/SchemaInitializer.d.ts +12 -0
  36. package/es/application/schema-initializer/SchemaInitializerManager.d.ts +24 -0
  37. package/es/application/schema-initializer/components/SchemaInitializerActionModal.d.ts +11 -0
  38. package/es/application/schema-initializer/components/SchemaInitializerButton.d.ts +7 -0
  39. package/es/application/schema-initializer/components/SchemaInitializerChildren.d.ts +6 -0
  40. package/es/application/schema-initializer/components/SchemaInitializerDivider.d.ts +2 -0
  41. package/es/application/schema-initializer/components/SchemaInitializerItem.d.ts +14 -0
  42. package/es/application/schema-initializer/components/SchemaInitializerItemGroup.d.ts +9 -0
  43. package/es/application/schema-initializer/components/SchemaInitializerItems.d.ts +8 -0
  44. package/es/application/schema-initializer/components/SchemaInitializerSelect.d.ts +11 -0
  45. package/es/application/schema-initializer/components/SchemaInitializerSubMenu.d.ts +17 -0
  46. package/es/application/schema-initializer/components/SchemaInitializerSwitch.d.ts +8 -0
  47. package/es/application/schema-initializer/components/index.d.ts +10 -0
  48. package/es/application/schema-initializer/components/style.d.ts +1 -0
  49. package/es/application/schema-initializer/context/index.d.ts +16 -0
  50. package/es/application/schema-initializer/hoc/index.d.ts +3 -0
  51. package/es/application/schema-initializer/hooks/index.d.ts +19 -0
  52. package/es/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.d.ts +10 -0
  53. package/es/application/schema-initializer/index.d.ts +7 -0
  54. package/es/application/schema-initializer/types.d.ts +80 -0
  55. package/es/application/schema-settings/SchemaSettings.d.ts +10 -0
  56. package/es/application/schema-settings/SchemaSettingsDefaults.d.ts +2 -0
  57. package/es/application/schema-settings/SchemaSettingsManager.d.ts +23 -0
  58. package/es/application/schema-settings/components/SchemaSettingsChildren.d.ts +7 -0
  59. package/es/application/schema-settings/components/SchemaSettingsIcon.d.ts +6 -0
  60. package/es/application/schema-settings/components/SchemaSettingsWrapper.d.ts +6 -0
  61. package/es/application/schema-settings/components/index.d.ts +2 -0
  62. package/es/application/schema-settings/context/index.d.ts +3 -0
  63. package/es/application/schema-settings/hooks/index.d.ts +18 -0
  64. package/es/application/schema-settings/index.d.ts +6 -0
  65. package/es/application/schema-settings/types.d.ts +62 -0
  66. package/es/application/schema-toolbar/context/index.d.ts +4 -0
  67. package/es/application/schema-toolbar/hooks/index.d.ts +9 -0
  68. package/es/application/schema-toolbar/index.d.ts +2 -0
  69. package/es/application/utils/globalDeps.d.ts +5 -0
  70. package/es/application/utils/index.d.ts +3 -0
  71. package/es/application/utils/remotePlugins.d.ts +36 -0
  72. package/es/async-data-provider/index.d.ts +18 -0
  73. package/es/block-provider/BlockProvider.d.ts +76 -0
  74. package/es/block-provider/DetailsBlockProvider.d.ts +15 -0
  75. package/es/block-provider/FilterFormBlockProvider.d.ts +2 -0
  76. package/es/block-provider/FormBlockProvider.d.ts +55 -0
  77. package/es/block-provider/FormFieldProvider.d.ts +8 -0
  78. package/es/block-provider/MobileProvider.d.ts +5 -0
  79. package/es/block-provider/PageLayout.d.ts +7 -0
  80. package/es/block-provider/TableBlockProvider.d.ts +5 -0
  81. package/es/block-provider/TableFieldProvider.d.ts +41 -0
  82. package/es/block-provider/TableSelectorProvider.d.ts +36 -0
  83. package/es/block-provider/TreeBlockProvider.d.ts +10 -0
  84. package/es/block-provider/hooks/index.d.ts +119 -0
  85. package/es/block-provider/hooks/useDataBlockSourceId.d.ts +15 -0
  86. package/es/block-provider/hooks/useFormActiveFields.d.ts +23 -0
  87. package/es/block-provider/hooks/useIsMobile.d.ts +1 -0
  88. package/es/block-provider/hooks/useParsedFilter.d.ts +5 -0
  89. package/es/block-provider/index.d.ts +11 -0
  90. package/es/built-in/acl/ACLProvider.d.ts +26 -0
  91. package/es/built-in/acl/ACLShortcut.d.ts +2 -0
  92. package/es/built-in/acl/Configuration/ConfigureCenter.d.ts +3 -0
  93. package/es/built-in/acl/Configuration/MenuConfigure.d.ts +2 -0
  94. package/es/built-in/acl/Configuration/MenuItemsProvider.d.ts +4 -0
  95. package/es/built-in/acl/Configuration/PermisionProvider.d.ts +4 -0
  96. package/es/built-in/acl/Configuration/RoleConfigure.d.ts +2 -0
  97. package/es/built-in/acl/Configuration/RoleTable.d.ts +3 -0
  98. package/es/built-in/acl/Configuration/RolesResourcesActions.d.ts +3 -0
  99. package/es/built-in/acl/Configuration/ScopeSelect.d.ts +3 -0
  100. package/es/built-in/acl/Configuration/StrategyActions.d.ts +2 -0
  101. package/es/built-in/acl/Configuration/index.d.ts +9 -0
  102. package/es/built-in/acl/Configuration/schemas/roles.d.ts +2 -0
  103. package/es/built-in/acl/Configuration/schemas/scopes.d.ts +11 -0
  104. package/es/built-in/acl/Configuration/schemas/useRoleResourceValues.d.ts +4 -0
  105. package/es/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.d.ts +3 -0
  106. package/es/built-in/acl/index.d.ts +7 -0
  107. package/es/built-in/acl/style.d.ts +1 -0
  108. package/es/built-in/admin-layout/AdminContent.d.ts +2 -0
  109. package/es/built-in/admin-layout/AdminTabs.d.ts +2 -0
  110. package/es/built-in/admin-layout/NoticeArea.d.ts +2 -0
  111. package/es/built-in/admin-layout/components/AddNewButton.d.ts +2 -0
  112. package/es/built-in/admin-layout/components/WelcomeCard.d.ts +2 -0
  113. package/es/built-in/admin-layout/index.d.ts +11 -0
  114. package/es/built-in/admin-layout/style.d.ts +14 -0
  115. package/es/built-in/assistant/Assistant.provider.d.ts +4 -0
  116. package/es/built-in/assistant/ai-chat/index.d.ts +8 -0
  117. package/es/built-in/assistant/calculator/AutoScalingText.d.ts +4 -0
  118. package/es/built-in/assistant/calculator/Calculator.d.ts +2 -0
  119. package/es/built-in/assistant/calculator/CalculatorDisplay.d.ts +5 -0
  120. package/es/built-in/assistant/calculator/CalculatorKey.d.ts +6 -0
  121. package/es/built-in/assistant/calculator/CalculatorProvider.d.ts +10 -0
  122. package/es/built-in/assistant/calculator/Draggable.d.ts +8 -0
  123. package/es/built-in/assistant/calculator/style.d.ts +3 -0
  124. package/es/built-in/assistant/index.d.ts +4 -0
  125. package/es/built-in/assistant/search-and-jump/index.d.ts +16 -0
  126. package/es/built-in/attachment-preview/index.d.ts +4 -0
  127. package/es/built-in/attachment-preview/interface.d.ts +11 -0
  128. package/es/built-in/attachment-preview/previewers/file-default.d.ts +8 -0
  129. package/es/built-in/attachment-preview/previewers/file-pdf.d.ts +9 -0
  130. package/es/built-in/attachment-preview/previewers/file-pdf.style.d.ts +5 -0
  131. package/es/built-in/attachment-preview/previewers/file-sheet.d.ts +20 -0
  132. package/es/built-in/attachment-preview/previewers/file-sheet.style.d.ts +5 -0
  133. package/es/built-in/attachment-preview/previewers/image-jpeg.d.ts +7 -0
  134. package/es/built-in/attachment-preview/previewers/image-png.d.ts +7 -0
  135. package/es/built-in/attachment-preview/previewers/image-svg.d.ts +7 -0
  136. package/es/built-in/attachment-preview/previewers/index.d.ts +6 -0
  137. package/es/built-in/block-schema-component/index.d.ts +6 -0
  138. package/es/built-in/built-in-collections/index.d.ts +6 -0
  139. package/es/built-in/context-menu/ContextMenu.provider.d.ts +4 -0
  140. package/es/built-in/context-menu/ContextMenuItemsProps.d.ts +46 -0
  141. package/es/built-in/context-menu/index.d.ts +5 -0
  142. package/es/built-in/context-menu/useContextMenu.d.ts +11 -0
  143. package/es/built-in/document-title/index.d.ts +19 -0
  144. package/es/built-in/dynamic-page/DynamicPage.d.ts +2 -0
  145. package/es/built-in/dynamic-page/index.d.ts +22 -0
  146. package/es/built-in/dynamic-page/style.d.ts +27 -0
  147. package/es/built-in/dynamic-page/utils.d.ts +28 -0
  148. package/es/built-in/index.d.ts +13 -0
  149. package/es/built-in/locale/LocalePlugin.d.ts +5 -0
  150. package/es/built-in/locale/loadConstrueLocale.d.ts +1 -0
  151. package/es/built-in/page-style/CustomAdminHeader.d.ts +2 -0
  152. package/es/built-in/page-style/PageStyle.provider.d.ts +11 -0
  153. package/es/built-in/page-style/TabContent.d.ts +7 -0
  154. package/es/built-in/page-style/TabHeader.d.ts +8 -0
  155. package/es/built-in/page-style/index.d.ts +4 -0
  156. package/es/built-in/page-style/usePageStyle.d.ts +1 -0
  157. package/es/built-in/page-style/useTabSettings.d.ts +10 -0
  158. package/es/built-in/pinned-list/PinnedPluginListProvider.d.ts +6 -0
  159. package/es/built-in/pinned-list/context.d.ts +3 -0
  160. package/es/built-in/pinned-list/index.d.ts +6 -0
  161. package/es/built-in/pm/PluginCard.d.ts +7 -0
  162. package/es/built-in/pm/PluginDetail.d.ts +8 -0
  163. package/es/built-in/pm/PluginDocument.d.ts +7 -0
  164. package/es/built-in/pm/PluginForm/form/PluginNpmForm.d.ts +10 -0
  165. package/es/built-in/pm/PluginForm/form/PluginUploadForm.d.ts +9 -0
  166. package/es/built-in/pm/PluginForm/form/PluginUrlForm.d.ts +9 -0
  167. package/es/built-in/pm/PluginForm/modal/PluginAddModal.d.ts +7 -0
  168. package/es/built-in/pm/PluginForm/modal/PluginUpgradeModal.d.ts +9 -0
  169. package/es/built-in/pm/PluginManager.d.ts +19 -0
  170. package/es/built-in/pm/index.d.ts +11 -0
  171. package/es/built-in/pm/style.d.ts +50 -0
  172. package/es/built-in/pm/types.d.ts +25 -0
  173. package/es/built-in/quick-access/Action.d.ts +2 -0
  174. package/es/built-in/quick-access/Block.d.ts +5 -0
  175. package/es/built-in/quick-access/CustomRequestActionSchemaInitializerItem.d.ts +4 -0
  176. package/es/built-in/quick-access/LinkActionSchemaInitializerItem.d.ts +4 -0
  177. package/es/built-in/quick-access/ModalActionSchemaInitializerItem.d.ts +2 -0
  178. package/es/built-in/quick-access/PopupActionSchemaInitializerItem.d.ts +4 -0
  179. package/es/built-in/quick-access/SchemaSettingsBlockTitleItem.d.ts +2 -0
  180. package/es/built-in/quick-access/blockInitializerItem.d.ts +2 -0
  181. package/es/built-in/quick-access/blockSchema.d.ts +2 -0
  182. package/es/built-in/quick-access/blockSettings.d.ts +6 -0
  183. package/es/built-in/quick-access/configureActions.d.ts +2 -0
  184. package/es/built-in/quick-access/index.d.ts +4 -0
  185. package/es/built-in/scroll-assistant/ScrollAssistant.provider.d.ts +4 -0
  186. package/es/built-in/scroll-assistant/ScrollAssistantStatus.provider.d.ts +8 -0
  187. package/es/built-in/scroll-assistant/index.d.ts +13 -0
  188. package/es/built-in/scroll-assistant/useJoystick.d.ts +1 -0
  189. package/es/built-in/setting-layout/AdminSettings.d.ts +3 -0
  190. package/es/built-in/setting-layout/SettingLayout.d.ts +8 -0
  191. package/es/built-in/setting-layout/SettingsCenterDropdown.d.ts +2 -0
  192. package/es/built-in/system-settings/SystemSettingsProvider.d.ts +7 -0
  193. package/es/built-in/system-settings/SystemSettingsShortcut.d.ts +2 -0
  194. package/es/built-in/system-settings/index.d.ts +6 -0
  195. package/es/built-in/system-version/SystemVersion.provider.d.ts +4 -0
  196. package/es/built-in/system-version/index.d.ts +4 -0
  197. package/es/built-in/user-settings/UserSettingsLayout.d.ts +2 -0
  198. package/es/built-in/user-settings/index.d.ts +4 -0
  199. package/es/built-in/user-settings/style.d.ts +50 -0
  200. package/es/collection-manager/CollectionHistoryProvider.d.ts +8 -0
  201. package/es/collection-manager/CollectionManagerProvider.d.ts +8 -0
  202. package/es/collection-manager/CollectionManagerSchemaComponentProvider.d.ts +2 -0
  203. package/es/collection-manager/CollectionProvider_deprecated.d.ts +12 -0
  204. package/es/collection-manager/Configuration/AddCollectionAction.d.ts +3 -0
  205. package/es/collection-manager/Configuration/AddFieldAction.d.ts +6 -0
  206. package/es/collection-manager/Configuration/AddSubFieldAction.d.ts +2 -0
  207. package/es/collection-manager/Configuration/DeleteCollectionAction.d.ts +18 -0
  208. package/es/collection-manager/Configuration/EditCollectionAction.d.ts +7 -0
  209. package/es/collection-manager/Configuration/EditFieldAction.d.ts +3 -0
  210. package/es/collection-manager/Configuration/EditSubFieldAction.d.ts +2 -0
  211. package/es/collection-manager/Configuration/ImportCollectionMetaAction.d.ts +2 -0
  212. package/es/collection-manager/Configuration/OverridingCollectionField.d.ts +3 -0
  213. package/es/collection-manager/Configuration/SyncFieldsAction.d.ts +3 -0
  214. package/es/collection-manager/Configuration/SyncSQLFieldsAction.d.ts +4 -0
  215. package/es/collection-manager/Configuration/ViewInheritedField.d.ts +3 -0
  216. package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +2 -0
  217. package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +2 -0
  218. package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +2 -0
  219. package/es/collection-manager/Configuration/components/FieldSummary.d.ts +5 -0
  220. package/es/collection-manager/Configuration/components/Summary.d.ts +6 -0
  221. package/es/collection-manager/Configuration/components/TemplateSummary.d.ts +7 -0
  222. package/es/collection-manager/Configuration/components/index.d.ts +9 -0
  223. package/es/collection-manager/Configuration/index.d.ts +18 -0
  224. package/es/collection-manager/Configuration/interfaces.d.ts +16 -0
  225. package/es/collection-manager/ResourceActionProvider.d.ts +37 -0
  226. package/es/collection-manager/action-hooks.d.ts +82 -0
  227. package/es/collection-manager/collectionPlugin.d.ts +7 -0
  228. package/es/collection-manager/context.d.ts +4 -0
  229. package/es/collection-manager/hooks/index.d.ts +4 -0
  230. package/es/collection-manager/hooks/useCollectionDataSource.d.ts +1 -0
  231. package/es/collection-manager/hooks/useCollectionField_deprecated.d.ts +4 -0
  232. package/es/collection-manager/hooks/useCollectionManager_deprecated.d.ts +54 -0
  233. package/es/collection-manager/hooks/useCollection_deprecated.d.ts +45 -0
  234. package/es/collection-manager/hooks/useDialect.d.ts +5 -0
  235. package/es/collection-manager/index.d.ts +21 -0
  236. package/es/collection-manager/interfaces/checkbox.d.ts +60 -0
  237. package/es/collection-manager/interfaces/checkboxGroup.d.ts +130 -0
  238. package/es/collection-manager/interfaces/chinaRegion.d.ts +102 -0
  239. package/es/collection-manager/interfaces/collection.d.ts +137 -0
  240. package/es/collection-manager/interfaces/color.d.ts +55 -0
  241. package/es/collection-manager/interfaces/components/index.d.ts +7 -0
  242. package/es/collection-manager/interfaces/createdAt.d.ts +70 -0
  243. package/es/collection-manager/interfaces/createdBy.d.ts +54 -0
  244. package/es/collection-manager/interfaces/datetime.d.ts +79 -0
  245. package/es/collection-manager/interfaces/email.d.ts +77 -0
  246. package/es/collection-manager/interfaces/icon.d.ts +36 -0
  247. package/es/collection-manager/interfaces/id.d.ts +62 -0
  248. package/es/collection-manager/interfaces/index.d.ts +39 -0
  249. package/es/collection-manager/interfaces/input.d.ts +170 -0
  250. package/es/collection-manager/interfaces/integer.d.ts +166 -0
  251. package/es/collection-manager/interfaces/json.d.ts +72 -0
  252. package/es/collection-manager/interfaces/linkTo.d.ts +82 -0
  253. package/es/collection-manager/interfaces/m2m.d.ts +275 -0
  254. package/es/collection-manager/interfaces/m2o.d.ts +222 -0
  255. package/es/collection-manager/interfaces/markdown.d.ts +88 -0
  256. package/es/collection-manager/interfaces/multipleSelect.d.ts +133 -0
  257. package/es/collection-manager/interfaces/nanoid.d.ts +69 -0
  258. package/es/collection-manager/interfaces/number.d.ts +133 -0
  259. package/es/collection-manager/interfaces/o2m.d.ts +252 -0
  260. package/es/collection-manager/interfaces/o2o.d.ts +658 -0
  261. package/es/collection-manager/interfaces/password.d.ts +84 -0
  262. package/es/collection-manager/interfaces/percent.d.ts +147 -0
  263. package/es/collection-manager/interfaces/phone.d.ts +75 -0
  264. package/es/collection-manager/interfaces/properties/index.d.ts +117 -0
  265. package/es/collection-manager/interfaces/properties/operators.d.ts +238 -0
  266. package/es/collection-manager/interfaces/radioGroup.d.ts +133 -0
  267. package/es/collection-manager/interfaces/richText.d.ts +90 -0
  268. package/es/collection-manager/interfaces/select.d.ts +138 -0
  269. package/es/collection-manager/interfaces/sort.d.ts +123 -0
  270. package/es/collection-manager/interfaces/subTable.d.ts +164 -0
  271. package/es/collection-manager/interfaces/tableoid.d.ts +51 -0
  272. package/es/collection-manager/interfaces/textarea.d.ts +90 -0
  273. package/es/collection-manager/interfaces/time.d.ts +67 -0
  274. package/es/collection-manager/interfaces/types.d.ts +30 -0
  275. package/es/collection-manager/interfaces/unixTimestamp.d.ts +71 -0
  276. package/es/collection-manager/interfaces/updatedAt.d.ts +70 -0
  277. package/es/collection-manager/interfaces/updatedBy.d.ts +54 -0
  278. package/es/collection-manager/interfaces/url.d.ts +58 -0
  279. package/es/collection-manager/interfaces/uuid.d.ts +56 -0
  280. package/es/collection-manager/mixins/InheritanceCollectionMixin.d.ts +33 -0
  281. package/es/collection-manager/sub-table.d.ts +20 -0
  282. package/es/collection-manager/templates/components/PresetFields.d.ts +2 -0
  283. package/es/collection-manager/templates/components/PreviewFields.d.ts +2 -0
  284. package/es/collection-manager/templates/components/PreviewTable.d.ts +2 -0
  285. package/es/collection-manager/templates/components/sql-collection/FieldsConfigure.d.ts +2 -0
  286. package/es/collection-manager/templates/components/sql-collection/PreviewTable.d.ts +2 -0
  287. package/es/collection-manager/templates/components/sql-collection/SQLInput.d.ts +4 -0
  288. package/es/collection-manager/templates/components/sql-collection/SQLRequestProvider.d.ts +5 -0
  289. package/es/collection-manager/templates/components/sql-collection/index.d.ts +4 -0
  290. package/es/collection-manager/templates/expression.d.ts +55 -0
  291. package/es/collection-manager/templates/general.d.ts +11 -0
  292. package/es/collection-manager/templates/import.d.ts +11 -0
  293. package/es/collection-manager/templates/index.d.ts +6 -0
  294. package/es/collection-manager/templates/properties/index.d.ts +59 -0
  295. package/es/collection-manager/templates/sql.d.ts +68 -0
  296. package/es/collection-manager/templates/tree.d.ts +75 -0
  297. package/es/collection-manager/templates/types.d.ts +57 -0
  298. package/es/collection-manager/templates/view.d.ts +114 -0
  299. package/es/collection-manager/types.d.ts +21 -0
  300. package/es/collection-manager/utils.d.ts +2 -0
  301. package/es/common/SelectWithTitle.d.ts +9 -0
  302. package/es/common/appInfo/CurrentAppInfoProvider.d.ts +12 -0
  303. package/es/common/appInfo/index.d.ts +1 -0
  304. package/es/common/index.d.ts +3 -0
  305. package/es/common/useFieldComponentName.d.ts +1 -0
  306. package/es/common/useNiceDropdownHeight.d.ts +5 -0
  307. package/es/data-source/collection/AssociationProvider.d.ts +14 -0
  308. package/es/data-source/collection/Collection.d.ts +125 -0
  309. package/es/data-source/collection/CollectionManager.d.ts +39 -0
  310. package/es/data-source/collection/CollectionManagerProvider.d.ts +12 -0
  311. package/es/data-source/collection/CollectionProvider.d.ts +11 -0
  312. package/es/data-source/collection/ExtendCollectionsProvider.d.ts +9 -0
  313. package/es/data-source/collection/index.d.ts +6 -0
  314. package/es/data-source/collection/utils.d.ts +50 -0
  315. package/es/data-source/collection-field/CollectionField.d.ts +11 -0
  316. package/es/data-source/collection-field/CollectionFieldProvider.d.ts +11 -0
  317. package/es/data-source/collection-field/index.d.ts +2 -0
  318. package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +51 -0
  319. package/es/data-source/collection-field-interface/CollectionFieldInterfaceManager.d.ts +29 -0
  320. package/es/data-source/collection-field-interface/index.d.ts +2 -0
  321. package/es/data-source/collection-record/CollectionRecord.d.ts +13 -0
  322. package/es/data-source/collection-record/CollectionRecordProvider.d.ts +14 -0
  323. package/es/data-source/collection-record/index.d.ts +2 -0
  324. package/es/data-source/collection-record/isNewRecord.d.ts +12 -0
  325. package/es/data-source/collection-template/CollectionTemplate.d.ts +62 -0
  326. package/es/data-source/collection-template/CollectionTemplateManager.d.ts +10 -0
  327. package/es/data-source/collection-template/index.d.ts +2 -0
  328. package/es/data-source/commonsSettingsItem/fieldComponent.d.ts +2 -0
  329. package/es/data-source/commonsSettingsItem/index.d.ts +1 -0
  330. package/es/data-source/components/CollectionDeletedPlaceholder.d.ts +10 -0
  331. package/es/data-source/components/DataSourceApplicationProvider.d.ts +11 -0
  332. package/es/data-source/components/index.d.ts +2 -0
  333. package/es/data-source/data-block/DataBlockProvider.d.ts +73 -0
  334. package/es/data-source/data-block/DataBlockRequestProvider.d.ts +9 -0
  335. package/es/data-source/data-block/DataBlockResourceProvider.d.ts +7 -0
  336. package/es/data-source/data-block/context/ConfigSetting.provider.d.ts +7 -0
  337. package/es/data-source/data-block/index.d.ts +4 -0
  338. package/es/data-source/data-source/DataSource.d.ts +41 -0
  339. package/es/data-source/data-source/DataSourceManager.d.ts +47 -0
  340. package/es/data-source/data-source/DataSourceManagerProvider.d.ts +9 -0
  341. package/es/data-source/data-source/DataSourceProvider.d.ts +10 -0
  342. package/es/data-source/data-source/index.d.ts +4 -0
  343. package/es/data-source/index.d.ts +10 -0
  344. package/es/data-source/utils.d.ts +4 -0
  345. package/es/filter-provider/FilterProvider.d.ts +82 -0
  346. package/es/filter-provider/index.d.ts +2 -0
  347. package/es/filter-provider/utils.d.ts +44 -0
  348. package/es/flag-provider/FlagProvider.d.ts +26 -0
  349. package/es/flag-provider/hooks/useFlag.d.ts +1 -0
  350. package/es/flag-provider/index.d.ts +2 -0
  351. package/es/hooks/index.d.ts +2 -0
  352. package/es/hooks/useAdminSchemaUid.d.ts +1 -0
  353. package/es/hooks/useMenuItem.d.ts +39 -0
  354. package/es/hooks/useViewport.d.ts +1 -0
  355. package/es/i18n/i18n.d.ts +3 -0
  356. package/es/i18n/index.d.ts +1 -0
  357. package/es/icon/Icon.d.ts +16 -0
  358. package/es/icon/index.d.ts +1 -0
  359. package/es/icon/preloaded.d.ts +10 -0
  360. package/es/index.d.ts +47 -0
  361. package/es/locale/index.d.ts +272 -0
  362. package/es/modules/actions/ActionSchemaToolbar.d.ts +2 -0
  363. package/es/modules/actions/add-child/CreateChildInitializer.d.ts +2 -0
  364. package/es/modules/actions/add-child/addChildActionSettings.d.ts +2 -0
  365. package/es/modules/actions/add-new/CreateActionInitializer.d.ts +2 -0
  366. package/es/modules/actions/add-new/addNewActionSettings.d.ts +2 -0
  367. package/es/modules/actions/add-new/createFormBlockInitializers.d.ts +2 -0
  368. package/es/modules/actions/add-record/CustomizeAddRecordActionInitializer.d.ts +2 -0
  369. package/es/modules/actions/add-record/customizeAddRecordActionSettings.d.ts +2 -0
  370. package/es/modules/actions/add-record/customizeCreateFormBlockInitializers.d.ts +2 -0
  371. package/es/modules/actions/bulk-destroy/BulkDestroyActionInitializer.d.ts +2 -0
  372. package/es/modules/actions/bulk-destroy/bulkDeleteActionSettings.d.ts +2 -0
  373. package/es/modules/actions/delete/DestroyActionInitializer.d.ts +2 -0
  374. package/es/modules/actions/delete/deleteActionSettings.d.ts +2 -0
  375. package/es/modules/actions/disassociate/DisassociateActionInitializer.d.ts +2 -0
  376. package/es/modules/actions/disassociate/disassociateActionSettings.d.ts +2 -0
  377. package/es/modules/actions/expand-collapse/ExpandableActionInitializer.d.ts +2 -0
  378. package/es/modules/actions/expand-collapse/expendableActionSettings.d.ts +2 -0
  379. package/es/modules/actions/filter/FilterActionInitializer.d.ts +2 -0
  380. package/es/modules/actions/filter/filterActionSettings.d.ts +2 -0
  381. package/es/modules/actions/link/customizeLinkActionSettings.d.ts +4 -0
  382. package/es/modules/actions/link/hooks.d.ts +121 -0
  383. package/es/modules/actions/refresh/RefreshActionInitializer.d.ts +2 -0
  384. package/es/modules/actions/refresh/refreshActionSettings.d.ts +2 -0
  385. package/es/modules/actions/save-record/SaveRecordActionInitializer.d.ts +2 -0
  386. package/es/modules/actions/save-record/customizeSaveRecordActionSettings.d.ts +2 -0
  387. package/es/modules/actions/submit/CreateSubmitActionInitializer.d.ts +2 -0
  388. package/es/modules/actions/submit/UpdateSubmitActionInitializer.d.ts +2 -0
  389. package/es/modules/actions/submit/createSubmitActionSettings.d.ts +4 -0
  390. package/es/modules/actions/submit/updateSubmitActionSettings.d.ts +3 -0
  391. package/es/modules/actions/update-record/UpdateRecordActionInitializer.d.ts +2 -0
  392. package/es/modules/actions/update-record/customizeUpdateRecordActionSettings.d.ts +2 -0
  393. package/es/modules/actions/view-edit-popup/PopupActionInitializer.d.ts +2 -0
  394. package/es/modules/actions/view-edit-popup/RecordFormBlockInitializers.d.ts +5 -0
  395. package/es/modules/actions/view-edit-popup/UpdateActionInitializer.d.ts +2 -0
  396. package/es/modules/actions/view-edit-popup/ViewActionInitializer.d.ts +2 -0
  397. package/es/modules/actions/view-edit-popup/customizePopupActionSettings.d.ts +2 -0
  398. package/es/modules/actions/view-edit-popup/editActionSettings.d.ts +2 -0
  399. package/es/modules/actions/view-edit-popup/viewActionSettings.d.ts +2 -0
  400. package/es/modules/blocks/BlockSchemaToolbar.d.ts +2 -0
  401. package/es/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.d.ts +6 -0
  402. package/es/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.d.ts +26 -0
  403. package/es/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.d.ts +9 -0
  404. package/es/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.d.ts +7 -0
  405. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.d.ts +3 -0
  406. package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.d.ts +3 -0
  407. package/es/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.d.ts +7 -0
  408. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.d.ts +2 -0
  409. package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.d.ts +2 -0
  410. package/es/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.d.ts +8 -0
  411. package/es/modules/blocks/data-blocks/details-single/createDetailsUISchema.d.ts +11 -0
  412. package/es/modules/blocks/data-blocks/details-single/detailsBlockSettings.d.ts +7 -0
  413. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.d.ts +12 -0
  414. package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.d.ts +3 -0
  415. package/es/modules/blocks/data-blocks/form/CreateFormBlockInitializer.d.ts +2 -0
  416. package/es/modules/blocks/data-blocks/form/FilterItemCustomSettings.d.ts +2 -0
  417. package/es/modules/blocks/data-blocks/form/FormBlockInitializer.d.ts +93 -0
  418. package/es/modules/blocks/data-blocks/form/FormItemSchemaToolbar.d.ts +2 -0
  419. package/es/modules/blocks/data-blocks/form/RecordFormBlockInitializer.d.ts +13 -0
  420. package/es/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.d.ts +14 -0
  421. package/es/modules/blocks/data-blocks/form/createEditFormBlockUISchema.d.ts +14 -0
  422. package/es/modules/blocks/data-blocks/form/createFormActionInitializers.d.ts +2 -0
  423. package/es/modules/blocks/data-blocks/form/createFormBlockSettings.d.ts +3 -0
  424. package/es/modules/blocks/data-blocks/form/editFormBlockSettings.d.ts +2 -0
  425. package/es/modules/blocks/data-blocks/form/fieldSettingsFormItem.d.ts +2 -0
  426. package/es/modules/blocks/data-blocks/form/formActionInitializers.d.ts +6 -0
  427. package/es/modules/blocks/data-blocks/form/formItemInitializers.d.ts +2 -0
  428. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.d.ts +3 -0
  429. package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.d.ts +3 -0
  430. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.d.ts +6 -0
  431. package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.d.ts +3 -0
  432. package/es/modules/blocks/data-blocks/form/index.d.ts +14 -0
  433. package/es/modules/blocks/data-blocks/form/updateFormActionInitializers.d.ts +2 -0
  434. package/es/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.d.ts +2 -0
  435. package/es/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.d.ts +24 -0
  436. package/es/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.d.ts +8 -0
  437. package/es/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.d.ts +2 -0
  438. package/es/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.d.ts +2 -0
  439. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.d.ts +4 -0
  440. package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.d.ts +1 -0
  441. package/es/modules/blocks/data-blocks/grid-card/utils.d.ts +1 -0
  442. package/es/modules/blocks/data-blocks/list/ListActionInitializers.d.ts +2 -0
  443. package/es/modules/blocks/data-blocks/list/ListBlockInitializer.d.ts +24 -0
  444. package/es/modules/blocks/data-blocks/list/createListBlockUISchema.d.ts +8 -0
  445. package/es/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.d.ts +3 -0
  446. package/es/modules/blocks/data-blocks/list/listBlockSettings.d.ts +2 -0
  447. package/es/modules/blocks/data-blocks/list/listItemActionInitializers.d.ts +2 -0
  448. package/es/modules/blocks/data-blocks/table/TableActionColumnInitializers.d.ts +4 -0
  449. package/es/modules/blocks/data-blocks/table/TableActionInitializers.d.ts +2 -0
  450. package/es/modules/blocks/data-blocks/table/TableBlockInitializer.d.ts +20 -0
  451. package/es/modules/blocks/data-blocks/table/TableColumnInitializers.d.ts +2 -0
  452. package/es/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.d.ts +2 -0
  453. package/es/modules/blocks/data-blocks/table/createTableBlockUISchema.d.ts +7 -0
  454. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.d.ts +5 -0
  455. package/es/modules/blocks/data-blocks/table/hooks/useTableBlockProps.d.ts +19 -0
  456. package/es/modules/blocks/data-blocks/table/index.d.ts +9 -0
  457. package/es/modules/blocks/data-blocks/table/tableBlockSettings.d.ts +2 -0
  458. package/es/modules/blocks/data-blocks/table/tableColumnSettings.d.ts +2 -0
  459. package/es/modules/blocks/data-blocks/table/utils.d.ts +1 -0
  460. package/es/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.d.ts +2 -0
  461. package/es/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.d.ts +6 -0
  462. package/es/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.d.ts +1 -0
  463. package/es/modules/blocks/data-blocks/table-selector/index.d.ts +2 -0
  464. package/es/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.d.ts +2 -0
  465. package/es/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.d.ts +2 -0
  466. package/es/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.d.ts +10 -0
  467. package/es/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.d.ts +6 -0
  468. package/es/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.d.ts +2 -0
  469. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.d.ts +2 -0
  470. package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.d.ts +6 -0
  471. package/es/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.d.ts +1 -0
  472. package/es/modules/blocks/filter-blocks/form/FilterFormActionInitializers.d.ts +2 -0
  473. package/es/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.d.ts +10 -0
  474. package/es/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.d.ts +62 -0
  475. package/es/modules/blocks/filter-blocks/form/filterFormBlockSettings.d.ts +2 -0
  476. package/es/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.d.ts +2 -0
  477. package/es/modules/blocks/filter-blocks/form/filterFormItemInitializers.d.ts +2 -0
  478. package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.d.ts +1 -0
  479. package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.d.ts +3 -0
  480. package/es/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.d.ts +2 -0
  481. package/es/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.d.ts +67 -0
  482. package/es/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.d.ts +2 -0
  483. package/es/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.d.ts +2 -0
  484. package/es/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.d.ts +2 -0
  485. package/es/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.d.ts +2 -0
  486. package/es/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.d.ts +2 -0
  487. package/es/modules/blocks/other-blocks/markdown/markdownBlockSettings.d.ts +2 -0
  488. package/es/modules/blocks/useParentRecordCommon.d.ts +7 -0
  489. package/es/modules/blocks/useSourceId.d.ts +1 -0
  490. package/es/modules/blocks/useSourceKey.d.ts +6 -0
  491. package/es/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.d.ts +2 -0
  492. package/es/modules/fields/component/Cascader/cascaderComponentFieldSettings.d.ts +5 -0
  493. package/es/modules/fields/component/Checkbox/checkboxComponentFieldSettings.d.ts +2 -0
  494. package/es/modules/fields/component/DatePicker/datePickerComponentFieldSettings.d.ts +2 -0
  495. package/es/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.d.ts +2 -0
  496. package/es/modules/fields/component/FileManager/fileManagerComponentFieldSettings.d.ts +2 -0
  497. package/es/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.d.ts +2 -0
  498. package/es/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.d.ts +2 -0
  499. package/es/modules/fields/component/Nester/subformComponentFieldSettings.d.ts +2 -0
  500. package/es/modules/fields/component/Picker/TableSelectorInitializers.d.ts +2 -0
  501. package/es/modules/fields/component/Picker/recordPickerComponentFieldSettings.d.ts +3 -0
  502. package/es/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.d.ts +2 -0
  503. package/es/modules/fields/component/Radio/radioComponentFieldSettings.d.ts +2 -0
  504. package/es/modules/fields/component/Select/selectComponentFieldSettings.d.ts +3 -0
  505. package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.d.ts +80 -0
  506. package/es/modules/fields/component/Tag/tagComponentFieldSettings.d.ts +2 -0
  507. package/es/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.d.ts +2 -0
  508. package/es/modules/fields/initializer/CollectionFieldInitializer.d.ts +2 -0
  509. package/es/modules/fields/initializer/TableCollectionFieldInitializer.d.ts +2 -0
  510. package/es/modules/menu/GroupItem.d.ts +2 -0
  511. package/es/modules/menu/LinkMenuItem.d.ts +2 -0
  512. package/es/modules/menu/PageMenuItem.d.ts +2 -0
  513. package/es/modules/menu/menuItemInitializer.d.ts +6 -0
  514. package/es/modules/page/BlockInitializers.d.ts +2 -0
  515. package/es/modules/variable/DeclareVariable.d.ts +18 -0
  516. package/es/modules/variable/useVariable.d.ts +14 -0
  517. package/es/powered-by/index.d.ts +2 -0
  518. package/es/record-provider/index.d.ts +27 -0
  519. package/es/route-switch/RouteSchemaComponent.d.ts +2 -0
  520. package/es/route-switch/index.d.ts +1 -0
  521. package/es/schema-component/antd/AntdSchemaComponentProvider.d.ts +7 -0
  522. package/es/schema-component/antd/__builtins__/hooks/index.d.ts +3 -0
  523. package/es/schema-component/antd/__builtins__/hooks/useConfig.d.ts +1 -0
  524. package/es/schema-component/antd/__builtins__/hooks/usePrefixCls.d.ts +3 -0
  525. package/es/schema-component/antd/__builtins__/hooks/useToken.d.ts +7 -0
  526. package/es/schema-component/antd/__builtins__/index.d.ts +4 -0
  527. package/es/schema-component/antd/__builtins__/loading.d.ts +1 -0
  528. package/es/schema-component/antd/__builtins__/portal.d.ts +10 -0
  529. package/es/schema-component/antd/__builtins__/render.d.ts +9 -0
  530. package/es/schema-component/antd/__builtins__/style.d.ts +29 -0
  531. package/es/schema-component/antd/action/Action.Area.d.ts +12 -0
  532. package/es/schema-component/antd/action/Action.Area.style.d.ts +4 -0
  533. package/es/schema-component/antd/action/Action.Container.d.ts +3 -0
  534. package/es/schema-component/antd/action/Action.Designer.d.ts +30 -0
  535. package/es/schema-component/antd/action/Action.Drawer.d.ts +5 -0
  536. package/es/schema-component/antd/action/Action.Drawer.style.d.ts +1 -0
  537. package/es/schema-component/antd/action/Action.Link.d.ts +2 -0
  538. package/es/schema-component/antd/action/Action.Modal.d.ts +6 -0
  539. package/es/schema-component/antd/action/Action.Page.d.ts +3 -0
  540. package/es/schema-component/antd/action/Action.Popover.d.ts +0 -0
  541. package/es/schema-component/antd/action/Action.Sheet.d.ts +3 -0
  542. package/es/schema-component/antd/action/Action.d.ts +3 -0
  543. package/es/schema-component/antd/action/Action.style.d.ts +2 -0
  544. package/es/schema-component/antd/action/ActionBar.d.ts +19 -0
  545. package/es/schema-component/antd/action/context.d.ts +23 -0
  546. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfAction.d.ts +8 -0
  547. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.d.ts +7 -0
  548. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfModal.d.ts +7 -0
  549. package/es/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.d.ts +7 -0
  550. package/es/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.d.ts +1 -0
  551. package/es/schema-component/antd/action/hooks/useSetAriaLabelForModal.d.ts +1 -0
  552. package/es/schema-component/antd/action/hooks/useSetAriaLabelForPopover.d.ts +1 -0
  553. package/es/schema-component/antd/action/hooks.d.ts +21 -0
  554. package/es/schema-component/antd/action/index.d.ts +10 -0
  555. package/es/schema-component/antd/action/types.d.ts +16 -0
  556. package/es/schema-component/antd/action/utils.d.ts +11 -0
  557. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelect.d.ts +17 -0
  558. package/es/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.d.ts +17 -0
  559. package/es/schema-component/antd/appends-tree-select/index.d.ts +2 -0
  560. package/es/schema-component/antd/association-cascader/AssociationCascader.d.ts +7 -0
  561. package/es/schema-component/antd/association-cascader/index.d.ts +1 -0
  562. package/es/schema-component/antd/association-field/AssociationFieldProvider.d.ts +2 -0
  563. package/es/schema-component/antd/association-field/AssociationSelect.d.ts +15 -0
  564. package/es/schema-component/antd/association-field/Editable.d.ts +2 -0
  565. package/es/schema-component/antd/association-field/FileManager.d.ts +4 -0
  566. package/es/schema-component/antd/association-field/InternalCascadeSelect.d.ts +3 -0
  567. package/es/schema-component/antd/association-field/InternalCascader.d.ts +4 -0
  568. package/es/schema-component/antd/association-field/InternalDrawerSubTable.d.ts +2 -0
  569. package/es/schema-component/antd/association-field/InternalNester.d.ts +2 -0
  570. package/es/schema-component/antd/association-field/InternalPicker.d.ts +25 -0
  571. package/es/schema-component/antd/association-field/InternalPopoverNester.d.ts +2 -0
  572. package/es/schema-component/antd/association-field/InternalSubTable.d.ts +2 -0
  573. package/es/schema-component/antd/association-field/InternalTag.d.ts +2 -0
  574. package/es/schema-component/antd/association-field/InternalViewer.d.ts +3 -0
  575. package/es/schema-component/antd/association-field/Nester.d.ts +2 -0
  576. package/es/schema-component/antd/association-field/ReadPretty.d.ts +2 -0
  577. package/es/schema-component/antd/association-field/SubTable.d.ts +1 -0
  578. package/es/schema-component/antd/association-field/SubTabs/InternalCollapse.d.ts +8 -0
  579. package/es/schema-component/antd/association-field/SubTabs/hook.d.ts +1 -0
  580. package/es/schema-component/antd/association-field/SubTabs/index.d.ts +1 -0
  581. package/es/schema-component/antd/association-field/SubTabs/styles.d.ts +3 -0
  582. package/es/schema-component/antd/association-field/components/CreateRecordAction.d.ts +2 -0
  583. package/es/schema-component/antd/association-field/context.d.ts +9 -0
  584. package/es/schema-component/antd/association-field/hooks.d.ts +29 -0
  585. package/es/schema-component/antd/association-field/index.d.ts +2 -0
  586. package/es/schema-component/antd/association-field/schema.d.ts +131 -0
  587. package/es/schema-component/antd/association-field/util.d.ts +12 -0
  588. package/es/schema-component/antd/association-filter/ActionBarAssociationFilterAction.d.ts +7 -0
  589. package/es/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.d.ts +2 -0
  590. package/es/schema-component/antd/association-filter/AssociationFilter.Initializer.d.ts +5 -0
  591. package/es/schema-component/antd/association-filter/AssociationFilter.Item.Designer.d.ts +2 -0
  592. package/es/schema-component/antd/association-filter/AssociationFilter.Item.d.ts +2 -0
  593. package/es/schema-component/antd/association-filter/AssociationFilter.Item.style.d.ts +2 -0
  594. package/es/schema-component/antd/association-filter/AssociationFilter.d.ts +15 -0
  595. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDelete.d.ts +2 -0
  596. package/es/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.d.ts +2 -0
  597. package/es/schema-component/antd/association-filter/AssociationFilterProvider.d.ts +1 -0
  598. package/es/schema-component/antd/association-filter/utilts.d.ts +2 -0
  599. package/es/schema-component/antd/association-select/AssociationSelect.d.ts +13 -0
  600. package/es/schema-component/antd/association-select/ReadPretty.d.ts +2 -0
  601. package/es/schema-component/antd/association-select/index.d.ts +1 -0
  602. package/es/schema-component/antd/association-select/useServiceOptions.d.ts +1 -0
  603. package/es/schema-component/antd/auto-complete/AutoComplete.d.ts +2 -0
  604. package/es/schema-component/antd/auto-complete/index.d.ts +1 -0
  605. package/es/schema-component/antd/block-item/BlockItem.d.ts +2 -0
  606. package/es/schema-component/antd/block-item/BlockToolbar.d.ts +11 -0
  607. package/es/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.d.ts +7 -0
  608. package/es/schema-component/antd/block-item/index.d.ts +1 -0
  609. package/es/schema-component/antd/block-item/useBlockToolbar.d.ts +13 -0
  610. package/es/schema-component/antd/card-item/CardItem.d.ts +9 -0
  611. package/es/schema-component/antd/card-item/index.d.ts +1 -0
  612. package/es/schema-component/antd/card-item/style.d.ts +2 -0
  613. package/es/schema-component/antd/cascader/Cascader.d.ts +3 -0
  614. package/es/schema-component/antd/cascader/ReadPretty.d.ts +2 -0
  615. package/es/schema-component/antd/cascader/defaultFieldNames.d.ts +5 -0
  616. package/es/schema-component/antd/cascader/index.d.ts +1 -0
  617. package/es/schema-component/antd/checkbox/Checkbox.d.ts +16 -0
  618. package/es/schema-component/antd/checkbox/index.d.ts +1 -0
  619. package/es/schema-component/antd/collection-select/CollectionSelect.d.ts +17 -0
  620. package/es/schema-component/antd/collection-select/index.d.ts +1 -0
  621. package/es/schema-component/antd/color-picker/ColorPicker.d.ts +3 -0
  622. package/es/schema-component/antd/color-picker/ReadPretty.d.ts +7 -0
  623. package/es/schema-component/antd/color-picker/index.d.ts +1 -0
  624. package/es/schema-component/antd/color-picker/util.d.ts +31 -0
  625. package/es/schema-component/antd/color-select/ColorSelect.d.ts +3 -0
  626. package/es/schema-component/antd/color-select/index.d.ts +1 -0
  627. package/es/schema-component/antd/cron/Cron.d.ts +10 -0
  628. package/es/schema-component/antd/cron/CronSet.d.ts +7 -0
  629. package/es/schema-component/antd/cron/index.d.ts +2 -0
  630. package/es/schema-component/antd/custom-cascader/CustomCascader.d.ts +3 -0
  631. package/es/schema-component/antd/custom-cascader/ReadPretty.d.ts +2 -0
  632. package/es/schema-component/antd/custom-cascader/defaultFieldNames.d.ts +5 -0
  633. package/es/schema-component/antd/custom-cascader/index.d.ts +1 -0
  634. package/es/schema-component/antd/date-picker/DatePicker.d.ts +13 -0
  635. package/es/schema-component/antd/date-picker/ReadPretty.d.ts +8 -0
  636. package/es/schema-component/antd/date-picker/index.d.ts +1 -0
  637. package/es/schema-component/antd/date-picker/util.d.ts +37 -0
  638. package/es/schema-component/antd/details/Details.d.ts +2 -0
  639. package/es/schema-component/antd/details/index.d.ts +1 -0
  640. package/es/schema-component/antd/error-fallback/ErrorFallback.d.ts +3 -0
  641. package/es/schema-component/antd/error-fallback/index.d.ts +1 -0
  642. package/es/schema-component/antd/expand-action/Expand.Action.Design.d.ts +7 -0
  643. package/es/schema-component/antd/expand-action/Expand.Action.d.ts +2 -0
  644. package/es/schema-component/antd/expand-action/index.d.ts +1 -0
  645. package/es/schema-component/antd/filter/DynamicComponent.d.ts +19 -0
  646. package/es/schema-component/antd/filter/Filter.Action.Designer.d.ts +4 -0
  647. package/es/schema-component/antd/filter/Filter.d.ts +1 -0
  648. package/es/schema-component/antd/filter/FilterAction.d.ts +3 -0
  649. package/es/schema-component/antd/filter/FilterGroup.d.ts +2 -0
  650. package/es/schema-component/antd/filter/FilterItem.d.ts +2 -0
  651. package/es/schema-component/antd/filter/FilterItems.d.ts +2 -0
  652. package/es/schema-component/antd/filter/SaveDefaultValue.d.ts +2 -0
  653. package/es/schema-component/antd/filter/context.d.ts +14 -0
  654. package/es/schema-component/antd/filter/index.d.ts +3 -0
  655. package/es/schema-component/antd/filter/useFilterActionProps.d.ts +20 -0
  656. package/es/schema-component/antd/filter/useOperators.d.ts +5 -0
  657. package/es/schema-component/antd/filter/useValues.d.ts +14 -0
  658. package/es/schema-component/antd/filter/utils.d.ts +1 -0
  659. package/es/schema-component/antd/form/Form.Designer.d.ts +2 -0
  660. package/es/schema-component/antd/form/Form.Settings.d.ts +5 -0
  661. package/es/schema-component/antd/form/Form.d.ts +13 -0
  662. package/es/schema-component/antd/form/index.d.ts +2 -0
  663. package/es/schema-component/antd/form-dialog/index.d.ts +28 -0
  664. package/es/schema-component/antd/form-item/FormItem.FilterFormDesigner.d.ts +2 -0
  665. package/es/schema-component/antd/form-item/FormItem.FilterFormSettings.d.ts +5 -0
  666. package/es/schema-component/antd/form-item/FormItem.Settings.d.ts +73 -0
  667. package/es/schema-component/antd/form-item/FormItem.d.ts +9 -0
  668. package/es/schema-component/antd/form-item/SchemaSettingOptions.d.ts +24 -0
  669. package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.d.ts +8 -0
  670. package/es/schema-component/antd/form-item/hooks/useParseDefaultValue.d.ts +5 -0
  671. package/es/schema-component/antd/form-item/hooks/useSpecialCase.d.ts +59 -0
  672. package/es/schema-component/antd/form-item/index.d.ts +4 -0
  673. package/es/schema-component/antd/form-item/utils.d.ts +8 -0
  674. package/es/schema-component/antd/form-tab/index.d.ts +19 -0
  675. package/es/schema-component/antd/form-v2/Form.Designer.d.ts +4 -0
  676. package/es/schema-component/antd/form-v2/Form.FilterDesigner.d.ts +6 -0
  677. package/es/schema-component/antd/form-v2/Form.Settings.d.ts +13 -0
  678. package/es/schema-component/antd/form-v2/Form.d.ts +10 -0
  679. package/es/schema-component/antd/form-v2/FormField.d.ts +1 -0
  680. package/es/schema-component/antd/form-v2/Templates.d.ts +32 -0
  681. package/es/schema-component/antd/form-v2/index.d.ts +6 -0
  682. package/es/schema-component/antd/form-v2/utils.d.ts +21 -0
  683. package/es/schema-component/antd/grid/Block.d.ts +2 -0
  684. package/es/schema-component/antd/grid/Grid.d.ts +5 -0
  685. package/es/schema-component/antd/grid/Grid.style.d.ts +2 -0
  686. package/es/schema-component/antd/grid/index.d.ts +2 -0
  687. package/es/schema-component/antd/grid-card/GridCard.Decorator.d.ts +5 -0
  688. package/es/schema-component/antd/grid-card/GridCard.Decorator.style.d.ts +2 -0
  689. package/es/schema-component/antd/grid-card/GridCard.Designer.d.ts +2 -0
  690. package/es/schema-component/antd/grid-card/GridCard.Item.d.ts +2 -0
  691. package/es/schema-component/antd/grid-card/GridCard.d.ts +11 -0
  692. package/es/schema-component/antd/grid-card/hooks.d.ts +13 -0
  693. package/es/schema-component/antd/grid-card/index.d.ts +1 -0
  694. package/es/schema-component/antd/grid-card/options.d.ts +20 -0
  695. package/es/schema-component/antd/icon-picker/IconFilterInput.d.ts +2 -0
  696. package/es/schema-component/antd/icon-picker/IconList.d.ts +2 -0
  697. package/es/schema-component/antd/icon-picker/IconPicker.d.ts +3 -0
  698. package/es/schema-component/antd/icon-picker/index.d.ts +1 -0
  699. package/es/schema-component/antd/index.d.ts +61 -0
  700. package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +8 -0
  701. package/es/schema-component/antd/input/Input.d.ts +14 -0
  702. package/es/schema-component/antd/input/Json.d.ts +10 -0
  703. package/es/schema-component/antd/input/ReadPretty.d.ts +22 -0
  704. package/es/schema-component/antd/input/index.d.ts +5 -0
  705. package/es/schema-component/antd/input/shared.d.ts +1 -0
  706. package/es/schema-component/antd/input-number/InputNumber.d.ts +7 -0
  707. package/es/schema-component/antd/input-number/ReadPretty.d.ts +8 -0
  708. package/es/schema-component/antd/input-number/index.d.ts +1 -0
  709. package/es/schema-component/antd/list/List.Decorator.d.ts +5 -0
  710. package/es/schema-component/antd/list/List.Designer.d.ts +5 -0
  711. package/es/schema-component/antd/list/List.Item.d.ts +2 -0
  712. package/es/schema-component/antd/list/List.d.ts +11 -0
  713. package/es/schema-component/antd/list/List.style.d.ts +2 -0
  714. package/es/schema-component/antd/list/hooks.d.ts +4 -0
  715. package/es/schema-component/antd/list/index.d.ts +1 -0
  716. package/es/schema-component/antd/markdown/Markdown.Void.Designer.d.ts +2 -0
  717. package/es/schema-component/antd/markdown/Markdown.Void.d.ts +1 -0
  718. package/es/schema-component/antd/markdown/Markdown.d.ts +4 -0
  719. package/es/schema-component/antd/markdown/index.d.ts +1 -0
  720. package/es/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.d.ts +5 -0
  721. package/es/schema-component/antd/markdown/md.d.ts +3 -0
  722. package/es/schema-component/antd/markdown/style.d.ts +1 -0
  723. package/es/schema-component/antd/markdown/util.d.ts +6 -0
  724. package/es/schema-component/antd/menu/Menu.Designer.d.ts +2 -0
  725. package/es/schema-component/antd/menu/Menu.d.ts +9 -0
  726. package/es/schema-component/antd/menu/Menu.styles.d.ts +8 -0
  727. package/es/schema-component/antd/menu/MenuItemInitializers/index.d.ts +6 -0
  728. package/es/schema-component/antd/menu/index.d.ts +3 -0
  729. package/es/schema-component/antd/menu/locale.d.ts +1 -0
  730. package/es/schema-component/antd/menu/util.d.ts +4 -0
  731. package/es/schema-component/antd/nanoIDInput/NanoIDInput.d.ts +6 -0
  732. package/es/schema-component/antd/nanoIDInput/index.d.ts +1 -0
  733. package/es/schema-component/antd/page/FixedBlock.d.ts +16 -0
  734. package/es/schema-component/antd/page/FixedBlockDesignerItem.d.ts +2 -0
  735. package/es/schema-component/antd/page/Page.Settings.d.ts +5 -0
  736. package/es/schema-component/antd/page/Page.d.ts +5 -0
  737. package/es/schema-component/antd/page/PageTab.Settings.d.ts +5 -0
  738. package/es/schema-component/antd/page/PageTabDesigner.d.ts +7 -0
  739. package/es/schema-component/antd/page/hooks/useIsBlockInPage.d.ts +6 -0
  740. package/es/schema-component/antd/page/index.d.ts +5 -0
  741. package/es/schema-component/antd/page/style.d.ts +1 -0
  742. package/es/schema-component/antd/pagination/index.d.ts +2 -0
  743. package/es/schema-component/antd/password/Password.d.ts +7 -0
  744. package/es/schema-component/antd/password/PasswordStrength.d.ts +8 -0
  745. package/es/schema-component/antd/password/index.d.ts +1 -0
  746. package/es/schema-component/antd/password/utils.d.ts +1 -0
  747. package/es/schema-component/antd/percent/Percent.d.ts +2 -0
  748. package/es/schema-component/antd/percent/index.d.ts +1 -0
  749. package/es/schema-component/antd/popover/Popover.d.ts +8 -0
  750. package/es/schema-component/antd/popover/index.d.ts +1 -0
  751. package/es/schema-component/antd/preview/Preview.d.ts +13 -0
  752. package/es/schema-component/antd/preview/index.d.ts +1 -0
  753. package/es/schema-component/antd/quick-edit/QuickEdit.d.ts +3 -0
  754. package/es/schema-component/antd/quick-edit/index.d.ts +1 -0
  755. package/es/schema-component/antd/radio/Radio.d.ts +8 -0
  756. package/es/schema-component/antd/radio/index.d.ts +1 -0
  757. package/es/schema-component/antd/record-picker/InputRecordPicker.d.ts +5 -0
  758. package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.d.ts +2 -0
  759. package/es/schema-component/antd/record-picker/RecordPicker.d.ts +1 -0
  760. package/es/schema-component/antd/record-picker/index.d.ts +6 -0
  761. package/es/schema-component/antd/record-picker/useFieldNames.d.ts +1 -0
  762. package/es/schema-component/antd/record-picker/util.d.ts +5 -0
  763. package/es/schema-component/antd/remote-select/ReadPretty.d.ts +2 -0
  764. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +32 -0
  765. package/es/schema-component/antd/remote-select/index.d.ts +1 -0
  766. package/es/schema-component/antd/remote-select/shared.d.ts +1 -0
  767. package/es/schema-component/antd/rich-text/RichText.d.ts +2 -0
  768. package/es/schema-component/antd/rich-text/index.d.ts +1 -0
  769. package/es/schema-component/antd/rich-text/style.d.ts +7 -0
  770. package/es/schema-component/antd/scroll-area/ScrollArea.d.ts +3 -0
  771. package/es/schema-component/antd/scroll-area/index.d.ts +1 -0
  772. package/es/schema-component/antd/select/FormulaSelect.d.ts +3 -0
  773. package/es/schema-component/antd/select/ReadPretty.d.ts +2 -0
  774. package/es/schema-component/antd/select/Select.d.ts +15 -0
  775. package/es/schema-component/antd/select/index.d.ts +2 -0
  776. package/es/schema-component/antd/select/utils.d.ts +14 -0
  777. package/es/schema-component/antd/space/index.d.ts +4 -0
  778. package/es/schema-component/antd/table/Table.Array.Designer.d.ts +2 -0
  779. package/es/schema-component/antd/table/Table.Array.d.ts +2 -0
  780. package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +5 -0
  781. package/es/schema-component/antd/table/Table.Column.Decorator.d.ts +13 -0
  782. package/es/schema-component/antd/table/Table.Column.Designer.d.ts +2 -0
  783. package/es/schema-component/antd/table/Table.Column.d.ts +2 -0
  784. package/es/schema-component/antd/table/Table.Designer.d.ts +2 -0
  785. package/es/schema-component/antd/table/Table.RowActionDesigner.d.ts +2 -0
  786. package/es/schema-component/antd/table/Table.RowSelection.d.ts +7 -0
  787. package/es/schema-component/antd/table/Table.Void.Designer.d.ts +2 -0
  788. package/es/schema-component/antd/table/Table.Void.d.ts +15 -0
  789. package/es/schema-component/antd/table/index.d.ts +1 -0
  790. package/es/schema-component/antd/table-v2/Table.ActionColumnDesigner.d.ts +2 -0
  791. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +5 -0
  792. package/es/schema-component/antd/table-v2/Table.Column.Decorator.d.ts +13 -0
  793. package/es/schema-component/antd/table-v2/Table.Column.Designer.d.ts +10 -0
  794. package/es/schema-component/antd/table-v2/Table.Column.d.ts +2 -0
  795. package/es/schema-component/antd/table-v2/Table.Designer.d.ts +2 -0
  796. package/es/schema-component/antd/table-v2/Table.Index.d.ts +2 -0
  797. package/es/schema-component/antd/table-v2/Table.d.ts +1 -0
  798. package/es/schema-component/antd/table-v2/Table.styles.d.ts +13 -0
  799. package/es/schema-component/antd/table-v2/TableBlockDesigner.d.ts +3 -0
  800. package/es/schema-component/antd/table-v2/TableField.d.ts +1 -0
  801. package/es/schema-component/antd/table-v2/TableSelector.d.ts +1 -0
  802. package/es/schema-component/antd/table-v2/TableSelectorDesigner.d.ts +2 -0
  803. package/es/schema-component/antd/table-v2/components/ColumnFieldProvider.d.ts +6 -0
  804. package/es/schema-component/antd/table-v2/index.d.ts +5 -0
  805. package/es/schema-component/antd/table-v2/utils.d.ts +4 -0
  806. package/es/schema-component/antd/tabs/Tabs.Designer.d.ts +2 -0
  807. package/es/schema-component/antd/tabs/Tabs.d.ts +1 -0
  808. package/es/schema-component/antd/tabs/context.d.ts +8 -0
  809. package/es/schema-component/antd/tabs/index.d.ts +2 -0
  810. package/es/schema-component/antd/time-picker/ReadPretty.d.ts +3 -0
  811. package/es/schema-component/antd/time-picker/TimePicker.d.ts +6 -0
  812. package/es/schema-component/antd/time-picker/index.d.ts +1 -0
  813. package/es/schema-component/antd/tree/Tree.d.ts +2 -0
  814. package/es/schema-component/antd/tree/index.d.ts +2 -0
  815. package/es/schema-component/antd/tree-select/ReadPretty.d.ts +3 -0
  816. package/es/schema-component/antd/tree-select/TreeSelect.d.ts +2 -0
  817. package/es/schema-component/antd/tree-select/index.d.ts +1 -0
  818. package/es/schema-component/antd/unixTimestamp/UnixTimestamp.d.ts +2 -0
  819. package/es/schema-component/antd/unixTimestamp/index.d.ts +1 -0
  820. package/es/schema-component/antd/upload/ReadPretty.d.ts +17 -0
  821. package/es/schema-component/antd/upload/Upload.d.ts +5 -0
  822. package/es/schema-component/antd/upload/index.d.ts +1 -0
  823. package/es/schema-component/antd/upload/placeholder.d.ts +4 -0
  824. package/es/schema-component/antd/upload/shared.d.ts +61 -0
  825. package/es/schema-component/antd/upload/style.d.ts +1 -0
  826. package/es/schema-component/antd/variable/CodeMirror.d.ts +2 -0
  827. package/es/schema-component/antd/variable/Input.d.ts +2 -0
  828. package/es/schema-component/antd/variable/JSONInput.d.ts +2 -0
  829. package/es/schema-component/antd/variable/RawTextArea.d.ts +1 -0
  830. package/es/schema-component/antd/variable/TextArea.d.ts +5 -0
  831. package/es/schema-component/antd/variable/Variable.d.ts +15 -0
  832. package/es/schema-component/antd/variable/VariableSelect.d.ts +8 -0
  833. package/es/schema-component/antd/variable/VariableSelect.style.d.ts +2 -0
  834. package/es/schema-component/antd/variable/XButton.d.ts +3 -0
  835. package/es/schema-component/antd/variable/index.d.ts +1 -0
  836. package/es/schema-component/antd/variable/style.d.ts +90 -0
  837. package/es/schema-component/common/dnd-context/index.d.ts +3 -0
  838. package/es/schema-component/common/index.d.ts +2 -0
  839. package/es/schema-component/common/infinite-scroll/infinite-scroll.d.ts +8 -0
  840. package/es/schema-component/common/infinite-scroll/style.d.ts +4 -0
  841. package/es/schema-component/common/sortable-item/SortableItem.d.ts +17 -0
  842. package/es/schema-component/common/sortable-item/index.d.ts +1 -0
  843. package/es/schema-component/common/utils/logic.d.ts +11 -0
  844. package/es/schema-component/common/utils/uitls.d.ts +25 -0
  845. package/es/schema-component/context.d.ts +2 -0
  846. package/es/schema-component/core/DesignableSwitch.d.ts +2 -0
  847. package/es/schema-component/core/FormProvider.d.ts +2 -0
  848. package/es/schema-component/core/RemoteSchemaComponent.d.ts +15 -0
  849. package/es/schema-component/core/SchemaComponent.d.ts +16 -0
  850. package/es/schema-component/core/SchemaComponentOptions.d.ts +4 -0
  851. package/es/schema-component/core/SchemaComponentProvider.d.ts +6 -0
  852. package/es/schema-component/core/index.d.ts +12 -0
  853. package/es/schema-component/hooks/index.d.ts +12 -0
  854. package/es/schema-component/hooks/useAttach.d.ts +6 -0
  855. package/es/schema-component/hooks/useCompile.d.ts +8 -0
  856. package/es/schema-component/hooks/useComponent.d.ts +1 -0
  857. package/es/schema-component/hooks/useDesignable.d.ts +98 -0
  858. package/es/schema-component/hooks/useDesigner.d.ts +1 -0
  859. package/es/schema-component/hooks/useFieldComponentOptions.d.ts +4 -0
  860. package/es/schema-component/hooks/useFieldModeOptions.d.ts +4 -0
  861. package/es/schema-component/hooks/useFieldProps.d.ts +2 -0
  862. package/es/schema-component/hooks/useFieldTitle.d.ts +1 -0
  863. package/es/schema-component/hooks/useProps.d.ts +6 -0
  864. package/es/schema-component/hooks/useSchemaComponentContext.d.ts +1 -0
  865. package/es/schema-component/hooks/useTableSize.d.ts +5 -0
  866. package/es/schema-component/index.d.ts +6 -0
  867. package/es/schema-component/types.d.ts +29 -0
  868. package/es/schema-initializer/buttons/CustomFormItemInitializers.d.ts +2 -0
  869. package/es/schema-initializer/buttons/FormItemInitializers.d.ts +6 -0
  870. package/es/schema-initializer/buttons/RecordBlockInitializers.d.ts +3 -0
  871. package/es/schema-initializer/buttons/SubTableActionInitializers.d.ts +2 -0
  872. package/es/schema-initializer/buttons/TabPaneInitializers.d.ts +17 -0
  873. package/es/schema-initializer/buttons/index.d.ts +6 -0
  874. package/es/schema-initializer/components/CreateRecordAction.d.ts +4 -0
  875. package/es/schema-initializer/components/DeletedField.d.ts +2 -0
  876. package/es/schema-initializer/components/assigned-field/AssignedField.d.ts +12 -0
  877. package/es/schema-initializer/components/assigned-field/index.d.ts +1 -0
  878. package/es/schema-initializer/components/index.d.ts +2 -0
  879. package/es/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.d.ts +7 -0
  880. package/es/schema-initializer/index.d.ts +7 -0
  881. package/es/schema-initializer/items/ActionInitializer.d.ts +2 -0
  882. package/es/schema-initializer/items/BlockInitializer.d.ts +3 -0
  883. package/es/schema-initializer/items/CreateFilterActionInitializer.d.ts +2 -0
  884. package/es/schema-initializer/items/CreateResetActionInitializer.d.ts +2 -0
  885. package/es/schema-initializer/items/CustomFilterFormItemInitializer.d.ts +15 -0
  886. package/es/schema-initializer/items/CustomizeActionInitializer.d.ts +2 -0
  887. package/es/schema-initializer/items/DataBlockInitializer.d.ts +46 -0
  888. package/es/schema-initializer/items/DeleteEventActionInitializer.d.ts +2 -0
  889. package/es/schema-initializer/items/FilterBlockInitializer.d.ts +1 -0
  890. package/es/schema-initializer/items/G2PlotInitializer.d.ts +2 -0
  891. package/es/schema-initializer/items/InitializerWithSwitch.d.ts +2 -0
  892. package/es/schema-initializer/items/RecordAssociationBlockInitializer.d.ts +10 -0
  893. package/es/schema-initializer/items/RecordAssociationDetailsBlockInitializer.d.ts +7 -0
  894. package/es/schema-initializer/items/RecordAssociationFormBlockInitializer.d.ts +13 -0
  895. package/es/schema-initializer/items/RecordAssociationGridCardBlockInitializer.d.ts +10 -0
  896. package/es/schema-initializer/items/RecordAssociationListBlockInitializer.d.ts +7 -0
  897. package/es/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.d.ts +13 -0
  898. package/es/schema-initializer/items/SelectActionInitializer.d.ts +2 -0
  899. package/es/schema-initializer/items/SubmitActionInitializer.d.ts +2 -0
  900. package/es/schema-initializer/items/TableActionColumnInitializer.d.ts +2 -0
  901. package/es/schema-initializer/items/index.d.ts +23 -0
  902. package/es/schema-initializer/style.d.ts +12 -0
  903. package/es/schema-initializer/utils.d.ts +421 -0
  904. package/es/schema-items/GeneralSchemaItems.d.ts +4 -0
  905. package/es/schema-items/GeneralSettings.d.ts +2 -0
  906. package/es/schema-items/OpenModeSchemaItems.d.ts +8 -0
  907. package/es/schema-items/index.d.ts +2 -0
  908. package/es/schema-settings/DataTemplates/FormDataTemplates.d.ts +4 -0
  909. package/es/schema-settings/DataTemplates/TreeLabel.d.ts +2 -0
  910. package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.d.ts +2 -0
  911. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.d.ts +10 -0
  912. package/es/schema-settings/DataTemplates/components/DataTemplateTitle.style.d.ts +5 -0
  913. package/es/schema-settings/DataTemplates/components/Designer.d.ts +7 -0
  914. package/es/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +13 -0
  915. package/es/schema-settings/DataTemplates/index.d.ts +1 -0
  916. package/es/schema-settings/DataTemplates/utils.d.ts +3 -0
  917. package/es/schema-settings/DateFormat/ExpiresRadio.d.ts +4 -0
  918. package/es/schema-settings/EditCustomDefaultValue.d.ts +3 -0
  919. package/es/schema-settings/EditFormulaTitleField.d.ts +4 -0
  920. package/es/schema-settings/EnableChildCollections/DynamicComponent.d.ts +8 -0
  921. package/es/schema-settings/EnableChildCollections/index.d.ts +2 -0
  922. package/es/schema-settings/GeneralSchemaDesigner.d.ts +29 -0
  923. package/es/schema-settings/LinkageRules/DynamicComponent.d.ts +2 -0
  924. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +3 -0
  925. package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +3 -0
  926. package/es/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +9 -0
  927. package/es/schema-settings/LinkageRules/Variables.d.ts +7 -0
  928. package/es/schema-settings/LinkageRules/action-hooks.d.ts +1 -0
  929. package/es/schema-settings/LinkageRules/components/EnableLinkage.d.ts +2 -0
  930. package/es/schema-settings/LinkageRules/components/LinkageHeader.d.ts +10 -0
  931. package/es/schema-settings/LinkageRules/components/LinkageHeader.style.d.ts +5 -0
  932. package/es/schema-settings/LinkageRules/context.d.ts +11 -0
  933. package/es/schema-settings/LinkageRules/index.d.ts +2 -0
  934. package/es/schema-settings/LinkageRules/type.d.ts +13 -0
  935. package/es/schema-settings/LinkageRules/useValues.d.ts +1 -0
  936. package/es/schema-settings/SchemaSettingCollection.d.ts +2 -0
  937. package/es/schema-settings/SchemaSettingComponent.d.ts +2 -0
  938. package/es/schema-settings/SchemaSettings.d.ts +122 -0
  939. package/es/schema-settings/SchemaSettingsDataScope.d.ts +3 -0
  940. package/es/schema-settings/SchemaSettingsDateFormat.d.ts +5 -0
  941. package/es/schema-settings/SchemaSettingsDefaultValue.d.ts +5 -0
  942. package/es/schema-settings/SchemaSettingsNumberFormat.d.ts +5 -0
  943. package/es/schema-settings/SchemaSettingsPlugin.d.ts +4 -0
  944. package/es/schema-settings/SchemaSettingsSortingRule.d.ts +2 -0
  945. package/es/schema-settings/VariableInput/VariableInput.d.ts +87 -0
  946. package/es/schema-settings/VariableInput/hooks/index.d.ts +3 -0
  947. package/es/schema-settings/VariableInput/hooks/useBaseVariable.d.ts +51 -0
  948. package/es/schema-settings/VariableInput/hooks/useBlockCollection.d.ts +3 -0
  949. package/es/schema-settings/VariableInput/hooks/useContextAssociationFields.d.ts +9 -0
  950. package/es/schema-settings/VariableInput/hooks/useDateVariable.d.ts +57 -0
  951. package/es/schema-settings/VariableInput/hooks/useFilterVariable.d.ts +22 -0
  952. package/es/schema-settings/VariableInput/hooks/useFormVariable.d.ts +34 -0
  953. package/es/schema-settings/VariableInput/hooks/useIterationVariable.d.ts +38 -0
  954. package/es/schema-settings/VariableInput/hooks/useParentRecordVariable.d.ts +31 -0
  955. package/es/schema-settings/VariableInput/hooks/usePopupVariable.d.ts +16 -0
  956. package/es/schema-settings/VariableInput/hooks/useRecordVariable.d.ts +35 -0
  957. package/es/schema-settings/VariableInput/hooks/useRoleVariable.d.ts +37 -0
  958. package/es/schema-settings/VariableInput/hooks/useUserVariable.d.ts +37 -0
  959. package/es/schema-settings/VariableInput/hooks/useVariableOptions.d.ts +40 -0
  960. package/es/schema-settings/VariableInput/index.d.ts +2 -0
  961. package/es/schema-settings/VariableInput/type.d.ts +29 -0
  962. package/es/schema-settings/VariableInput/utils/formatVariableScop.d.ts +2 -0
  963. package/es/schema-settings/filter-form/FormFilterScope.d.ts +22 -0
  964. package/es/schema-settings/filter-form/context.d.ts +16 -0
  965. package/es/schema-settings/hooks/useFilterFormCustomProps.d.ts +4 -0
  966. package/es/schema-settings/hooks/useGetAriaLabelOfDesigner.d.ts +7 -0
  967. package/es/schema-settings/hooks/useIsAllowToSetDefaultValue.d.ts +26 -0
  968. package/es/schema-settings/hooks/useIsShowMultipleSwitch.d.ts +4 -0
  969. package/es/schema-settings/hooks/useParseDataScopeFilter.d.ts +12 -0
  970. package/es/schema-settings/index.d.ts +18 -0
  971. package/es/schema-settings/isPatternDisabled.d.ts +2 -0
  972. package/es/schema-settings/styles.d.ts +53 -0
  973. package/es/schema-settings/types.d.ts +33 -0
  974. package/es/schema-templates/BlockTemplate.d.ts +3 -0
  975. package/es/schema-templates/BlockTemplateDetails.d.ts +2 -0
  976. package/es/schema-templates/BlockTemplatePage.d.ts +3 -0
  977. package/es/schema-templates/SchemaTemplateManagerProvider.d.ts +14 -0
  978. package/es/schema-templates/collections/uiSchemaTemplates.d.ts +2 -0
  979. package/es/schema-templates/index.d.ts +4 -0
  980. package/es/schema-templates/schemas/CollectionTitle.d.ts +2 -0
  981. package/es/schema-templates/schemas/uiSchemaTemplates.d.ts +2 -0
  982. package/es/schema-templates/useSchemaTemplateManager.d.ts +14 -0
  983. package/es/style/css-variable/CSSVariableProvider.d.ts +7 -0
  984. package/es/style/css-variable/index.d.ts +1 -0
  985. package/es/style/index.d.ts +3 -0
  986. package/es/style/theme/AntdAppProvider.d.ts +8 -0
  987. package/es/style/theme/defaultTheme.d.ts +3 -0
  988. package/es/style/theme/index.d.ts +28 -0
  989. package/es/style/theme/type.d.ts +34 -0
  990. package/es/style/useToken.d.ts +7 -0
  991. package/es/testUtils/index.d.ts +1 -0
  992. package/es/testUtils/mockAPIClient.d.ts +9 -0
  993. package/es/user/ChangePassword.d.ts +1 -0
  994. package/es/user/CurrentUser.d.ts +9 -0
  995. package/es/user/CurrentUserProvider.d.ts +8 -0
  996. package/es/user/CurrentUserSettingsMenuProvider.d.ts +21 -0
  997. package/es/user/EditProfile.d.ts +1 -0
  998. package/es/user/LanguageSettings.d.ts +1 -0
  999. package/es/user/SwitchRole.d.ts +1 -0
  1000. package/es/user/VerificationCode.d.ts +7 -0
  1001. package/es/user/index.d.ts +3 -0
  1002. package/es/variables/VariablesProvider.d.ts +10 -0
  1003. package/es/variables/constants.d.ts +1 -0
  1004. package/es/variables/hooks/useBuiltinVariables.d.ts +5 -0
  1005. package/es/variables/hooks/useContextVariable.d.ts +3 -0
  1006. package/es/variables/hooks/useLocalVariables.d.ts +8 -0
  1007. package/es/variables/hooks/useVariables.d.ts +2 -0
  1008. package/es/variables/index.d.ts +8 -0
  1009. package/es/variables/types.d.ts +73 -0
  1010. package/es/variables/utils/filterEmptyValues.d.ts +1 -0
  1011. package/es/variables/utils/getAction.d.ts +1 -0
  1012. package/es/variables/utils/getPath.d.ts +6 -0
  1013. package/es/variables/utils/getVariableName.d.ts +6 -0
  1014. package/es/variables/utils/hasRequested.d.ts +9 -0
  1015. package/es/variables/utils/isVariable.d.ts +2 -0
  1016. package/es/variables/utils/transformVariableValue.d.ts +12 -0
  1017. package/es/variables/utils/uniq.d.ts +6 -0
  1018. package/lib/953.mjs +74 -0
  1019. package/lib/953.mjs.map +1 -0
  1020. package/lib/index.css +321 -0
  1021. package/lib/index.mjs +87006 -0
  1022. package/lib/index.mjs.LICENSE.txt +6 -0
  1023. package/lib/index.mjs.map +1 -0
  1024. package/lib/locale/cron/zh_CN.js +33 -0
  1025. package/lib/locale/cron/zh_TW.js +33 -0
  1026. package/lib/locale/en_US.js +891 -0
  1027. package/lib/locale/es_ES.js +755 -0
  1028. package/lib/locale/fr_FR.js +775 -0
  1029. package/lib/locale/index.js +165 -0
  1030. package/lib/locale/ja_JP.js +694 -0
  1031. package/lib/locale/ko_KR.js +890 -0
  1032. package/lib/locale/pt_BR.js +734 -0
  1033. package/lib/locale/ru_RU.js +570 -0
  1034. package/lib/locale/tr_TR.js +567 -0
  1035. package/lib/locale/uk_UA.js +775 -0
  1036. package/lib/locale/zh-CN.js +1028 -0
  1037. package/lib/locale/zh-TW.js +862 -0
  1038. package/package.json +94 -0
@@ -0,0 +1,73 @@
1
+ import type { Dispatch, SetStateAction } from 'react';
2
+ import { CollectionFieldOptions_deprecated } from '../collection-manager';
3
+ export interface VariablesContextType {
4
+ /**
5
+ * 解析变量所需的上下文数据
6
+ *
7
+ * ```ts
8
+ * const ctx = {
9
+ * $user: {
10
+ * id: 1,
11
+ * name: 'test',
12
+ * }
13
+ * }
14
+ * ```
15
+ */
16
+ ctxRef: React.MutableRefObject<Record<string, any>>;
17
+ /**
18
+ * 更新上下文
19
+ */
20
+ setCtx: Dispatch<SetStateAction<Record<string, any>>>;
21
+ /**
22
+ * 解析变量
23
+ * @param str 一个变量字符串,例如:`{{ $user.name }}`
24
+ * @returns 变量解析后的值
25
+ *
26
+ * ```ts
27
+ * const value = await parseVariable('{{ $user.name }}');
28
+ * console.log(value); // test
29
+ * ```
30
+ */
31
+ parseVariable: (str: string, localVariable?: VariableOption | VariableOption[], options?: {
32
+ /** 第一次请求时,需要包含的关系字段 */
33
+ appends?: string[];
34
+ }) => Promise<any>;
35
+ /**
36
+ * 注册变量
37
+ * @param variableOption 新变量的配置
38
+ * @returns void
39
+ *
40
+ * ```ts
41
+ * registerVariable({
42
+ * name: '$user',
43
+ * collectionName: 'users',
44
+ * ctx: {
45
+ * id: 1,
46
+ * name: 'test',
47
+ * },
48
+ * });
49
+ * ```
50
+ */
51
+ registerVariable: (variableOption: VariableOption) => void;
52
+ /**
53
+ * 获取变量的配置
54
+ * @param variableName 变量的名称,例如:`$user`
55
+ * @returns 变量的配置
56
+ */
57
+ getVariable: (variableName: string) => VariableOption;
58
+ getCollectionField: (variableString: string, localVariables?: VariableOption | VariableOption[]) => Promise<CollectionFieldOptions_deprecated>;
59
+ removeVariable: (variableName: string) => void;
60
+ }
61
+ export interface VariableOption {
62
+ /** 变量的表示,例如:`$user` */
63
+ name: string;
64
+ /** 变量的值 */
65
+ ctx: {
66
+ id?: number | string;
67
+ [key: string]: any;
68
+ };
69
+ /** 变量所对应的数据表的名称 */
70
+ collectionName?: string;
71
+ /** 数据表所对应的数据源 */
72
+ dataSource?: string;
73
+ }
@@ -0,0 +1 @@
1
+ export declare const filterEmptyValues: (value: any) => any;
@@ -0,0 +1 @@
1
+ export declare const getAction: (type: string) => any;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * `{{ $user.name }}` => `$user.name`
3
+ * @param variableString
4
+ * @returns
5
+ */
6
+ export declare const getPath: (variableString: string) => string;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * `{{ $user.name }}` => `$user`
3
+ * @param variableString
4
+ * @returns
5
+ */
6
+ export declare const getVariableName: (variableString: string) => string;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Check if a request has already been made for a given url to avoid duplicate requests
3
+ * @param url
4
+ * @returns
5
+ */
6
+ export declare const hasRequested: (url: string) => boolean;
7
+ export declare const getRequested: (url: string) => any;
8
+ export declare const stashRequested: (url: string, value: Promise<any>) => void;
9
+ export declare const clearRequested: (url: string) => void;
@@ -0,0 +1,2 @@
1
+ export declare const REGEX_OF_VARIABLE: RegExp;
2
+ export declare const isVariable: (str: unknown) => boolean;
@@ -0,0 +1,12 @@
1
+ import { CollectionFieldOptions_deprecated } from '../../collection-manager';
2
+ interface Deps {
3
+ /**
4
+ * 消费当前变量值的 collection field,根据其值去判断应该怎么转换变量值
5
+ */
6
+ targetCollectionField: CollectionFieldOptions_deprecated;
7
+ }
8
+ /**
9
+ * - `对一` 赋给 `对多` 时应该转化为一个数组
10
+ */
11
+ export declare const transformVariableValue: (value: any, deps: Deps) => any;
12
+ export {};
@@ -0,0 +1,6 @@
1
+ /**
2
+ * 如果 `value` 是一个数组,返回一个去重后的数组
3
+ * @param value
4
+ * @returns
5
+ */
6
+ export declare const uniq: (value: any) => any;
package/lib/953.mjs ADDED
@@ -0,0 +1,74 @@
1
+ export const ids = [
2
+ '953'
3
+ ];
4
+ export const modules = {
5
+ "./packages/client/src/schema-component/antd/markdown/md.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6
+ __webpack_require__.r(__webpack_exports__);
7
+ __webpack_require__.d(__webpack_exports__, {
8
+ default: ()=>markdown_md
9
+ });
10
+ var external_markdown_it_ = __webpack_require__("markdown-it");
11
+ var external_markdown_it_highlightjs_ = __webpack_require__("markdown-it-highlightjs");
12
+ var external_mermaid_ = __webpack_require__("mermaid");
13
+ function mermaidPlugin(md, options) {
14
+ external_mermaid_["default"].initialize({
15
+ securityLevel: 'loose',
16
+ ...options
17
+ });
18
+ function getLangName(info) {
19
+ return info.split(/\s+/g)[0];
20
+ }
21
+ const defaultFenceRenderer = md.renderer.rules.fence;
22
+ function customFenceRenderer(tokens, idx, options, env, slf) {
23
+ const token = tokens[idx];
24
+ const info = token.info.trim();
25
+ const langName = info ? getLangName(info) : '';
26
+ if (-1 === [
27
+ 'mermaid',
28
+ '{mermaid}'
29
+ ].indexOf(langName)) {
30
+ if (void 0 !== defaultFenceRenderer) return defaultFenceRenderer(tokens, idx, options, env, slf);
31
+ return '';
32
+ }
33
+ let imageHTML = '';
34
+ const imageAttrs = [];
35
+ const element = document.createElement('div');
36
+ document.body.appendChild(element);
37
+ try {
38
+ const container_id = 'mermaid-container';
39
+ external_mermaid_["default"].mermaidAPI.render(container_id, token.content, (html)=>{
40
+ const svg = document.getElementById(container_id);
41
+ if (null !== svg) imageAttrs.push([
42
+ 'style',
43
+ `max-width:${svg.style.maxWidth};max-height:${svg.style.maxHeight}`
44
+ ]);
45
+ imageHTML = html;
46
+ }, element);
47
+ } catch (e) {
48
+ return `<div class="alert alert-danger">${e}</div>`;
49
+ } finally{
50
+ element.remove();
51
+ }
52
+ imageAttrs.push([
53
+ 'src',
54
+ `data:image/svg+xml,${encodeURIComponent(imageHTML)}`
55
+ ]);
56
+ return `<img ${slf.renderAttrs({
57
+ attrs: imageAttrs
58
+ })}>`;
59
+ }
60
+ md.renderer.rules.fence = customFenceRenderer;
61
+ }
62
+ const md_md = new external_markdown_it_["default"]({
63
+ html: true,
64
+ linkify: true,
65
+ typographer: true,
66
+ breaks: true
67
+ });
68
+ md_md.use(external_markdown_it_highlightjs_["default"]);
69
+ md_md.use(mermaidPlugin);
70
+ const markdown_md = md_md;
71
+ }
72
+ };
73
+
74
+ //# sourceMappingURL=953.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"953.mjs","sources":["webpack://tachybase/./packages/client/src/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.ts","webpack://tachybase/./packages/client/src/schema-component/antd/markdown/md.ts"],"sourcesContent":["import MarkdownIt from 'markdown-it';\nimport Mermaid from 'mermaid';\n\n/**\n * from https://github.com/agoose77/markdown-it-mermaid\n */\n\n// Define interface to await readiness of import\nexport default function mermaidPlugin(md: MarkdownIt, options: any) {\n // Setup Mermaid\n Mermaid.initialize({\n securityLevel: 'loose',\n ...options,\n });\n\n function getLangName(info: string): string {\n return info.split(/\\s+/g)[0];\n }\n\n // Store reference to original renderer.\n const defaultFenceRenderer = md.renderer.rules.fence;\n\n // Render custom code types as SVGs, letting the fence parser do all the heavy lifting.\n function customFenceRenderer(tokens: any[], idx: number, options: any, env: any, slf: any) {\n const token = tokens[idx];\n const info = token.info.trim();\n const langName = info ? getLangName(info) : '';\n\n if (['mermaid', '{mermaid}'].indexOf(langName) === -1) {\n if (defaultFenceRenderer !== undefined) {\n return defaultFenceRenderer(tokens, idx, options, env, slf);\n }\n // Missing fence renderer!\n return '';\n }\n\n let imageHTML = '';\n const imageAttrs: string[][] = [];\n\n // Create element to render into\n const element = document.createElement('div');\n document.body.appendChild(element);\n\n // Render with Mermaid\n try {\n const container_id = 'mermaid-container';\n Mermaid.mermaidAPI.render(\n container_id,\n token.content,\n (html: string) => {\n // We need to forcibly extract the max-width/height attributes to set on img tag\n const svg = document.getElementById(container_id);\n if (svg !== null) {\n imageAttrs.push(['style', `max-width:${svg.style.maxWidth};max-height:${svg.style.maxHeight}`]);\n }\n // Store HTML\n imageHTML = html;\n },\n element,\n );\n } catch (e) {\n return `<div class=\"alert alert-danger\">${e}</div>`;\n } finally {\n element.remove();\n }\n\n // Store encoded image data\n imageAttrs.push(['src', `data:image/svg+xml,${encodeURIComponent(imageHTML)}`]);\n return `<img ${slf.renderAttrs({ attrs: imageAttrs })}>`;\n }\n\n md.renderer.rules.fence = customFenceRenderer;\n}\n","import MarkdownIt from 'markdown-it';\nimport markdownItHighlightjs from 'markdown-it-highlightjs';\n\nimport mermaidPlugin from './markdown-it-plugins/mermaidPlugin';\n\nconst md = new MarkdownIt({\n html: true,\n linkify: true,\n typographer: true,\n breaks: true,\n});\n\nmd.use(markdownItHighlightjs);\nmd.use(mermaidPlugin);\n\nexport default md;\n"],"names":["mermaidPlugin","md","options","Mermaid","getLangName","info","defaultFenceRenderer","customFenceRenderer","tokens","idx","env","slf","token","langName","undefined","imageHTML","imageAttrs","element","document","container_id","html","svg","e","encodeURIComponent","MarkdownIt","markdownItHighlightjs"],"mappings":";;;;;;;;;;;;QAQe,SAASA,cAAcC,EAAc,EAAEC,OAAY;YAEhEC,iBAAAA,CAAAA,UAAAA,CAAAA,UAAkB,CAAC;gBACjB,eAAe;gBACf,GAAGD,OAAO;YACZ;YAEA,SAASE,YAAYC,IAAY;gBAC/B,OAAOA,KAAK,KAAK,CAAC,OAAO,CAAC,EAAE;YAC9B;YAGA,MAAMC,uBAAuBL,GAAG,QAAQ,CAAC,KAAK,CAAC,KAAK;YAGpD,SAASM,oBAAoBC,MAAa,EAAEC,GAAW,EAAEP,OAAY,EAAEQ,GAAQ,EAAEC,GAAQ;gBACvF,MAAMC,QAAQJ,MAAM,CAACC,IAAI;gBACzB,MAAMJ,OAAOO,MAAM,IAAI,CAAC,IAAI;gBAC5B,MAAMC,WAAWR,OAAOD,YAAYC,QAAQ;gBAE5C,IAAI,AAA+C,OAA/C;oBAAC;oBAAW;iBAAY,CAAC,OAAO,CAACQ,WAAkB;oBACrD,IAAIP,AAAyBQ,KAAAA,MAAzBR,sBACF,OAAOA,qBAAqBE,QAAQC,KAAKP,SAASQ,KAAKC;oBAGzD,OAAO;gBACT;gBAEA,IAAII,YAAY;gBAChB,MAAMC,aAAyB,EAAE;gBAGjC,MAAMC,UAAUC,SAAS,aAAa,CAAC;gBACvCA,SAAS,IAAI,CAAC,WAAW,CAACD;gBAG1B,IAAI;oBACF,MAAME,eAAe;oBACrBhB,iBAAAA,CAAAA,UAAAA,CAAAA,UAAAA,CAAAA,MAAyB,CACvBgB,cACAP,MAAM,OAAO,EACb,CAACQ;wBAEC,MAAMC,MAAMH,SAAS,cAAc,CAACC;wBACpC,IAAIE,AAAQ,SAARA,KACFL,WAAW,IAAI,CAAC;4BAAC;4BAAS,CAAC,UAAU,EAAEK,IAAI,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAEA,IAAI,KAAK,CAAC,SAAS,EAAE;yBAAC;wBAGhGN,YAAYK;oBACd,GACAH;gBAEJ,EAAE,OAAOK,GAAG;oBACV,OAAO,CAAC,gCAAgC,EAAEA,EAAE,MAAM,CAAC;gBACrD,SAAU;oBACRL,QAAQ,MAAM;gBAChB;gBAGAD,WAAW,IAAI,CAAC;oBAAC;oBAAO,CAAC,mBAAmB,EAAEO,mBAAmBR,YAAY;iBAAC;gBAC9E,OAAO,CAAC,KAAK,EAAEJ,IAAI,WAAW,CAAC;oBAAE,OAAOK;gBAAW,GAAG,CAAC,CAAC;YAC1D;YAEAf,GAAG,QAAQ,CAAC,KAAK,CAAC,KAAK,GAAGM;QAC5B;QCnEA,MAAMN,QAAK,IAAIuB,qBAAAA,CAAAA,UAAUA,CAAC;YACxB,MAAM;YACN,SAAS;YACT,aAAa;YACb,QAAQ;QACV;QAEAvB,MAAG,GAAG,CAACwB,iCAAAA,CAAAA,UAAqBA;QAC5BxB,MAAG,GAAG,CAACD;QAEP,oBAAeC"}
package/lib/index.css ADDED
@@ -0,0 +1,321 @@
1
+ ::-webkit-scrollbar {
2
+ width: 8px;
3
+ height: 8px;
4
+ }
5
+
6
+ ::-webkit-scrollbar-track {
7
+ background: var(--colorBgScrollTrack);
8
+ }
9
+
10
+ ::-webkit-scrollbar-thumb {
11
+ background: var(--colorBgScrollBar);
12
+ border-radius: 4px;
13
+ }
14
+
15
+ ::-webkit-scrollbar-thumb:hover {
16
+ background: var(--colorBgScrollBarHover);
17
+ }
18
+
19
+ ::-webkit-scrollbar-thumb:active {
20
+ background: var(--colorBgScrollBarActive);
21
+ }
22
+
23
+ .rc-virtual-list-scrollbar-thumb {
24
+ background: var(--colorBgScrollBar) !important;
25
+ }
26
+
27
+ .rc-virtual-list-scrollbar-thumb:hover {
28
+ background: var(--colorBgScrollBarHover) !important;
29
+ }
30
+
31
+ .rc-virtual-list-scrollbar-thumb:active {
32
+ background: var(--colorBgScrollBarActive) !important;
33
+ }
34
+
35
+ .ant-btn.ant-btn-danger {
36
+ text-shadow: none;
37
+ box-shadow: none;
38
+ }
39
+
40
+ .ant-formily-item-label {
41
+ color: #000000d9;
42
+ font-weight: 600;
43
+ }
44
+
45
+ .ant-table-pagination.ant-pagination {
46
+ margin-bottom: 0 !important;
47
+ }
48
+
49
+ .ant-formily-item {
50
+ font-size: inherit !important;
51
+ }
52
+
53
+ .ant-formily-item-bordered-none .ant-formily-item-feedback-layout-loose {
54
+ margin-bottom: 0 !important;
55
+ }
56
+
57
+ .ant-formily-item-control-content-component .ant-tag {
58
+ white-space: pre-wrap;
59
+ }
60
+
61
+ html body {
62
+ --adm-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
63
+ }
64
+
65
+ .AIChatModal-rzRCq4 {
66
+ z-index: 1000;
67
+ background-color: #fff;
68
+ border-radius: 8px;
69
+ width: 450px;
70
+ min-height: 300px;
71
+ position: fixed;
72
+ bottom: 5%;
73
+ right: 30px;
74
+ box-shadow: 0 0 10px #00000080;
75
+ }
76
+
77
+ .showModal-I_UWD3 {
78
+ display: block;
79
+ }
80
+
81
+ .hideModal-X40Vc3 {
82
+ display: none;
83
+ }
84
+
85
+ .modalContent-ezOZkD {
86
+ border-bottom: 4px solid #0000;
87
+ padding: 0 20px 20px;
88
+ }
89
+
90
+ .modalHeader-nOGcoS {
91
+ color: #7d33ff;
92
+ border-bottom: 1px solid #e0e0e6;
93
+ justify-content: space-between;
94
+ align-items: center;
95
+ padding: 10px;
96
+ display: flex;
97
+ }
98
+
99
+ .modalHeader-nOGcoS .closeButton-sQRFHO {
100
+ color: #9b9a9a;
101
+ cursor: pointer;
102
+ z-index: 2001;
103
+ background-color: #0000;
104
+ border: none;
105
+ font-size: 40px;
106
+ transition: transform .5s ease-in-out;
107
+ }
108
+
109
+ .modalHeader-nOGcoS .closeButton-sQRFHO:hover {
110
+ transform: rotate(90deg)scale(1.2);
111
+ }
112
+
113
+ .modalHeader-nOGcoS .title-Y7yOZf {
114
+ justify-content: center;
115
+ align-items: center;
116
+ display: flex;
117
+ }
118
+
119
+ .modalHeader-nOGcoS .marsailogo-uzJ6wj {
120
+ width: 35px;
121
+ height: 35px;
122
+ margin-top: 4px;
123
+ margin-right: 4px;
124
+ }
125
+
126
+ .modalHeader-nOGcoS span {
127
+ font-size: 20px;
128
+ font-weight: bold;
129
+ }
130
+
131
+ .modalBody-znsaSD {
132
+ flex-direction: column;
133
+ align-items: center;
134
+ margin-top: 10px;
135
+ display: flex;
136
+ overflow: hidden;
137
+ }
138
+
139
+ .chatContent-pNV258 {
140
+ scrollbar-width: none;
141
+ border-radius: 5px;
142
+ width: 100%;
143
+ height: 300px;
144
+ padding: 10px;
145
+ overflow-y: auto;
146
+ }
147
+
148
+ .chatContent-pNV258 .welcomeText-rhomeV {
149
+ text-align: center;
150
+ margin: 120px 0;
151
+ font-size: 16px;
152
+ font-weight: bold;
153
+ }
154
+
155
+ .chatItem-NWq8xW {
156
+ flex-direction: column;
157
+ align-items: flex-end;
158
+ margin-bottom: 20px;
159
+ display: flex;
160
+ }
161
+
162
+ .chatItem-NWq8xW .chatInfo-JXKVGs {
163
+ align-items: center;
164
+ margin-bottom: 5px;
165
+ display: flex;
166
+ }
167
+
168
+ .chatItem-NWq8xW .chatInfo-JXKVGs .avatar-p1qeb8 {
169
+ border-radius: 50%;
170
+ width: 30px;
171
+ height: 30px;
172
+ margin-left: 10px;
173
+ }
174
+
175
+ .chatItem-NWq8xW .chatInfo-JXKVGs .avatar-p1qeb8 img {
176
+ border-radius: 50%;
177
+ width: 100%;
178
+ height: 100%;
179
+ }
180
+
181
+ .chatItem-NWq8xW .chatInfo-JXKVGs .chatName-Snh5k_ {
182
+ font-size: 14px;
183
+ font-weight: bold;
184
+ }
185
+
186
+ .chatItem-NWq8xW .chatText-LyRqZ_ {
187
+ text-align: justify;
188
+ background-color: #f0f0f0;
189
+ border-radius: 5px;
190
+ width: fit-content;
191
+ margin: 0 30px;
192
+ padding: 10px;
193
+ font-size: 14px;
194
+ line-height: 1.3;
195
+ }
196
+
197
+ .chatResponce-HQaYAb {
198
+ flex-direction: column;
199
+ align-items: flex-start;
200
+ margin: 10px 0;
201
+ display: flex;
202
+ }
203
+
204
+ .chatResponce-HQaYAb .chatInfo-JXKVGs {
205
+ align-items: center;
206
+ margin-bottom: 5px;
207
+ display: flex;
208
+ }
209
+
210
+ .chatResponce-HQaYAb .chatInfo-JXKVGs .avatar-p1qeb8 {
211
+ border-radius: 50%;
212
+ width: 30px;
213
+ height: 30px;
214
+ margin-right: 10px;
215
+ }
216
+
217
+ .chatResponce-HQaYAb .chatInfo-JXKVGs .avatar-p1qeb8 img {
218
+ border-radius: 50%;
219
+ width: 100%;
220
+ height: 100%;
221
+ }
222
+
223
+ .chatResponce-HQaYAb .chatInfo-JXKVGs .chatName-Snh5k_ {
224
+ font-size: 14px;
225
+ font-weight: bold;
226
+ }
227
+
228
+ .chatResponce-HQaYAb .chatText-LyRqZ_ {
229
+ text-align: justify;
230
+ background-color: #f0f0f0;
231
+ border-radius: 5px;
232
+ width: fit-content;
233
+ margin: 0 30px;
234
+ padding: 10px;
235
+ font-size: 14px;
236
+ line-height: 1.3;
237
+ }
238
+
239
+ .chatLoad-GYl_Mi {
240
+ align-items: center;
241
+ margin-left: 30px;
242
+ display: flex;
243
+ }
244
+
245
+ .chatLoad-GYl_Mi .chatText-LyRqZ_ {
246
+ font-size: 12px;
247
+ }
248
+
249
+ .chatLoad-GYl_Mi .load-q1byGM {
250
+ margin-left: 10px;
251
+ font-size: 12px;
252
+ }
253
+
254
+ .chatExamples-lfggyG {
255
+ justify-content: flex-start;
256
+ gap: 10px;
257
+ width: 100%;
258
+ margin-top: 10px;
259
+ margin-left: 50px;
260
+ display: flex;
261
+ }
262
+
263
+ .chatExamples-lfggyG .chatExampleItem-7D1scl {
264
+ cursor: pointer;
265
+ background-color: #0000;
266
+ border: 1px solid #e0e0e6;
267
+ border-radius: 8px;
268
+ padding: 5px 10px;
269
+ }
270
+
271
+ .chatExamples-lfggyG .chatExampleItem-7D1scl span {
272
+ font-size: 12px;
273
+ }
274
+
275
+ .chatExamples-lfggyG .chatExampleItem-7D1scl:hover {
276
+ border: 1px solid #7d33ff;
277
+ transition: all .5s;
278
+ transform: scale(1.1);
279
+ }
280
+
281
+ .chatInput-OYNsM0 {
282
+ justify-content: space-between;
283
+ align-items: center;
284
+ width: 100%;
285
+ margin-top: 10px;
286
+ padding: 0;
287
+ display: flex;
288
+ }
289
+
290
+ .chatInput-OYNsM0 .chatOtherInfo-sj2Wal {
291
+ color: #9b9a9a;
292
+ cursor: pointer;
293
+ margin-right: 5px;
294
+ font-size: 20px;
295
+ }
296
+
297
+ .chatInput-OYNsM0 .chatOtherInfo-sj2Wal:hover {
298
+ color: #7d33ff;
299
+ }
300
+
301
+ .chatInput-OYNsM0 input {
302
+ border: 1.5px solid #e0e0e6;
303
+ border-radius: 5px;
304
+ outline: none;
305
+ width: 330px;
306
+ height: 30px;
307
+ margin-right: 10px;
308
+ padding: 0 10px;
309
+ font-size: 14px;
310
+ }
311
+
312
+ .chatInput-OYNsM0 input:focus {
313
+ border: 1.5px solid #7d33ff;
314
+ }
315
+
316
+ .ant-popover-DNZLKL {
317
+ text-align: justify;
318
+ word-break: break-all;
319
+ max-width: 200px;
320
+ }
321
+