@regenbio/regenbio-components-react 1.3.39 → 1.3.40
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/AppLayout/type.d.ts +4 -0
- package/build/components/PageLayout/PageContainer/type.d.ts +0 -5
- package/build/index.d.ts +4 -1
- package/build/index.js +3 -3
- package/build/services/enums/eventEnum.d.ts +5 -1
- package/build/services/enums/storageEnum.d.ts +4 -0
- package/build/services/hooks/useRbMessage.d.ts +11 -0
- package/build/services/hooks/useRbNotification.d.ts +11 -0
- package/build/services/hooks/useRbResponsive.d.ts +7 -0
- package/build/services/utils/eventUtil.d.ts +1 -0
- package/build/services/utils/storageUtil.d.ts +2 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -50,6 +50,9 @@ import StorageEnum from "./services/enums/storageEnum";
|
|
|
50
50
|
import useRbDictionary from "./services/hooks/useRbDictionary";
|
|
51
51
|
import useRbValueEnum from "./services/hooks/useRbValueEnum";
|
|
52
52
|
import useRbAuthorize from "./services/hooks/useRbAuthorize";
|
|
53
|
+
import useRbMessage from "./services/hooks/useRbMessage";
|
|
54
|
+
import useRbNotification from "./services/hooks/useRbNotification";
|
|
55
|
+
import useRbResponsive from "./services/hooks/useRbResponsive";
|
|
53
56
|
import CommonConstant from "./services/constants/commonConstant";
|
|
54
57
|
import IconConstant from "./services/constants/iconConstant";
|
|
55
58
|
import DbConstant from "./services/constants/dbConstant";
|
|
@@ -98,7 +101,7 @@ export { EventEnum, StorageEnum };
|
|
|
98
101
|
export { CommonConstant, IconConstant, DbConstant };
|
|
99
102
|
export { RespDTO, ConstantListItem, DictListItem, PageParams, RbInitialStateReqProps, RbInitialStateRespProps, RbGlobalStateType, RbGlobalFunctionType };
|
|
100
103
|
export { BaseDO, BaseRelativeDO, TokenDO };
|
|
101
|
-
export { useRbDictionary, useRbValueEnum, useRbAuthorize };
|
|
104
|
+
export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbResponsive };
|
|
102
105
|
export { zhCN, enUS };
|
|
103
106
|
declare const _default: {
|
|
104
107
|
RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;
|