bmj-ui 1.0.13 → 1.0.14
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/dist/index.d.ts +37 -746
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/rollup.config.js +3 -0
- package/src/index.ts +14 -14
- package/tsconfig.json +1 -1
package/package.json
CHANGED
package/rollup.config.js
CHANGED
|
@@ -4,6 +4,7 @@ import typescript from "@rollup/plugin-typescript";
|
|
|
4
4
|
import dts from "rollup-plugin-dts";
|
|
5
5
|
import terser from "@rollup/plugin-terser";
|
|
6
6
|
import peerDepsExternal from "rollup-plugin-peer-deps-external";
|
|
7
|
+
import postcss from "rollup-plugin-postcss";
|
|
7
8
|
|
|
8
9
|
const packageJson = require("./package.json");
|
|
9
10
|
|
|
@@ -28,6 +29,7 @@ export default [
|
|
|
28
29
|
commonjs(),
|
|
29
30
|
typescript({ tsconfig: "./tsconfig.json" }),
|
|
30
31
|
terser(),
|
|
32
|
+
postcss(),
|
|
31
33
|
],
|
|
32
34
|
external: ["react", "react-dom"],
|
|
33
35
|
},
|
|
@@ -35,5 +37,6 @@ export default [
|
|
|
35
37
|
input: "src/index.ts",
|
|
36
38
|
output: [{ file: packageJson.types }],
|
|
37
39
|
plugins: [dts.default()],
|
|
40
|
+
external: [/\.css/],
|
|
38
41
|
},
|
|
39
42
|
];
|
package/src/index.ts
CHANGED
|
@@ -3,20 +3,20 @@ import AppSidebar from "./components/bmj-ui/AppSidebar";
|
|
|
3
3
|
import ChartCard from "./components/bmj-ui/ChartCard";
|
|
4
4
|
import StatCard from "./components/bmj-ui/StatCard";
|
|
5
5
|
import Topbar from "./components/bmj-ui/Topbar";
|
|
6
|
-
export * from "./components/ui/badge";
|
|
7
|
-
export * from "./components/ui/button";
|
|
8
|
-
export * from "./components/ui/card";
|
|
9
|
-
export * from "./components/ui/dialog";
|
|
10
|
-
export * from "./components/ui/dropdown-menu";
|
|
11
|
-
export * from "./components/ui/input";
|
|
12
|
-
export * from "./components/ui/scroll-area";
|
|
13
|
-
export * from "./components/ui/select";
|
|
14
|
-
export * from "./components/ui/separator";
|
|
15
|
-
export * from "./components/ui/sheet";
|
|
16
|
-
export * from "./components/ui/sidebar";
|
|
17
|
-
export * from "./components/ui/skeleton";
|
|
18
|
-
export * from "./components/ui/table";
|
|
19
|
-
export * from "./components/ui/tooltip";
|
|
6
|
+
// export * from "./components/ui/badge";
|
|
7
|
+
// export * from "./components/ui/button";
|
|
8
|
+
// export * from "./components/ui/card";
|
|
9
|
+
// export * from "./components/ui/dialog";
|
|
10
|
+
// export * from "./components/ui/dropdown-menu";
|
|
11
|
+
// export * from "./components/ui/input";
|
|
12
|
+
// export * from "./components/ui/scroll-area";
|
|
13
|
+
// export * from "./components/ui/select";
|
|
14
|
+
// export * from "./components/ui/separator";
|
|
15
|
+
// export * from "./components/ui/sheet";
|
|
16
|
+
// export * from "./components/ui/sidebar";
|
|
17
|
+
// export * from "./components/ui/skeleton";
|
|
18
|
+
// export * from "./components/ui/table";
|
|
19
|
+
// export * from "./components/ui/tooltip";
|
|
20
20
|
|
|
21
21
|
// import {
|
|
22
22
|
// DashboardLayout,
|