@regenbio/regenbio-components-react 1.4.10 → 1.4.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.
- package/build/index.d.ts +10 -0
- package/build/index.js +3 -3
- package/build/index.js.LICENSE.txt +22 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -33,6 +33,10 @@ import { RbCurrentUser, RbCurrentTheme } from "./components/PageLayout/AppLayout
|
|
|
33
33
|
import RbAuthFrame from "./components/Other/LoginLoad/AuthFrame";
|
|
34
34
|
import { RbAuthFrameProps } from "./components/Other/LoginLoad/AuthFrame/type";
|
|
35
35
|
import RbBindFrame from "./components/Other/LoginLoad/BindFrame";
|
|
36
|
+
import { RbPdfDrawerProps } from "./components/DataDisplay/PdfDrawer/type";
|
|
37
|
+
import RbPdfDrawer from "./components/DataDisplay/PdfDrawer/index";
|
|
38
|
+
import { RbLazyFrameProps } from "./components/DataDisplay/LazyFrame/type";
|
|
39
|
+
import RbLazyFrame from "./components/DataDisplay/LazyFrame/index";
|
|
36
40
|
import { RbBindFrameProps } from "./components/Other/LoginLoad/BindFrame/type";
|
|
37
41
|
import { RbGlobalContext, useGlobalState } from "./components/Other/GlobalContext";
|
|
38
42
|
import DbUtil from "./services/utils/dbUtil";
|
|
@@ -75,6 +79,10 @@ export { RbHtmlRender };
|
|
|
75
79
|
export type { RbHtmlRenderProps };
|
|
76
80
|
export { RbDragTable };
|
|
77
81
|
export type { RbDragTableProps };
|
|
82
|
+
export { RbPdfDrawer };
|
|
83
|
+
export type { RbPdfDrawerProps };
|
|
84
|
+
export { RbLazyFrame };
|
|
85
|
+
export type { RbLazyFrameProps };
|
|
78
86
|
export { RbUserSelector };
|
|
79
87
|
export type { RbUserSelectorProps };
|
|
80
88
|
export { RbAttachmentText };
|
|
@@ -126,5 +134,7 @@ declare const _default: {
|
|
|
126
134
|
RbAuthFrame: React.FC<RbAuthFrameProps>;
|
|
127
135
|
RbBindFrame: React.FC<RbBindFrameProps>;
|
|
128
136
|
RbGlobalContext: Context<RbGlobalStateType>;
|
|
137
|
+
RbLazyFrame: React.FC<RbLazyFrameProps>;
|
|
138
|
+
RbPdfDrawer: React.FC<RbPdfDrawerProps>;
|
|
129
139
|
};
|
|
130
140
|
export default _default;
|