adpro-react 0.0.29 → 0.0.31
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/adpro-react.cjs.js +60 -518
- package/dist/adpro-react.es.js +5598 -28665
- package/package.json +81 -78
package/package.json
CHANGED
|
@@ -1,79 +1,82 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
2
|
+
"name": "adpro-react",
|
|
3
|
+
"version": "0.0.31",
|
|
4
|
+
"author": "Joel Mateo Robles Atuesta",
|
|
5
|
+
"main": "dist/adpro-react.cjs.js",
|
|
6
|
+
"module": "dist/adpro-react.es.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"description": "Librería de componentes React para ADPRO",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"react",
|
|
14
|
+
"typescript",
|
|
15
|
+
"mui"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"@emotion/react": "^11.14.0",
|
|
20
|
+
"@emotion/styled": "^11.14.0",
|
|
21
|
+
"@mui/icons-material": "^7.0.0",
|
|
22
|
+
"@mui/material": "^7.0.0",
|
|
23
|
+
"@mui/x-data-grid-pro": "^7.23.4",
|
|
24
|
+
"@mui/x-date-pickers": "^7.27.3",
|
|
25
|
+
"@mui/x-date-pickers-pro": "^7.27.3",
|
|
26
|
+
"@sinco/react": "^1.2.7",
|
|
27
|
+
"react": "^19.0.0",
|
|
28
|
+
"react-dom": "^19.0.0"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "vite",
|
|
32
|
+
"build": "tsc && vite build",
|
|
33
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
34
|
+
"preview": "vite preview",
|
|
35
|
+
"test": "vitest",
|
|
36
|
+
"coverage": "vitest run --coverage"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@emotion/react": "^11.14.0",
|
|
40
|
+
"@emotion/styled": "^11.14.0",
|
|
41
|
+
"@mui/icons-material": "^7.0.0",
|
|
42
|
+
"@mui/material": "^7.0.0",
|
|
43
|
+
"@sinco/react": "^1.2.7",
|
|
44
|
+
"@rollup/plugin-image": "^3.0.3",
|
|
45
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
46
|
+
"@testing-library/react": "^16.1.0",
|
|
47
|
+
"@types/node": "^22.10.2",
|
|
48
|
+
"@types/react": "^19.0.2",
|
|
49
|
+
"@types/react-dom": "^19.0.2",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
51
|
+
"@typescript-eslint/parser": "^8.18.2",
|
|
52
|
+
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
53
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
54
|
+
"eslint": "^9.17.0",
|
|
55
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
56
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
57
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
58
|
+
"react": "^19.1.0",
|
|
59
|
+
"react-dom": "^19.1.0",
|
|
60
|
+
"ts-node": "^10.9.2",
|
|
61
|
+
"tslib": "^2.8.1",
|
|
62
|
+
"typescript": "^5.7.2",
|
|
63
|
+
"vite": "^6.0.6",
|
|
64
|
+
"vite-plugin-dts": "^4.4.0",
|
|
65
|
+
"vitest": "^2.1.8"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@hookform/devtools": "^4.3.3",
|
|
69
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
70
|
+
"@types/js-cookie": "^3.0.6",
|
|
71
|
+
"axios": "^1.7.9",
|
|
72
|
+
"dayjs": "^1.11.13",
|
|
73
|
+
"js-cookie": "^3.0.5",
|
|
74
|
+
"moment": "^2.30.1",
|
|
75
|
+
"msw": "^2.7.0",
|
|
76
|
+
"react-dropzone": "^14.3.5",
|
|
77
|
+
"react-hook-form": "^7.54.2",
|
|
78
|
+
"react-number-format": "^5.4.3",
|
|
79
|
+
"react-window": "^2.2.0",
|
|
80
|
+
"zustand": "^5.0.2"
|
|
81
|
+
}
|
|
82
|
+
}
|