@regenbio/regenbio-components-react 1.4.6 → 1.4.8
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/DataDisplay/PdfDrawer/hooks/useLazyFrame.d.ts +8 -0
- package/build/components/DataDisplay/PdfDrawer/hooks/usePdfDrawer.d.ts +40 -0
- package/build/components/DataDisplay/PdfDrawer/index.d.ts +17 -0
- package/build/components/DataDisplay/PdfDrawer/locales/en-US.d.ts +13 -0
- package/build/components/DataDisplay/PdfDrawer/locales/zh-CN.d.ts +13 -0
- package/build/components/DataDisplay/PdfDrawer/type.d.ts +57 -0
- package/build/components/Dev/index.d.ts +2 -0
- package/build/index.d.ts +10 -3
- package/build/index.js +3 -3
- package/build/index.js.LICENSE.txt +22 -0
- package/build/services/hooks/feedback/useRbFeedback.d.ts +12 -0
- package/package.json +4 -2
- /package/build/services/hooks/{useRbMessage.d.ts → feedback/useRbMessage.d.ts} +0 -0
- /package/build/services/hooks/{useRbNotification.d.ts → feedback/useRbNotification.d.ts} +0 -0
|
@@ -95,6 +95,28 @@
|
|
|
95
95
|
* LICENSE file in the root directory of this source tree.
|
|
96
96
|
*/
|
|
97
97
|
|
|
98
|
+
/**
|
|
99
|
+
* @licstart The following is the entire license notice for the
|
|
100
|
+
* JavaScript code in this page
|
|
101
|
+
*
|
|
102
|
+
* Copyright 2024 Mozilla Foundation
|
|
103
|
+
*
|
|
104
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
105
|
+
* you may not use this file except in compliance with the License.
|
|
106
|
+
* You may obtain a copy of the License at
|
|
107
|
+
*
|
|
108
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
109
|
+
*
|
|
110
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
111
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
112
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
113
|
+
* See the License for the specific language governing permissions and
|
|
114
|
+
* limitations under the License.
|
|
115
|
+
*
|
|
116
|
+
* @licend The above is the entire license notice for the
|
|
117
|
+
* JavaScript code in this page
|
|
118
|
+
*/
|
|
119
|
+
|
|
98
120
|
/** */
|
|
99
121
|
|
|
100
122
|
/** */
|
|
@@ -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.
|
|
3
|
+
"version": "1.4.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -46,7 +46,9 @@
|
|
|
46
46
|
"ts-loader": "^9.5.1",
|
|
47
47
|
"typescript": "^5.7.2",
|
|
48
48
|
"webpack": "^5.97.1",
|
|
49
|
-
"webpack-cli": "^6.0.1"
|
|
49
|
+
"webpack-cli": "^6.0.1",
|
|
50
|
+
"react-custom-scrollbars": "^4.2.1",
|
|
51
|
+
"react-pdf": "^9.1.0"
|
|
50
52
|
},
|
|
51
53
|
"dependencies": {
|
|
52
54
|
"@antv/g2": "^5.2.7",
|
|
File without changes
|
|
File without changes
|