@tachybase/module-hera 1.9.8

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 (262) hide show
  1. package/.turbo/turbo-build.log +11 -0
  2. package/README.md +1 -0
  3. package/client.d.ts +2 -0
  4. package/client.js +1 -0
  5. package/dist/client/components/PDFViewer.d.ts +11 -0
  6. package/dist/client/components/SignatureInput.d.ts +2 -0
  7. package/dist/client/components/SignaturePad.d.ts +240 -0
  8. package/dist/client/components/custom-components/CustomAssociatedField.d.ts +2 -0
  9. package/dist/client/components/custom-components/CustomComponentDispatcher.d.ts +5 -0
  10. package/dist/client/components/custom-components/CustomField.d.ts +2 -0
  11. package/dist/client/components/custom-components/ErrorBoundary.d.ts +2 -0
  12. package/dist/client/components/custom-components/custom-components.d.ts +21 -0
  13. package/dist/client/components/excel-table/ExcelFile.d.ts +2 -0
  14. package/dist/client/components/excel-table/Sheet.d.ts +10 -0
  15. package/dist/client/components/fields/AssociatedField.d.ts +7 -0
  16. package/dist/client/components/fields/CalcResult.d.ts +1 -0
  17. package/dist/client/components/fields/Expression.d.ts +3 -0
  18. package/dist/client/components/index.d.ts +11 -0
  19. package/dist/client/components/modal-full-screen/ModalFullScreen.d.ts +15 -0
  20. package/dist/client/components/modal-full-screen/ModalFullScreenChild.d.ts +2 -0
  21. package/dist/client/features/block-group/GroupBlock.d.ts +4 -0
  22. package/dist/client/features/block-group/GroupBlockConfigure.d.ts +19 -0
  23. package/dist/client/features/block-group/GroupBlockInitializer.d.ts +9 -0
  24. package/dist/client/features/block-group/index.d.ts +4 -0
  25. package/dist/client/features/custom-components/index.d.ts +5 -0
  26. package/dist/client/features/departments/common/DepartmentTable.schema.d.ts +50 -0
  27. package/dist/client/features/departments/common/DepartmentTable.view.d.ts +5 -0
  28. package/dist/client/features/departments/common/FilterKeys.context.d.ts +10 -0
  29. package/dist/client/features/departments/common/InternalDepartmentTable.d.ts +6 -0
  30. package/dist/client/features/departments/common/Request.povider.d.ts +2 -0
  31. package/dist/client/features/departments/common/UserDepartmentsFieldNotSupport.d.ts +2 -0
  32. package/dist/client/features/departments/common/scopes/useDepartmentFilterActionProps.d.ts +5 -0
  33. package/dist/client/features/departments/common/scopes/useFilterActionProps.d.ts +5 -0
  34. package/dist/client/features/departments/index.d.ts +5 -0
  35. package/dist/client/features/departments/main-tab/DepartmentIndex.d.ts +6 -0
  36. package/dist/client/features/departments/main-tab/DepartmentIndex.provider.d.ts +4 -0
  37. package/dist/client/features/departments/main-tab/DepartmentManagement.component.d.ts +2 -0
  38. package/dist/client/features/departments/main-tab/DepartmentManagement.schema.d.ts +10 -0
  39. package/dist/client/features/departments/main-tab/DepartmentManagement.view.d.ts +2 -0
  40. package/dist/client/features/departments/main-tab/collections/departments.collection.d.ts +128 -0
  41. package/dist/client/features/departments/main-tab/collections/users.collection.d.ts +189 -0
  42. package/dist/client/features/departments/main-tab/components/DepartmentSelect.d.ts +2 -0
  43. package/dist/client/features/departments/main-tab/components/InternalSuperiorDepartmentSelect.d.ts +2 -0
  44. package/dist/client/features/departments/main-tab/components/SuperiorDepartmentSelect.d.ts +2 -0
  45. package/dist/client/features/departments/main-tab/context/Department.context.d.ts +23 -0
  46. package/dist/client/features/departments/main-tab/context/DepartmentsExpanded.context.d.ts +17 -0
  47. package/dist/client/features/departments/main-tab/departments-block/AddNewDepartment.schema.d.ts +67 -0
  48. package/dist/client/features/departments/main-tab/departments-block/AddNewDepartment.view.d.ts +2 -0
  49. package/dist/client/features/departments/main-tab/departments-block/DepartmentOwnersField.component.d.ts +6 -0
  50. package/dist/client/features/departments/main-tab/departments-block/DepartmentsBlock.d.ts +2 -0
  51. package/dist/client/features/departments/main-tab/departments-block/DepartmentsSearch.component.d.ts +2 -0
  52. package/dist/client/features/departments/main-tab/departments-block/DepartmentsTree.component.d.ts +9 -0
  53. package/dist/client/features/departments/main-tab/departments-block/Request.provider.d.ts +2 -0
  54. package/dist/client/features/departments/main-tab/departments-block/UnknownOwerns.schema.d.ts +136 -0
  55. package/dist/client/features/departments/main-tab/departments-block/UnknownOwerns.view.d.ts +2 -0
  56. package/dist/client/features/departments/main-tab/departments-block/schemas/schemaDepartmentEdit.d.ts +62 -0
  57. package/dist/client/features/departments/main-tab/departments-block/schemas/schemaDepartmentNewSub.d.ts +57 -0
  58. package/dist/client/features/departments/main-tab/departments-block/scopes/useCreateDepartment.d.ts +3 -0
  59. package/dist/client/features/departments/main-tab/departments-block/scopes/useUpdateDepartment.d.ts +3 -0
  60. package/dist/client/features/departments/main-tab/departments-users-block/AddMembers.schema.d.ts +148 -0
  61. package/dist/client/features/departments/main-tab/departments-users-block/AddMembers.view.d.ts +2 -0
  62. package/dist/client/features/departments/main-tab/departments-users-block/DepartmentField.component.d.ts +2 -0
  63. package/dist/client/features/departments/main-tab/departments-users-block/DepartmentsUsersBlock.d.ts +2 -0
  64. package/dist/client/features/departments/main-tab/departments-users-block/DepartmentsUsersBlock.schema.d.ts +676 -0
  65. package/dist/client/features/departments/main-tab/departments-users-block/IsOwnerField.component.d.ts +2 -0
  66. package/dist/client/features/departments/main-tab/departments-users-block/MemberActions.schema.d.ts +49 -0
  67. package/dist/client/features/departments/main-tab/departments-users-block/MemberActions.view.d.ts +2 -0
  68. package/dist/client/features/departments/main-tab/departments-users-block/RowRemoveAction.schema.d.ts +16 -0
  69. package/dist/client/features/departments/main-tab/departments-users-block/RowRemoveAction.view.d.ts +2 -0
  70. package/dist/client/features/departments/main-tab/departments-users-block/UserDepartmentsField.component.d.ts +2 -0
  71. package/dist/client/features/departments/main-tab/departments-users-block/UserSelectDepartment.schema.d.ts +42 -0
  72. package/dist/client/features/departments/main-tab/departments-users-block/UserSelectDepartment.view.d.ts +2 -0
  73. package/dist/client/features/departments/main-tab/departments-users-block/scopes/useBulkRemoveMembersAction.d.ts +3 -0
  74. package/dist/client/features/departments/main-tab/departments-users-block/scopes/useDataSource.d.ts +40 -0
  75. package/dist/client/features/departments/main-tab/departments-users-block/scopes/useMembersDataSource.d.ts +6 -0
  76. package/dist/client/features/departments/main-tab/departments-users-block/scopes/usePropsAddMember.d.ts +1 -0
  77. package/dist/client/features/departments/main-tab/departments-users-block/scopes/useRefreshActionProps.d.ts +3 -0
  78. package/dist/client/features/departments/main-tab/departments-users-block/scopes/useRemoveMemberAction.d.ts +3 -0
  79. package/dist/client/features/departments/main-tab/departments-users-block/scopes/useShowTotal.d.ts +1 -0
  80. package/dist/client/features/departments/main-tab/hooks/useDeepTree.d.ts +14 -0
  81. package/dist/client/features/departments/main-tab/hooks/useGetDepTree.d.ts +18 -0
  82. package/dist/client/features/departments/main-tab/kit.d.ts +4 -0
  83. package/dist/client/features/departments/main-tab/providers/DepartmentsResource.provider.d.ts +4 -0
  84. package/dist/client/features/departments/main-tab/providers/UserResource.provider.d.ts +4 -0
  85. package/dist/client/features/departments/role-auth/DepartmentTitle.component.d.ts +2 -0
  86. package/dist/client/features/departments/role-auth/Departments.d.ts +2 -0
  87. package/dist/client/features/departments/role-auth/Departments.schema.d.ts +227 -0
  88. package/dist/client/features/departments/role-auth/kit.d.ts +4 -0
  89. package/dist/client/features/departments/role-auth/scopes/useAddDepartments.d.ts +3 -0
  90. package/dist/client/features/departments/role-auth/scopes/useBulkRemoveDepartments.d.ts +3 -0
  91. package/dist/client/features/departments/role-auth/scopes/useDataSource.d.ts +40 -0
  92. package/dist/client/features/departments/role-auth/scopes/useDisabled.d.ts +3 -0
  93. package/dist/client/features/departments/role-auth/scopes/useRemoveDepartment.d.ts +3 -0
  94. package/dist/client/features/departments/settings/DepartmentOwnersFieldSetting.d.ts +2 -0
  95. package/dist/client/features/departments/settings/UserDepartmentsFieldSetting.d.ts +2 -0
  96. package/dist/client/features/departments/settings/UserMainDepartmentFieldSetting.d.ts +2 -0
  97. package/dist/client/features/departments/settings/items/enableLinkItem.d.ts +2 -0
  98. package/dist/client/features/departments/settings/items/modeSelectItem.d.ts +2 -0
  99. package/dist/client/features/departments/settings/items/titleFieldItem.d.ts +2 -0
  100. package/dist/client/features/departments/utils/getDepartmentStr.d.ts +1 -0
  101. package/dist/client/features/departments/utils/getUserListByDepartment.d.ts +1 -0
  102. package/dist/client/features/embed/EmbedLayout.d.ts +2 -0
  103. package/dist/client/features/embed/EmbedPage.d.ts +2 -0
  104. package/dist/client/features/embed/EmbedSchemaComponent.d.ts +2 -0
  105. package/dist/client/features/embed/NotAuthorityResult.d.ts +2 -0
  106. package/dist/client/features/embed/index.d.ts +4 -0
  107. package/dist/client/features/embed/useEmbedToken.d.ts +1 -0
  108. package/dist/client/features/embed/usePageSettingsProps.d.ts +4 -0
  109. package/dist/client/features/field-appends/index.d.ts +4 -0
  110. package/dist/client/features/field-appends/show-code/Code.interface.d.ts +74 -0
  111. package/dist/client/features/field-appends/show-code/Code.view.d.ts +3 -0
  112. package/dist/client/features/field-appends/show-formula/Formula.interface.d.ts +75 -0
  113. package/dist/client/features/field-appends/show-formula/Formula.view.d.ts +3 -0
  114. package/dist/client/features/hera-version/HeraVersion.provider.d.ts +4 -0
  115. package/dist/client/features/hera-version/index.d.ts +4 -0
  116. package/dist/client/features/mode-highlight/ModeHighlight.provider.d.ts +4 -0
  117. package/dist/client/features/mode-highlight/index.d.ts +4 -0
  118. package/dist/client/features/outbound/OutboundLinkActionInitializer.d.ts +6 -0
  119. package/dist/client/features/outbound/OutboundPage.d.ts +2 -0
  120. package/dist/client/features/outbound/index.d.ts +4 -0
  121. package/dist/client/features/outbound/useOutboundActionProps.d.ts +3 -0
  122. package/dist/client/features/pdf/PDFVIewerBlockInitializer.d.ts +10 -0
  123. package/dist/client/features/pdf/PDFViewer.d.ts +2 -0
  124. package/dist/client/features/pdf/index.d.ts +4 -0
  125. package/dist/client/features/sheet/SheetBlockInitializer.d.ts +8 -0
  126. package/dist/client/features/sheet/index.d.ts +4 -0
  127. package/dist/client/hooks/useCustomComponent.d.ts +5 -0
  128. package/dist/client/hooks/useGetCustomAssociatedComponents.d.ts +4 -0
  129. package/dist/client/hooks/useGetCustomComponents.d.ts +4 -0
  130. package/dist/client/hooks/useNotifications.d.ts +2 -0
  131. package/dist/client/hooks/usePluginVersion.d.ts +1 -0
  132. package/dist/client/hooks/useTokenConfiguration.d.ts +3 -0
  133. package/dist/client/index.d.ts +16 -0
  134. package/dist/client/index.js +93 -0
  135. package/dist/client/interfaces/AssociatedFieldInterface.d.ts +118 -0
  136. package/dist/client/interfaces/CalcFieldInterface.d.ts +120 -0
  137. package/dist/client/interfaces/CustomAssociatedFieldInterface.d.ts +69 -0
  138. package/dist/client/interfaces/CustomFieldInterface.d.ts +45 -0
  139. package/dist/client/interfaces/ExcelFieldInterface.d.ts +38 -0
  140. package/dist/client/interfaces/SignaturePadFieldInterface.d.ts +38 -0
  141. package/dist/client/interfaces/TstzrangeFieldInterface.d.ts +41 -0
  142. package/dist/client/interfaces/index.d.ts +6 -0
  143. package/dist/client/locale.d.ts +9 -0
  144. package/dist/client/schema-initializer/blocks/SettingBlockInitializer.d.ts +2 -0
  145. package/dist/client/schema-initializer/index.d.ts +1 -0
  146. package/dist/client/schema-settings/SchemaSettingsDatePickerType.d.ts +2 -0
  147. package/dist/client/schema-settings/SchemaSettingsDatePresets.d.ts +11 -0
  148. package/dist/client/schema-settings/SchemaSettingsSubmitDataType.d.ts +5 -0
  149. package/dist/client/schema-settings/index.d.ts +4 -0
  150. package/dist/client/settings-manager-components/LinkManager.d.ts +2 -0
  151. package/dist/client/settings-manager-components/TokenConfiguration.d.ts +6 -0
  152. package/dist/client/settings-manager-components/index.d.ts +8 -0
  153. package/dist/client/utils.d.ts +2 -0
  154. package/dist/externalVersion.js +21 -0
  155. package/dist/index.d.ts +2 -0
  156. package/dist/index.js +39 -0
  157. package/dist/locale/en-US.json +94 -0
  158. package/dist/locale/zh-CN.json +94 -0
  159. package/dist/node_modules/fs-extra/LICENSE +15 -0
  160. package/dist/node_modules/fs-extra/lib/copy/copy-sync.js +161 -0
  161. package/dist/node_modules/fs-extra/lib/copy/copy.js +177 -0
  162. package/dist/node_modules/fs-extra/lib/copy/index.js +7 -0
  163. package/dist/node_modules/fs-extra/lib/empty/index.js +39 -0
  164. package/dist/node_modules/fs-extra/lib/ensure/file.js +66 -0
  165. package/dist/node_modules/fs-extra/lib/ensure/index.js +23 -0
  166. package/dist/node_modules/fs-extra/lib/ensure/link.js +64 -0
  167. package/dist/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
  168. package/dist/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
  169. package/dist/node_modules/fs-extra/lib/ensure/symlink.js +67 -0
  170. package/dist/node_modules/fs-extra/lib/fs/index.js +140 -0
  171. package/dist/node_modules/fs-extra/lib/index.js +1 -0
  172. package/dist/node_modules/fs-extra/lib/json/index.js +16 -0
  173. package/dist/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
  174. package/dist/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
  175. package/dist/node_modules/fs-extra/lib/json/output-json.js +12 -0
  176. package/dist/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
  177. package/dist/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
  178. package/dist/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
  179. package/dist/node_modules/fs-extra/lib/move/index.js +7 -0
  180. package/dist/node_modules/fs-extra/lib/move/move-sync.js +55 -0
  181. package/dist/node_modules/fs-extra/lib/move/move.js +59 -0
  182. package/dist/node_modules/fs-extra/lib/output-file/index.js +31 -0
  183. package/dist/node_modules/fs-extra/lib/path-exists/index.js +12 -0
  184. package/dist/node_modules/fs-extra/lib/remove/index.js +17 -0
  185. package/dist/node_modules/fs-extra/lib/util/stat.js +158 -0
  186. package/dist/node_modules/fs-extra/lib/util/utimes.js +36 -0
  187. package/dist/node_modules/fs-extra/package.json +1 -0
  188. package/dist/server/actions/departments.d.ts +5 -0
  189. package/dist/server/actions/departments.js +105 -0
  190. package/dist/server/actions/index.d.ts +7 -0
  191. package/dist/server/actions/index.js +33 -0
  192. package/dist/server/actions/link-manager-controller.d.ts +6 -0
  193. package/dist/server/actions/link-manager-controller.js +133 -0
  194. package/dist/server/actions/plugin-version.d.ts +6 -0
  195. package/dist/server/actions/plugin-version.js +91 -0
  196. package/dist/server/actions/robot-controller.d.ts +5 -0
  197. package/dist/server/actions/robot-controller.js +134 -0
  198. package/dist/server/actions/system-message-controller.d.ts +5 -0
  199. package/dist/server/actions/system-message-controller.js +106 -0
  200. package/dist/server/actions/token-configuration-controller.d.ts +5 -0
  201. package/dist/server/actions/token-configuration-controller.js +120 -0
  202. package/dist/server/actions/users.d.ts +4 -0
  203. package/dist/server/actions/users.js +142 -0
  204. package/dist/server/collections/departmentRoles.d.ts +2 -0
  205. package/dist/server/collections/departmentRoles.js +27 -0
  206. package/dist/server/collections/departments.d.ts +29 -0
  207. package/dist/server/collections/departments.js +162 -0
  208. package/dist/server/collections/departmentsUsers.d.ts +2 -0
  209. package/dist/server/collections/departmentsUsers.js +43 -0
  210. package/dist/server/collections/link-manage.d.ts +2 -0
  211. package/dist/server/collections/link-manage.js +42 -0
  212. package/dist/server/collections/roles.d.ts +2 -0
  213. package/dist/server/collections/roles.js +39 -0
  214. package/dist/server/collections/systemSettings.d.ts +2 -0
  215. package/dist/server/collections/systemSettings.js +33 -0
  216. package/dist/server/collections/system_message.d.ts +2 -0
  217. package/dist/server/collections/system_message.js +67 -0
  218. package/dist/server/collections/token-configuration.d.ts +2 -0
  219. package/dist/server/collections/token-configuration.js +54 -0
  220. package/dist/server/collections/users.d.ts +55 -0
  221. package/dist/server/collections/users.js +87 -0
  222. package/dist/server/features/departments.d.ts +7 -0
  223. package/dist/server/features/departments.js +132 -0
  224. package/dist/server/fields/calc.d.ts +11 -0
  225. package/dist/server/fields/calc.js +43 -0
  226. package/dist/server/fields/tstzrange.d.ts +7 -0
  227. package/dist/server/fields/tstzrange.js +28 -0
  228. package/dist/server/index.d.ts +3 -0
  229. package/dist/server/index.js +41 -0
  230. package/dist/server/middlewares/destroy-department-check.d.ts +2 -0
  231. package/dist/server/middlewares/destroy-department-check.js +53 -0
  232. package/dist/server/middlewares/index.d.ts +6 -0
  233. package/dist/server/middlewares/index.js +31 -0
  234. package/dist/server/middlewares/list-users-include-child-department.d.ts +2 -0
  235. package/dist/server/middlewares/list-users-include-child-department.js +77 -0
  236. package/dist/server/middlewares/reset-user-departments-cache.d.ts +2 -0
  237. package/dist/server/middlewares/reset-user-departments-cache.js +39 -0
  238. package/dist/server/middlewares/set-department-owners.d.ts +2 -0
  239. package/dist/server/middlewares/set-department-owners.js +74 -0
  240. package/dist/server/middlewares/set-departments-roles.d.ts +2 -0
  241. package/dist/server/middlewares/set-departments-roles.js +64 -0
  242. package/dist/server/middlewares/set-main-department.d.ts +2 -0
  243. package/dist/server/middlewares/set-main-department.js +105 -0
  244. package/dist/server/middlewares/update-department-isleaf.d.ts +2 -0
  245. package/dist/server/middlewares/update-department-isleaf.js +84 -0
  246. package/dist/server/models/department.d.ts +4 -0
  247. package/dist/server/models/department.js +38 -0
  248. package/dist/server/plugin.d.ts +6 -0
  249. package/dist/server/plugin.js +111 -0
  250. package/dist/server/services/plugin-version.d.ts +5 -0
  251. package/dist/server/services/plugin-version.js +89 -0
  252. package/dist/server/services/sql-loader.d.ts +10 -0
  253. package/dist/server/services/sql-loader.js +129 -0
  254. package/dist/server/services/system-setting-service.d.ts +7 -0
  255. package/dist/server/services/system-setting-service.js +87 -0
  256. package/dist/server/utils/curren-formula.d.ts +1 -0
  257. package/dist/server/utils/curren-formula.js +30 -0
  258. package/dist/server/utils/multiprocess.d.ts +2 -0
  259. package/dist/server/utils/multiprocess.js +38 -0
  260. package/package.json +64 -0
  261. package/server.d.ts +2 -0
  262. package/server.js +1 -0
