@regenbio/regenbio-components-react 1.2.84 → 1.2.85
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.
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { RbThemeProps } from "./type";
|
|
2
3
|
/**
|
|
3
4
|
* RB 主题设置器
|
|
4
5
|
*
|
|
5
6
|
* @param props 配置参数
|
|
6
7
|
* @constructor
|
|
7
8
|
*/
|
|
8
|
-
declare const RbThemeSetter: React.FC
|
|
9
|
+
declare const RbThemeSetter: React.FC<RbThemeProps>;
|
|
9
10
|
export default RbThemeSetter;
|
package/build/index.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ declare const _default: {
|
|
|
75
75
|
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
|
|
76
76
|
RbActionBarItem: React.FC<RbActionBarItemProps>;
|
|
77
77
|
RbActionBar: React.FC<RbActionBarProps>;
|
|
78
|
-
RbThemeSetter: React.FC
|
|
78
|
+
RbThemeSetter: React.FC<import("./components/ThemeSetter/type").RbThemeProps>;
|
|
79
79
|
RbDataChart: React.FC<RbDataChartProps>;
|
|
80
80
|
RbFileTag: React.FC<RbFileTagProps>;
|
|
81
81
|
RbUserCard: React.FC<RbUserCardProps>;
|