@regenbio/regenbio-components-react 1.3.59 → 1.3.60
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/build/components/DataDisplay/DataChart/hook.d.ts +2 -2
- package/build/components/DataDisplay/DataTable/hook.d.ts +12 -13
- package/build/components/DataDisplay/DataTable/index.d.ts +1 -1
- package/build/components/DataDisplay/DragTable/hook.d.ts +19 -18
- package/build/components/DataDisplay/DragTable/index.d.ts +1 -1
- package/build/components/DataDisplay/FileTag/hook.d.ts +2 -2
- package/build/components/DataDisplay/FileTag/index.d.ts +1 -3
- package/build/components/DataDisplay/HtmlRender/hook.d.ts +1 -1
- package/build/components/DataDisplay/IconRender/index.d.ts +1 -3
- package/build/components/DataDisplay/UserCard/hook.d.ts +5 -5
- package/build/components/DataDisplay/UserCard/index.d.ts +1 -3
- package/build/components/DataEntry/AttachmentText/hook.d.ts +2 -2
- package/build/components/DataEntry/MarkdownEditor/hook.d.ts +2 -2
- package/build/components/DataEntry/Uploader/SingleImageUploader/hook.d.ts +2 -4
- package/build/components/DataEntry/UserSelector/hook.d.ts +6 -6
- package/build/components/Other/ActionBar/hook.d.ts +3 -8
- package/build/components/Other/GlobalContext/index.d.ts +1 -1
- package/build/components/Other/LoginLoad/AuthFrame/hook.d.ts +2 -2
- package/build/components/Other/LoginLoad/BindFrame/hook.d.ts +7 -7
- package/build/components/Other/ThemeSetter/hook.d.ts +1 -1
- package/build/components/PageLayout/AppLayout/type.d.ts +1 -2
- package/build/components/PageLayout/HomePage/hook.d.ts +1 -1
- package/build/components/PageLayout/PageContainer/hook.d.ts +3 -2
- package/build/components/PageLayout/PageContainer/type.d.ts +4 -13
- package/build/index.d.ts +20 -20
- package/build/index.js +3 -3
- package/build/services/hooks/useRbResponsive.d.ts +2 -2
- package/build/services/types/commonType.d.ts +4 -0
- package/package.json +3 -7
|
@@ -1,27 +1,26 @@
|
|
|
1
1
|
import { RbDataTableProps } from "./type";
|
|
2
|
-
import { ActionType, ProColumns } from "@ant-design/pro-components";
|
|
3
2
|
/**
|
|
4
3
|
* 数据表格Hook
|
|
5
4
|
* @param props 参数
|
|
6
5
|
*/
|
|
7
6
|
declare const useDataTable: <DataSource, U, ValueType>(props: RbDataTableProps<DataSource, U, ValueType>) => {
|
|
8
7
|
requestData: (_params: any, _sort: any, _filter: any) => Promise<any>;
|
|
9
|
-
beforeSearchSubmit:
|
|
10
|
-
executeRecordParams:
|
|
11
|
-
setCollapsed:
|
|
12
|
-
setParams:
|
|
13
|
-
tableKey:
|
|
8
|
+
beforeSearchSubmit: any;
|
|
9
|
+
executeRecordParams: any;
|
|
10
|
+
setCollapsed: any;
|
|
11
|
+
setParams: any;
|
|
12
|
+
tableKey: any;
|
|
14
13
|
styles: {
|
|
15
14
|
customTable: string;
|
|
16
15
|
};
|
|
17
|
-
params:
|
|
18
|
-
actionRef:
|
|
19
|
-
responsive:
|
|
16
|
+
params: any;
|
|
17
|
+
actionRef: any;
|
|
18
|
+
responsive: any;
|
|
20
19
|
form: import("antd").FormInstance<any>;
|
|
21
|
-
collapsed:
|
|
22
|
-
loading:
|
|
23
|
-
columns:
|
|
24
|
-
dataLength:
|
|
20
|
+
collapsed: any;
|
|
21
|
+
loading: any;
|
|
22
|
+
columns: any;
|
|
23
|
+
dataLength: any;
|
|
25
24
|
intl: any;
|
|
26
25
|
};
|
|
27
26
|
export default useDataTable;
|
|
@@ -5,5 +5,5 @@ import { RbDataTableProps } from "./type";
|
|
|
5
5
|
* @param props 参数配置
|
|
6
6
|
* @constructor
|
|
7
7
|
*/
|
|
8
|
-
declare const RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) =>
|
|
8
|
+
declare const RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
|
|
9
9
|
export default RbDataTable;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { useEffect } from 'react';
|
|
1
2
|
import { RbDragTableProps } from "./type";
|
|
2
3
|
import { ActionType } from "@ant-design/pro-components";
|
|
3
4
|
import { RbActionType } from "../DataTable/type";
|
|
@@ -6,14 +7,14 @@ import { RbActionType } from "../DataTable/type";
|
|
|
6
7
|
* @param props 属性
|
|
7
8
|
*/
|
|
8
9
|
declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => {
|
|
9
|
-
setTableLoading:
|
|
10
|
-
responsive:
|
|
10
|
+
setTableLoading: any;
|
|
11
|
+
responsive: any;
|
|
11
12
|
styles: {
|
|
12
13
|
customTable: string;
|
|
13
14
|
};
|
|
14
|
-
tableLoading:
|
|
15
|
+
tableLoading: any;
|
|
15
16
|
restProps: {
|
|
16
|
-
actionRef?:
|
|
17
|
+
actionRef?: useEffect<RbActionType | undefined>;
|
|
17
18
|
responsive?: boolean;
|
|
18
19
|
loadChange?: (loading: boolean) => void;
|
|
19
20
|
toolbar?: import("@ant-design/pro-components").ListToolBarProps;
|
|
@@ -28,25 +29,25 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
28
29
|
toolbar: JSX.Element | undefined;
|
|
29
30
|
alert: JSX.Element | undefined;
|
|
30
31
|
table: JSX.Element | undefined;
|
|
31
|
-
}) =>
|
|
32
|
+
}) => useEffect;
|
|
32
33
|
tableViewRender?: (props: import("antd").TableProps<DataSource>, defaultDom: JSX.Element) => JSX.Element | undefined;
|
|
33
|
-
tableExtraRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, dataSource: DataSource[]) =>
|
|
34
|
-
searchFormRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, defaultDom: JSX.Element) =>
|
|
34
|
+
tableExtraRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, dataSource: DataSource[]) => useEffect;
|
|
35
|
+
searchFormRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, defaultDom: JSX.Element) => useEffect;
|
|
35
36
|
postData?: any;
|
|
36
37
|
defaultData?: DataSource[];
|
|
37
38
|
formRef?: import("@ant-design/pro-table/es/components/Form/FormRender").TableFormItem<DataSource_1>["formRef"];
|
|
38
39
|
toolBarRender?: false | ((action: ActionType | undefined, rows: {
|
|
39
40
|
selectedRowKeys?: (string | number)[];
|
|
40
41
|
selectedRows?: DataSource[];
|
|
41
|
-
}) =>
|
|
42
|
-
optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom:
|
|
42
|
+
}) => useEffect[]);
|
|
43
|
+
optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom: useEffect[]) => useEffect[];
|
|
43
44
|
onLoad?: (dataSource: DataSource[]) => void;
|
|
44
45
|
onLoadingChange?: (loading: boolean | import("antd").SpinProps | undefined) => void;
|
|
45
46
|
onRequestError?: (e: Error) => void;
|
|
46
47
|
polling?: number | ((dataSource: DataSource[]) => number);
|
|
47
48
|
tableClassName?: string;
|
|
48
|
-
tableStyle?:
|
|
49
|
-
headerTitle?:
|
|
49
|
+
tableStyle?: useEffect;
|
|
50
|
+
headerTitle?: useEffect;
|
|
50
51
|
tooltip?: string | import("antd/lib/form/FormItemLabel").LabelTooltipType;
|
|
51
52
|
options?: import("@ant-design/pro-table/es/components/ToolBar").OptionConfig | false;
|
|
52
53
|
search?: false | import("@ant-design/pro-table/es/components/Form/FormRender").SearchConfig;
|
|
@@ -58,7 +59,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
58
59
|
rowSelection?: false | (import("antd/es/table/interface").TableRowSelection<DataSource> & {
|
|
59
60
|
alwaysShowAlert?: boolean;
|
|
60
61
|
});
|
|
61
|
-
style?:
|
|
62
|
+
style?: useEffect;
|
|
62
63
|
type?: import("@ant-design/pro-components").ProSchemaComponentTypes;
|
|
63
64
|
onSubmit?: (params: U) => void;
|
|
64
65
|
onReset?: () => void;
|
|
@@ -71,7 +72,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
71
72
|
revalidateOnFocus?: boolean;
|
|
72
73
|
defaultSize?: import("antd/lib/button").ButtonSize;
|
|
73
74
|
name?: import("rc-field-form/lib/interface").NamePath;
|
|
74
|
-
ErrorBoundary?:
|
|
75
|
+
ErrorBoundary?: useEffect<any, any> | false;
|
|
75
76
|
scroll?: import("rc-table").TableProps<RecordType>["scroll"] & {
|
|
76
77
|
scrollToFirstRowOnChange?: boolean;
|
|
77
78
|
};
|
|
@@ -90,14 +91,14 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
90
91
|
title?: import("rc-table/lib/interface").PanelRender<DataSource>;
|
|
91
92
|
prefixCls?: string;
|
|
92
93
|
className?: string;
|
|
93
|
-
children?:
|
|
94
|
+
children?: useEffect;
|
|
94
95
|
rowKey?: string | keyof DataSource | import("rc-table/lib/interface").GetRowKey<DataSource>;
|
|
95
96
|
tableLayout?: import("rc-table/lib/interface").TableLayout;
|
|
96
97
|
expandable?: import("rc-table/lib/interface").ExpandableConfig<DataSource>;
|
|
97
98
|
rowClassName?: string | import("rc-table/lib/interface").RowClassName<DataSource>;
|
|
98
99
|
footer?: import("rc-table/lib/interface").PanelRender<DataSource>;
|
|
99
|
-
summary?: (data: readonly DataSource[]) =>
|
|
100
|
-
caption?:
|
|
100
|
+
summary?: (data: readonly DataSource[]) => useEffect;
|
|
101
|
+
caption?: useEffect;
|
|
101
102
|
id?: string;
|
|
102
103
|
showHeader?: boolean;
|
|
103
104
|
components?: import("rc-table/lib/interface").TableComponents<DataSource>;
|
|
@@ -106,7 +107,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
106
107
|
direction?: import("rc-table/lib/interface").Direction;
|
|
107
108
|
sticky?: boolean | import("rc-table/lib/interface").TableSticky;
|
|
108
109
|
rowHoverable?: boolean;
|
|
109
|
-
onScroll?:
|
|
110
|
+
onScroll?: useEffect<HTMLDivElement>;
|
|
110
111
|
tailor?: boolean;
|
|
111
112
|
getContainerWidth?: (ele: HTMLElement, width: number) => number;
|
|
112
113
|
dropdownPrefixCls?: string;
|
|
@@ -122,6 +123,6 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
122
123
|
showSorterTooltip?: boolean | import("antd/es/table/interface").SorterTooltipProps;
|
|
123
124
|
virtual?: boolean;
|
|
124
125
|
};
|
|
125
|
-
actionRef:
|
|
126
|
+
actionRef: any;
|
|
126
127
|
};
|
|
127
128
|
export default useDragTable;
|
|
@@ -5,5 +5,5 @@ import { RbDragTableProps } from "./type";
|
|
|
5
5
|
* @param props 配置参数
|
|
6
6
|
* @constructor
|
|
7
7
|
*/
|
|
8
|
-
declare const RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) =>
|
|
8
|
+
declare const RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
|
|
9
9
|
export default RbDragTable;
|
|
@@ -5,7 +5,7 @@ import { RbFileTagProps } from "./type";
|
|
|
5
5
|
*/
|
|
6
6
|
declare const useFileTag: (props: RbFileTagProps) => {
|
|
7
7
|
intl: any;
|
|
8
|
-
getExtension:
|
|
9
|
-
getIconByFilename:
|
|
8
|
+
getExtension: any;
|
|
9
|
+
getIconByFilename: any;
|
|
10
10
|
};
|
|
11
11
|
export default useFileTag;
|
|
@@ -4,11 +4,11 @@ import { RbUserCardProps } from "./type";
|
|
|
4
4
|
* @param props 属性
|
|
5
5
|
*/
|
|
6
6
|
declare const useUserCard: (props: RbUserCardProps) => {
|
|
7
|
-
getAvatar:
|
|
8
|
-
onShowTooltip:
|
|
9
|
-
getNameLabel:
|
|
7
|
+
getAvatar: any;
|
|
8
|
+
onShowTooltip: any;
|
|
9
|
+
getNameLabel: any;
|
|
10
10
|
userDetail: any;
|
|
11
|
-
loading:
|
|
11
|
+
loading: any;
|
|
12
12
|
intl: any;
|
|
13
13
|
rbValueEnum: {
|
|
14
14
|
convertListToMap: (list: import("../../../services/types/commonType").ConstantListItem[]) => Map<any, import("@ant-design/pro-provider").ProSchemaValueEnumType>;
|
|
@@ -16,6 +16,6 @@ declare const useUserCard: (props: RbUserCardProps) => {
|
|
|
16
16
|
rbAuthorize: {
|
|
17
17
|
checkResource: (sign: string | undefined, gap?: boolean) => boolean;
|
|
18
18
|
};
|
|
19
|
-
isMe:
|
|
19
|
+
isMe: any;
|
|
20
20
|
};
|
|
21
21
|
export default useUserCard;
|
|
@@ -5,7 +5,7 @@ import { RbAttachmentTextProps } from "./type";
|
|
|
5
5
|
*/
|
|
6
6
|
declare const useAttachmentText: (props: RbAttachmentTextProps) => {
|
|
7
7
|
intl: any;
|
|
8
|
-
globalFunctions:
|
|
9
|
-
inputRef:
|
|
8
|
+
globalFunctions: any;
|
|
9
|
+
inputRef: any;
|
|
10
10
|
};
|
|
11
11
|
export default useAttachmentText;
|
|
@@ -5,7 +5,7 @@ import { RbMarkdownEditorProps } from "./type";
|
|
|
5
5
|
*/
|
|
6
6
|
declare const useMarkdownEditor: (props: RbMarkdownEditorProps) => {
|
|
7
7
|
intl: any;
|
|
8
|
-
selectedTab:
|
|
9
|
-
setSelectedTab:
|
|
8
|
+
selectedTab: any;
|
|
9
|
+
setSelectedTab: any;
|
|
10
10
|
};
|
|
11
11
|
export default useMarkdownEditor;
|
|
@@ -5,9 +5,7 @@ import { RbSingleImageUploaderExtraProps, RbSingleImageUploaderProps } from "./t
|
|
|
5
5
|
*/
|
|
6
6
|
declare const useSingleImageUploader: (props: RbSingleImageUploaderProps & RbSingleImageUploaderExtraProps) => {
|
|
7
7
|
intl: any;
|
|
8
|
-
globalFunctions:
|
|
9
|
-
onFileChange:
|
|
10
|
-
file: any;
|
|
11
|
-
}) => void;
|
|
8
|
+
globalFunctions: any;
|
|
9
|
+
onFileChange: any;
|
|
12
10
|
};
|
|
13
11
|
export default useSingleImageUploader;
|
|
@@ -4,13 +4,13 @@ import { RbUserSelectorProps } from "../../../index";
|
|
|
4
4
|
* @param props 属性
|
|
5
5
|
*/
|
|
6
6
|
declare const useUserSelector: <T, OptionType>({ widthControl, children, params, proFieldProps, mode, valueEnum, request, ...rest }: RbUserSelectorProps<T, OptionType>) => {
|
|
7
|
-
setKeywords:
|
|
7
|
+
setKeywords: any;
|
|
8
8
|
onFuzzy: (param: any) => Promise<void>;
|
|
9
|
-
start:
|
|
10
|
-
loading:
|
|
11
|
-
context:
|
|
12
|
-
data: any
|
|
9
|
+
start: any;
|
|
10
|
+
loading: any;
|
|
11
|
+
context: any;
|
|
12
|
+
data: any;
|
|
13
13
|
intl: any;
|
|
14
|
-
keywords:
|
|
14
|
+
keywords: any;
|
|
15
15
|
};
|
|
16
16
|
export default useUserSelector;
|
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { RbActionBarItemProps, RbActionBarProps } from "./type";
|
|
3
|
-
import { RbActionBarItem } from "./index";
|
|
1
|
+
import { RbActionBarProps } from "./type";
|
|
4
2
|
/**
|
|
5
3
|
* 操作栏Hook
|
|
6
4
|
* @param props 属性
|
|
7
5
|
*/
|
|
8
6
|
declare const useActionBar: (props: RbActionBarProps) => {
|
|
9
|
-
operationList:
|
|
10
|
-
extendList:
|
|
11
|
-
key: number;
|
|
12
|
-
name: React.ReactElement<typeof RbActionBarItem>;
|
|
13
|
-
}[];
|
|
7
|
+
operationList: any;
|
|
8
|
+
extendList: any;
|
|
14
9
|
};
|
|
15
10
|
export default useActionBar;
|
|
@@ -4,8 +4,8 @@ import { RbAuthFrameProps } from "./type";
|
|
|
4
4
|
* @param props 属性
|
|
5
5
|
*/
|
|
6
6
|
declare const useAuthFrame: (props: RbAuthFrameProps) => {
|
|
7
|
-
setExceptionMsg:
|
|
8
|
-
exceptionMsg:
|
|
7
|
+
setExceptionMsg: any;
|
|
8
|
+
exceptionMsg: any;
|
|
9
9
|
intl: any;
|
|
10
10
|
};
|
|
11
11
|
export default useAuthFrame;
|
|
@@ -4,13 +4,13 @@ import { RbBindFrameProps } from "./type";
|
|
|
4
4
|
* @param props 属性
|
|
5
5
|
*/
|
|
6
6
|
declare const useBindFrame: (props: RbBindFrameProps) => {
|
|
7
|
-
setCurrent:
|
|
8
|
-
setLoading:
|
|
9
|
-
steps: any
|
|
10
|
-
mailStep:
|
|
11
|
-
externalStep:
|
|
12
|
-
current:
|
|
13
|
-
loading:
|
|
7
|
+
setCurrent: any;
|
|
8
|
+
setLoading: any;
|
|
9
|
+
steps: any;
|
|
10
|
+
mailStep: any;
|
|
11
|
+
externalStep: any;
|
|
12
|
+
current: any;
|
|
13
|
+
loading: any;
|
|
14
14
|
externalBind: any;
|
|
15
15
|
};
|
|
16
16
|
export default useBindFrame;
|
|
@@ -39,7 +39,6 @@ export type RbAppLayoutProps = {
|
|
|
39
39
|
/**
|
|
40
40
|
* 子节点渲染方法
|
|
41
41
|
* @param children 子节点
|
|
42
|
-
* @param footer 版权信息等展示的底部
|
|
43
42
|
*/
|
|
44
|
-
childrenRender?: (children: React.ReactNode | React.ReactNode[]
|
|
43
|
+
childrenRender?: (children: React.ReactNode | React.ReactNode[]) => React.ReactNode | React.ReactNode[];
|
|
45
44
|
};
|
|
@@ -4,7 +4,8 @@ import { RbPageContainerProps } from "./type";
|
|
|
4
4
|
* @param props 属性
|
|
5
5
|
*/
|
|
6
6
|
declare const usePageContainer: (props: RbPageContainerProps) => {
|
|
7
|
-
mode:
|
|
8
|
-
loading:
|
|
7
|
+
mode: any;
|
|
8
|
+
loading: any;
|
|
9
|
+
initialState: any;
|
|
9
10
|
};
|
|
10
11
|
export default usePageContainer;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageContainer";
|
|
2
|
-
import
|
|
3
|
-
import { Scrollbars } from "react-custom-scrollbars";
|
|
2
|
+
import React from "react";
|
|
4
3
|
/**
|
|
5
4
|
* 页面容器属性
|
|
6
5
|
*/
|
|
@@ -18,16 +17,8 @@ export type RbPageContainerProps = {
|
|
|
18
17
|
*/
|
|
19
18
|
loadDuringAnimate?: boolean;
|
|
20
19
|
/**
|
|
21
|
-
*
|
|
20
|
+
* 内容渲染
|
|
21
|
+
* @param content 内容
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
contentRender: (content: React.ReactNode | React.ReactNode[]) => React.ReactNode | React.ReactNode[];
|
|
24
24
|
} & PageContainerProps;
|
|
25
|
-
/**
|
|
26
|
-
* 容器状态属性
|
|
27
|
-
*/
|
|
28
|
-
export type RbContainerStateProps = {
|
|
29
|
-
/**
|
|
30
|
-
* 滚动条Ref
|
|
31
|
-
*/
|
|
32
|
-
scroll?: HTMLElement;
|
|
33
|
-
};
|
package/build/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ import { RbUserSelectorProps } from "./components/DataEntry/UserSelector/type";
|
|
|
20
20
|
import RbAttachmentText from "./components/DataEntry/AttachmentText";
|
|
21
21
|
import { RbAttachmentTextProps } from "./components/DataEntry/AttachmentText/type";
|
|
22
22
|
import RbPageContainer from "./components/PageLayout/PageContainer";
|
|
23
|
-
import { RbPageContainerProps
|
|
23
|
+
import { RbPageContainerProps } from "./components/PageLayout/PageContainer/type";
|
|
24
24
|
import RbHomePage from "./components/PageLayout/HomePage";
|
|
25
25
|
import { RbHomePageProps } from "./components/PageLayout/HomePage/type";
|
|
26
26
|
import { RbMarkdownEditor, RbMarkdownConverter } from "./components/DataEntry/MarkdownEditor";
|
|
@@ -84,7 +84,7 @@ export type { RbMarkdownEditorProps };
|
|
|
84
84
|
export { RbSingleImageUploader };
|
|
85
85
|
export type { RbSingleImageUploaderProps };
|
|
86
86
|
export { RbPageContainer };
|
|
87
|
-
export type { RbPageContainerProps
|
|
87
|
+
export type { RbPageContainerProps };
|
|
88
88
|
export { RbHomePage };
|
|
89
89
|
export type { RbHomePageProps };
|
|
90
90
|
export { getRbInitialState, getRbAppLayout };
|
|
@@ -104,27 +104,27 @@ export { BaseDO, BaseRelativeDO, TokenDO };
|
|
|
104
104
|
export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbResponsive };
|
|
105
105
|
export { zhCN, enUS };
|
|
106
106
|
declare const _default: {
|
|
107
|
-
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) =>
|
|
108
|
-
RbActionBarItem:
|
|
109
|
-
RbActionBar:
|
|
110
|
-
RbThemeSetter:
|
|
111
|
-
RbDataChart:
|
|
112
|
-
RbFileTag:
|
|
113
|
-
RbUserCard:
|
|
114
|
-
RbIconRender:
|
|
115
|
-
RbHtmlRender:
|
|
116
|
-
RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) =>
|
|
107
|
+
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
|
|
108
|
+
RbActionBarItem: React.FC<RbActionBarItemProps>;
|
|
109
|
+
RbActionBar: React.FC<RbActionBarProps>;
|
|
110
|
+
RbThemeSetter: React.FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
|
|
111
|
+
RbDataChart: React.FC<RbDataChartProps>;
|
|
112
|
+
RbFileTag: any;
|
|
113
|
+
RbUserCard: any;
|
|
114
|
+
RbIconRender: any;
|
|
115
|
+
RbHtmlRender: React.FC<RbHtmlRenderProps>;
|
|
116
|
+
RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
|
|
117
117
|
RbUserSelector: (<T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement) & {
|
|
118
118
|
SearchSelect: <T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement;
|
|
119
119
|
};
|
|
120
|
-
RbAttachmentText:
|
|
121
|
-
RbPageContainer:
|
|
122
|
-
RbHomePage:
|
|
120
|
+
RbAttachmentText: React.FC<RbAttachmentTextProps>;
|
|
121
|
+
RbPageContainer: React.FC<RbPageContainerProps>;
|
|
122
|
+
RbHomePage: React.FC<RbHomePageProps>;
|
|
123
123
|
RbMarkdownConverter: import("showdown").Converter;
|
|
124
|
-
RbMarkdownEditor:
|
|
125
|
-
RbSingleImageUploader:
|
|
126
|
-
RbAuthFrame:
|
|
127
|
-
RbBindFrame:
|
|
128
|
-
RbGlobalContext:
|
|
124
|
+
RbMarkdownEditor: React.FC<RbMarkdownEditorProps>;
|
|
125
|
+
RbSingleImageUploader: React.FC<RbSingleImageUploaderProps>;
|
|
126
|
+
RbAuthFrame: React.FC<RbAuthFrameProps>;
|
|
127
|
+
RbBindFrame: React.FC<RbBindFrameProps>;
|
|
128
|
+
RbGlobalContext: Context<RbGlobalStateType>;
|
|
129
129
|
};
|
|
130
130
|
export default _default;
|