@@ -0,0 +1,74 @@
1
+ import { CollectionFieldInterface } from '@tachybase/client';
2
+ export interface CodeFieldProps {
3
+ jsCode: string;
4
+ prefix: string;
5
+ suffix: string;
6
+ decimal: string;
7
+ }
8
+ export declare class ShowFieldCodeInterface extends CollectionFieldInterface {
9
+ name: string;
10
+ type: string;
11
+ group: string;
12
+ title: string;
13
+ description: string;
14
+ sortable: boolean;
15
+ default: {
16
+ type: string;
17
+ uiSchema: {
18
+ type: string;
19
+ 'x-component': string;
20
+ 'x-component-props': CodeFieldProps;
21
+ 'x-read-pretty': boolean;
22
+ };
23
+ };
24
+ properties: {
25
+ 'uiSchema.x-component-props.prefix': {
26
+ type: string;
27
+ title: string;
28
+ 'x-decorator': string;
29
+ 'x-component': string;
30
+ };
31
+ 'uiSchema.x-component-props.suffix': {
32
+ type: string;
33
+ title: string;
34
+ 'x-decorator': string;
35
+ 'x-component': string;
36
+ };
37
+ 'uiSchema.x-component-props.decimal': {
38
+ type: string;
39
+ title: string;
40
+ 'x-component': string;
41
+ 'x-decorator': string;
42
+ default: string;
43
+ enum: {
44
+ value: string;
45
+ label: string;
46
+ }[];
47
+ };
48
+ 'uiSchema.x-component-props.jsCode': {
49
+ type: string;
50
+ title: string;
51
+ 'x-decorator': string;
52
+ 'x-component': string;
53
+ default: string;
54
+ required: boolean;
55
+ };
56
+ 'uiSchema.title': {
57
+ type: string;
58
+ title: string;
59
+ required: boolean;
60
+ "x-decorator": string;
61
+ "x-component": string;
62
+ };
63
+ name: {
64
+ type: string;
65
+ title: string;
66
+ required: boolean;
67
+ "x-disabled": string;
68
+ "x-decorator": string;
69
+ "x-component": string;
70
+ "x-validator": string;
71
+ description: string;
72
+ };
73
+ };
74
+ }
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { CodeFieldProps } from './Code.interface';
3
+ export declare const ViewCode: (props: CodeFieldProps) => React.JSX.Element;
@@ -0,0 +1,75 @@
1
+ import { CollectionFieldInterface } from '@tachybase/client';
2
+ export interface FormulaProps {
3
+ formulaString: string;
4
+ prefix: string;
5
+ suffix: string;
6
+ decimal: string;
7
+ }
8
+ export declare class ShowFieldFormulaInterface extends CollectionFieldInterface {
9
+ name: string;
10
+ type: string;
11
+ group: string;
12
+ title: string;
13
+ description: string;
14
+ sortable: boolean;
15
+ default: {
16
+ type: string;
17
+ uiSchema: {
18
+ type: string;
19
+ 'x-component': string;
20
+ 'x-component-props': FormulaProps;
21
+ 'x-read-pretty': boolean;
22
+ };
23
+ };
24
+ properties: {
25
+ 'uiSchema.x-component-props.prefix': {
26
+ type: string;
27
+ title: string;
28
+ 'x-decorator': string;
29
+ 'x-component': string;
30
+ };
31
+ 'uiSchema.x-component-props.suffix': {
32
+ type: string;
33
+ title: string;
34
+ 'x-decorator': string;
35
+ 'x-component': string;
36
+ };
37
+ 'uiSchema.x-component-props.decimal': {
38
+ type: string;
39
+ title: string;
40
+ 'x-component': string;
41
+ 'x-decorator': string;
42
+ required: boolean;
43
+ default: string;
44
+ enum: {
45
+ value: string;
46
+ label: string;
47
+ }[];
48
+ };
49
+ 'uiSchema.x-component-props.formulaString': {
50
+ type: string;
51
+ title: string;
52
+ 'x-decorator': string;
53
+ 'x-component': string;
54
+ default: string;
55
+ required: boolean;
56
+ };
57
+ 'uiSchema.title': {
58
+ type: string;
59
+ title: string;
60
+ required: boolean;
61
+ "x-decorator": string;
62
+ "x-component": string;
63
+ };
64
+ name: {
65
+ type: string;
66
+ title: string;
67
+ required: boolean;
68
+ "x-disabled": string;
69
+ "x-decorator": string;
70
+ "x-component": string;
71
+ "x-validator": string;
72
+ description: string;
73
+ };
74
+ };
75
+ }
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { FormulaProps } from './Formula.interface';
3
+ export declare const ViewFormula: (props: FormulaProps) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const HeraVersionProvider: ({ children }: {
3
+ children: any;
4
+ }) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginHeraVersion extends Plugin {
3
+ load(): Promise<void>;
4
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const ModeHighlightProvider: ({ children }: {
3
+ children: any;
4
+ }) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginModeHighlight extends Plugin {
3
+ load(): Promise<void>;
4
+ }
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const OutboundLinkActionInitializer: {
3
+ (props: any): React.JSX.Element;
4
+ displayName: string;
5
+ };
6
+ export declare const OutboundButton: React.FC;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const OutboundPage: () => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginOutbound extends Plugin {
3
+ load(): Promise<void>;
4
+ }
@@ -0,0 +1,3 @@
1
+ export declare const useOutboundActionProps: () => {
2
+ onClick(): Promise<void>;
3
+ };
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { SchemaInitializer } from '@tachybase/client';
3
+ export declare const usePDFViewerRef: () => any;
4
+ export declare const PDFViewerProvider: (props: any) => React.JSX.Element;
5
+ export declare const usePDFViewerPrintActionProps: () => {
6
+ onClick: () => Promise<void>;
7
+ };
8
+ export declare const PDFViewerPrintActionInitializer: (props: any) => React.JSX.Element;
9
+ export declare const pdfViewActionInitializer: SchemaInitializer<import("antd").ButtonProps, {}>;
10
+ export declare const PDFViewerBlockInitializer: () => React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const InternalPDFViewer: (props: any) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginPDF extends Plugin {
3
+ load(): Promise<void>;
4
+ }
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { SchemaSettings } from '@tachybase/client';
3
+ export declare const SheetBlockContext: React.Context<any>;
4
+ export declare const SheetBlock: () => React.JSX.Element;
5
+ export declare const SheetBlockProvider: (props: any) => React.JSX.Element;
6
+ export declare const SheetBlockInitializer: () => React.JSX.Element;
7
+ export declare const sheetBlockSettings: SchemaSettings<{}>;
8
+ export declare const SheetBlockToolbar: (props: any) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginSheet extends Plugin {
3
+ load(): Promise<void>;
4
+ }
@@ -0,0 +1,5 @@
1
+ import { CustomComponentType } from '..';
2
+ export declare const useCustomComponent: (type: CustomComponentType) => {
3
+ label: string;
4
+ value: string;
5
+ }[];
@@ -0,0 +1,4 @@
1
+ export declare const useGetCustomAssociatedComponents: () => {
2
+ label: string;
3
+ value: string;
4
+ }[];
@@ -0,0 +1,4 @@
1
+ export declare const useGetCustomComponents: () => {
2
+ label: string;
3
+ value: string;
4
+ }[];
@@ -0,0 +1,2 @@
1
+ export declare const useLinkKey: () => any;
2
+ export declare const useInitializationLinkKey: () => void;
@@ -0,0 +1 @@
1
+ export declare const usePluginVersion: () => string;
@@ -0,0 +1,3 @@
1
+ export declare const TokenConfigurationResourceKey = "token-configuration";
2
+ export declare const getSSKey: (type: any) => string;
3
+ export declare const useMapConfiguration: (type: string) => any;
@@ -0,0 +1,16 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ import { Locale } from './locale';
3
+ export { usePDFViewerRef } from './features/pdf/PDFVIewerBlockInitializer';
4
+ export * from './components/custom-components/custom-components';
5
+ export declare class PluginCoreClient extends Plugin {
6
+ locale: Locale;
7
+ afterAdd(): Promise<void>;
8
+ registerSettings(): Promise<void>;
9
+ registerScopesAndComponents(): Promise<void>;
10
+ registerRouters(): Promise<void>;
11
+ registerSchemaInitializer(): Promise<void>;
12
+ registerInterfaces(): Promise<void>;
13
+ afterLoad(): Promise<void>;
14
+ load(): Promise<void>;
15
+ }
16
+ export default PluginCoreClient;