@regenbio/regenbio-components-react 1.3.39 → 1.3.41

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.
@@ -3,11 +3,6 @@ import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageCon
3
3
  * 页面容器属性
4
4
  */
5
5
  export type RbPageContainerProps = {
6
- /**
7
- * 宽度改变回调
8
- * @param width 宽度
9
- */
10
- onResize?: (width: any) => void;
11
6
  /**
12
7
  * 水印内容
13
8
  */
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;