@regenbio/regenbio-components-react 1.2.35 → 1.2.36
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/index.d.ts +1 -7
- package/build/index.js +3 -3
- package/build/services/utils/renderUtil.d.ts +1 -1
- package/package.json +1 -1
- package/build/components/ThemeListener/index.d.ts +0 -10
- package/build/components/ThemeListener/type.d.ts +0 -16
- package/build/services/constants/localeConstant.d.ts +0 -4
package/build/index.d.ts
CHANGED
|
@@ -3,8 +3,6 @@ import { RbDataTableProps, RbActionType } from "./components/DataTable/type";
|
|
|
3
3
|
import { RbActionBarItem, RbActionBar } from "./components/ActionBar";
|
|
4
4
|
import { RbActionBarItemProps, RbActionBarProps } from "./components/ActionBar/type";
|
|
5
5
|
import RbThemeSetter from "./components/ThemeSetter";
|
|
6
|
-
import RbThemeListener from "./components/ThemeListener";
|
|
7
|
-
import { RbThemeListenerProps } from "./components/ThemeListener/type";
|
|
8
6
|
import RbDataChart from "./components/DataChart";
|
|
9
7
|
import { RbDataChartProps, RbChartActionType } from "./components/DataChart/type";
|
|
10
8
|
import RbFileTag from "./components/FileTag";
|
|
@@ -40,7 +38,6 @@ import StorageEnum from "./services/enums/storageEnum";
|
|
|
40
38
|
import CommonConstant from "./services/constants/commonConstant";
|
|
41
39
|
import IconConstant from "./services/constants/iconConstant";
|
|
42
40
|
import DbConstant from "./services/constants/dbConstant";
|
|
43
|
-
import LocaleConstant from "./services/constants/localeConstant";
|
|
44
41
|
import { RespDTO, ConstantListItem } from "./services/types/commonType";
|
|
45
42
|
import zhCN from "./locales/zh-CN";
|
|
46
43
|
import enUS from "./locales/en-US";
|
|
@@ -49,8 +46,6 @@ export type { RbDataTableProps, RbActionType };
|
|
|
49
46
|
export { RbActionBarItem, RbActionBar };
|
|
50
47
|
export type { RbActionBarItemProps, RbActionBarProps };
|
|
51
48
|
export { RbThemeSetter };
|
|
52
|
-
export { RbThemeListener };
|
|
53
|
-
export type { RbThemeListenerProps };
|
|
54
49
|
export { RbDataChart };
|
|
55
50
|
export type { RbDataChartProps, RbChartActionType };
|
|
56
51
|
export { RbFileTag };
|
|
@@ -73,7 +68,7 @@ export { RbHomePage };
|
|
|
73
68
|
export type { RbHomePageProps };
|
|
74
69
|
export { DbUtil, ObjectUtil, EventUtil, StorageUtil, ResourceUtil, RenderUtil, StringUtil, NumberUtil, RandomUtil, UnicodeUtil };
|
|
75
70
|
export { EventEnum, StorageEnum };
|
|
76
|
-
export { CommonConstant, IconConstant, DbConstant
|
|
71
|
+
export { CommonConstant, IconConstant, DbConstant };
|
|
77
72
|
export { RespDTO, ConstantListItem };
|
|
78
73
|
export { zhCN, enUS };
|
|
79
74
|
declare const _default: {
|
|
@@ -81,7 +76,6 @@ declare const _default: {
|
|
|
81
76
|
RbActionBarItem: React.FC<RbActionBarItemProps>;
|
|
82
77
|
RbActionBar: React.FC<RbActionBarProps>;
|
|
83
78
|
RbThemeSetter: React.FC;
|
|
84
|
-
RbThemeListener: React.FC<RbThemeListenerProps>;
|
|
85
79
|
RbDataChart: React.FC<RbDataChartProps>;
|
|
86
80
|
RbFileTag: React.FC<RbFileTagProps>;
|
|
87
81
|
RbUserCard: React.FC<RbUserCardProps>;
|