@regenbio/regenbio-components-react 1.3.60 → 1.3.61
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 +13 -12
- package/build/components/DataDisplay/DataTable/index.d.ts +1 -1
- package/build/components/DataDisplay/DragTable/hook.d.ts +18 -19
- 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 +3 -1
- package/build/components/DataDisplay/HtmlRender/hook.d.ts +1 -1
- package/build/components/DataDisplay/IconRender/index.d.ts +3 -1
- package/build/components/DataDisplay/UserCard/hook.d.ts +5 -5
- package/build/components/DataDisplay/UserCard/index.d.ts +3 -1
- 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 +4 -2
- package/build/components/DataEntry/UserSelector/hook.d.ts +6 -6
- package/build/components/Other/ActionBar/hook.d.ts +8 -3
- 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/HomePage/hook.d.ts +1 -1
- package/build/components/PageLayout/PageContainer/hook.d.ts +4 -3
- package/build/components/PageLayout/PageContainer/type.d.ts +4 -4
- package/build/index.d.ts +18 -18
- package/build/index.js +3 -3
- package/build/services/hooks/useRbResponsive.d.ts +2 -2
- package/build/services/types/commonType.d.ts +0 -4
- package/package.json +7 -3
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
import { RbDataTableProps } from "./type";
|
|
2
|
+
import { ActionType, ProColumns } from "@ant-design/pro-components";
|
|
2
3
|
/**
|
|
3
4
|
* 数据表格Hook
|
|
4
5
|
* @param props 参数
|
|
5
6
|
*/
|
|
6
7
|
declare const useDataTable: <DataSource, U, ValueType>(props: RbDataTableProps<DataSource, U, ValueType>) => {
|
|
7
8
|
requestData: (_params: any, _sort: any, _filter: any) => Promise<any>;
|
|
8
|
-
beforeSearchSubmit:
|
|
9
|
-
executeRecordParams: any
|
|
10
|
-
setCollapsed:
|
|
11
|
-
setParams:
|
|
12
|
-
tableKey:
|
|
9
|
+
beforeSearchSubmit: (_params: U) => true;
|
|
10
|
+
executeRecordParams: (_params: any, _collapsed: boolean) => Promise<void>;
|
|
11
|
+
setCollapsed: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
12
|
+
setParams: import("react").Dispatch<import("react").SetStateAction<U>>;
|
|
13
|
+
tableKey: string;
|
|
13
14
|
styles: {
|
|
14
15
|
customTable: string;
|
|
15
16
|
};
|
|
16
|
-
params:
|
|
17
|
-
actionRef:
|
|
18
|
-
responsive:
|
|
17
|
+
params: U;
|
|
18
|
+
actionRef: import("react").RefObject<ActionType>;
|
|
19
|
+
responsive: boolean;
|
|
19
20
|
form: import("antd").FormInstance<any>;
|
|
20
|
-
collapsed:
|
|
21
|
-
loading:
|
|
22
|
-
columns:
|
|
23
|
-
dataLength:
|
|
21
|
+
collapsed: boolean;
|
|
22
|
+
loading: boolean;
|
|
23
|
+
columns: ProColumns<DataSource, ValueType>[];
|
|
24
|
+
dataLength: number;
|
|
24
25
|
intl: any;
|
|
25
26
|
};
|
|
26
27
|
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>) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default RbDataTable;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { useEffect } from 'react';
|
|
2
1
|
import { RbDragTableProps } from "./type";
|
|
3
2
|
import { ActionType } from "@ant-design/pro-components";
|
|
4
3
|
import { RbActionType } from "../DataTable/type";
|
|
@@ -7,14 +6,14 @@ import { RbActionType } from "../DataTable/type";
|
|
|
7
6
|
* @param props 属性
|
|
8
7
|
*/
|
|
9
8
|
declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => {
|
|
10
|
-
setTableLoading:
|
|
11
|
-
responsive:
|
|
9
|
+
setTableLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
10
|
+
responsive: boolean;
|
|
12
11
|
styles: {
|
|
13
12
|
customTable: string;
|
|
14
13
|
};
|
|
15
|
-
tableLoading:
|
|
14
|
+
tableLoading: boolean;
|
|
16
15
|
restProps: {
|
|
17
|
-
actionRef?:
|
|
16
|
+
actionRef?: import("react").Ref<RbActionType> & import("react").Ref<ActionType>;
|
|
18
17
|
responsive?: boolean;
|
|
19
18
|
loadChange?: (loading: boolean) => void;
|
|
20
19
|
toolbar?: import("@ant-design/pro-components").ListToolBarProps;
|
|
@@ -29,25 +28,25 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
29
28
|
toolbar: JSX.Element | undefined;
|
|
30
29
|
alert: JSX.Element | undefined;
|
|
31
30
|
table: JSX.Element | undefined;
|
|
32
|
-
}) =>
|
|
31
|
+
}) => React.ReactNode;
|
|
33
32
|
tableViewRender?: (props: import("antd").TableProps<DataSource>, defaultDom: JSX.Element) => JSX.Element | undefined;
|
|
34
|
-
tableExtraRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, dataSource: DataSource[]) =>
|
|
35
|
-
searchFormRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, defaultDom: JSX.Element) =>
|
|
33
|
+
tableExtraRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, dataSource: DataSource[]) => React.ReactNode;
|
|
34
|
+
searchFormRender?: (props: import("@ant-design/pro-components").ProTableProps<DataSource, U, ValueType>, defaultDom: JSX.Element) => React.ReactNode;
|
|
36
35
|
postData?: any;
|
|
37
36
|
defaultData?: DataSource[];
|
|
38
37
|
formRef?: import("@ant-design/pro-table/es/components/Form/FormRender").TableFormItem<DataSource_1>["formRef"];
|
|
39
38
|
toolBarRender?: false | ((action: ActionType | undefined, rows: {
|
|
40
39
|
selectedRowKeys?: (string | number)[];
|
|
41
40
|
selectedRows?: DataSource[];
|
|
42
|
-
}) =>
|
|
43
|
-
optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom:
|
|
41
|
+
}) => React.ReactNode[]);
|
|
42
|
+
optionsRender?: (props: import("@ant-design/pro-table/es/components/ToolBar").ToolBarProps<DataSource>, defaultDom: React.ReactNode[]) => React.ReactNode[];
|
|
44
43
|
onLoad?: (dataSource: DataSource[]) => void;
|
|
45
44
|
onLoadingChange?: (loading: boolean | import("antd").SpinProps | undefined) => void;
|
|
46
45
|
onRequestError?: (e: Error) => void;
|
|
47
46
|
polling?: number | ((dataSource: DataSource[]) => number);
|
|
48
47
|
tableClassName?: string;
|
|
49
|
-
tableStyle?:
|
|
50
|
-
headerTitle?:
|
|
48
|
+
tableStyle?: import("react").CSSProperties;
|
|
49
|
+
headerTitle?: React.ReactNode;
|
|
51
50
|
tooltip?: string | import("antd/lib/form/FormItemLabel").LabelTooltipType;
|
|
52
51
|
options?: import("@ant-design/pro-table/es/components/ToolBar").OptionConfig | false;
|
|
53
52
|
search?: false | import("@ant-design/pro-table/es/components/Form/FormRender").SearchConfig;
|
|
@@ -59,7 +58,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
59
58
|
rowSelection?: false | (import("antd/es/table/interface").TableRowSelection<DataSource> & {
|
|
60
59
|
alwaysShowAlert?: boolean;
|
|
61
60
|
});
|
|
62
|
-
style?:
|
|
61
|
+
style?: React.CSSProperties;
|
|
63
62
|
type?: import("@ant-design/pro-components").ProSchemaComponentTypes;
|
|
64
63
|
onSubmit?: (params: U) => void;
|
|
65
64
|
onReset?: () => void;
|
|
@@ -72,7 +71,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
72
71
|
revalidateOnFocus?: boolean;
|
|
73
72
|
defaultSize?: import("antd/lib/button").ButtonSize;
|
|
74
73
|
name?: import("rc-field-form/lib/interface").NamePath;
|
|
75
|
-
ErrorBoundary?:
|
|
74
|
+
ErrorBoundary?: React.ComponentClass<any, any> | false;
|
|
76
75
|
scroll?: import("rc-table").TableProps<RecordType>["scroll"] & {
|
|
77
76
|
scrollToFirstRowOnChange?: boolean;
|
|
78
77
|
};
|
|
@@ -91,14 +90,14 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
91
90
|
title?: import("rc-table/lib/interface").PanelRender<DataSource>;
|
|
92
91
|
prefixCls?: string;
|
|
93
92
|
className?: string;
|
|
94
|
-
children?:
|
|
93
|
+
children?: React.ReactNode;
|
|
95
94
|
rowKey?: string | keyof DataSource | import("rc-table/lib/interface").GetRowKey<DataSource>;
|
|
96
95
|
tableLayout?: import("rc-table/lib/interface").TableLayout;
|
|
97
96
|
expandable?: import("rc-table/lib/interface").ExpandableConfig<DataSource>;
|
|
98
97
|
rowClassName?: string | import("rc-table/lib/interface").RowClassName<DataSource>;
|
|
99
98
|
footer?: import("rc-table/lib/interface").PanelRender<DataSource>;
|
|
100
|
-
summary?: (data: readonly DataSource[]) =>
|
|
101
|
-
caption?:
|
|
99
|
+
summary?: (data: readonly DataSource[]) => React.ReactNode;
|
|
100
|
+
caption?: React.ReactNode;
|
|
102
101
|
id?: string;
|
|
103
102
|
showHeader?: boolean;
|
|
104
103
|
components?: import("rc-table/lib/interface").TableComponents<DataSource>;
|
|
@@ -107,7 +106,7 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
107
106
|
direction?: import("rc-table/lib/interface").Direction;
|
|
108
107
|
sticky?: boolean | import("rc-table/lib/interface").TableSticky;
|
|
109
108
|
rowHoverable?: boolean;
|
|
110
|
-
onScroll?:
|
|
109
|
+
onScroll?: React.UIEventHandler<HTMLDivElement>;
|
|
111
110
|
tailor?: boolean;
|
|
112
111
|
getContainerWidth?: (ele: HTMLElement, width: number) => number;
|
|
113
112
|
dropdownPrefixCls?: string;
|
|
@@ -123,6 +122,6 @@ declare const useDragTable: <DataSource, U, ValueType = "text">(props: RbDragTab
|
|
|
123
122
|
showSorterTooltip?: boolean | import("antd/es/table/interface").SorterTooltipProps;
|
|
124
123
|
virtual?: boolean;
|
|
125
124
|
};
|
|
126
|
-
actionRef:
|
|
125
|
+
actionRef: import("react").RefObject<ActionType>;
|
|
127
126
|
};
|
|
128
127
|
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>) => import("react/jsx-runtime").JSX.Element;
|
|
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: (filename: string) => string;
|
|
9
|
+
getIconByFilename: (filename: string) => import("react/jsx-runtime").JSX.Element;
|
|
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: any;
|
|
8
|
-
onShowTooltip: any
|
|
9
|
-
getNameLabel:
|
|
7
|
+
getAvatar: () => any;
|
|
8
|
+
onShowTooltip: (open: any) => Promise<void>;
|
|
9
|
+
getNameLabel: string;
|
|
10
10
|
userDetail: any;
|
|
11
|
-
loading:
|
|
11
|
+
loading: boolean;
|
|
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: boolean;
|
|
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: any
|
|
8
|
+
globalFunctions: import("../../..").RbGlobalFunctionType;
|
|
9
|
+
inputRef: import("react").RefObject<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: "write" | "preview";
|
|
9
|
+
setSelectedTab: import("react").Dispatch<import("react").SetStateAction<"write" | "preview">>;
|
|
10
10
|
};
|
|
11
11
|
export default useMarkdownEditor;
|
|
@@ -5,7 +5,9 @@ import { RbSingleImageUploaderExtraProps, RbSingleImageUploaderProps } from "./t
|
|
|
5
5
|
*/
|
|
6
6
|
declare const useSingleImageUploader: (props: RbSingleImageUploaderProps & RbSingleImageUploaderExtraProps) => {
|
|
7
7
|
intl: any;
|
|
8
|
-
globalFunctions:
|
|
9
|
-
onFileChange:
|
|
8
|
+
globalFunctions: import("../../../..").RbGlobalFunctionType;
|
|
9
|
+
onFileChange: ({ file }: {
|
|
10
|
+
file: any;
|
|
11
|
+
}) => void;
|
|
10
12
|
};
|
|
11
13
|
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: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
8
8
|
onFuzzy: (param: any) => Promise<void>;
|
|
9
|
-
start:
|
|
10
|
-
loading:
|
|
11
|
-
context:
|
|
12
|
-
data: any;
|
|
9
|
+
start: boolean;
|
|
10
|
+
loading: boolean;
|
|
11
|
+
context: import("@ant-design/pro-form/es/FieldContext").FiledContextProps;
|
|
12
|
+
data: any[];
|
|
13
13
|
intl: any;
|
|
14
|
-
keywords:
|
|
14
|
+
keywords: string;
|
|
15
15
|
};
|
|
16
16
|
export default useUserSelector;
|
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RbActionBarItemProps, RbActionBarProps } from "./type";
|
|
3
|
+
import { RbActionBarItem } from "./index";
|
|
2
4
|
/**
|
|
3
5
|
* 操作栏Hook
|
|
4
6
|
* @param props 属性
|
|
5
7
|
*/
|
|
6
8
|
declare const useActionBar: (props: RbActionBarProps) => {
|
|
7
|
-
operationList: any;
|
|
8
|
-
extendList:
|
|
9
|
+
operationList: React.ReactElement<React.FC<RbActionBarItemProps>, string | React.JSXElementConstructor<any>>[];
|
|
10
|
+
extendList: {
|
|
11
|
+
key: number;
|
|
12
|
+
name: React.ReactElement<typeof RbActionBarItem>;
|
|
13
|
+
}[];
|
|
9
14
|
};
|
|
10
15
|
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: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
8
|
+
exceptionMsg: string;
|
|
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: import("react").Dispatch<import("react").SetStateAction<number>>;
|
|
8
|
+
setLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
9
|
+
steps: any[];
|
|
10
|
+
mailStep: number;
|
|
11
|
+
externalStep: number;
|
|
12
|
+
current: number;
|
|
13
|
+
loading: boolean;
|
|
14
14
|
externalBind: any;
|
|
15
15
|
};
|
|
16
16
|
export default useBindFrame;
|
|
@@ -4,8 +4,9 @@ import { RbPageContainerProps } from "./type";
|
|
|
4
4
|
* @param props 属性
|
|
5
5
|
*/
|
|
6
6
|
declare const usePageContainer: (props: RbPageContainerProps) => {
|
|
7
|
-
mode:
|
|
8
|
-
loading:
|
|
9
|
-
initialState:
|
|
7
|
+
mode: "light" | "realDark";
|
|
8
|
+
loading: boolean;
|
|
9
|
+
initialState: import("../../..").RbInitialStateRespProps;
|
|
10
|
+
headerHeight: number;
|
|
10
11
|
};
|
|
11
12
|
export default usePageContainer;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageContainer";
|
|
2
|
-
import
|
|
2
|
+
import { Ref } from "react";
|
|
3
|
+
import Scrollbars from "react-custom-scrollbars";
|
|
3
4
|
/**
|
|
4
5
|
* 页面容器属性
|
|
5
6
|
*/
|
|
@@ -17,8 +18,7 @@ export type RbPageContainerProps = {
|
|
|
17
18
|
*/
|
|
18
19
|
loadDuringAnimate?: boolean;
|
|
19
20
|
/**
|
|
20
|
-
*
|
|
21
|
-
* @param content 内容
|
|
21
|
+
* 滚动条Ref
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
scrollbarsRef?: Ref<Scrollbars>;
|
|
24
24
|
} & PageContainerProps;
|
package/build/index.d.ts
CHANGED
|
@@ -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>) => import("react/jsx-runtime").JSX.Element;
|
|
108
|
+
RbActionBarItem: import("react").FC<RbActionBarItemProps>;
|
|
109
|
+
RbActionBar: import("react").FC<RbActionBarProps>;
|
|
110
|
+
RbThemeSetter: import("react").FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
|
|
111
|
+
RbDataChart: import("react").FC<RbDataChartProps>;
|
|
112
|
+
RbFileTag: import("react").NamedExoticComponent<RbFileTagProps>;
|
|
113
|
+
RbUserCard: import("react").NamedExoticComponent<RbUserCardProps>;
|
|
114
|
+
RbIconRender: import("react").NamedExoticComponent<RbIconRenderProps>;
|
|
115
|
+
RbHtmlRender: import("react").FC<RbHtmlRenderProps>;
|
|
116
|
+
RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
|
|
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: import("react").FC<RbAttachmentTextProps>;
|
|
121
|
+
RbPageContainer: import("react").FC<RbPageContainerProps>;
|
|
122
|
+
RbHomePage: import("react").FC<RbHomePageProps>;
|
|
123
123
|
RbMarkdownConverter: import("showdown").Converter;
|
|
124
|
-
RbMarkdownEditor:
|
|
125
|
-
RbSingleImageUploader:
|
|
126
|
-
RbAuthFrame:
|
|
127
|
-
RbBindFrame:
|
|
128
|
-
RbGlobalContext: Context<RbGlobalStateType>;
|
|
124
|
+
RbMarkdownEditor: import("react").FC<RbMarkdownEditorProps>;
|
|
125
|
+
RbSingleImageUploader: import("react").FC<RbSingleImageUploaderProps>;
|
|
126
|
+
RbAuthFrame: import("react").FC<RbAuthFrameProps>;
|
|
127
|
+
RbBindFrame: import("react").FC<RbBindFrameProps>;
|
|
128
|
+
RbGlobalContext: import("react").Context<RbGlobalStateType>;
|
|
129
129
|
};
|
|
130
130
|
export default _default;
|