@regenbio/regenbio-components-react 1.2.30 → 1.2.32

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.
@@ -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>) => import("react/jsx-runtime").JSX.Element;
8
+ declare const RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
9
9
  export default RbDataTable;
@@ -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>) => import("react/jsx-runtime").JSX.Element;
8
+ declare const RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
9
9
  export default RbDragTable;
package/build/index.d.ts CHANGED
@@ -62,17 +62,17 @@ export { CommonConstant, IconConstant, DbConstant, LocaleConstant };
62
62
  export { RespDTO, ConstantListItem };
63
63
  export { zhCN, enUS };
64
64
  declare const _default: {
65
- RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
66
- RbActionBarItem: import("react").FC<RbActionBarItemProps>;
67
- RbActionBar: import("react").FC<RbActionBarProps>;
68
- RbThemeSetter: import("react").FC<{}>;
69
- RbThemeListener: import("react").FC<RbThemeListenerProps>;
70
- RbDataChart: import("react").FC<RbDataChartProps>;
71
- RbFileTag: import("react").FC<RbFileTagProps>;
72
- RbUserCard: import("react").FC<RbUserCardProps>;
73
- RbIconRender: import("react").FC<RbIconRenderProps>;
74
- RbHtmlRender: import("react").FC<RbHtmlRenderProps>;
75
- RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
65
+ RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
66
+ RbActionBarItem: React.FC<RbActionBarItemProps>;
67
+ RbActionBar: React.FC<RbActionBarProps>;
68
+ RbThemeSetter: React.FC;
69
+ RbThemeListener: React.FC<RbThemeListenerProps>;
70
+ RbDataChart: React.FC<RbDataChartProps>;
71
+ RbFileTag: React.FC<RbFileTagProps>;
72
+ RbUserCard: React.FC<RbUserCardProps>;
73
+ RbIconRender: React.FC<RbIconRenderProps>;
74
+ RbHtmlRender: React.FC<RbHtmlRenderProps>;
75
+ RbDragTable: <DataSource, U, ValueType = "text">(props: RbDragTableProps<DataSource, U, ValueType>) => any;
76
76
  RbUserSelector: (<T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement) & {
77
77
  SearchSelect: <T, OptionType extends import("rc-cascader").BaseOptionType = any>(props: RbUserSelectorProps<T, OptionType>) => React.ReactElement;
78
78
  };