@mamrp/components 1.0.21 → 1.0.23
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.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +84 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +98 -38
- package/dist/index.mjs.map +1 -1
- package/package.json +71 -71
package/package.json
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mamrp/components",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A comprehensive suite of reusable React components.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.esm.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/index.mjs",
|
|
14
|
-
"require": "./dist/index.js"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "tsup",
|
|
19
|
-
"dev": "tsup --watch"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [],
|
|
22
|
-
"author": "Mamrp Frontend Team",
|
|
23
|
-
"license": "ISC",
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"@emotion/cache": "^11.14.0",
|
|
26
|
-
"@emotion/react": "^11.14.0",
|
|
27
|
-
"@emotion/styled": "^11.14.0",
|
|
28
|
-
"@hookform/resolvers": "^4.1.3",
|
|
29
|
-
"@mamrp/icons": "1.0.17",
|
|
30
|
-
"@mamrp/utils": "1.0.10",
|
|
31
|
-
"@mui/lab": "6.0.0-beta.28",
|
|
32
|
-
"@mui/material": "^6.4.6",
|
|
33
|
-
"@mui/material-nextjs": "^6.4.3",
|
|
34
|
-
"@mui/system": "^6.4.6",
|
|
35
|
-
"@mui/x-data-grid": "^7.27.2",
|
|
36
|
-
"@mui/x-date-pickers": "^7.27.1",
|
|
37
|
-
"@tanstack/react-query": "^5.67.1",
|
|
38
|
-
"axios": "^1.8.1",
|
|
39
|
-
"dayjs": "^1.11.13",
|
|
40
|
-
"jwt-decode": "^4.0.0",
|
|
41
|
-
"leaflet": "^1.9.4",
|
|
42
|
-
"moment": "^2.30.1",
|
|
43
|
-
"moment-jalaali": "^0.10.4",
|
|
44
|
-
"next": "^15.2.1",
|
|
45
|
-
"next-nprogress-bar": "^2.4.7",
|
|
46
|
-
"react": "^19.0.0",
|
|
47
|
-
"react-dom": "^19.0.0",
|
|
48
|
-
"react-hook-form": "^7.54.2",
|
|
49
|
-
"react-hot-toast": "^2.5.2",
|
|
50
|
-
"react-icons": "^5.5.0",
|
|
51
|
-
"react-leaflet": "^5.0.0",
|
|
52
|
-
"react-number-format": "^5.4.3",
|
|
53
|
-
"stylis": "^4.3.6",
|
|
54
|
-
"stylis-plugin-rtl": "^2.1.1",
|
|
55
|
-
"yup": "^1.6.1"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@types/leaflet": "^1.9.16",
|
|
59
|
-
"@types/moment-jalaali": "^0.7.9",
|
|
60
|
-
"@types/node": "^22.13.9",
|
|
61
|
-
"@types/react": "^19.0.10",
|
|
62
|
-
"@types/react-dom": "^19.0.4",
|
|
63
|
-
"@types/stylis": "^4.2.7",
|
|
64
|
-
"eslint": "^9.21.0",
|
|
65
|
-
"eslint-config-prettier": "^10.0.2",
|
|
66
|
-
"eslint-plugin-react": "^7.37.4",
|
|
67
|
-
"prettier": "^3.5.3",
|
|
68
|
-
"tsup": "^8.4.0",
|
|
69
|
-
"typescript": "^5.8.2"
|
|
70
|
-
}
|
|
71
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mamrp/components",
|
|
3
|
+
"version": "1.0.23",
|
|
4
|
+
"description": "A comprehensive suite of reusable React components.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.mjs",
|
|
14
|
+
"require": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"dev": "tsup --watch"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [],
|
|
22
|
+
"author": "Mamrp Frontend Team",
|
|
23
|
+
"license": "ISC",
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@emotion/cache": "^11.14.0",
|
|
26
|
+
"@emotion/react": "^11.14.0",
|
|
27
|
+
"@emotion/styled": "^11.14.0",
|
|
28
|
+
"@hookform/resolvers": "^4.1.3",
|
|
29
|
+
"@mamrp/icons": "1.0.17",
|
|
30
|
+
"@mamrp/utils": "1.0.10",
|
|
31
|
+
"@mui/lab": "6.0.0-beta.28",
|
|
32
|
+
"@mui/material": "^6.4.6",
|
|
33
|
+
"@mui/material-nextjs": "^6.4.3",
|
|
34
|
+
"@mui/system": "^6.4.6",
|
|
35
|
+
"@mui/x-data-grid": "^7.27.2",
|
|
36
|
+
"@mui/x-date-pickers": "^7.27.1",
|
|
37
|
+
"@tanstack/react-query": "^5.67.1",
|
|
38
|
+
"axios": "^1.8.1",
|
|
39
|
+
"dayjs": "^1.11.13",
|
|
40
|
+
"jwt-decode": "^4.0.0",
|
|
41
|
+
"leaflet": "^1.9.4",
|
|
42
|
+
"moment": "^2.30.1",
|
|
43
|
+
"moment-jalaali": "^0.10.4",
|
|
44
|
+
"next": "^15.2.1",
|
|
45
|
+
"next-nprogress-bar": "^2.4.7",
|
|
46
|
+
"react": "^19.0.0",
|
|
47
|
+
"react-dom": "^19.0.0",
|
|
48
|
+
"react-hook-form": "^7.54.2",
|
|
49
|
+
"react-hot-toast": "^2.5.2",
|
|
50
|
+
"react-icons": "^5.5.0",
|
|
51
|
+
"react-leaflet": "^5.0.0",
|
|
52
|
+
"react-number-format": "^5.4.3",
|
|
53
|
+
"stylis": "^4.3.6",
|
|
54
|
+
"stylis-plugin-rtl": "^2.1.1",
|
|
55
|
+
"yup": "^1.6.1"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/leaflet": "^1.9.16",
|
|
59
|
+
"@types/moment-jalaali": "^0.7.9",
|
|
60
|
+
"@types/node": "^22.13.9",
|
|
61
|
+
"@types/react": "^19.0.10",
|
|
62
|
+
"@types/react-dom": "^19.0.4",
|
|
63
|
+
"@types/stylis": "^4.2.7",
|
|
64
|
+
"eslint": "^9.21.0",
|
|
65
|
+
"eslint-config-prettier": "^10.0.2",
|
|
66
|
+
"eslint-plugin-react": "^7.37.4",
|
|
67
|
+
"prettier": "^3.5.3",
|
|
68
|
+
"tsup": "^8.4.0",
|
|
69
|
+
"typescript": "^5.8.2"
|
|
70
|
+
}
|
|
71
|
+
}
|