@regenbio/regenbio-components-react 1.0.10 → 1.0.12
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 +1 -18
- package/build/index.js +2 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1,22 +1,5 @@
|
|
|
1
|
-
import RbDataTable from "./components/DataTable/index";
|
|
2
|
-
import RbPdfPreviewer from "./components/PdfPreviewer/index";
|
|
3
|
-
import DbUtil from "./services/utils/dbUtil";
|
|
4
|
-
import ObjectUtil from "./services/utils/objectUtil";
|
|
5
|
-
import zhCN from "./locales/zh-CN";
|
|
6
|
-
import enUS from "./locales/en-US";
|
|
7
|
-
export * from "./components/DataTable";
|
|
8
|
-
export * from "./components/PdfPreviewer";
|
|
9
|
-
export { RbDataTable, RbPdfPreviewer };
|
|
10
|
-
export type * from "./components/DataTable/type";
|
|
11
|
-
export type * from "./components/PdfPreviewer/type";
|
|
12
|
-
export * from "./services/utils/dbUtil";
|
|
13
|
-
export * from "./services/utils/objectUtil";
|
|
14
|
-
export { DbUtil, ObjectUtil };
|
|
15
|
-
export * from "./locales/zh-CN";
|
|
16
|
-
export * from "./locales/en-US";
|
|
17
|
-
export { zhCN, enUS };
|
|
18
1
|
declare const _default: {
|
|
19
2
|
RbDataTable: <DataSource, U, ValueType = "text">(props: import("./components/DataTable/type").RbDataTableProps<DataSource, U, ValueType>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
|
|
3
|
+
Test: import("react").FC<import("./components/PdfPreviewer/type").RbPdfPreviewerProps>;
|
|
21
4
|
};
|
|
22
5
|
export default _default;
|