zeonailabs-reactlib 1.0.0 → 1.0.2
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/components/ActivityFeed/ActivityFeed.d.ts +17 -0
- package/dist/components/ActivityFeed/ActivityFeed.test.d.ts +1 -0
- package/dist/components/ActivityFeed/formatRelativeTime.d.ts +1 -0
- package/dist/components/ActivityFeed/index.d.ts +3 -0
- package/dist/components/AreaChart/AreaChart.d.ts +19 -0
- package/dist/components/AreaChart/AreaChart.test.d.ts +1 -0
- package/dist/components/AreaChart/index.d.ts +2 -0
- package/dist/components/BarChart/BarChart.d.ts +19 -0
- package/dist/components/BarChart/BarChart.test.d.ts +1 -0
- package/dist/components/BarChart/index.d.ts +2 -0
- package/dist/components/Button/Button.d.ts +8 -0
- package/dist/components/Button/Button.test.d.ts +1 -0
- package/dist/components/Button/index.d.ts +2 -0
- package/dist/components/DataTable/DataTable.d.ts +23 -0
- package/dist/components/DataTable/DataTable.test.d.ts +1 -0
- package/dist/components/DataTable/index.d.ts +2 -0
- package/dist/components/DonutChart/DonutChart.d.ts +19 -0
- package/dist/components/DonutChart/DonutChart.test.d.ts +1 -0
- package/dist/components/DonutChart/index.d.ts +2 -0
- package/dist/components/GeoPoints/GeoPoints.d.ts +24 -0
- package/dist/components/GeoPoints/GeoPoints.test.d.ts +1 -0
- package/dist/components/GeoPoints/index.d.ts +2 -0
- package/dist/components/KpiStatsCard/KpiStatsCard.d.ts +17 -0
- package/dist/components/KpiStatsCard/KpiStatsCard.test.d.ts +1 -0
- package/dist/components/KpiStatsCard/index.d.ts +2 -0
- package/dist/components/LineChart/LineChart.d.ts +17 -0
- package/dist/components/LineChart/LineChart.test.d.ts +1 -0
- package/dist/components/LineChart/index.d.ts +2 -0
- package/dist/components/ScatterChart/ScatterChart.d.ts +21 -0
- package/dist/components/ScatterChart/ScatterChart.test.d.ts +1 -0
- package/dist/components/ScatterChart/index.d.ts +2 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +1 -151
- package/package.json +19 -10
package/package.json
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zeonailabs-reactlib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "React Component Library with TypeScript, Webpack, and Material UI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.
|
|
6
|
+
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"require": "./dist/index.js",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
8
15
|
"files": [
|
|
9
16
|
"dist"
|
|
10
17
|
],
|
|
@@ -20,10 +27,10 @@
|
|
|
20
27
|
"charts",
|
|
21
28
|
"datatable"
|
|
22
29
|
],
|
|
23
|
-
"author": "
|
|
30
|
+
"author": "Navin Navneet",
|
|
24
31
|
"license": "MIT",
|
|
25
32
|
"scripts": {
|
|
26
|
-
"build": "webpack --mode production",
|
|
33
|
+
"build": "webpack --mode production && tsc --emitDeclarationOnly",
|
|
27
34
|
"build:dev": "webpack --mode development --watch",
|
|
28
35
|
"storybook": "storybook dev -p 6006",
|
|
29
36
|
"build-storybook": "storybook build",
|
|
@@ -37,7 +44,10 @@
|
|
|
37
44
|
"peerDependencies": {
|
|
38
45
|
"@emotion/react": ">=11.0.0",
|
|
39
46
|
"@emotion/styled": ">=11.0.0",
|
|
40
|
-
"@mui/material": ">=5.0.0",
|
|
47
|
+
"@mui/icons-material": ">=5.0.0",
|
|
48
|
+
"@mui/material": ">=6.0.0",
|
|
49
|
+
"@mui/x-charts": ">=7.0.0",
|
|
50
|
+
"@mui/x-data-grid": ">=6.0.0",
|
|
41
51
|
"react": ">=17.0.0",
|
|
42
52
|
"react-dom": ">=17.0.0"
|
|
43
53
|
},
|
|
@@ -48,9 +58,11 @@
|
|
|
48
58
|
"@babel/preset-typescript": "^7.24.0",
|
|
49
59
|
"@emotion/react": "^11.11.4",
|
|
50
60
|
"@emotion/styled": "^11.11.5",
|
|
51
|
-
"@mui/icons-material": "^5.18.0",
|
|
52
61
|
"@mui/material": "^5.15.18",
|
|
62
|
+
"@mui/x-charts": "^7.29.1",
|
|
63
|
+
"@mui/x-data-grid": "^6.20.4",
|
|
53
64
|
"@storybook/addon-essentials": "^8.6.0",
|
|
65
|
+
"storybook": "^8.6.18",
|
|
54
66
|
"@storybook/addon-interactions": "^8.6.0",
|
|
55
67
|
"@storybook/addon-links": "^8.6.0",
|
|
56
68
|
"@storybook/blocks": "^8.6.0",
|
|
@@ -78,10 +90,7 @@
|
|
|
78
90
|
"webpack-cli": "^5.1.4"
|
|
79
91
|
},
|
|
80
92
|
"dependencies": {
|
|
81
|
-
"@mui/x-charts": "^7.29.1",
|
|
82
|
-
"@mui/x-data-grid": "^6.20.4",
|
|
83
93
|
"leaflet": "^1.9.4",
|
|
84
|
-
"react-leaflet": "^4.2.1"
|
|
85
|
-
"storybook": "^8.6.18"
|
|
94
|
+
"react-leaflet": "^4.2.1"
|
|
86
95
|
}
|
|
87
96
|
}
|