react-frontend-common-components 0.0.2 → 0.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-frontend-common-components",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Reusable frontend library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -16,19 +16,25 @@
16
16
  "@rollup/plugin-node-resolve": "^15.2.3",
17
17
  "@rollup/plugin-terser": "^0.4.4",
18
18
  "@rollup/plugin-typescript": "^11.1.6",
19
+ "postcss": "^8.4.45",
19
20
  "react": "^18.3.1",
20
21
  "rollup-plugin-dts": "^6.1.1",
21
22
  "rollup-plugin-peer-deps-external": "^2.2.4",
23
+ "rollup-plugin-postcss": "^4.0.2",
22
24
  "tslib": "^2.7.0",
23
25
  "typescript": "^5.5.4"
24
26
  },
25
27
  "dependencies": {
28
+ "@react-google-maps/api": "^2.19.3",
26
29
  "@types/react": "^18.3.5",
27
30
  "@types/uuid": "^10.0.0",
28
31
  "antd": "^5.20.5",
32
+ "chart.js": "^4.4.4",
33
+ "react-chartjs-2": "^5.2.0",
29
34
  "react-icons": "^5.3.0",
35
+ "react-intl-tel-input": "^8.2.0",
36
+ "react-otp-input": "^3.1.1",
30
37
  "rollup": "^4.21.2",
31
- "rollup-plugin-postcss": "^4.0.2",
32
38
  "uuid": "^10.0.0"
33
39
  }
34
40
  }
package/src/index.ts CHANGED
@@ -8,3 +8,18 @@ export { default as AppBackArrow } from "./components/app-back-arrow/app-back-ar
8
8
 
9
9
  export { default as AppBadge } from "./components/app-badge/app-badge";
10
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";
14
+
15
+ export { default as AppAvatar } from "./components/app-avatar/app-avatar";
16
+
17
+ export { default as AppCheckboxText } from "./components/app-checkbox-text/app-checkbox-text";
18
+ export { default as AppCollapse } from "./components/app-collapse/app-collapse";
19
+ export { default as AppCustomLoader } from "./components/app-custom-loader/app-custom-loader";
20
+
21
+ export { default as AppLocationMap } from "./components/app-location-map/app-location-map";
22
+ export { default as AppModal } from "./components/app-modal/app-modal";
23
+ export { default as AppOtpField } from "./components/app-otp-field/app-otp-field";
24
+ export { default as AppPagination } from "./components/app-pagination/app-pagination";
25
+ export { default as AppPasswordInput } from "./components/app-password-input/app-password-input";