@giteeteam/apps-team-components 0.3.12-202301301530 → 0.3.14-202305051617
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/dist/cells/actors/BaseField.d.ts +1 -1
- package/dist/cells/assignee/index.d.ts +2 -2
- package/dist/cells/bind-workspace/BaseField.d.ts +1 -1
- package/dist/cells/checkbox/BaseField.d.ts +1 -1
- package/dist/cells/date/BaseField.d.ts +1 -1
- package/dist/cells/date/index.d.ts +1 -1
- package/dist/cells/date-range/BaseField.d.ts +1 -1
- package/dist/cells/date-range/index.d.ts +1 -1
- package/dist/cells/dropdown/BaseField.d.ts +1 -1
- package/dist/cells/editor/BaseField.d.ts +1 -1
- package/dist/cells/editor/plugins/ToolbarFont.d.ts +1 -1
- package/dist/cells/editor/plugins/ToolbarFontColor.d.ts +1 -1
- package/dist/cells/editor/plugins/ToolbarHistory.d.ts +1 -1
- package/dist/cells/editor/utils.d.ts +1 -1
- package/dist/cells/file/BaseField.d.ts +1 -1
- package/dist/cells/formula/BaseField.d.ts +1 -1
- package/dist/cells/long-text/BaseField.d.ts +1 -1
- package/dist/cells/number/BaseField.d.ts +1 -1
- package/dist/cells/radio/BaseField.d.ts +1 -1
- package/dist/cells/script/BaseField.d.ts +1 -1
- package/dist/cells/security-level/BaseField.d.ts +1 -1
- package/dist/cells/status/Field.d.ts +1 -1
- package/dist/cells/tag/BaseField.d.ts +1 -1
- package/dist/cells/text/BaseField.d.ts +1 -1
- package/dist/cells/text/index.d.ts +1 -1
- package/dist/cells/time/BaseField.d.ts +1 -1
- package/dist/cells/time/index.d.ts +1 -1
- package/dist/cells/time-range/BaseField.d.ts +1 -1
- package/dist/cells/time-range/index.d.ts +1 -1
- package/dist/cells/tree/BaseField.d.ts +1 -1
- package/dist/cells/user/BaseField.d.ts +2 -2
- package/dist/cells/user/index.d.ts +1 -1
- package/dist/common/FieldErrorBoundary.d.ts +2 -2
- package/dist/common/UploadFile.d.ts +1 -1
- package/dist/common/base-table/index.d.ts +3 -3
- package/dist/common/date/TimePicker.d.ts +2 -2
- package/dist/common/filters/filter-query/IqlExpression.d.ts +1 -1
- package/dist/common/form-field/FormField.d.ts +2 -2
- package/dist/common/plugin/PluginLoadComponent.d.ts +1 -1
- package/dist/common/status-selector/index.d.ts +1 -1
- package/dist/common/structure/hooks.d.ts +2 -2
- package/dist/common/structure/table-components/TableActionMenu.d.ts +3 -3
- package/dist/common/structure/table-components/useTableColumns.d.ts +1 -1
- package/dist/common/structure/table-components/useTableMenu.d.ts +4 -4
- package/dist/common/structure-table/components/DraggableRow.d.ts +1 -1
- package/dist/common/utils.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/apis/groups/index.d.ts +1 -1
- package/dist/lib/apis/roles/index.d.ts +1 -1
- package/dist/lib/apis/screen/fields.d.ts +1 -1
- package/dist/lib/apis/screen/index.d.ts +3 -3
- package/dist/lib/contexts/LibraryProvider.d.ts +1 -1
- package/dist/lib/contexts/currentUserAndRoles.d.ts +1 -1
- package/dist/lib/contexts/token.d.ts +1 -1
- package/dist/lib/contexts/users.d.ts +1 -1
- package/dist/lib/customFields/hooks.d.ts +1 -1
- package/dist/lib/dayjs.d.ts +1 -1
- package/dist/lib/error/log.d.ts +1 -1
- package/dist/lib/error/utils.d.ts +2 -2
- package/dist/lib/fetch.d.ts +4 -3
- package/dist/lib/forest.d.ts +6 -6
- package/dist/lib/global.d.ts +4 -0
- package/dist/lib/hooks/index.d.ts +2 -2
- package/dist/lib/hooks/useCustomFields.d.ts +1 -1
- package/dist/lib/hooks/useFieldTypes.d.ts +1 -1
- package/dist/lib/hooks/useFields.d.ts +1 -1
- package/dist/lib/hooks/useItemsInfinite.d.ts +3 -3
- package/dist/lib/hooks/useRemoteComponents.d.ts +3 -3
- package/dist/lib/hooks/useTenants.d.ts +1 -1
- package/dist/lib/hooks/useWorkspaces.d.ts +1 -1
- package/dist/lib/i18n.d.ts +4 -4
- package/dist/lib/kanban/hooks.d.ts +1 -1
- package/dist/lib/usePluginManifest.d.ts +1 -1
- package/dist/lib/useUser.d.ts +3 -3
- package/dist/lib/workflow.d.ts +12 -0
- package/dist/main.css.map +1 -1
- package/dist/osui/index.d.ts +1 -1
- package/package.json +1 -2
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
import { IncomingHttpHeaders } from 'http';
|
|
4
4
|
import { CustomField as CustomFieldProps, ObjectId, Screen } from '@/lib/types/models';
|
|
5
5
|
import { GetScreenParams } from '@/lib/types/screen';
|
|
6
|
-
export
|
|
6
|
+
export type GetScreenAPI = (params: GetScreenParams, options?: {
|
|
7
7
|
headers?: IncomingHttpHeaders;
|
|
8
8
|
sessionToken?: string;
|
|
9
9
|
context?: any;
|
|
10
10
|
}) => Promise<Record<string, Screen>>;
|
|
11
|
-
export
|
|
11
|
+
export type GetScreenFieldAPI = (params: GetScreenParams, options?: {
|
|
12
12
|
headers?: IncomingHttpHeaders;
|
|
13
13
|
sessionToken?: string;
|
|
14
14
|
context?: any;
|
|
15
15
|
}) => Promise<CustomFieldProps[]>;
|
|
16
|
-
export
|
|
16
|
+
export type GetScreenIdsAPI = (params: GetScreenParams, options?: Parse.Query.FindOptions) => Promise<Record<string, ObjectId>>;
|
|
17
17
|
export declare const getScreenInServerSide: GetScreenAPI;
|
|
18
18
|
export declare const getScreen: GetScreenAPI;
|
|
19
19
|
export declare const getScreenIds: GetScreenIdsAPI;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
type LibraryProviderProps = Props & {
|
|
3
3
|
getPopupContainer: (triggerNode: HTMLElement) => HTMLElement;
|
|
4
4
|
getMessagePopupContainer: (triggerNode: HTMLElement) => HTMLElement;
|
|
5
5
|
workspaceKey: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { User } from '@/lib/types/models';
|
|
3
|
-
export
|
|
3
|
+
export type usersContext = {
|
|
4
4
|
getUserById: (id: string) => [user: User, loading: boolean];
|
|
5
5
|
getUserByUsername: (username: string) => [user: User, loading: boolean];
|
|
6
6
|
getAllExcludeDeleteForbidden: () => [users: User[], loading: boolean];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="parse" />
|
|
2
2
|
import { CustomField as CustomFieldType } from '@/lib/types/models';
|
|
3
3
|
import { TableCellProps } from '@/cells/tableCellMapping';
|
|
4
|
-
|
|
4
|
+
type UseUsedScreenFields = (params: {
|
|
5
5
|
/** 工作空间 ID */
|
|
6
6
|
workspaceId?: string;
|
|
7
7
|
/** 工作空间配置方案 ID */
|
package/dist/lib/dayjs.d.ts
CHANGED
package/dist/lib/error/log.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const LOGIN_PAGE_URL = "/login";
|
|
2
2
|
export declare const REDIRECT_API = "/frame";
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
type ErrorData = any;
|
|
4
|
+
type GetErrorMessageHandler = (errorData: ErrorData, defaultMessage?: string) => string;
|
|
5
5
|
export declare const getRedirectURI: (errorPageURL: string | URL, baseAPI?: string) => string;
|
|
6
6
|
export declare const getRedirectURL: (redirectConfig: {
|
|
7
7
|
enabled: 'true' | 'false' | undefined;
|
package/dist/lib/fetch.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
2
|
-
|
|
2
|
+
type WrapperAxiosRequestConfig = AxiosRequestConfig & {
|
|
3
3
|
useJson?: boolean;
|
|
4
4
|
};
|
|
5
5
|
interface IFetchInstance extends AxiosInstance {
|
|
@@ -37,10 +37,11 @@ export declare const getUserSessionToken: () => string;
|
|
|
37
37
|
export declare const getGlobalEnv: () => Record<string, any>;
|
|
38
38
|
export declare const fetcherInfiniteList: (query: AxiosRequestConfig) => Promise<any>;
|
|
39
39
|
export declare const fetcher: (query: string) => Promise<any>;
|
|
40
|
-
export declare const
|
|
40
|
+
export declare const getVMServiceURL: () => string;
|
|
41
|
+
export declare const fetchVm: (workType: string, params: Record<string, any>) => Promise<{
|
|
41
42
|
code: number;
|
|
42
43
|
message?: string;
|
|
43
|
-
data?:
|
|
44
|
+
data?: any;
|
|
44
45
|
}>;
|
|
45
46
|
export declare const pluginFetch: any;
|
|
46
47
|
export declare const oldPluginFetch: any;
|
package/dist/lib/forest.d.ts
CHANGED
|
@@ -5,13 +5,13 @@ interface Projection {
|
|
|
5
5
|
minDepth: number;
|
|
6
6
|
parentId: string;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
type GetProjection = (items: ForestItem[], activeIndex: number, targetIndex: number, dragOffset: number, indentationWidth: number) => Projection;
|
|
9
9
|
export declare function isNil<T = any>(value: T): boolean;
|
|
10
10
|
export declare function simpleDeepClone<T = any>(value: T): T;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
type MoveFormater<T> = (array: T[]) => T[];
|
|
12
|
+
type ArrayMove<T = any> = (array: T[], from: number, to: number, childCount?: number, format?: MoveFormater<T>) => T[];
|
|
13
|
+
type ArrayRemove<T = any> = (array: T[], index: number) => T[];
|
|
14
|
+
type ArrayPushByIndex<T = any> = (array: T[], index: number, item: T) => T[];
|
|
15
15
|
/**
|
|
16
16
|
* Move an array item to a different position. Returns a new array with the item moved to the new position.
|
|
17
17
|
*/
|
|
@@ -30,7 +30,7 @@ export declare function getAncestors(items: ForestItem[], parentId: string): str
|
|
|
30
30
|
*/
|
|
31
31
|
export declare function arrayMoveItem(array: ForestItem[], from: number, to: number, projection: Projection): ForestItem[];
|
|
32
32
|
export declare function shouldRenderHandle(argColumns: any[], tableColumnLength: number): boolean;
|
|
33
|
-
|
|
33
|
+
type CalcDeptFunc = (depth: number) => number;
|
|
34
34
|
export declare const getCalcDeptFuncByItemDepth: (originalItem: ForestChangeItem, currentItem: ForestChangeItem) => CalcDeptFunc;
|
|
35
35
|
export declare const getItemDepthByForest: (itemId: string, { rows, depths }: Forest) => number;
|
|
36
36
|
export declare function getSubItemCountByDepth(items: ForestItem[], itemId: string): number;
|
package/dist/lib/global.d.ts
CHANGED
|
@@ -1109,3 +1109,7 @@ export declare enum RemoveType {
|
|
|
1109
1109
|
export declare const MAX_NAME_LENGTH = 50;
|
|
1110
1110
|
export declare const DEFAULT_WORKSPACE_ICON = "/icons/ProductIcon.svg";
|
|
1111
1111
|
export declare const DEFAULT_BOARD_ICON = "/icons/Panel1";
|
|
1112
|
+
export declare const VM_API_KEY: {
|
|
1113
|
+
FORM_VALIDATION: string;
|
|
1114
|
+
WORKFLOW_VALIDATION: string;
|
|
1115
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
type UseSwitchType = (initialValue: boolean) => [boolean, () => void, () => void];
|
|
2
|
+
type UseActiveDataReturnType<T> = [boolean, T, (record: T) => void, () => void];
|
|
3
3
|
export { default as useCurrentUser } from './useCurrentUser';
|
|
4
4
|
export { useCustomFields } from './useCustomFields';
|
|
5
5
|
export { useFieldTypes } from './useFieldTypes';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CustomField as CustomFieldProps } from '@/lib/types/models';
|
|
2
|
-
export
|
|
2
|
+
export type customFieldsType = {
|
|
3
3
|
getById: (id: string) => [customField: CustomFieldProps | any, loading: boolean];
|
|
4
4
|
getByKey: (key: string) => [customField: CustomFieldProps | any, loading: boolean];
|
|
5
5
|
getMap: () => [customFieldsMap: any, loading: boolean];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const initComponentName: (fieldName: string) => string;
|
|
3
|
-
|
|
3
|
+
type UseFieldsType = (fieldTypes?: string[]) => {
|
|
4
4
|
components: {
|
|
5
5
|
[fieldType: string]: {
|
|
6
6
|
[componentName: string]: React.FC<any> | React.ForwardRefRenderFunction<any, any>;
|
|
@@ -2,11 +2,11 @@ import { Dispatch, SetStateAction } from 'react';
|
|
|
2
2
|
import { Item } from '@/lib/models';
|
|
3
3
|
import { ForestChangeItem, ForestItem, ForestParams } from '@/lib/types/item-forest';
|
|
4
4
|
import { ObjectId } from '@/lib/types/models';
|
|
5
|
-
|
|
5
|
+
type Item = ForestItem;
|
|
6
6
|
export interface CustomArray<T> extends Array<T> {
|
|
7
7
|
__hash?: any;
|
|
8
8
|
}
|
|
9
|
-
|
|
9
|
+
type UseItemReturn = {
|
|
10
10
|
offset: number;
|
|
11
11
|
setOffset: Dispatch<SetStateAction<number>>;
|
|
12
12
|
limit: number;
|
|
@@ -22,7 +22,7 @@ declare type UseItemReturn = {
|
|
|
22
22
|
rows?: ObjectId[];
|
|
23
23
|
loadingEnd: boolean;
|
|
24
24
|
};
|
|
25
|
-
|
|
25
|
+
type UseItem = (params: ForestParams) => UseItemReturn;
|
|
26
26
|
declare class ItemCache {
|
|
27
27
|
private __array;
|
|
28
28
|
private __total;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export
|
|
2
|
+
export type UseRemoteComponents = (remoteUrls: string[]) => {
|
|
3
3
|
componentModule: {
|
|
4
4
|
[componentName: string]: React.FC<any> | React.ForwardRefRenderFunction<any, any>;
|
|
5
5
|
};
|
|
6
6
|
loading: boolean;
|
|
7
7
|
};
|
|
8
8
|
export declare const loadRemote: any;
|
|
9
|
-
|
|
9
|
+
type AppModule = any;
|
|
10
10
|
export declare const getModule: (moduleName: string) => AppModule;
|
|
11
11
|
export declare const useRemoteComponents: UseRemoteComponents;
|
|
12
|
-
|
|
12
|
+
type UseEnhanceRemoteComponents = (componentMap: Record<string, string>) => {
|
|
13
13
|
loading: boolean;
|
|
14
14
|
componentEntity: Record<string, {
|
|
15
15
|
Cell?: any;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Tenant as TenantProps } from '@/lib/types/models';
|
|
2
|
-
export
|
|
2
|
+
export type tenantsType = {
|
|
3
3
|
getById: (id: string) => [fieldType: TenantProps | any, loading: boolean];
|
|
4
4
|
getAll: () => [fieldTypes: (TenantProps | any)[], loading: boolean];
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Workspace as WorkspaceProps } from '@/lib/types/models';
|
|
2
|
-
export
|
|
2
|
+
export type workspacesTypes = {
|
|
3
3
|
getById: (id: string) => [workspace: WorkspaceProps | any, loading: boolean];
|
|
4
4
|
getByKey: (key: string) => [workspace: WorkspaceProps | any, loading: boolean];
|
|
5
5
|
getAll: () => [workspaces: (WorkspaceProps | any)[], loading: boolean];
|
package/dist/lib/i18n.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import rosetta from 'rosetta';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export
|
|
3
|
+
type LocalLng = string;
|
|
4
|
+
type LngDict = any;
|
|
5
|
+
export type i18nContext = {
|
|
6
6
|
activeLocale: LocalLng;
|
|
7
7
|
t: typeof i18n.t;
|
|
8
8
|
locale: (l: LocalLng, dict?: LngDict) => void;
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
type I18nProvider = (params: {
|
|
11
11
|
children: React.ReactNode;
|
|
12
12
|
locale: LocalLng;
|
|
13
13
|
lngDict: LngDict;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CustomField as CustomFieldType } from '@/lib/types/models';
|
|
2
|
-
|
|
2
|
+
type UseBusinessFields = (fields: CustomFieldType[]) => Record<'cardLayout' | 'swimlane', {
|
|
3
3
|
fields: CustomFieldType[];
|
|
4
4
|
labelKey: Record<'label' | 'value', string>[];
|
|
5
5
|
}>;
|
|
@@ -21,7 +21,7 @@ export interface PluginManifest {
|
|
|
21
21
|
priority?: number;
|
|
22
22
|
defaultActive?: boolean;
|
|
23
23
|
}
|
|
24
|
-
export
|
|
24
|
+
export type UsePluginManifestType = (props: {
|
|
25
25
|
module: string;
|
|
26
26
|
workspaceKey?: string | string[];
|
|
27
27
|
itemType?: string;
|
package/dist/lib/useUser.d.ts
CHANGED
|
@@ -5,10 +5,10 @@ interface Params {
|
|
|
5
5
|
redirectTo?: string;
|
|
6
6
|
redirectIfFound?: boolean;
|
|
7
7
|
}
|
|
8
|
-
export
|
|
8
|
+
export type UserValue = UserTyped & {
|
|
9
9
|
value?: ObjectId;
|
|
10
10
|
};
|
|
11
|
-
export
|
|
11
|
+
export type UserValueOption = {
|
|
12
12
|
label: string;
|
|
13
13
|
value: ObjectId;
|
|
14
14
|
username: string;
|
|
@@ -37,7 +37,7 @@ export declare const useGroups: () => [list: {
|
|
|
37
37
|
export declare const getUserCustomFieldOptionsByName: (name: string | RegExp, type?: string | string[]) => Promise<Record<'label' | 'value', string>[]>;
|
|
38
38
|
export declare const getUserCustomFieldOptionsByValues: (values: string[], type?: string | string[]) => Promise<Record<'label' | 'value', string>[]>;
|
|
39
39
|
export default useUser;
|
|
40
|
-
export
|
|
40
|
+
export type TreeItem = {
|
|
41
41
|
id: string;
|
|
42
42
|
children: TreeItem[];
|
|
43
43
|
title: string;
|
package/dist/lib/workflow.d.ts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
+
import { ObjectId } from './types/models';
|
|
1
2
|
import { ItemResultProps } from './types/item';
|
|
2
3
|
import { ResultType, TransitionProps } from './types/workflow';
|
|
4
|
+
export type userType = {
|
|
5
|
+
objectId: string;
|
|
6
|
+
username: string;
|
|
7
|
+
nickname: string;
|
|
8
|
+
email: string;
|
|
9
|
+
createdAt: string;
|
|
10
|
+
updatedAt: string;
|
|
11
|
+
};
|
|
3
12
|
export declare const StatusTypeKey: {
|
|
4
13
|
Start: string;
|
|
5
14
|
InProgress: string;
|
|
@@ -96,6 +105,7 @@ export declare const CustomFieldComponentTypes: {
|
|
|
96
105
|
Text: string;
|
|
97
106
|
File: string;
|
|
98
107
|
};
|
|
108
|
+
export declare const getScriptUser: (user: Parse.User) => userType;
|
|
99
109
|
export declare function isEmptyCondition(key: string): boolean;
|
|
100
110
|
/** 校验用户是否有状态流转操作权限 */
|
|
101
111
|
export declare function checkUserPermission(transition: TransitionProps, userId: string, roleIds: string[], groupIds: string[], values: Record<string, any>): ResultType;
|
|
@@ -108,4 +118,6 @@ export declare function checkTransitionScript(scriptText: string, params: {
|
|
|
108
118
|
itemType: string;
|
|
109
119
|
workspace: string;
|
|
110
120
|
status: string;
|
|
121
|
+
user: userType;
|
|
111
122
|
}, sessionToken: string): Promise<ResultType>;
|
|
123
|
+
export declare const useWorkflowPermission: (workspaceId: ObjectId) => [ObjectId[], ObjectId[], ObjectId[]];
|