@grazziotin/react-components-next 0.1.0 → 1.0.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/README.md +266 -174
- package/dist/chunk-4DIPDYEU.mjs +79 -0
- package/dist/chunk-4DIPDYEU.mjs.map +1 -0
- package/dist/chunk-XNWAGZVV.mjs +467 -0
- package/dist/chunk-XNWAGZVV.mjs.map +1 -0
- package/dist/functions/index.d.mts +38 -0
- package/dist/functions/index.d.ts +38 -0
- package/dist/functions/index.js +54 -0
- package/dist/functions/index.js.map +1 -0
- package/dist/functions/index.mjs +3 -0
- package/dist/functions/index.mjs.map +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.mts +10 -67
- package/dist/index.d.ts +10 -67
- package/dist/index.js +512 -345
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -393
- package/dist/index.mjs.map +1 -1
- package/dist/ui/index.d.mts +316 -0
- package/dist/ui/index.d.ts +316 -0
- package/dist/ui/index.js +515 -0
- package/dist/ui/index.js.map +1 -0
- package/dist/ui/index.mjs +4 -0
- package/dist/ui/index.mjs.map +1 -0
- package/package.json +101 -73
package/package.json
CHANGED
|
@@ -1,73 +1,101 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@grazziotin/react-components-next",
|
|
3
|
-
"version": "0.1
|
|
4
|
-
"description": "Biblioteca de componentes React reutilizáveis",
|
|
5
|
-
"private": false,
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.mjs",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.mjs",
|
|
13
|
-
"require": "./dist/index.js"
|
|
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
|
-
"react"
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@grazziotin/react-components-next",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Biblioteca de componentes React reutilizáveis",
|
|
5
|
+
"private": false,
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./ui": {
|
|
16
|
+
"types": "./dist/ui/index.d.ts",
|
|
17
|
+
"import": "./dist/ui/index.mjs",
|
|
18
|
+
"require": "./dist/ui/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./functions": {
|
|
21
|
+
"types": "./dist/functions/index.d.ts",
|
|
22
|
+
"import": "./dist/functions/index.mjs",
|
|
23
|
+
"require": "./dist/functions/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./styles": "./dist/index.css"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"sideEffects": [
|
|
31
|
+
"**/*.css"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"storybook": "storybook dev -p 6006",
|
|
35
|
+
"build-storybook": "storybook build",
|
|
36
|
+
"build:css": "tailwindcss -i ./src/styles/index.css -o ./dist/index.css --minify",
|
|
37
|
+
"build:css:src": "tailwindcss -i ./src/styles/index.css -o ./src/styles/tailwind-output.css --minify",
|
|
38
|
+
"build:lib": "npm run build:css:src && tsup && npm run build:css",
|
|
39
|
+
"build:lib:watch": "tsup --watch",
|
|
40
|
+
"type-check": "tsc --noEmit",
|
|
41
|
+
"lint": "eslint src/",
|
|
42
|
+
"prepublishOnly": "npm run build:lib"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"react",
|
|
46
|
+
"components",
|
|
47
|
+
"ui",
|
|
48
|
+
"typescript",
|
|
49
|
+
"tailwindcss"
|
|
50
|
+
],
|
|
51
|
+
"author": "",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"react": ">=18.0.0",
|
|
55
|
+
"react-dom": ">=18.0.0"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@emotion/react": "^11.14.0",
|
|
59
|
+
"@emotion/styled": "^11.14.1",
|
|
60
|
+
"@mantine/core": "^9.2.1",
|
|
61
|
+
"@mantine/hooks": "^9.2.1",
|
|
62
|
+
"@mui/material": "^9.0.1",
|
|
63
|
+
"@mui/x-data-grid": "^9.4.0",
|
|
64
|
+
"clsx": "^2.1.1",
|
|
65
|
+
"next": "^15.5.18",
|
|
66
|
+
"react": ">=18.0.0",
|
|
67
|
+
"react-dom": ">=18.0.0",
|
|
68
|
+
"tailwind-merge": "^3.6.0"
|
|
69
|
+
},
|
|
70
|
+
"overrides": {
|
|
71
|
+
"caniuse-lite": "1.0.30001792"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@chromatic-com/storybook": "^5.2.1",
|
|
75
|
+
"@storybook/addon-a11y": "^10.4.0",
|
|
76
|
+
"@storybook/addon-docs": "^10.4.0",
|
|
77
|
+
"@storybook/addon-mcp": "^0.6.0",
|
|
78
|
+
"@storybook/addon-vitest": "^10.4.0",
|
|
79
|
+
"@storybook/react-vite": "^10.4.0",
|
|
80
|
+
"@tailwindcss/cli": "^4.3.0",
|
|
81
|
+
"@tailwindcss/postcss": "^4",
|
|
82
|
+
"@types/node": "^20",
|
|
83
|
+
"@types/react": "^19",
|
|
84
|
+
"@types/react-dom": "^19",
|
|
85
|
+
"@vitest/browser-playwright": "^4.1.7",
|
|
86
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
87
|
+
"eslint": "^9",
|
|
88
|
+
"eslint-config-next": "^16.2.6",
|
|
89
|
+
"eslint-config-prettier": "^10.1.8",
|
|
90
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
91
|
+
"eslint-plugin-storybook": "^10.4.0",
|
|
92
|
+
"playwright": "^1.60.0",
|
|
93
|
+
"prettier": "^3.8.3",
|
|
94
|
+
"storybook": "^10.4.0",
|
|
95
|
+
"tailwindcss": "^4",
|
|
96
|
+
"tsup": "^8.5.1",
|
|
97
|
+
"typescript": "^5",
|
|
98
|
+
"vite": "^8.0.13",
|
|
99
|
+
"vitest": "^4.1.7"
|
|
100
|
+
}
|
|
101
|
+
}
|