@zesty-io/material 0.5.0 → 0.5.2
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/es/icons/Database.d.ts +3 -0
- package/es/icons/Database.js +3 -0
- package/es/icons/index.d.ts +1 -0
- package/es/icons/index.js +1 -0
- package/es/theme/index.js +28 -0
- package/es/theme/palette.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { SvgIcon } from "@mui/material";
|
|
3
|
+
export const Database = (props) => (_jsx(SvgIcon, { ...props, children: _jsx("path", { d: "M10 9.16667C7.76389 9.16667 5.95486 8.82639 4.57292 8.14583C3.19097 7.46528 2.5 6.69444 2.5 5.83333C2.5 4.95833 3.19097 4.18403 4.57292 3.51042C5.95486 2.83681 7.76389 2.5 10 2.5C12.2361 2.5 14.0451 2.83681 15.4271 3.51042C16.809 4.18403 17.5 4.95833 17.5 5.83333C17.5 6.69444 16.809 7.46528 15.4271 8.14583C14.0451 8.82639 12.2361 9.16667 10 9.16667ZM10 13.3333C7.97222 13.3333 6.21528 13.0278 4.72917 12.4167C3.24306 11.8056 2.5 11.0694 2.5 10.2083V8.125C2.5 8.66667 2.76042 9.13542 3.28125 9.53125C3.80208 9.92708 4.44792 10.2535 5.21875 10.5104C5.98958 10.7674 6.80903 10.9549 7.67708 11.0729C8.54514 11.191 9.31944 11.25 10 11.25C10.6944 11.25 11.4722 11.191 12.3333 11.0729C13.1944 10.9549 14.0104 10.7708 14.7812 10.5208C15.5521 10.2708 16.1979 9.94792 16.7188 9.55208C17.2396 9.15625 17.5 8.68056 17.5 8.125V10.2083C17.5 11.0694 16.7569 11.8056 15.2708 12.4167C13.7847 13.0278 12.0278 13.3333 10 13.3333ZM10 17.5C7.97222 17.5 6.21528 17.1944 4.72917 16.5833C3.24306 15.9722 2.5 15.2361 2.5 14.375V12.2917C2.5 12.8333 2.76042 13.3021 3.28125 13.6979C3.80208 14.0938 4.44792 14.4201 5.21875 14.6771C5.98958 14.934 6.80903 15.1215 7.67708 15.2396C8.54514 15.3576 9.31944 15.4167 10 15.4167C10.6944 15.4167 11.4722 15.3576 12.3333 15.2396C13.1944 15.1215 14.0104 14.9375 14.7812 14.6875C15.5521 14.4375 16.1979 14.1146 16.7188 13.7187C17.2396 13.3229 17.5 12.8472 17.5 12.2917V14.375C17.5 15.2361 16.7569 15.9722 15.2708 16.5833C13.7847 17.1944 12.0278 17.5 10 17.5Z", fill: "currentcolor" }) }));
|
package/es/icons/index.d.ts
CHANGED
package/es/icons/index.js
CHANGED
package/es/theme/index.js
CHANGED
|
@@ -72,6 +72,20 @@ theme = createTheme(theme, {
|
|
|
72
72
|
disableElevation: true,
|
|
73
73
|
},
|
|
74
74
|
},
|
|
75
|
+
MuiButtonGroup: {
|
|
76
|
+
defaultProps: {
|
|
77
|
+
disableElevation: true,
|
|
78
|
+
},
|
|
79
|
+
styleOverrides: {
|
|
80
|
+
groupedContained: {
|
|
81
|
+
color: theme.palette.primary.main,
|
|
82
|
+
backgroundColor: alpha(theme.palette.primary.main, theme.palette.action.hoverOpacity),
|
|
83
|
+
'&:hover': {
|
|
84
|
+
backgroundColor: alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity),
|
|
85
|
+
},
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
},
|
|
75
89
|
MuiOutlinedInput: {
|
|
76
90
|
styleOverrides: {
|
|
77
91
|
root: {
|
|
@@ -231,6 +245,20 @@ theme = createTheme(theme, {
|
|
|
231
245
|
},
|
|
232
246
|
}
|
|
233
247
|
},
|
|
248
|
+
MuiDataGrid: {
|
|
249
|
+
styleOverrides: {
|
|
250
|
+
root: {
|
|
251
|
+
borderColor: theme.palette.border,
|
|
252
|
+
borderRadius: '8px',
|
|
253
|
+
},
|
|
254
|
+
cell: {
|
|
255
|
+
borderColor: theme.palette.border,
|
|
256
|
+
},
|
|
257
|
+
columnHeaders: {
|
|
258
|
+
borderColor: theme.palette.border,
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
},
|
|
234
262
|
MuiTreeItem: {
|
|
235
263
|
styleOverrides: {
|
|
236
264
|
content: {
|
package/es/theme/palette.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { alpha } from '@mui/material/styles';
|
|
1
2
|
const palette = {
|
|
2
3
|
primary: {
|
|
3
4
|
main: "#FF5D0A",
|
|
@@ -27,7 +28,7 @@ const palette = {
|
|
|
27
28
|
text: {
|
|
28
29
|
primary: "#101828",
|
|
29
30
|
secondary: "#475467",
|
|
30
|
-
disabled: "#101828",
|
|
31
|
+
disabled: alpha("#101828", 0.38),
|
|
31
32
|
},
|
|
32
33
|
grey: {
|
|
33
34
|
50: "#F9FAFB",
|