@pisell/materials 2.2.106 → 2.2.107
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/package.json +1 -1
- package/es/components/appVersionControl/index.d.ts +0 -4
- package/es/components/cardPro/index.d.ts +0 -3
- package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +0 -56
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -38
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +0 -98
- package/es/components/dataSourceComponents/dataSourceTable/type.d.ts +0 -79
- package/es/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +0 -10
- package/es/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +0 -10
- package/es/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +0 -24
- package/es/components/dataSourceComponents/fields/Upload/BaseUpload.d.ts +0 -5
- package/es/components/dataSourceComponents/fields/Upload/type.d.ts +0 -37
- package/es/components/drag-sort-tree/index.d.ts +0 -4
- package/es/components/login-and-register/index.d.ts +0 -82
- package/es/components/pisell-config-provider/index.d.ts +0 -13
- package/es/components/pisellEmpty/index.d.ts +0 -19
- package/es/components/pisellToast/squareToast/renderImperatively.d.ts +0 -29
- package/es/components/pisellWalletPassCard/index.d.ts +0 -136
- package/es/components/productCard/components/Header/DeleteButton/index.d.ts +0 -3
- package/es/components/productCard/components/Time/components/SelectHolder/index.d.ts +0 -3
- package/es/components/productCard/components/Time/components/SelectResource/index.d.ts +0 -18
- package/es/components/productCard/components/Time/index.d.ts +0 -3
- package/es/components/table/Actions/component/ExportImport/index.d.ts +0 -7
- package/es/components/table/Gallery/components/GalleryItem/index.d.ts +0 -14
- package/es/components/table/Gallery/index.d.ts +0 -5
- package/es/components/table/Table/index.d.ts +0 -4
- package/es/components/table/Table/utils.d.ts +0 -161
- package/es/components/table/hooks/useTableSetting.d.ts +0 -22
- package/es/components/table/hooks/useTransDataSource.d.ts +0 -11
- package/es/components/table/types.d.ts +0 -251
- package/es/components/translation/index.d.ts +0 -14
- package/es/components/versionModal/index.d.ts +0 -23
- package/es/index.d.ts +0 -141
- package/es/locales/en-US.d.ts +0 -286
- package/es/locales/zh-CN.d.ts +0 -281
- package/es/locales/zh-TW.d.ts +0 -281
- package/lib/components/appVersionControl/index.d.ts +0 -4
- package/lib/components/cardPro/index.d.ts +0 -3
- package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +0 -56
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +0 -38
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +0 -98
- package/lib/components/dataSourceComponents/dataSourceTable/type.d.ts +0 -79
- package/lib/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +0 -10
- package/lib/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +0 -10
- package/lib/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +0 -24
- package/lib/components/dataSourceComponents/fields/Upload/BaseUpload.d.ts +0 -5
- package/lib/components/dataSourceComponents/fields/Upload/type.d.ts +0 -37
- package/lib/components/drag-sort-tree/index.d.ts +0 -4
- package/lib/components/login-and-register/index.d.ts +0 -82
- package/lib/components/pisell-config-provider/index.d.ts +0 -13
- package/lib/components/pisellEmpty/index.d.ts +0 -19
- package/lib/components/pisellToast/squareToast/renderImperatively.d.ts +0 -29
- package/lib/components/pisellWalletPassCard/index.d.ts +0 -136
- package/lib/components/productCard/components/Header/DeleteButton/index.d.ts +0 -3
- package/lib/components/productCard/components/Time/components/SelectHolder/index.d.ts +0 -3
- package/lib/components/productCard/components/Time/components/SelectResource/index.d.ts +0 -18
- package/lib/components/productCard/components/Time/index.d.ts +0 -3
- package/lib/components/table/Actions/component/ExportImport/index.d.ts +0 -7
- package/lib/components/table/Gallery/components/GalleryItem/index.d.ts +0 -14
- package/lib/components/table/Gallery/index.d.ts +0 -5
- package/lib/components/table/Table/index.d.ts +0 -4
- package/lib/components/table/Table/utils.d.ts +0 -161
- package/lib/components/table/hooks/useTableSetting.d.ts +0 -22
- package/lib/components/table/hooks/useTransDataSource.d.ts +0 -11
- package/lib/components/table/types.d.ts +0 -251
- package/lib/components/translation/index.d.ts +0 -14
- package/lib/components/versionModal/index.d.ts +0 -23
- package/lib/index.d.ts +0 -141
- package/lib/locales/en-US.d.ts +0 -286
- package/lib/locales/zh-CN.d.ts +0 -281
- package/lib/locales/zh-TW.d.ts +0 -281
package/package.json
CHANGED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { FormInstance } from 'antd';
|
|
3
|
-
import { ModeType } from './type';
|
|
4
|
-
import './style.less';
|
|
5
|
-
export interface WithModeProps {
|
|
6
|
-
renderMode?: ModeType;
|
|
7
|
-
value?: any;
|
|
8
|
-
onChange?: (value: any) => void;
|
|
9
|
-
[key: string]: any;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* @title: 增加renderMode属性
|
|
13
|
-
* @description: 基于renderMode属性控制渲染模式
|
|
14
|
-
* @return: *
|
|
15
|
-
* @Author: shengjie.zuo
|
|
16
|
-
* @Date: 2024-11-23 17:13:18
|
|
17
|
-
*/
|
|
18
|
-
export declare const withMode: <P extends object>(FieldComponent: React.ComponentType<P>, ReadPrettyComponent?: React.ComponentType<P & {
|
|
19
|
-
renderMode: ModeType;
|
|
20
|
-
}> | undefined, transformProps?: ((props: P, renderMode: ModeType) => P) | undefined) => React.FC<P & WithModeProps>;
|
|
21
|
-
export interface WithFormItemProps {
|
|
22
|
-
name: string;
|
|
23
|
-
label?: string;
|
|
24
|
-
mode?: ModeType;
|
|
25
|
-
[key: string]: any;
|
|
26
|
-
}
|
|
27
|
-
export declare const formItemNameReplace: (name: string) => string;
|
|
28
|
-
export declare const formItemNameReverse: (name: string) => string;
|
|
29
|
-
export declare const isValidDomain: (value: string) => boolean;
|
|
30
|
-
/**
|
|
31
|
-
* @title: 追加formItem层
|
|
32
|
-
* @description:
|
|
33
|
-
* @return: *
|
|
34
|
-
* @Author: shengjie.zuo
|
|
35
|
-
* @Date: 2024-11-23 17:14:25
|
|
36
|
-
*/
|
|
37
|
-
export declare const withFormItem: <P extends object>(WrappedComponent: React.ComponentType<P>, overlayProps?: {
|
|
38
|
-
otherFormItemProps?: Record<string, any> | ((props: Record<string, any>, others?: Record<string, any>) => Record<string, any>) | undefined;
|
|
39
|
-
innerProps?: Record<string, any> | undefined;
|
|
40
|
-
} | undefined) => React.FC<P & WithFormItemProps>;
|
|
41
|
-
export declare const withDataSource: <P extends unknown>(WrappedComponent: React.ComponentType<P>) => (props: P & {
|
|
42
|
-
dataSource?: any;
|
|
43
|
-
}) => JSX.Element;
|
|
44
|
-
export declare const withOptions: <P extends unknown>(WrappedComponent: React.ComponentType<P>) => (props: P & {
|
|
45
|
-
options?: any;
|
|
46
|
-
optionSourceType?: "custom" | "default" | "api" | undefined;
|
|
47
|
-
labelField: string;
|
|
48
|
-
valueField: string;
|
|
49
|
-
extraParams?: Record<string, any> | undefined;
|
|
50
|
-
}) => JSX.Element;
|
|
51
|
-
export declare const getNestedValue: (obj: Record<string, any>, path: string) => Record<string, any>;
|
|
52
|
-
export declare const renderValueWithMap: (value: any, valueMap?: Record<string, string>, renderMode?: ModeType) => JSX.Element | null;
|
|
53
|
-
export declare function toArr(str: string | number | (string | number)[]): (string | number)[];
|
|
54
|
-
export declare const filterSystemFields: (params: Record<string, any>) => Record<string, any>;
|
|
55
|
-
export declare const transformFormObjToArrayWithUntouched: (obj: Record<string, any>) => any[];
|
|
56
|
-
export declare const setFormFieldsUntouched: (form: FormInstance) => void;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { Drawer } from 'antd';
|
|
2
|
-
import { OperationItem } from '../type';
|
|
3
|
-
declare const useDrawerState: (operationContent?: {
|
|
4
|
-
[key: string]: import("react").ReactNode;
|
|
5
|
-
} | undefined) => {
|
|
6
|
-
drawerVisible: boolean;
|
|
7
|
-
setDrawerVisible: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
8
|
-
openDrawer: (item: OperationItem) => void;
|
|
9
|
-
closeDrawer: () => void;
|
|
10
|
-
drawerContent: import("react").ReactNode;
|
|
11
|
-
Container: {
|
|
12
|
-
(props: import("../../../pisellModal").PisellModalProps): JSX.Element;
|
|
13
|
-
confirm: (props: import("../../../pisellModal/components/functions").PisellModalFuncProps) => {
|
|
14
|
-
destroy: () => void;
|
|
15
|
-
update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
|
|
16
|
-
};
|
|
17
|
-
info: (props: import("../../../pisellModal/components/functions").PisellModalFuncProps) => {
|
|
18
|
-
destroy: () => void;
|
|
19
|
-
update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
|
|
20
|
-
};
|
|
21
|
-
error: (props: import("../../../pisellModal/components/functions").PisellModalFuncProps) => {
|
|
22
|
-
destroy: () => void;
|
|
23
|
-
update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
|
|
24
|
-
};
|
|
25
|
-
warn: (props: import("../../../pisellModal/components/functions").PisellModalFuncProps) => any;
|
|
26
|
-
warning: (props: import("../../../pisellModal/components/functions").PisellModalFuncProps) => {
|
|
27
|
-
destroy: () => void;
|
|
28
|
-
update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
|
|
29
|
-
};
|
|
30
|
-
success: (props: import("../../../pisellModal/components/functions").PisellModalFuncProps) => {
|
|
31
|
-
destroy: () => void;
|
|
32
|
-
update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void;
|
|
33
|
-
};
|
|
34
|
-
Information: (props: import("../../../pisellModal/components/Information").InformationProps) => JSX.Element;
|
|
35
|
-
} | typeof Drawer;
|
|
36
|
-
containerProps: {};
|
|
37
|
-
};
|
|
38
|
-
export default useDrawerState;
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { DataSourceTableProps } from '../type';
|
|
3
|
-
import { OperationItem } from '../type';
|
|
4
|
-
interface UseTablePropsProps {
|
|
5
|
-
data: any;
|
|
6
|
-
originProps: DataSourceTableProps;
|
|
7
|
-
openDrawer: (type: OperationItem) => void;
|
|
8
|
-
closeDrawer: () => void;
|
|
9
|
-
refreshData: () => void;
|
|
10
|
-
handleFilterChange: (changedFields: any, allFields: any) => void;
|
|
11
|
-
tableRef: any;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* 处理table的props
|
|
15
|
-
* 转换title
|
|
16
|
-
* @param props
|
|
17
|
-
* @returns
|
|
18
|
-
*/
|
|
19
|
-
declare const useTableProps: (props: UseTablePropsProps) => {
|
|
20
|
-
title: number | boolean | JSX.Element | React.ReactFragment | (() => React.ReactNode) | null | undefined;
|
|
21
|
-
pagination: {
|
|
22
|
-
total: number;
|
|
23
|
-
current: number;
|
|
24
|
-
pageSize: number;
|
|
25
|
-
size: string;
|
|
26
|
-
showSizeChanger: boolean;
|
|
27
|
-
};
|
|
28
|
-
columns: import("./useColumns").Column[];
|
|
29
|
-
subTitle: number | boolean | JSX.Element | React.ReactFragment | (() => React.ReactNode) | null | undefined;
|
|
30
|
-
buttons: any[] | null;
|
|
31
|
-
filter: JSX.Element | null;
|
|
32
|
-
onRow: (record: any) => any;
|
|
33
|
-
actionButtons: any[] | null;
|
|
34
|
-
titleButtons?: {
|
|
35
|
-
show: boolean;
|
|
36
|
-
maxCount: number;
|
|
37
|
-
items: OperationItem[];
|
|
38
|
-
} | undefined;
|
|
39
|
-
tableButtons?: {
|
|
40
|
-
show: boolean;
|
|
41
|
-
maxCount: number;
|
|
42
|
-
items: OperationItem[];
|
|
43
|
-
} | undefined;
|
|
44
|
-
operation?: {
|
|
45
|
-
/**
|
|
46
|
-
* 处理table的props
|
|
47
|
-
* 转换title
|
|
48
|
-
* @param props
|
|
49
|
-
* @returns
|
|
50
|
-
*/
|
|
51
|
-
show: boolean;
|
|
52
|
-
title: string;
|
|
53
|
-
width: number;
|
|
54
|
-
align: "center" | "left" | "right";
|
|
55
|
-
fixed: false | "left" | "right";
|
|
56
|
-
type: "button" | "link";
|
|
57
|
-
items: OperationItem[];
|
|
58
|
-
} | undefined;
|
|
59
|
-
operationContent?: {
|
|
60
|
-
[key: string]: React.ReactNode;
|
|
61
|
-
} | undefined;
|
|
62
|
-
dataSource: import("../../provider/dataSource/DataSourceContext").DataSourceType;
|
|
63
|
-
search?: {
|
|
64
|
-
show: boolean;
|
|
65
|
-
placeholder: string;
|
|
66
|
-
} | undefined;
|
|
67
|
-
__designMode: string;
|
|
68
|
-
componentId: string;
|
|
69
|
-
clickToDetail?: {
|
|
70
|
-
show: boolean;
|
|
71
|
-
useCustomAction: boolean;
|
|
72
|
-
actionType: string;
|
|
73
|
-
openMode: "modal" | "drawer";
|
|
74
|
-
openContentSize: "small" | "middle" | "large";
|
|
75
|
-
openTitle: string;
|
|
76
|
-
key: string;
|
|
77
|
-
} | undefined;
|
|
78
|
-
filterBy?: Record<string, any> | undefined;
|
|
79
|
-
sortBy: string;
|
|
80
|
-
tabs?: {
|
|
81
|
-
show: boolean;
|
|
82
|
-
type: string;
|
|
83
|
-
items: {
|
|
84
|
-
name: string;
|
|
85
|
-
filterBy: Record<string, any>;
|
|
86
|
-
sortBy: string;
|
|
87
|
-
}[];
|
|
88
|
-
} | undefined;
|
|
89
|
-
onValuesChange?: ((changedValues: any, values: any) => void) | undefined;
|
|
90
|
-
extraParams?: {
|
|
91
|
-
list?: Record<string, any> | undefined;
|
|
92
|
-
get?: Record<string, any> | undefined;
|
|
93
|
-
update?: Record<string, any> | undefined;
|
|
94
|
-
create?: Record<string, any> | undefined;
|
|
95
|
-
destroy?: Record<string, any> | undefined;
|
|
96
|
-
} | undefined;
|
|
97
|
-
};
|
|
98
|
-
export default useTableProps;
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { ColumnType } from 'antd/es/table';
|
|
3
|
-
import { DataSourceType } from '../provider/dataSource/DataSourceContext';
|
|
4
|
-
export declare type OperationItem = {
|
|
5
|
-
label?: string;
|
|
6
|
-
openMode: 'modal' | 'drawer' | 'custom';
|
|
7
|
-
openContentSize: 'small' | 'middle' | 'large';
|
|
8
|
-
openTitle: string;
|
|
9
|
-
actionType: 'detail' | 'edit' | 'delete' | 'custom';
|
|
10
|
-
key: string;
|
|
11
|
-
buttonProps?: any;
|
|
12
|
-
onClick?: (record: any) => void;
|
|
13
|
-
afterClose?: () => void;
|
|
14
|
-
};
|
|
15
|
-
export interface DataSourceTableProps {
|
|
16
|
-
title?: string | React.ReactNode | (() => React.ReactNode);
|
|
17
|
-
subTitle?: string | React.ReactNode | (() => React.ReactNode);
|
|
18
|
-
titleButtons?: {
|
|
19
|
-
show: boolean;
|
|
20
|
-
maxCount: number;
|
|
21
|
-
items: OperationItem[];
|
|
22
|
-
};
|
|
23
|
-
tableButtons?: {
|
|
24
|
-
show: boolean;
|
|
25
|
-
maxCount: number;
|
|
26
|
-
items: OperationItem[];
|
|
27
|
-
};
|
|
28
|
-
buttons?: any[];
|
|
29
|
-
operation?: {
|
|
30
|
-
show: boolean;
|
|
31
|
-
title: string;
|
|
32
|
-
width: number;
|
|
33
|
-
align: 'left' | 'center' | 'right';
|
|
34
|
-
fixed: 'left' | 'right' | false;
|
|
35
|
-
type: 'link' | 'button';
|
|
36
|
-
items: OperationItem[];
|
|
37
|
-
};
|
|
38
|
-
operationContent?: {
|
|
39
|
-
[key: string]: React.ReactNode;
|
|
40
|
-
};
|
|
41
|
-
dataSource: DataSourceType;
|
|
42
|
-
columns: ColumnType<any>[];
|
|
43
|
-
filter: any;
|
|
44
|
-
search?: {
|
|
45
|
-
show: boolean;
|
|
46
|
-
placeholder: string;
|
|
47
|
-
};
|
|
48
|
-
__designMode: string;
|
|
49
|
-
componentId: string;
|
|
50
|
-
clickToDetail?: {
|
|
51
|
-
show: boolean;
|
|
52
|
-
useCustomAction: boolean;
|
|
53
|
-
actionType: string;
|
|
54
|
-
openMode: 'modal' | 'drawer';
|
|
55
|
-
openContentSize: 'small' | 'middle' | 'large';
|
|
56
|
-
openTitle: string;
|
|
57
|
-
key: string;
|
|
58
|
-
};
|
|
59
|
-
onRow?: any;
|
|
60
|
-
filterBy?: Record<string, any>;
|
|
61
|
-
sortBy: string;
|
|
62
|
-
tabs?: {
|
|
63
|
-
show: boolean;
|
|
64
|
-
type: string;
|
|
65
|
-
items: {
|
|
66
|
-
name: string;
|
|
67
|
-
filterBy: Record<string, any>;
|
|
68
|
-
sortBy: string;
|
|
69
|
-
}[];
|
|
70
|
-
};
|
|
71
|
-
onValuesChange?: (changedValues: any, values: any) => void;
|
|
72
|
-
extraParams?: {
|
|
73
|
-
list?: Record<string, any>;
|
|
74
|
-
get?: Record<string, any>;
|
|
75
|
-
update?: Record<string, any>;
|
|
76
|
-
create?: Record<string, any>;
|
|
77
|
-
destroy?: Record<string, any>;
|
|
78
|
-
};
|
|
79
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { InputProps } from 'antd';
|
|
3
|
-
import { ModeType } from "../../dataSourceForm/type";
|
|
4
|
-
export interface PhoneInputProps extends Omit<InputProps, 'value' | 'onChange'> {
|
|
5
|
-
renderMode: ModeType;
|
|
6
|
-
value?: string;
|
|
7
|
-
onChange?: (value: string) => void;
|
|
8
|
-
}
|
|
9
|
-
declare const MobileNumberInputWithMode: React.FC<PhoneInputProps & import("../../dataSourceForm/utils").WithModeProps>;
|
|
10
|
-
export default MobileNumberInputWithMode;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { InputProps } from 'antd';
|
|
3
|
-
import { ModeType } from "../../dataSourceForm/type";
|
|
4
|
-
export interface PhoneInputProps extends Omit<InputProps, 'value' | 'onChange'> {
|
|
5
|
-
renderMode: ModeType;
|
|
6
|
-
value?: string;
|
|
7
|
-
onChange?: (value: string) => void;
|
|
8
|
-
}
|
|
9
|
-
declare const PhoneNumberInputWithMode: React.FC<PhoneInputProps & import("../../dataSourceForm/utils").WithModeProps>;
|
|
10
|
-
export default PhoneNumberInputWithMode;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 获取nocobase数据列表
|
|
3
|
-
*/
|
|
4
|
-
export declare const getCountryDataList: () => Promise<any>;
|
|
5
|
-
export interface Country {
|
|
6
|
-
id: number;
|
|
7
|
-
name: {
|
|
8
|
-
en: string;
|
|
9
|
-
"zh-CN": string;
|
|
10
|
-
"zh-HK": string;
|
|
11
|
-
original: string;
|
|
12
|
-
};
|
|
13
|
-
code: string;
|
|
14
|
-
calling_code: string;
|
|
15
|
-
currency_code: string;
|
|
16
|
-
sort: number;
|
|
17
|
-
status: string;
|
|
18
|
-
created_at: string;
|
|
19
|
-
updated_at: string;
|
|
20
|
-
prefix: string;
|
|
21
|
-
}
|
|
22
|
-
export declare const useCountries: () => {
|
|
23
|
-
data: Country[];
|
|
24
|
-
};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { UploadFile as AntdUploadFile } from 'antd/es/upload/interface';
|
|
2
|
-
import type { UploadValue, UploadChangeHandler } from './types';
|
|
3
|
-
export interface UploadFile extends AntdUploadFile {
|
|
4
|
-
metadata?: {
|
|
5
|
-
width?: number;
|
|
6
|
-
height?: number;
|
|
7
|
-
duration?: number;
|
|
8
|
-
bitrate?: number;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
export interface UploadProps {
|
|
12
|
-
renderMode?: string;
|
|
13
|
-
fieldKey: string;
|
|
14
|
-
maxSize?: number;
|
|
15
|
-
minCount?: number;
|
|
16
|
-
maxCount?: number;
|
|
17
|
-
multiple?: boolean;
|
|
18
|
-
presetType?: string[];
|
|
19
|
-
presetTypeString?: string[];
|
|
20
|
-
customType?: string[];
|
|
21
|
-
enablePresetType?: boolean;
|
|
22
|
-
enableCustomType?: boolean;
|
|
23
|
-
allowPreview?: boolean;
|
|
24
|
-
value?: UploadValue;
|
|
25
|
-
typeMaxSizeMap?: Record<string, number>;
|
|
26
|
-
enableMultilingual?: boolean;
|
|
27
|
-
onChange?: UploadChangeHandler;
|
|
28
|
-
disabled?: boolean;
|
|
29
|
-
mediaUploadUrl?: string;
|
|
30
|
-
getHeaders?: () => Record<string, string>;
|
|
31
|
-
mediaConfig?: {
|
|
32
|
-
data: {
|
|
33
|
-
upload_onetime_limit: number;
|
|
34
|
-
upload_maxsize: number;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
}
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import './index.less';
|
|
3
|
-
/**
|
|
4
|
-
* loginAndRegister组件的属性接口
|
|
5
|
-
*/
|
|
6
|
-
export interface loginAndRegisterProps {
|
|
7
|
-
/** Logo相关配置 */
|
|
8
|
-
showLogo?: boolean;
|
|
9
|
-
logo?: string;
|
|
10
|
-
logoPosition?: 'left' | 'center' | 'right';
|
|
11
|
-
logoSize?: {
|
|
12
|
-
width?: number;
|
|
13
|
-
height?: number;
|
|
14
|
-
};
|
|
15
|
-
/** 标题相关配置 */
|
|
16
|
-
title?: string;
|
|
17
|
-
showTitle?: boolean;
|
|
18
|
-
titleAlign?: 'left' | 'center' | 'right';
|
|
19
|
-
/** 副标题相关配置 */
|
|
20
|
-
subtitle?: string;
|
|
21
|
-
showSubtitle?: boolean;
|
|
22
|
-
subtitleAlign?: 'left' | 'center' | 'right';
|
|
23
|
-
/** 登录方式配置 */
|
|
24
|
-
loginMethods?: ('email' | 'google' | 'facebook' | 'apple')[];
|
|
25
|
-
defaultLoginMethod?: 'email' | 'google' | 'facebook' | 'apple';
|
|
26
|
-
/** 表单配置 */
|
|
27
|
-
emailLabel?: string;
|
|
28
|
-
passwordLabel?: string;
|
|
29
|
-
emailPlaceholder?: string;
|
|
30
|
-
passwordPlaceholder?: string;
|
|
31
|
-
emailRules?: any[];
|
|
32
|
-
buttonText?: string;
|
|
33
|
-
rememberMeText?: string;
|
|
34
|
-
forgotPasswordText?: string;
|
|
35
|
-
showRememberMe?: boolean;
|
|
36
|
-
showForgotPassword?: boolean;
|
|
37
|
-
/** 社交登录配置 */
|
|
38
|
-
socialLoginTexts?: {
|
|
39
|
-
google?: string;
|
|
40
|
-
facebook?: string;
|
|
41
|
-
apple?: string;
|
|
42
|
-
};
|
|
43
|
-
/** 底部配置 */
|
|
44
|
-
showFooter?: boolean;
|
|
45
|
-
showSignUp?: boolean;
|
|
46
|
-
signUpText?: string;
|
|
47
|
-
signUpLink?: string;
|
|
48
|
-
signUpPosition?: 'left' | 'center' | 'right';
|
|
49
|
-
otherLinks?: Array<{
|
|
50
|
-
text: string;
|
|
51
|
-
url: string;
|
|
52
|
-
}>;
|
|
53
|
-
otherLinksPosition?: 'left' | 'center' | 'right';
|
|
54
|
-
/** 登录/注册切换配置 */
|
|
55
|
-
showTabs?: boolean;
|
|
56
|
-
loginTabText?: string;
|
|
57
|
-
registerTabText?: string;
|
|
58
|
-
/** 注册表单配置 */
|
|
59
|
-
registerEmailPlaceholder?: string;
|
|
60
|
-
registerPasswordPlaceholder?: string;
|
|
61
|
-
registerButtonText?: string;
|
|
62
|
-
/** 事件回调 */
|
|
63
|
-
onLogin?: (values: {
|
|
64
|
-
email: string;
|
|
65
|
-
loginMethod: string;
|
|
66
|
-
}) => void;
|
|
67
|
-
onSocialLogin?: (type: 'google' | 'facebook' | 'apple') => void;
|
|
68
|
-
onSignUp?: () => void;
|
|
69
|
-
onRegister?: (values: {
|
|
70
|
-
email: string;
|
|
71
|
-
password: string;
|
|
72
|
-
}) => void;
|
|
73
|
-
/** 新增背景图片属性 */
|
|
74
|
-
backgroundImage?: string;
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* Saas登录组件
|
|
78
|
-
* @param props - 组件属性
|
|
79
|
-
* @returns React组件
|
|
80
|
-
*/
|
|
81
|
-
declare const loginAndRegister: React.FC<loginAndRegisterProps>;
|
|
82
|
-
export default loginAndRegister;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { PisellContextType } from './context';
|
|
3
|
-
interface PisellConfigProviderType {
|
|
4
|
-
platform?: PisellContextType['platform'];
|
|
5
|
-
children: React.ReactNode;
|
|
6
|
-
/** 货币符号 */
|
|
7
|
-
symbol?: string;
|
|
8
|
-
/** 当前语言环境 */
|
|
9
|
-
locale?: string;
|
|
10
|
-
getSymbolic?: () => string;
|
|
11
|
-
}
|
|
12
|
-
declare const PisellConfigProvider: React.FC<PisellConfigProviderType>;
|
|
13
|
-
export default PisellConfigProvider;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { EmptyProps } from 'antd';
|
|
3
|
-
import { PisellContextType } from '../pisell-config-provider/context';
|
|
4
|
-
import './index.less';
|
|
5
|
-
export interface PisellEmptyProps extends EmptyProps {
|
|
6
|
-
/** 平台 */
|
|
7
|
-
platform?: PisellContextType['platform'];
|
|
8
|
-
/** 额外内容描述 */
|
|
9
|
-
extraDescription?: React.ReactNode;
|
|
10
|
-
/** 额外内容描述 */
|
|
11
|
-
icon?: React.ReactNode;
|
|
12
|
-
/** 自定义底部额外操作区域 */
|
|
13
|
-
footer?: React.ReactNode;
|
|
14
|
-
[key: string]: any;
|
|
15
|
-
/** 最大宽度 */
|
|
16
|
-
maxWidth?: number;
|
|
17
|
-
}
|
|
18
|
-
declare const PisellEmpty: (props: PisellEmptyProps) => JSX.Element;
|
|
19
|
-
export default PisellEmpty;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { ReactElement } from 'react';
|
|
2
|
-
import type { Root } from 'react-dom/client';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
declare type ImperativeProps = {
|
|
5
|
-
open?: boolean;
|
|
6
|
-
onCancel?: () => void;
|
|
7
|
-
afterClose?: () => void;
|
|
8
|
-
};
|
|
9
|
-
declare type TargetElement = ReactElement<ImperativeProps>;
|
|
10
|
-
export declare type ImperativeHandler = {
|
|
11
|
-
close: () => void;
|
|
12
|
-
replace: (element: TargetElement) => void;
|
|
13
|
-
isRendered?: () => boolean;
|
|
14
|
-
};
|
|
15
|
-
export declare type UnmountType = () => Promise<void>;
|
|
16
|
-
export declare type RenderType = (node: React.ReactElement, container: Element | DocumentFragment) => UnmountType;
|
|
17
|
-
declare const MARK = "__pisell_react_root__";
|
|
18
|
-
declare type ContainerType = (Element | DocumentFragment) & {
|
|
19
|
-
[MARK]?: Root;
|
|
20
|
-
};
|
|
21
|
-
export declare function render(node: React.ReactElement, container: ContainerType): void;
|
|
22
|
-
export declare function unmount(container: ContainerType): Promise<void>;
|
|
23
|
-
/**
|
|
24
|
-
* @deprecated 设置 React 渲染函数以兼容使用。
|
|
25
|
-
*/
|
|
26
|
-
export declare function unstableSetRender(render?: RenderType): RenderType;
|
|
27
|
-
export declare function renderToBody(element: ReactElement): UnmountType;
|
|
28
|
-
export declare function renderImperatively(element: TargetElement): ImperativeHandler;
|
|
29
|
-
export {};
|
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import './index.less';
|
|
3
|
-
export interface FormatOption {
|
|
4
|
-
/** 原始 DOM 元素 */
|
|
5
|
-
originDom: React.ReactNode;
|
|
6
|
-
/** 是否选中状态 */
|
|
7
|
-
active: boolean;
|
|
8
|
-
/** 完整的组件数据 */
|
|
9
|
-
data: PisellWalletPassCardProps;
|
|
10
|
-
}
|
|
11
|
-
export interface PisellWalletPassCardProps {
|
|
12
|
-
id: number;
|
|
13
|
-
/** 卡片样式 */
|
|
14
|
-
type: 'default' | 'mini';
|
|
15
|
-
/** 商品名称 */
|
|
16
|
-
name: string;
|
|
17
|
-
/** 二维码 */
|
|
18
|
-
qrCode: string;
|
|
19
|
-
/** 共享店铺名称 */
|
|
20
|
-
storeName: string;
|
|
21
|
-
/** 余额 */
|
|
22
|
-
balance?: number;
|
|
23
|
-
/** 识别码编号 */
|
|
24
|
-
code: string;
|
|
25
|
-
/** 有效期 */
|
|
26
|
-
validDate: string;
|
|
27
|
-
/** 使用金额 */
|
|
28
|
-
redeem?: number;
|
|
29
|
-
/** 是否禁用 */
|
|
30
|
-
disabled?: boolean;
|
|
31
|
-
/** 禁用原因 */
|
|
32
|
-
disabledReason?: string;
|
|
33
|
-
/** 是否展示禁用原因 */
|
|
34
|
-
showDisabledReason?: boolean;
|
|
35
|
-
/** 封面图 */
|
|
36
|
-
cover?: string;
|
|
37
|
-
/** 余额标题文案 */
|
|
38
|
-
balanceTitle?: string;
|
|
39
|
-
/** 使用金额标题文案 */
|
|
40
|
-
redeemTitle?: string;
|
|
41
|
-
/** 是否选中 */
|
|
42
|
-
active?: boolean;
|
|
43
|
-
/** 是否展示商品名称 */
|
|
44
|
-
showName?: boolean;
|
|
45
|
-
/** 是否展示共享店铺名称 */
|
|
46
|
-
showStoreName?: boolean | ((data: any) => boolean);
|
|
47
|
-
/** 是否展示使用金额 */
|
|
48
|
-
showRedeem?: boolean;
|
|
49
|
-
/** 是否展示余额 */
|
|
50
|
-
showBalance?: boolean;
|
|
51
|
-
/** 是否展示识别码编号 */
|
|
52
|
-
showCode?: boolean;
|
|
53
|
-
/** 是否展示有效期 */
|
|
54
|
-
showValidDate?: boolean;
|
|
55
|
-
/** 是否展示右上角详情按钮 */
|
|
56
|
-
showDetail?: boolean;
|
|
57
|
-
/** 是否展示qrCode */
|
|
58
|
-
showQrCode?: boolean;
|
|
59
|
-
/** 是否展示封面 */
|
|
60
|
-
showCover?: boolean;
|
|
61
|
-
/** 是否展示余额货币符号 */
|
|
62
|
-
showBalanceSymbol?: boolean;
|
|
63
|
-
/** 展示操作按钮 */
|
|
64
|
-
showActions?: boolean;
|
|
65
|
-
/** 操作按钮配置 */
|
|
66
|
-
actions?: {
|
|
67
|
-
/** 按钮展示方式 */
|
|
68
|
-
layout: 'expanded' | 'collapsed';
|
|
69
|
-
/** detail 按钮配置 */
|
|
70
|
-
detail?: {
|
|
71
|
-
visible: boolean;
|
|
72
|
-
iconColor: string;
|
|
73
|
-
};
|
|
74
|
-
/** edit按钮配置 */
|
|
75
|
-
edit?: {
|
|
76
|
-
visible: boolean;
|
|
77
|
-
iconColor: string;
|
|
78
|
-
dialogTitle: string;
|
|
79
|
-
enableDialog: boolean;
|
|
80
|
-
fields: {
|
|
81
|
-
name: string;
|
|
82
|
-
label: string;
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
/** 编辑编辑按钮后,弹窗展示之前 */
|
|
87
|
-
beforeEdit?: (value: any) => Promise<any> | boolean | void;
|
|
88
|
-
/** 编辑弹窗点击提交 */
|
|
89
|
-
onConfirmEdit?: (value: any) => void;
|
|
90
|
-
/** 编辑金额事件 */
|
|
91
|
-
onConfirmEditAmount?: (value: number) => void;
|
|
92
|
-
/** 详情按钮点击事件 */
|
|
93
|
-
onDetail?: (data: {
|
|
94
|
-
id: number;
|
|
95
|
-
name: string;
|
|
96
|
-
storeName: string;
|
|
97
|
-
balance?: number;
|
|
98
|
-
redeem?: number;
|
|
99
|
-
code: string;
|
|
100
|
-
validDate: string;
|
|
101
|
-
originData?: any;
|
|
102
|
-
}) => void;
|
|
103
|
-
/** 是否使用外部详情处理(当为 true 且提供了 onDetail 时,不显示内部模态框) */
|
|
104
|
-
useExternalDetail?: boolean;
|
|
105
|
-
/** 单选或者多选 */
|
|
106
|
-
mode?: 'multiple' | 'single';
|
|
107
|
-
/** 是否展示选中图标 */
|
|
108
|
-
showActiveIcon?: boolean;
|
|
109
|
-
/** 开启编辑金额 */
|
|
110
|
-
enableEditAmount?: boolean;
|
|
111
|
-
/** 显示状态标识 */
|
|
112
|
-
showStatus?: boolean;
|
|
113
|
-
/** 名称标题字号字重颜色配置 */
|
|
114
|
-
nameTitleStyle?: {
|
|
115
|
-
fontSize: number;
|
|
116
|
-
fontWeight: number;
|
|
117
|
-
color: string;
|
|
118
|
-
};
|
|
119
|
-
/** 卡片状态 */
|
|
120
|
-
cardStatus?: 'used' | 'expired' | 'disabled' | 'conflict';
|
|
121
|
-
/** 自定义余额格式化函数,如果提供则优先使用 */
|
|
122
|
-
formatBalance?: (balance?: number, option?: FormatOption) => React.ReactNode;
|
|
123
|
-
/** 自定义余额标题格式化函数,如果提供则优先使用 */
|
|
124
|
-
formatBalanceTitle?: (balanceTitle?: string, option?: FormatOption) => React.ReactNode;
|
|
125
|
-
/** 自定义使用金额格式化函数,如果提供则优先使用 */
|
|
126
|
-
formatRedeem?: (redeem?: number, option?: FormatOption) => React.ReactNode;
|
|
127
|
-
/** 自定义使用金额标题格式化函数,如果提供则优先使用 */
|
|
128
|
-
formatRedeemTitle?: (redeemTitle?: string, option?: FormatOption) => React.ReactNode;
|
|
129
|
-
/** 最大使用金额 */
|
|
130
|
-
maxRedeem?: number;
|
|
131
|
-
/** 编辑金额前事件 */
|
|
132
|
-
onBeforeEditAmount?: (value: any) => Promise<any> | boolean | void;
|
|
133
|
-
[key: string]: any;
|
|
134
|
-
}
|
|
135
|
-
declare const PisellWalletPassCard: (props: PisellWalletPassCardProps) => JSX.Element;
|
|
136
|
-
export default PisellWalletPassCard;
|