@regenbio/regenbio-components-react 1.4.28 → 1.4.30

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.
@@ -89,4 +89,8 @@ export type RbDraggableUploaderProps = {
89
89
  * @param msg 失败消息
90
90
  */
91
91
  afterFail?: (msg: string) => void;
92
+ /**
93
+ * 子节点
94
+ */
95
+ children?: React.ReactNode;
92
96
  };
package/build/index.d.ts CHANGED
@@ -55,6 +55,7 @@ import useRbAuthorize from "./services/hooks/useRbAuthorize";
55
55
  import useRbMessage from "./services/hooks/feedback/useRbMessage";
56
56
  import useRbNotification from "./services/hooks/feedback/useRbNotification";
57
57
  import useRbFeedback from "./services/hooks/feedback/useRbFeedback";
58
+ import useRbDesensitization from "./services/hooks/useRbDesensitization";
58
59
  import CommonConstant from "./services/constants/commonConstant";
59
60
  import IconConstant from "./services/constants/iconConstant";
60
61
  import DbConstant from "./services/constants/dbConstant";
@@ -105,7 +106,7 @@ export { EventEnum, StorageEnum };
105
106
  export { CommonConstant, IconConstant, DbConstant };
106
107
  export { RespDTO, ConstantListItem, DictListItem, PageParams, RbInitialStateReqProps, RbInitialStateRespProps, RbGlobalStateType, RbGlobalFunctionType };
107
108
  export { BaseDO, BaseRelativeDO, TokenDO };
108
- export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbFeedback };
109
+ export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbFeedback, useRbDesensitization };
109
110
  export { zhCN, enUS };
110
111
  declare const _default: {
111
112
  RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;