@regenbio/regenbio-components-react 1.3.62 → 1.3.64
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/PageLayout/PageContainer/hook.d.ts +5 -0
- package/build/components/PageLayout/PageContainer/type.d.ts +5 -0
- package/build/index.d.ts +1 -2
- package/build/index.js +3 -3
- package/build/services/enums/eventEnum.d.ts +1 -5
- package/build/services/enums/storageEnum.d.ts +0 -4
- package/build/services/utils/eventUtil.d.ts +0 -1
- package/build/services/utils/storageUtil.d.ts +0 -2
- package/package.json +1 -1
- package/build/services/hooks/useRbResponsive.d.ts +0 -9
|
@@ -8,5 +8,10 @@ declare const usePageContainer: (props: RbPageContainerProps) => {
|
|
|
8
8
|
loading: boolean;
|
|
9
9
|
initialState: import("../../..").RbInitialStateRespProps;
|
|
10
10
|
headerHeight: number;
|
|
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
|
+
};
|
|
11
16
|
};
|
|
12
17
|
export default usePageContainer;
|
package/build/index.d.ts
CHANGED
|
@@ -52,7 +52,6 @@ import useRbValueEnum from "./services/hooks/useRbValueEnum";
|
|
|
52
52
|
import useRbAuthorize from "./services/hooks/useRbAuthorize";
|
|
53
53
|
import useRbMessage from "./services/hooks/useRbMessage";
|
|
54
54
|
import useRbNotification from "./services/hooks/useRbNotification";
|
|
55
|
-
import useRbResponsive from "./services/hooks/useRbResponsive";
|
|
56
55
|
import CommonConstant from "./services/constants/commonConstant";
|
|
57
56
|
import IconConstant from "./services/constants/iconConstant";
|
|
58
57
|
import DbConstant from "./services/constants/dbConstant";
|
|
@@ -101,7 +100,7 @@ export { EventEnum, StorageEnum };
|
|
|
101
100
|
export { CommonConstant, IconConstant, DbConstant };
|
|
102
101
|
export { RespDTO, ConstantListItem, DictListItem, PageParams, RbInitialStateReqProps, RbInitialStateRespProps, RbGlobalStateType, RbGlobalFunctionType };
|
|
103
102
|
export { BaseDO, BaseRelativeDO, TokenDO };
|
|
104
|
-
export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification
|
|
103
|
+
export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification };
|
|
105
104
|
export { zhCN, enUS };
|
|
106
105
|
declare const _default: {
|
|
107
106
|
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
|