@data-c/ui 0.2.3 → 0.2.8
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.ts +109 -64
- package/dist/index.js +156 -8
- package/dist/index.js.map +1 -1
- package/package.json +26 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@data-c/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"author": "Raphael <raphael@datac.com.br>",
|
|
5
5
|
"homepage": "https://gitlab.com/raphaelbsr/mio#readme",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,6 +34,16 @@
|
|
|
34
34
|
"@babel/core": "^7.20.12",
|
|
35
35
|
"@babel/preset-env": "^7.25.4",
|
|
36
36
|
"@chromatic-com/storybook": "^1",
|
|
37
|
+
"@data-c/hooks": "^0.2.0",
|
|
38
|
+
"@data-c/providers": "^0.2.0",
|
|
39
|
+
"@emotion/react": "11.14.0",
|
|
40
|
+
"@emotion/styled": "11.14.1",
|
|
41
|
+
"@fontsource/material-icons": "^5.0.19",
|
|
42
|
+
"@fontsource/roboto": "^5.0.15",
|
|
43
|
+
"@mui/icons-material": "7.3.1",
|
|
44
|
+
"@mui/material": "7.3.1",
|
|
45
|
+
"@mui/x-data-grid": "^8.9.2",
|
|
46
|
+
"@mui/x-date-pickers": "8.9.2",
|
|
37
47
|
"@storybook/addon-actions": "^8.2.9",
|
|
38
48
|
"@storybook/addon-essentials": "^8.2.9",
|
|
39
49
|
"@storybook/addon-interactions": "^8.2.9",
|
|
@@ -45,50 +55,49 @@
|
|
|
45
55
|
"@storybook/react": "^8.2.9",
|
|
46
56
|
"@storybook/react-vite": "^8.2.9",
|
|
47
57
|
"@storybook/test": "^8.2.9",
|
|
58
|
+
"@toolpad/core": "^0.16.0",
|
|
48
59
|
"@types/babel__preset-env": "^7",
|
|
49
60
|
"@types/luxon": "^3",
|
|
50
61
|
"@types/react": "^18.0.27",
|
|
51
62
|
"@types/react-dom": "^18.0.10",
|
|
52
63
|
"@types/react-input-mask": "^2",
|
|
64
|
+
"axios": "^1.6.8",
|
|
53
65
|
"babel-loader": "^8.3.0",
|
|
54
66
|
"chromatic": "^6.17.1",
|
|
67
|
+
"lucide-react": "^0.536.0",
|
|
68
|
+
"luxon": "^3.5.0",
|
|
69
|
+
"polished": "^4.2.2",
|
|
70
|
+
"react": "19.1.0",
|
|
71
|
+
"react-dom": "19.1.0",
|
|
55
72
|
"storybook": "^8.2.9",
|
|
56
73
|
"tsup": "^6.5.0",
|
|
57
74
|
"typescript": "^4.9.4"
|
|
58
75
|
},
|
|
59
|
-
"
|
|
76
|
+
"peerDependencies": {
|
|
60
77
|
"@data-c/hooks": "^0.2.0",
|
|
61
78
|
"@data-c/providers": "^0.2.0",
|
|
62
79
|
"@emotion/react": "11.14.0",
|
|
63
80
|
"@emotion/styled": "11.14.1",
|
|
64
|
-
"@fontsource/material-icons": "^5.0.19",
|
|
65
|
-
"@fontsource/roboto": "^5.0.15",
|
|
66
81
|
"@mui/icons-material": "7.3.1",
|
|
67
82
|
"@mui/material": "7.3.1",
|
|
68
83
|
"@mui/x-data-grid": "^8.9.2",
|
|
69
84
|
"@mui/x-date-pickers": "8.9.2",
|
|
70
|
-
"@radix-ui/react-slot": "^1.2.3",
|
|
71
85
|
"@toolpad/core": "^0.16.0",
|
|
72
86
|
"axios": "^1.6.8",
|
|
73
|
-
"lodash": "^4.17.21",
|
|
74
87
|
"lucide-react": "^0.536.0",
|
|
75
88
|
"luxon": "^3.5.0",
|
|
76
|
-
"
|
|
77
|
-
"react": "19.
|
|
78
|
-
|
|
79
|
-
|
|
89
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
90
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
91
|
+
},
|
|
92
|
+
"dependencies": {
|
|
93
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
94
|
+
"lodash": "^4.17.21",
|
|
80
95
|
"react-easy-crop": "^5.4.1",
|
|
81
96
|
"uuid": "^9.0.0",
|
|
82
97
|
"validator": "^13.11.0"
|
|
83
98
|
},
|
|
84
|
-
"peerDependencies": {
|
|
85
|
-
"@emotion/react": "^11.14.0",
|
|
86
|
-
"@emotion/styled": "^11.14.1",
|
|
87
|
-
"@mui/icons-material": "^7.3.1",
|
|
88
|
-
"@mui/material": "^7.3.1"
|
|
89
|
-
},
|
|
90
99
|
"resolutions": {
|
|
91
100
|
"csstype": "3.1.2"
|
|
92
101
|
},
|
|
93
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "cc0c89342bc29e005cfcb00d962aada14371b7b4"
|
|
94
103
|
}
|