react-frontend-common-components 0.0.1 → 0.0.3
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 +53 -2
- package/dist/index.js +23 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/index.ts +8 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-frontend-common-components",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.3",
|
4
4
|
"description": "Reusable frontend library",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"module": "dist/index.mjs",
|
@@ -26,6 +26,7 @@
|
|
26
26
|
"@types/react": "^18.3.5",
|
27
27
|
"@types/uuid": "^10.0.0",
|
28
28
|
"antd": "^5.20.5",
|
29
|
+
"react-chartjs-2": "^5.2.0",
|
29
30
|
"react-icons": "^5.3.0",
|
30
31
|
"rollup": "^4.21.2",
|
31
32
|
"rollup-plugin-postcss": "^4.0.2",
|
package/src/index.ts
CHANGED
@@ -3,3 +3,11 @@ export { default as AppButton } from "./components/app-button/app-button";
|
|
3
3
|
export { default as AppSidebar } from "./components/app-sidebar/app-sidebar";
|
4
4
|
export { default as AppTextarea } from "./components/app-textarea/app-textarea";
|
5
5
|
export { default as AppTab } from "./components/app-tab/app-tab";
|
6
|
+
|
7
|
+
export { default as AppBackArrow } from "./components/app-back-arrow/app-back-arrow";
|
8
|
+
|
9
|
+
export { default as AppBadge } from "./components/app-badge/app-badge";
|
10
|
+
export { default as OverViewCard } from "./components/over-view-card/over-view-card";
|
11
|
+
|
12
|
+
export { default as AppChart } from "./components/app-chart/app-chart";
|
13
|
+
export { default as AppImageBox } from "./components/app-image-box/app-image-box";
|