@regenbio/regenbio-components-react 1.2.10 → 1.2.11
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,16 @@
|
|
|
1
|
+
import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageContainer";
|
|
2
|
+
/**
|
|
3
|
+
* 容器参数
|
|
4
|
+
*/
|
|
5
|
+
export type RbPageContainerProps = {
|
|
6
|
+
/**
|
|
7
|
+
* 宽度改变回调
|
|
8
|
+
*
|
|
9
|
+
* @param width 宽度
|
|
10
|
+
*/
|
|
11
|
+
onResize?: (width: any) => void;
|
|
12
|
+
/**
|
|
13
|
+
* 水印内容
|
|
14
|
+
*/
|
|
15
|
+
watermark?: string | string[];
|
|
16
|
+
} & PageContainerProps;
|
package/build/index.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ import RbIconRender from "./components/IconRender";
|
|
|
15
15
|
import { RbIconRenderProps } from "./components/IconRender/type";
|
|
16
16
|
import RbHtmlRender from "./components/HtmlRender";
|
|
17
17
|
import { RbHtmlRenderProps } from "./components/HtmlRender/type";
|
|
18
|
+
import RbPageContainer from "./components/PageContainer";
|
|
19
|
+
import { RbPageContainerProps } from "./components/PageContainer/type";
|
|
18
20
|
import DbUtil from "./services/utils/dbUtil";
|
|
19
21
|
import ObjectUtil from "./services/utils/objectUtil";
|
|
20
22
|
import EventUtil from "./services/utils/eventUtil";
|
|
@@ -45,6 +47,8 @@ export { RbIconRender };
|
|
|
45
47
|
export type { RbIconRenderProps };
|
|
46
48
|
export { RbHtmlRender };
|
|
47
49
|
export type { RbHtmlRenderProps };
|
|
50
|
+
export { RbPageContainer };
|
|
51
|
+
export type { RbPageContainerProps };
|
|
48
52
|
export { DbUtil, ObjectUtil, EventUtil, StorageUtil, ResourceUtil, RenderUtil };
|
|
49
53
|
export { EventEnum, StorageEnum };
|
|
50
54
|
export { CommonConstant, IconConstant };
|