@regenbio/regenbio-components-react 1.3.68 → 1.3.70
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/HomePage/hook.d.ts +1 -1
- package/build/components/PageLayout/PageContainer/hook.d.ts +5 -9
- package/build/components/PageLayout/PageContainer/type.d.ts +1 -2
- package/build/index.d.ts +18 -18
- package/build/index.js +3 -3
- 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;
|
|
@@ -4,14 +4,10 @@ import { RbPageContainerProps } from "./type";
|
|
|
4
4
|
* @param props 属性
|
|
5
5
|
*/
|
|
6
6
|
declare const usePageContainer: (props: RbPageContainerProps) => {
|
|
7
|
-
mode:
|
|
8
|
-
loading:
|
|
9
|
-
initialState:
|
|
10
|
-
headerHeight:
|
|
11
|
-
token:
|
|
12
|
-
theme: import("@ant-design/cssinjs").Theme<import("antd/es/theme/internal").SeedToken, import("antd/es/theme/internal").AliasToken>;
|
|
13
|
-
token: import("antd").GlobalToken;
|
|
14
|
-
hashId: string;
|
|
15
|
-
};
|
|
7
|
+
mode: any;
|
|
8
|
+
loading: any;
|
|
9
|
+
initialState: any;
|
|
10
|
+
headerHeight: any;
|
|
11
|
+
token: import("antd").GlobalToken;
|
|
16
12
|
};
|
|
17
13
|
export default usePageContainer;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageContainer";
|
|
2
2
|
import { Ref } from "react";
|
|
3
|
-
import Scrollbars from "react-custom-scrollbars";
|
|
4
3
|
/**
|
|
5
4
|
* 页面容器属性
|
|
6
5
|
*/
|
|
@@ -29,5 +28,5 @@ export type RbPageContainerProps = {
|
|
|
29
28
|
/**
|
|
30
29
|
* 滚动条Ref
|
|
31
30
|
*/
|
|
32
|
-
scrollbarsRef?: Ref<
|
|
31
|
+
scrollbarsRef?: Ref<HTMLDivElement>;
|
|
33
32
|
} & PageContainerProps;
|
package/build/index.d.ts
CHANGED
|
@@ -103,27 +103,27 @@ export { BaseDO, BaseRelativeDO, TokenDO };
|
|
|
103
103
|
export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification };
|
|
104
104
|
export { zhCN, enUS };
|
|
105
105
|
declare const _default: {
|
|
106
|
-
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) =>
|
|
107
|
-
RbActionBarItem:
|
|
108
|
-
RbActionBar:
|
|
109
|
-
RbThemeSetter:
|
|
110
|
-
RbDataChart:
|
|
111
|
-
RbFileTag:
|
|
112
|
-
RbUserCard:
|
|
113
|
-
RbIconRender:
|
|
114
|
-
RbHtmlRender:
|
|
115
|
-
RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) =>
|
|
106
|
+
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
|
|
107
|
+
RbActionBarItem: React.FC<RbActionBarItemProps>;
|
|
108
|
+
RbActionBar: React.FC<RbActionBarProps>;
|
|
109
|
+
RbThemeSetter: React.FC<import("./components/Other/ThemeSetter/type").RbThemeProps>;
|
|
110
|
+
RbDataChart: React.FC<RbDataChartProps>;
|
|
111
|
+
RbFileTag: any;
|
|
112
|
+
RbUserCard: any;
|
|
113
|
+
RbIconRender: any;
|
|
114
|
+
RbHtmlRender: React.FC<RbHtmlRenderProps>;
|
|
115
|
+
RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
|
|
116
116
|
RbUserSelector: (<T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement) & {
|
|
117
117
|
SearchSelect: <T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement;
|
|
118
118
|
};
|
|
119
|
-
RbAttachmentText:
|
|
120
|
-
RbPageContainer:
|
|
121
|
-
RbHomePage:
|
|
119
|
+
RbAttachmentText: React.FC<RbAttachmentTextProps>;
|
|
120
|
+
RbPageContainer: React.FC<RbPageContainerProps>;
|
|
121
|
+
RbHomePage: React.FC<RbHomePageProps>;
|
|
122
122
|
RbMarkdownConverter: import("showdown").Converter;
|
|
123
|
-
RbMarkdownEditor:
|
|
124
|
-
RbSingleImageUploader:
|
|
125
|
-
RbAuthFrame:
|
|
126
|
-
RbBindFrame:
|
|
127
|
-
RbGlobalContext:
|
|
123
|
+
RbMarkdownEditor: React.FC<RbMarkdownEditorProps>;
|
|
124
|
+
RbSingleImageUploader: React.FC<RbSingleImageUploaderProps>;
|
|
125
|
+
RbAuthFrame: React.FC<RbAuthFrameProps>;
|
|
126
|
+
RbBindFrame: React.FC<RbBindFrameProps>;
|
|
127
|
+
RbGlobalContext: Context<RbGlobalStateType>;
|
|
128
128
|
};
|
|
129
129
|
export default _default;
|