@regenbio/regenbio-components-react 1.3.42 → 1.3.44
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/DataChart/hook.d.ts +2 -2
- package/build/components/DataDisplay/DataChart/type.d.ts +1 -2
- package/build/components/DataDisplay/DataTable/hook.d.ts +13 -12
- package/build/components/DataDisplay/DataTable/index.d.ts +1 -1
- package/build/components/DataDisplay/DragTable/hook.d.ts +18 -19
- package/build/components/DataDisplay/DragTable/index.d.ts +1 -1
- package/build/components/DataDisplay/FileTag/hook.d.ts +2 -2
- package/build/components/DataDisplay/FileTag/index.d.ts +3 -1
- package/build/components/DataDisplay/HtmlRender/hook.d.ts +1 -1
- package/build/components/DataDisplay/IconRender/index.d.ts +3 -1
- package/build/components/DataDisplay/UserCard/hook.d.ts +5 -5
- package/build/components/DataDisplay/UserCard/index.d.ts +3 -1
- package/build/components/DataEntry/AttachmentText/hook.d.ts +2 -2
- package/build/components/DataEntry/MarkdownEditor/hook.d.ts +2 -2
- package/build/components/DataEntry/Uploader/SingleImageUploader/hook.d.ts +4 -2
- package/build/components/DataEntry/Uploader/SingleImageUploader/type.d.ts +1 -1
- package/build/components/DataEntry/UserSelector/hook.d.ts +6 -6
- package/build/components/Other/ActionBar/hook.d.ts +8 -3
- package/build/components/Other/GlobalContext/index.d.ts +1 -1
- package/build/components/Other/LoginLoad/AuthFrame/hook.d.ts +2 -2
- package/build/components/Other/LoginLoad/BindFrame/hook.d.ts +7 -7
- package/build/components/Other/ThemeSetter/hook.d.ts +1 -1
- package/build/components/PageLayout/HomePage/hook.d.ts +1 -1
- package/build/components/PageLayout/PageContainer/hook.d.ts +2 -2
- package/build/index.d.ts +18 -18
- package/build/index.js +3 -3
- package/build/services/hooks/useRbResponsive.d.ts +2 -2
- package/build/services/types/commonType.d.ts +5 -1
- package/package.json +4 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { Settings as LayoutSettings } from "@ant-design/pro-layout";
|
|
2
2
|
import { RbCurrentTheme, RbCurrentUser } from "../../components/PageLayout/AppLayout/interface";
|
|
3
|
+
import { ProLayoutProps } from "@ant-design/pro-components";
|
|
3
4
|
/**
|
|
4
5
|
* 响应结果传输类
|
|
5
6
|
*/
|
|
@@ -73,7 +74,10 @@ export type RbInitialStateRespProps = {
|
|
|
73
74
|
/**
|
|
74
75
|
* 配置信息
|
|
75
76
|
*/
|
|
76
|
-
settings?:
|
|
77
|
+
settings?: ProLayoutProps & {
|
|
78
|
+
pwa?: boolean;
|
|
79
|
+
logo?: string;
|
|
80
|
+
};
|
|
77
81
|
/**
|
|
78
82
|
* 当前用户信息
|
|
79
83
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regenbio/regenbio-components-react",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.44",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -55,6 +55,8 @@
|
|
|
55
55
|
"dexie": "^4.0.11",
|
|
56
56
|
"eventemitter3": "^5.0.1",
|
|
57
57
|
"querystring": "^0.2.1",
|
|
58
|
-
"uuid": "^11.0.3"
|
|
58
|
+
"uuid": "^11.0.3",
|
|
59
|
+
"react-custom-scrollbars": "^4.2.1",
|
|
60
|
+
"@types/react-custom-scrollbars": "^4.0.13"
|
|
59
61
|
}
|
|
60
62
|
}
|