@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.
@@ -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;
@@ -5,6 +5,11 @@ import Scrollbars from "react-custom-scrollbars";
5
5
  * 页面容器属性
6
6
  */
7
7
  export type RbPageContainerProps = {
8
+ /**
9
+ * 响应式改变回调
10
+ * @param responive 响应式状态
11
+ */
12
+ onResponsive?: (responive: any) => void;
8
13
  /**
9
14
  * 水印内容
10
15
  */
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, useRbResponsive };
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;