@pautena/react-design-system 0.20.0 → 0.20.1
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/dialog/index.d.ts +1 -1
- package/dist/drawerx/drawer-context/drawer.provider.d.ts +1 -1
- package/dist/drawerx/drawer-item/index.d.ts +1 -1
- package/dist/drawerx/drawer-layout/drawer-layout.d.ts +1 -1
- package/dist/drawerx/index.d.ts +4 -4
- package/dist/enhanced-table/enhanced-table.d.ts +0 -9
- package/dist/index.cjs.js +111 -111
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +35 -35
- package/dist/index.es.js +36640 -36511
- package/dist/index.es.js.map +1 -1
- package/dist/notification-center/index.d.ts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/value-base/index.d.ts +1 -1
- package/package.json +40 -34
package/dist/utils/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pautena/react-design-system",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"description": "My custom design system on top of MUI",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
8
|
+
"files": [
|
|
9
|
+
"/dist"
|
|
10
|
+
],
|
|
9
11
|
"scripts": {
|
|
10
12
|
"build": "tsc && vite build",
|
|
11
13
|
"publish:npm": "npm publish --access public",
|
|
@@ -19,57 +21,61 @@
|
|
|
19
21
|
"check": "biome check ./",
|
|
20
22
|
"check:ts": "tsc -p ."
|
|
21
23
|
},
|
|
22
|
-
"keywords": [
|
|
24
|
+
"keywords": [
|
|
25
|
+
"mui",
|
|
26
|
+
"design",
|
|
27
|
+
"system"
|
|
28
|
+
],
|
|
23
29
|
"author": "Pau Tena Vidal",
|
|
24
30
|
"license": "MIT",
|
|
25
31
|
"dependencies": {
|
|
26
32
|
"@emotion/react": "^11.14.0",
|
|
27
|
-
"@emotion/styled": "^11.14.
|
|
33
|
+
"@emotion/styled": "^11.14.1",
|
|
28
34
|
"@emotion/utils": "^1.4.2",
|
|
29
|
-
"@mui/icons-material": "^7.
|
|
30
|
-
"@mui/material": "^7.
|
|
31
|
-
"@mui/system": "^7.
|
|
32
|
-
"@mui/x-data-grid": "^8.
|
|
33
|
-
"@mui/x-date-pickers": "^8.
|
|
35
|
+
"@mui/icons-material": "^7.3.4",
|
|
36
|
+
"@mui/material": "^7.3.4",
|
|
37
|
+
"@mui/system": "^7.3.3",
|
|
38
|
+
"@mui/x-data-grid": "^8.14.0",
|
|
39
|
+
"@mui/x-date-pickers": "^8.14.0",
|
|
34
40
|
"date-fns": "^4.1.0",
|
|
35
|
-
"react": "^19.
|
|
36
|
-
"react-dom": "^19.
|
|
41
|
+
"react": "^19.2.0",
|
|
42
|
+
"react-dom": "^19.2.0"
|
|
37
43
|
},
|
|
38
44
|
"devDependencies": {
|
|
39
|
-
"@babel/core": "^7.
|
|
40
|
-
"@babel/preset-env": "^7.
|
|
45
|
+
"@babel/core": "^7.28.4",
|
|
46
|
+
"@babel/preset-env": "^7.28.3",
|
|
41
47
|
"@babel/preset-react": "^7.27.1",
|
|
42
48
|
"@babel/preset-typescript": "^7.27.1",
|
|
43
|
-
"@biomejs/biome": "
|
|
44
|
-
"@faker-js/faker": "^
|
|
45
|
-
"@mui/x-data-grid-generator": "^8.
|
|
46
|
-
"@storybook/addon-docs": "^9.
|
|
47
|
-
"@storybook/addon-links": "^9.
|
|
48
|
-
"@storybook/addon-onboarding": "^9.
|
|
49
|
-
"@storybook/addon-themes": "^9.
|
|
50
|
-
"@storybook/react": "^9.
|
|
51
|
-
"@storybook/react-vite": "^9.
|
|
52
|
-
"@testing-library/dom": "^10.4.
|
|
53
|
-
"@testing-library/jest-dom": "^6.
|
|
49
|
+
"@biomejs/biome": "2.2.6",
|
|
50
|
+
"@faker-js/faker": "^10.1.0",
|
|
51
|
+
"@mui/x-data-grid-generator": "^8.14.0",
|
|
52
|
+
"@storybook/addon-docs": "^9.1.10",
|
|
53
|
+
"@storybook/addon-links": "^9.1.10",
|
|
54
|
+
"@storybook/addon-onboarding": "^9.1.10",
|
|
55
|
+
"@storybook/addon-themes": "^9.1.10",
|
|
56
|
+
"@storybook/react": "^9.1.10",
|
|
57
|
+
"@storybook/react-vite": "^9.1.10",
|
|
58
|
+
"@testing-library/dom": "^10.4.1",
|
|
59
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
54
60
|
"@testing-library/react": "^16.3.0",
|
|
55
61
|
"@testing-library/user-event": "^14.6.1",
|
|
56
|
-
"@types/ramda": "^0.
|
|
57
|
-
"@types/react": "^19.
|
|
62
|
+
"@types/ramda": "^0.31.1",
|
|
63
|
+
"@types/react": "^19.2.2",
|
|
58
64
|
"babel-loader": "^10.0.0",
|
|
59
65
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
60
66
|
"gh-pages": "^6.3.0",
|
|
61
|
-
"globals": "^16.
|
|
67
|
+
"globals": "^16.4.0",
|
|
62
68
|
"husky": "^9.1.7",
|
|
63
|
-
"jsdom": "^
|
|
64
|
-
"ramda": "^0.
|
|
65
|
-
"react-test-renderer": "^19.
|
|
66
|
-
"storybook": "^9.
|
|
69
|
+
"jsdom": "^27.0.0",
|
|
70
|
+
"ramda": "^0.32.0",
|
|
71
|
+
"react-test-renderer": "^19.2.0",
|
|
72
|
+
"storybook": "^9.1.10",
|
|
67
73
|
"tslib": "^2.8.1",
|
|
68
|
-
"typescript": "^5.
|
|
69
|
-
"vite": "^
|
|
74
|
+
"typescript": "^5.9.3",
|
|
75
|
+
"vite": "^7.1.10",
|
|
70
76
|
"vite-plugin-dts": "^4.5.4",
|
|
71
77
|
"vite-tsconfig-paths": "^5.1.4",
|
|
72
|
-
"vitest": "^3.
|
|
78
|
+
"vitest": "^3.2.4"
|
|
73
79
|
},
|
|
74
80
|
"peerDependencies": {
|
|
75
81
|
"@emotion/react": "^11.0.0",
|