@regenbio/regenbio-components-react 1.4.4 → 1.4.7

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.
@@ -0,0 +1,12 @@
1
+ /**
2
+ * 反馈Hook
3
+ *
4
+ * 因为有很多页面是不置于App.tsx控制下的,所以摘离这部分单独控制全局消息。
5
+ * 为什么要独立控制消息?AntD自带的全局消息是没有兼容当前主题效果的。
6
+ * @param monitorParams 监听参数
7
+ */
8
+ declare const useRbFeedback: (monitorParams?: any) => {
9
+ messageHolder: React.ReactElement<unknown, any>;
10
+ notificationHolder: React.ReactElement<unknown, any>;
11
+ };
12
+ export default useRbFeedback;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regenbio/regenbio-components-react",
3
- "version": "1.4.4",
3
+ "version": "1.4.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },