@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.
- package/.turbo/turbo-build.log +11 -0
- package/README.md +1 -0
- package/client.d.ts +2 -0
- package/client.js +1 -0
- package/dist/client/components/PDFViewer.d.ts +11 -0
- package/dist/client/components/SignatureInput.d.ts +2 -0
- package/dist/client/components/SignaturePad.d.ts +240 -0
- package/dist/client/components/custom-components/CustomAssociatedField.d.ts +2 -0
- package/dist/client/components/custom-components/CustomComponentDispatcher.d.ts +5 -0
- package/dist/client/components/custom-components/CustomField.d.ts +2 -0
- package/dist/client/components/custom-components/ErrorBoundary.d.ts +2 -0
- package/dist/client/components/custom-components/custom-components.d.ts +21 -0
- package/dist/client/components/excel-table/ExcelFile.d.ts +2 -0
- package/dist/client/components/excel-table/Sheet.d.ts +10 -0
- package/dist/client/components/fields/AssociatedField.d.ts +7 -0
- package/dist/client/components/fields/CalcResult.d.ts +1 -0
- package/dist/client/components/fields/Expression.d.ts +3 -0
- package/dist/client/components/index.d.ts +11 -0
- package/dist/client/components/modal-full-screen/ModalFullScreen.d.ts +15 -0
- package/dist/client/components/modal-full-screen/ModalFullScreenChild.d.ts +2 -0
- package/dist/client/features/block-group/GroupBlock.d.ts +4 -0
- package/dist/client/features/block-group/GroupBlockConfigure.d.ts +19 -0
- package/dist/client/features/block-group/GroupBlockInitializer.d.ts +9 -0
- package/dist/client/features/block-group/index.d.ts +4 -0
- package/dist/client/features/custom-components/index.d.ts +5 -0
- package/dist/client/features/departments/common/DepartmentTable.schema.d.ts +50 -0
- package/dist/client/features/departments/common/DepartmentTable.view.d.ts +5 -0
- package/dist/client/features/departments/common/FilterKeys.context.d.ts +10 -0
- package/dist/client/features/departments/common/InternalDepartmentTable.d.ts +6 -0
- package/dist/client/features/departments/common/Request.povider.d.ts +2 -0
- package/dist/client/features/departments/common/UserDepartmentsFieldNotSupport.d.ts +2 -0
- package/dist/client/features/departments/common/scopes/useDepartmentFilterActionProps.d.ts +5 -0
- package/dist/client/features/departments/common/scopes/useFilterActionProps.d.ts +5 -0
- package/dist/client/features/departments/index.d.ts +5 -0
- package/dist/client/features/departments/main-tab/DepartmentIndex.d.ts +6 -0
- package/dist/client/features/departments/main-tab/DepartmentIndex.provider.d.ts +4 -0
- package/dist/client/features/departments/main-tab/DepartmentManagement.component.d.ts +2 -0
- package/dist/client/features/departments/main-tab/DepartmentManagement.schema.d.ts +10 -0
- package/dist/client/features/departments/main-tab/DepartmentManagement.view.d.ts +2 -0
- package/dist/client/features/departments/main-tab/collections/departments.collection.d.ts +128 -0
- package/dist/client/features/departments/main-tab/collections/users.collection.d.ts +189 -0
- package/dist/client/features/departments/main-tab/components/DepartmentSelect.d.ts +2 -0
- package/dist/client/features/departments/main-tab/components/InternalSuperiorDepartmentSelect.d.ts +2 -0
- package/dist/client/features/departments/main-tab/components/SuperiorDepartmentSelect.d.ts +2 -0
- package/dist/client/features/departments/main-tab/context/Department.context.d.ts +23 -0
- package/dist/client/features/departments/main-tab/context/DepartmentsExpanded.context.d.ts +17 -0
- package/dist/client/features/departments/main-tab/departments-block/AddNewDepartment.schema.d.ts +67 -0
- package/dist/client/features/departments/main-tab/departments-block/AddNewDepartment.view.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-block/DepartmentOwnersField.component.d.ts +6 -0
- package/dist/client/features/departments/main-tab/departments-block/DepartmentsBlock.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-block/DepartmentsSearch.component.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-block/DepartmentsTree.component.d.ts +9 -0
- package/dist/client/features/departments/main-tab/departments-block/Request.provider.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-block/UnknownOwerns.schema.d.ts +136 -0
- package/dist/client/features/departments/main-tab/departments-block/UnknownOwerns.view.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-block/schemas/schemaDepartmentEdit.d.ts +62 -0
- package/dist/client/features/departments/main-tab/departments-block/schemas/schemaDepartmentNewSub.d.ts +57 -0
- package/dist/client/features/departments/main-tab/departments-block/scopes/useCreateDepartment.d.ts +3 -0
- package/dist/client/features/departments/main-tab/departments-block/scopes/useUpdateDepartment.d.ts +3 -0
- package/dist/client/features/departments/main-tab/departments-users-block/AddMembers.schema.d.ts +148 -0
- package/dist/client/features/departments/main-tab/departments-users-block/AddMembers.view.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/DepartmentField.component.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/DepartmentsUsersBlock.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/DepartmentsUsersBlock.schema.d.ts +676 -0
- package/dist/client/features/departments/main-tab/departments-users-block/IsOwnerField.component.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/MemberActions.schema.d.ts +49 -0
- package/dist/client/features/departments/main-tab/departments-users-block/MemberActions.view.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/RowRemoveAction.schema.d.ts +16 -0
- package/dist/client/features/departments/main-tab/departments-users-block/RowRemoveAction.view.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/UserDepartmentsField.component.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/UserSelectDepartment.schema.d.ts +42 -0
- package/dist/client/features/departments/main-tab/departments-users-block/UserSelectDepartment.view.d.ts +2 -0
- package/dist/client/features/departments/main-tab/departments-users-block/scopes/useBulkRemoveMembersAction.d.ts +3 -0
- package/dist/client/features/departments/main-tab/departments-users-block/scopes/useDataSource.d.ts +40 -0
- package/dist/client/features/departments/main-tab/departments-users-block/scopes/useMembersDataSource.d.ts +6 -0
- package/dist/client/features/departments/main-tab/departments-users-block/scopes/usePropsAddMember.d.ts +1 -0
- package/dist/client/features/departments/main-tab/departments-users-block/scopes/useRefreshActionProps.d.ts +3 -0
- package/dist/client/features/departments/main-tab/departments-users-block/scopes/useRemoveMemberAction.d.ts +3 -0
- package/dist/client/features/departments/main-tab/departments-users-block/scopes/useShowTotal.d.ts +1 -0
- package/dist/client/features/departments/main-tab/hooks/useDeepTree.d.ts +14 -0
- package/dist/client/features/departments/main-tab/hooks/useGetDepTree.d.ts +18 -0
- package/dist/client/features/departments/main-tab/kit.d.ts +4 -0
- package/dist/client/features/departments/main-tab/providers/DepartmentsResource.provider.d.ts +4 -0
- package/dist/client/features/departments/main-tab/providers/UserResource.provider.d.ts +4 -0
- package/dist/client/features/departments/role-auth/DepartmentTitle.component.d.ts +2 -0
- package/dist/client/features/departments/role-auth/Departments.d.ts +2 -0
- package/dist/client/features/departments/role-auth/Departments.schema.d.ts +227 -0
- package/dist/client/features/departments/role-auth/kit.d.ts +4 -0
- package/dist/client/features/departments/role-auth/scopes/useAddDepartments.d.ts +3 -0
- package/dist/client/features/departments/role-auth/scopes/useBulkRemoveDepartments.d.ts +3 -0
- package/dist/client/features/departments/role-auth/scopes/useDataSource.d.ts +40 -0
- package/dist/client/features/departments/role-auth/scopes/useDisabled.d.ts +3 -0
- package/dist/client/features/departments/role-auth/scopes/useRemoveDepartment.d.ts +3 -0
- package/dist/client/features/departments/settings/DepartmentOwnersFieldSetting.d.ts +2 -0
- package/dist/client/features/departments/settings/UserDepartmentsFieldSetting.d.ts +2 -0
- package/dist/client/features/departments/settings/UserMainDepartmentFieldSetting.d.ts +2 -0
- package/dist/client/features/departments/settings/items/enableLinkItem.d.ts +2 -0
- package/dist/client/features/departments/settings/items/modeSelectItem.d.ts +2 -0
- package/dist/client/features/departments/settings/items/titleFieldItem.d.ts +2 -0
- package/dist/client/features/departments/utils/getDepartmentStr.d.ts +1 -0
- package/dist/client/features/departments/utils/getUserListByDepartment.d.ts +1 -0
- package/dist/client/features/embed/EmbedLayout.d.ts +2 -0
- package/dist/client/features/embed/EmbedPage.d.ts +2 -0
- package/dist/client/features/embed/EmbedSchemaComponent.d.ts +2 -0
- package/dist/client/features/embed/NotAuthorityResult.d.ts +2 -0
- package/dist/client/features/embed/index.d.ts +4 -0
- package/dist/client/features/embed/useEmbedToken.d.ts +1 -0
- package/dist/client/features/embed/usePageSettingsProps.d.ts +4 -0
- package/dist/client/features/field-appends/index.d.ts +4 -0
- package/dist/client/features/field-appends/show-code/Code.interface.d.ts +74 -0
- package/dist/client/features/field-appends/show-code/Code.view.d.ts +3 -0
- package/dist/client/features/field-appends/show-formula/Formula.interface.d.ts +75 -0
- package/dist/client/features/field-appends/show-formula/Formula.view.d.ts +3 -0
- package/dist/client/features/hera-version/HeraVersion.provider.d.ts +4 -0
- package/dist/client/features/hera-version/index.d.ts +4 -0
- package/dist/client/features/mode-highlight/ModeHighlight.provider.d.ts +4 -0
- package/dist/client/features/mode-highlight/index.d.ts +4 -0
- package/dist/client/features/outbound/OutboundLinkActionInitializer.d.ts +6 -0
- package/dist/client/features/outbound/OutboundPage.d.ts +2 -0
- package/dist/client/features/outbound/index.d.ts +4 -0
- package/dist/client/features/outbound/useOutboundActionProps.d.ts +3 -0
- package/dist/client/features/pdf/PDFVIewerBlockInitializer.d.ts +10 -0
- package/dist/client/features/pdf/PDFViewer.d.ts +2 -0
- package/dist/client/features/pdf/index.d.ts +4 -0
- package/dist/client/features/sheet/SheetBlockInitializer.d.ts +8 -0
- package/dist/client/features/sheet/index.d.ts +4 -0
- package/dist/client/hooks/useCustomComponent.d.ts +5 -0
- package/dist/client/hooks/useGetCustomAssociatedComponents.d.ts +4 -0
- package/dist/client/hooks/useGetCustomComponents.d.ts +4 -0
- package/dist/client/hooks/useNotifications.d.ts +2 -0
- package/dist/client/hooks/usePluginVersion.d.ts +1 -0
- package/dist/client/hooks/useTokenConfiguration.d.ts +3 -0
- package/dist/client/index.d.ts +16 -0
- package/dist/client/index.js +93 -0
- package/dist/client/interfaces/AssociatedFieldInterface.d.ts +118 -0
- package/dist/client/interfaces/CalcFieldInterface.d.ts +120 -0
- package/dist/client/interfaces/CustomAssociatedFieldInterface.d.ts +69 -0
- package/dist/client/interfaces/CustomFieldInterface.d.ts +45 -0
- package/dist/client/interfaces/ExcelFieldInterface.d.ts +38 -0
- package/dist/client/interfaces/SignaturePadFieldInterface.d.ts +38 -0
- package/dist/client/interfaces/TstzrangeFieldInterface.d.ts +41 -0
- package/dist/client/interfaces/index.d.ts +6 -0
- package/dist/client/locale.d.ts +9 -0
- package/dist/client/schema-initializer/blocks/SettingBlockInitializer.d.ts +2 -0
- package/dist/client/schema-initializer/index.d.ts +1 -0
- package/dist/client/schema-settings/SchemaSettingsDatePickerType.d.ts +2 -0
- package/dist/client/schema-settings/SchemaSettingsDatePresets.d.ts +11 -0
- package/dist/client/schema-settings/SchemaSettingsSubmitDataType.d.ts +5 -0
- package/dist/client/schema-settings/index.d.ts +4 -0
- package/dist/client/settings-manager-components/LinkManager.d.ts +2 -0
- package/dist/client/settings-manager-components/TokenConfiguration.d.ts +6 -0
- package/dist/client/settings-manager-components/index.d.ts +8 -0
- package/dist/client/utils.d.ts +2 -0
- package/dist/externalVersion.js +21 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +39 -0
- package/dist/locale/en-US.json +94 -0
- package/dist/locale/zh-CN.json +94 -0
- package/dist/node_modules/fs-extra/LICENSE +15 -0
- package/dist/node_modules/fs-extra/lib/copy/copy-sync.js +161 -0
- package/dist/node_modules/fs-extra/lib/copy/copy.js +177 -0
- package/dist/node_modules/fs-extra/lib/copy/index.js +7 -0
- package/dist/node_modules/fs-extra/lib/empty/index.js +39 -0
- package/dist/node_modules/fs-extra/lib/ensure/file.js +66 -0
- package/dist/node_modules/fs-extra/lib/ensure/index.js +23 -0
- package/dist/node_modules/fs-extra/lib/ensure/link.js +64 -0
- package/dist/node_modules/fs-extra/lib/ensure/symlink-paths.js +101 -0
- package/dist/node_modules/fs-extra/lib/ensure/symlink-type.js +34 -0
- package/dist/node_modules/fs-extra/lib/ensure/symlink.js +67 -0
- package/dist/node_modules/fs-extra/lib/fs/index.js +140 -0
- package/dist/node_modules/fs-extra/lib/index.js +1 -0
- package/dist/node_modules/fs-extra/lib/json/index.js +16 -0
- package/dist/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
- package/dist/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
- package/dist/node_modules/fs-extra/lib/json/output-json.js +12 -0
- package/dist/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
- package/dist/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
- package/dist/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
- package/dist/node_modules/fs-extra/lib/move/index.js +7 -0
- package/dist/node_modules/fs-extra/lib/move/move-sync.js +55 -0
- package/dist/node_modules/fs-extra/lib/move/move.js +59 -0
- package/dist/node_modules/fs-extra/lib/output-file/index.js +31 -0
- package/dist/node_modules/fs-extra/lib/path-exists/index.js +12 -0
- package/dist/node_modules/fs-extra/lib/remove/index.js +17 -0
- package/dist/node_modules/fs-extra/lib/util/stat.js +158 -0
- package/dist/node_modules/fs-extra/lib/util/utimes.js +36 -0
- package/dist/node_modules/fs-extra/package.json +1 -0
- package/dist/server/actions/departments.d.ts +5 -0
- package/dist/server/actions/departments.js +105 -0
- package/dist/server/actions/index.d.ts +7 -0
- package/dist/server/actions/index.js +33 -0
- package/dist/server/actions/link-manager-controller.d.ts +6 -0
- package/dist/server/actions/link-manager-controller.js +133 -0
- package/dist/server/actions/plugin-version.d.ts +6 -0
- package/dist/server/actions/plugin-version.js +91 -0
- package/dist/server/actions/robot-controller.d.ts +5 -0
- package/dist/server/actions/robot-controller.js +134 -0
- package/dist/server/actions/system-message-controller.d.ts +5 -0
- package/dist/server/actions/system-message-controller.js +106 -0
- package/dist/server/actions/token-configuration-controller.d.ts +5 -0
- package/dist/server/actions/token-configuration-controller.js +120 -0
- package/dist/server/actions/users.d.ts +4 -0
- package/dist/server/actions/users.js +142 -0
- package/dist/server/collections/departmentRoles.d.ts +2 -0
- package/dist/server/collections/departmentRoles.js +27 -0
- package/dist/server/collections/departments.d.ts +29 -0
- package/dist/server/collections/departments.js +162 -0
- package/dist/server/collections/departmentsUsers.d.ts +2 -0
- package/dist/server/collections/departmentsUsers.js +43 -0
- package/dist/server/collections/link-manage.d.ts +2 -0
- package/dist/server/collections/link-manage.js +42 -0
- package/dist/server/collections/roles.d.ts +2 -0
- package/dist/server/collections/roles.js +39 -0
- package/dist/server/collections/systemSettings.d.ts +2 -0
- package/dist/server/collections/systemSettings.js +33 -0
- package/dist/server/collections/system_message.d.ts +2 -0
- package/dist/server/collections/system_message.js +67 -0
- package/dist/server/collections/token-configuration.d.ts +2 -0
- package/dist/server/collections/token-configuration.js +54 -0
- package/dist/server/collections/users.d.ts +55 -0
- package/dist/server/collections/users.js +87 -0
- package/dist/server/features/departments.d.ts +7 -0
- package/dist/server/features/departments.js +132 -0
- package/dist/server/fields/calc.d.ts +11 -0
- package/dist/server/fields/calc.js +43 -0
- package/dist/server/fields/tstzrange.d.ts +7 -0
- package/dist/server/fields/tstzrange.js +28 -0
- package/dist/server/index.d.ts +3 -0
- package/dist/server/index.js +41 -0
- package/dist/server/middlewares/destroy-department-check.d.ts +2 -0
- package/dist/server/middlewares/destroy-department-check.js +53 -0
- package/dist/server/middlewares/index.d.ts +6 -0
- package/dist/server/middlewares/index.js +31 -0
- package/dist/server/middlewares/list-users-include-child-department.d.ts +2 -0
- package/dist/server/middlewares/list-users-include-child-department.js +77 -0
- package/dist/server/middlewares/reset-user-departments-cache.d.ts +2 -0
- package/dist/server/middlewares/reset-user-departments-cache.js +39 -0
- package/dist/server/middlewares/set-department-owners.d.ts +2 -0
- package/dist/server/middlewares/set-department-owners.js +74 -0
- package/dist/server/middlewares/set-departments-roles.d.ts +2 -0
- package/dist/server/middlewares/set-departments-roles.js +64 -0
- package/dist/server/middlewares/set-main-department.d.ts +2 -0
- package/dist/server/middlewares/set-main-department.js +105 -0
- package/dist/server/middlewares/update-department-isleaf.d.ts +2 -0
- package/dist/server/middlewares/update-department-isleaf.js +84 -0
- package/dist/server/models/department.d.ts +4 -0
- package/dist/server/models/department.js +38 -0
- package/dist/server/plugin.d.ts +6 -0
- package/dist/server/plugin.js +111 -0
- package/dist/server/services/plugin-version.d.ts +5 -0
- package/dist/server/services/plugin-version.js +89 -0
- package/dist/server/services/sql-loader.d.ts +10 -0
- package/dist/server/services/sql-loader.js +129 -0
- package/dist/server/services/system-setting-service.d.ts +7 -0
- package/dist/server/services/system-setting-service.js +87 -0
- package/dist/server/utils/curren-formula.d.ts +1 -0
- package/dist/server/utils/curren-formula.js +30 -0
- package/dist/server/utils/multiprocess.d.ts +2 -0
- package/dist/server/utils/multiprocess.js +38 -0
- package/package.json +64 -0
- package/server.d.ts +2 -0
- package/server.js +1 -0
|
@@ -0,0 +1,676 @@
|
|
|
1
|
+
export declare const getSchemaDepartmentsUsersBlock: (department: any, user: any, setShowChildren: any) => {
|
|
2
|
+
type: string;
|
|
3
|
+
properties: {
|
|
4
|
+
table: {
|
|
5
|
+
type: string;
|
|
6
|
+
'x-component': string;
|
|
7
|
+
'x-component-props': {
|
|
8
|
+
rowKey: string;
|
|
9
|
+
rowSelection: {
|
|
10
|
+
type: string;
|
|
11
|
+
};
|
|
12
|
+
useDataSource: string;
|
|
13
|
+
pagination: {
|
|
14
|
+
showTotal: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
properties: {
|
|
18
|
+
phone: {
|
|
19
|
+
type: string;
|
|
20
|
+
'x-decorator': string;
|
|
21
|
+
'x-component': string;
|
|
22
|
+
properties: {
|
|
23
|
+
phone: {
|
|
24
|
+
type: string;
|
|
25
|
+
'x-component': string;
|
|
26
|
+
'x-read-pretty': boolean;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
email: {
|
|
31
|
+
type: string;
|
|
32
|
+
'x-decorator': string;
|
|
33
|
+
'x-component': string;
|
|
34
|
+
properties: {
|
|
35
|
+
email: {
|
|
36
|
+
type: string;
|
|
37
|
+
'x-component': string;
|
|
38
|
+
'x-read-pretty': boolean;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
actions: {
|
|
43
|
+
type: string;
|
|
44
|
+
title: string;
|
|
45
|
+
'x-component': string;
|
|
46
|
+
properties: {
|
|
47
|
+
actions: {
|
|
48
|
+
type: string;
|
|
49
|
+
'x-component': string;
|
|
50
|
+
'x-component-props': {
|
|
51
|
+
split: string;
|
|
52
|
+
};
|
|
53
|
+
properties: {
|
|
54
|
+
remove: {
|
|
55
|
+
type: string;
|
|
56
|
+
'x-component': string;
|
|
57
|
+
};
|
|
58
|
+
update: {
|
|
59
|
+
type: string;
|
|
60
|
+
title: string;
|
|
61
|
+
'x-component': string;
|
|
62
|
+
'x-component-props': {
|
|
63
|
+
type: string;
|
|
64
|
+
};
|
|
65
|
+
properties: {
|
|
66
|
+
drawer: {
|
|
67
|
+
type: string;
|
|
68
|
+
'x-component': string;
|
|
69
|
+
'x-decorator': string;
|
|
70
|
+
title: string;
|
|
71
|
+
properties: {
|
|
72
|
+
departments: {
|
|
73
|
+
title: string;
|
|
74
|
+
'x-decorator': string;
|
|
75
|
+
'x-component': string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
} | {
|
|
82
|
+
remove?: undefined;
|
|
83
|
+
update: {
|
|
84
|
+
type: string;
|
|
85
|
+
title: string;
|
|
86
|
+
'x-component': string;
|
|
87
|
+
'x-component-props': {
|
|
88
|
+
type: string;
|
|
89
|
+
};
|
|
90
|
+
properties: {
|
|
91
|
+
drawer: {
|
|
92
|
+
type: string;
|
|
93
|
+
'x-component': string;
|
|
94
|
+
'x-decorator': string;
|
|
95
|
+
title: string;
|
|
96
|
+
properties: {
|
|
97
|
+
departments: {
|
|
98
|
+
title: string;
|
|
99
|
+
'x-decorator': string;
|
|
100
|
+
'x-component': string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
isOwner: {
|
|
111
|
+
type: string;
|
|
112
|
+
'x-decorator': string;
|
|
113
|
+
'x-component': string;
|
|
114
|
+
'x-component-props': {
|
|
115
|
+
style: {
|
|
116
|
+
minWidth: number;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
title: string;
|
|
120
|
+
properties: {
|
|
121
|
+
isOwner: {
|
|
122
|
+
type: string;
|
|
123
|
+
'x-component': string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
nickname: {
|
|
128
|
+
type: string;
|
|
129
|
+
'x-decorator': string;
|
|
130
|
+
'x-component': string;
|
|
131
|
+
properties: {
|
|
132
|
+
nickname: {
|
|
133
|
+
type: string;
|
|
134
|
+
'x-component': string;
|
|
135
|
+
'x-read-pretty': boolean;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
username: {
|
|
140
|
+
type: string;
|
|
141
|
+
'x-decorator': string;
|
|
142
|
+
'x-component': string;
|
|
143
|
+
properties: {
|
|
144
|
+
username: {
|
|
145
|
+
type: string;
|
|
146
|
+
'x-component': string;
|
|
147
|
+
'x-read-pretty': boolean;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
departments: {
|
|
152
|
+
type: string;
|
|
153
|
+
'x-decorator': string;
|
|
154
|
+
'x-component': string;
|
|
155
|
+
properties: {
|
|
156
|
+
departments: {
|
|
157
|
+
type: string;
|
|
158
|
+
'x-component': string;
|
|
159
|
+
'x-read-pretty': boolean;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
mainDepartment: {
|
|
164
|
+
type: string;
|
|
165
|
+
'x-decorator': string;
|
|
166
|
+
'x-component': string;
|
|
167
|
+
properties: {
|
|
168
|
+
mainDepartment: {
|
|
169
|
+
type: string;
|
|
170
|
+
'x-component': string;
|
|
171
|
+
'x-read-pretty': boolean;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
} | {
|
|
176
|
+
phone: {
|
|
177
|
+
type: string;
|
|
178
|
+
'x-decorator': string;
|
|
179
|
+
'x-component': string;
|
|
180
|
+
properties: {
|
|
181
|
+
phone: {
|
|
182
|
+
type: string;
|
|
183
|
+
'x-component': string;
|
|
184
|
+
'x-read-pretty': boolean;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
email: {
|
|
189
|
+
type: string;
|
|
190
|
+
'x-decorator': string;
|
|
191
|
+
'x-component': string;
|
|
192
|
+
properties: {
|
|
193
|
+
email: {
|
|
194
|
+
type: string;
|
|
195
|
+
'x-component': string;
|
|
196
|
+
'x-read-pretty': boolean;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
actions: {
|
|
201
|
+
type: string;
|
|
202
|
+
title: string;
|
|
203
|
+
'x-component': string;
|
|
204
|
+
properties: {
|
|
205
|
+
actions: {
|
|
206
|
+
type: string;
|
|
207
|
+
'x-component': string;
|
|
208
|
+
'x-component-props': {
|
|
209
|
+
split: string;
|
|
210
|
+
};
|
|
211
|
+
properties: {
|
|
212
|
+
remove: {
|
|
213
|
+
type: string;
|
|
214
|
+
'x-component': string;
|
|
215
|
+
};
|
|
216
|
+
update: {
|
|
217
|
+
type: string;
|
|
218
|
+
title: string;
|
|
219
|
+
'x-component': string;
|
|
220
|
+
'x-component-props': {
|
|
221
|
+
type: string;
|
|
222
|
+
};
|
|
223
|
+
properties: {
|
|
224
|
+
drawer: {
|
|
225
|
+
type: string;
|
|
226
|
+
'x-component': string;
|
|
227
|
+
'x-decorator': string;
|
|
228
|
+
title: string;
|
|
229
|
+
properties: {
|
|
230
|
+
departments: {
|
|
231
|
+
title: string;
|
|
232
|
+
'x-decorator': string;
|
|
233
|
+
'x-component': string;
|
|
234
|
+
};
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
} | {
|
|
240
|
+
remove?: undefined;
|
|
241
|
+
update: {
|
|
242
|
+
type: string;
|
|
243
|
+
title: string;
|
|
244
|
+
'x-component': string;
|
|
245
|
+
'x-component-props': {
|
|
246
|
+
type: string;
|
|
247
|
+
};
|
|
248
|
+
properties: {
|
|
249
|
+
drawer: {
|
|
250
|
+
type: string;
|
|
251
|
+
'x-component': string;
|
|
252
|
+
'x-decorator': string;
|
|
253
|
+
title: string;
|
|
254
|
+
properties: {
|
|
255
|
+
departments: {
|
|
256
|
+
title: string;
|
|
257
|
+
'x-decorator': string;
|
|
258
|
+
'x-component': string;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
isOwner?: undefined;
|
|
269
|
+
nickname: {
|
|
270
|
+
type: string;
|
|
271
|
+
'x-decorator': string;
|
|
272
|
+
'x-component': string;
|
|
273
|
+
properties: {
|
|
274
|
+
nickname: {
|
|
275
|
+
type: string;
|
|
276
|
+
'x-component': string;
|
|
277
|
+
'x-read-pretty': boolean;
|
|
278
|
+
};
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
username: {
|
|
282
|
+
type: string;
|
|
283
|
+
'x-decorator': string;
|
|
284
|
+
'x-component': string;
|
|
285
|
+
properties: {
|
|
286
|
+
username: {
|
|
287
|
+
type: string;
|
|
288
|
+
'x-component': string;
|
|
289
|
+
'x-read-pretty': boolean;
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
departments: {
|
|
294
|
+
type: string;
|
|
295
|
+
'x-decorator': string;
|
|
296
|
+
'x-component': string;
|
|
297
|
+
properties: {
|
|
298
|
+
departments: {
|
|
299
|
+
type: string;
|
|
300
|
+
'x-component': string;
|
|
301
|
+
'x-read-pretty': boolean;
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
mainDepartment: {
|
|
306
|
+
type: string;
|
|
307
|
+
'x-decorator': string;
|
|
308
|
+
'x-component': string;
|
|
309
|
+
properties: {
|
|
310
|
+
mainDepartment: {
|
|
311
|
+
type: string;
|
|
312
|
+
'x-component': string;
|
|
313
|
+
'x-read-pretty': boolean;
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
};
|
|
319
|
+
actions?: undefined;
|
|
320
|
+
} | {
|
|
321
|
+
table: {
|
|
322
|
+
type: string;
|
|
323
|
+
'x-component': string;
|
|
324
|
+
'x-component-props': {
|
|
325
|
+
rowKey: string;
|
|
326
|
+
rowSelection: {
|
|
327
|
+
type: string;
|
|
328
|
+
};
|
|
329
|
+
useDataSource: string;
|
|
330
|
+
pagination: {
|
|
331
|
+
showTotal: string;
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
properties: {
|
|
335
|
+
phone: {
|
|
336
|
+
type: string;
|
|
337
|
+
'x-decorator': string;
|
|
338
|
+
'x-component': string;
|
|
339
|
+
properties: {
|
|
340
|
+
phone: {
|
|
341
|
+
type: string;
|
|
342
|
+
'x-component': string;
|
|
343
|
+
'x-read-pretty': boolean;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
email: {
|
|
348
|
+
type: string;
|
|
349
|
+
'x-decorator': string;
|
|
350
|
+
'x-component': string;
|
|
351
|
+
properties: {
|
|
352
|
+
email: {
|
|
353
|
+
type: string;
|
|
354
|
+
'x-component': string;
|
|
355
|
+
'x-read-pretty': boolean;
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
};
|
|
359
|
+
actions: {
|
|
360
|
+
type: string;
|
|
361
|
+
title: string;
|
|
362
|
+
'x-component': string;
|
|
363
|
+
properties: {
|
|
364
|
+
actions: {
|
|
365
|
+
type: string;
|
|
366
|
+
'x-component': string;
|
|
367
|
+
'x-component-props': {
|
|
368
|
+
split: string;
|
|
369
|
+
};
|
|
370
|
+
properties: {
|
|
371
|
+
remove: {
|
|
372
|
+
type: string;
|
|
373
|
+
'x-component': string;
|
|
374
|
+
};
|
|
375
|
+
update: {
|
|
376
|
+
type: string;
|
|
377
|
+
title: string;
|
|
378
|
+
'x-component': string;
|
|
379
|
+
'x-component-props': {
|
|
380
|
+
type: string;
|
|
381
|
+
};
|
|
382
|
+
properties: {
|
|
383
|
+
drawer: {
|
|
384
|
+
type: string;
|
|
385
|
+
'x-component': string;
|
|
386
|
+
'x-decorator': string;
|
|
387
|
+
title: string;
|
|
388
|
+
properties: {
|
|
389
|
+
departments: {
|
|
390
|
+
title: string;
|
|
391
|
+
'x-decorator': string;
|
|
392
|
+
'x-component': string;
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
} | {
|
|
399
|
+
remove?: undefined;
|
|
400
|
+
update: {
|
|
401
|
+
type: string;
|
|
402
|
+
title: string;
|
|
403
|
+
'x-component': string;
|
|
404
|
+
'x-component-props': {
|
|
405
|
+
type: string;
|
|
406
|
+
};
|
|
407
|
+
properties: {
|
|
408
|
+
drawer: {
|
|
409
|
+
type: string;
|
|
410
|
+
'x-component': string;
|
|
411
|
+
'x-decorator': string;
|
|
412
|
+
title: string;
|
|
413
|
+
properties: {
|
|
414
|
+
departments: {
|
|
415
|
+
title: string;
|
|
416
|
+
'x-decorator': string;
|
|
417
|
+
'x-component': string;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
};
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
isOwner: {
|
|
428
|
+
type: string;
|
|
429
|
+
'x-decorator': string;
|
|
430
|
+
'x-component': string;
|
|
431
|
+
'x-component-props': {
|
|
432
|
+
style: {
|
|
433
|
+
minWidth: number;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
title: string;
|
|
437
|
+
properties: {
|
|
438
|
+
isOwner: {
|
|
439
|
+
type: string;
|
|
440
|
+
'x-component': string;
|
|
441
|
+
};
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
nickname: {
|
|
445
|
+
type: string;
|
|
446
|
+
'x-decorator': string;
|
|
447
|
+
'x-component': string;
|
|
448
|
+
properties: {
|
|
449
|
+
nickname: {
|
|
450
|
+
type: string;
|
|
451
|
+
'x-component': string;
|
|
452
|
+
'x-read-pretty': boolean;
|
|
453
|
+
};
|
|
454
|
+
};
|
|
455
|
+
};
|
|
456
|
+
username: {
|
|
457
|
+
type: string;
|
|
458
|
+
'x-decorator': string;
|
|
459
|
+
'x-component': string;
|
|
460
|
+
properties: {
|
|
461
|
+
username: {
|
|
462
|
+
type: string;
|
|
463
|
+
'x-component': string;
|
|
464
|
+
'x-read-pretty': boolean;
|
|
465
|
+
};
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
departments: {
|
|
469
|
+
type: string;
|
|
470
|
+
'x-decorator': string;
|
|
471
|
+
'x-component': string;
|
|
472
|
+
properties: {
|
|
473
|
+
departments: {
|
|
474
|
+
type: string;
|
|
475
|
+
'x-component': string;
|
|
476
|
+
'x-read-pretty': boolean;
|
|
477
|
+
};
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
mainDepartment: {
|
|
481
|
+
type: string;
|
|
482
|
+
'x-decorator': string;
|
|
483
|
+
'x-component': string;
|
|
484
|
+
properties: {
|
|
485
|
+
mainDepartment: {
|
|
486
|
+
type: string;
|
|
487
|
+
'x-component': string;
|
|
488
|
+
'x-read-pretty': boolean;
|
|
489
|
+
};
|
|
490
|
+
};
|
|
491
|
+
};
|
|
492
|
+
} | {
|
|
493
|
+
phone: {
|
|
494
|
+
type: string;
|
|
495
|
+
'x-decorator': string;
|
|
496
|
+
'x-component': string;
|
|
497
|
+
properties: {
|
|
498
|
+
phone: {
|
|
499
|
+
type: string;
|
|
500
|
+
'x-component': string;
|
|
501
|
+
'x-read-pretty': boolean;
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
email: {
|
|
506
|
+
type: string;
|
|
507
|
+
'x-decorator': string;
|
|
508
|
+
'x-component': string;
|
|
509
|
+
properties: {
|
|
510
|
+
email: {
|
|
511
|
+
type: string;
|
|
512
|
+
'x-component': string;
|
|
513
|
+
'x-read-pretty': boolean;
|
|
514
|
+
};
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
actions: {
|
|
518
|
+
type: string;
|
|
519
|
+
title: string;
|
|
520
|
+
'x-component': string;
|
|
521
|
+
properties: {
|
|
522
|
+
actions: {
|
|
523
|
+
type: string;
|
|
524
|
+
'x-component': string;
|
|
525
|
+
'x-component-props': {
|
|
526
|
+
split: string;
|
|
527
|
+
};
|
|
528
|
+
properties: {
|
|
529
|
+
remove: {
|
|
530
|
+
type: string;
|
|
531
|
+
'x-component': string;
|
|
532
|
+
};
|
|
533
|
+
update: {
|
|
534
|
+
type: string;
|
|
535
|
+
title: string;
|
|
536
|
+
'x-component': string;
|
|
537
|
+
'x-component-props': {
|
|
538
|
+
type: string;
|
|
539
|
+
};
|
|
540
|
+
properties: {
|
|
541
|
+
drawer: {
|
|
542
|
+
type: string;
|
|
543
|
+
'x-component': string;
|
|
544
|
+
'x-decorator': string;
|
|
545
|
+
title: string;
|
|
546
|
+
properties: {
|
|
547
|
+
departments: {
|
|
548
|
+
title: string;
|
|
549
|
+
'x-decorator': string;
|
|
550
|
+
'x-component': string;
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
} | {
|
|
557
|
+
remove?: undefined;
|
|
558
|
+
update: {
|
|
559
|
+
type: string;
|
|
560
|
+
title: string;
|
|
561
|
+
'x-component': string;
|
|
562
|
+
'x-component-props': {
|
|
563
|
+
type: string;
|
|
564
|
+
};
|
|
565
|
+
properties: {
|
|
566
|
+
drawer: {
|
|
567
|
+
type: string;
|
|
568
|
+
'x-component': string;
|
|
569
|
+
'x-decorator': string;
|
|
570
|
+
title: string;
|
|
571
|
+
properties: {
|
|
572
|
+
departments: {
|
|
573
|
+
title: string;
|
|
574
|
+
'x-decorator': string;
|
|
575
|
+
'x-component': string;
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
isOwner?: undefined;
|
|
586
|
+
nickname: {
|
|
587
|
+
type: string;
|
|
588
|
+
'x-decorator': string;
|
|
589
|
+
'x-component': string;
|
|
590
|
+
properties: {
|
|
591
|
+
nickname: {
|
|
592
|
+
type: string;
|
|
593
|
+
'x-component': string;
|
|
594
|
+
'x-read-pretty': boolean;
|
|
595
|
+
};
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
username: {
|
|
599
|
+
type: string;
|
|
600
|
+
'x-decorator': string;
|
|
601
|
+
'x-component': string;
|
|
602
|
+
properties: {
|
|
603
|
+
username: {
|
|
604
|
+
type: string;
|
|
605
|
+
'x-component': string;
|
|
606
|
+
'x-read-pretty': boolean;
|
|
607
|
+
};
|
|
608
|
+
};
|
|
609
|
+
};
|
|
610
|
+
departments: {
|
|
611
|
+
type: string;
|
|
612
|
+
'x-decorator': string;
|
|
613
|
+
'x-component': string;
|
|
614
|
+
properties: {
|
|
615
|
+
departments: {
|
|
616
|
+
type: string;
|
|
617
|
+
'x-component': string;
|
|
618
|
+
'x-read-pretty': boolean;
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
mainDepartment: {
|
|
623
|
+
type: string;
|
|
624
|
+
'x-decorator': string;
|
|
625
|
+
'x-component': string;
|
|
626
|
+
properties: {
|
|
627
|
+
mainDepartment: {
|
|
628
|
+
type: string;
|
|
629
|
+
'x-component': string;
|
|
630
|
+
'x-read-pretty': boolean;
|
|
631
|
+
};
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
};
|
|
636
|
+
actions: {
|
|
637
|
+
type: string;
|
|
638
|
+
'x-component': string;
|
|
639
|
+
'x-component-props': {
|
|
640
|
+
style: {
|
|
641
|
+
marginBottom: number;
|
|
642
|
+
};
|
|
643
|
+
};
|
|
644
|
+
properties: {
|
|
645
|
+
filter: {
|
|
646
|
+
type: string;
|
|
647
|
+
title: string;
|
|
648
|
+
'x-action': string;
|
|
649
|
+
'x-component': string;
|
|
650
|
+
'x-use-component-props': string;
|
|
651
|
+
'x-component-props': {
|
|
652
|
+
icon: string;
|
|
653
|
+
};
|
|
654
|
+
'x-align': string;
|
|
655
|
+
};
|
|
656
|
+
showChildren: {
|
|
657
|
+
type: string;
|
|
658
|
+
'x-component': string;
|
|
659
|
+
enum: {
|
|
660
|
+
label: string;
|
|
661
|
+
value: boolean;
|
|
662
|
+
}[];
|
|
663
|
+
'x-component-props': {
|
|
664
|
+
defaultValue: boolean;
|
|
665
|
+
onChange: any;
|
|
666
|
+
};
|
|
667
|
+
'x-align': string;
|
|
668
|
+
};
|
|
669
|
+
actions: {
|
|
670
|
+
type: string;
|
|
671
|
+
'x-component': string;
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
};
|
|
675
|
+
};
|
|
676
|
+
};
|