@sinco/react 1.1.1-rc.3 → 1.1.1-rc.5
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/index.js +12 -2
- package/package.json +1 -1
package/index.js
CHANGED
@@ -7335,6 +7335,16 @@ const components = {
|
|
7335
7335
|
dense: true
|
7336
7336
|
}
|
7337
7337
|
},
|
7338
|
+
MuiListItemButton: {
|
7339
|
+
styleOverrides: {
|
7340
|
+
dense: {
|
7341
|
+
padding: "4px 0px 4px 0px"
|
7342
|
+
},
|
7343
|
+
root: {
|
7344
|
+
padding: "7.5px 0px 7.5px 0px"
|
7345
|
+
}
|
7346
|
+
}
|
7347
|
+
},
|
7338
7348
|
MuiMenuItem: {
|
7339
7349
|
defaultProps: {
|
7340
7350
|
dense: true
|
@@ -20034,14 +20044,14 @@ const DynamicColor = async src => {
|
|
20034
20044
|
const secondaryLight = hexFromArgb(dark.secondary);
|
20035
20045
|
const secondaryDark = hexFromArgb(light.secondary);
|
20036
20046
|
const primaryColor = {
|
20037
|
-
main: primaryMain,
|
20038
20047
|
light: primaryLight,
|
20048
|
+
main: primaryMain,
|
20039
20049
|
dark: primaryDark,
|
20040
20050
|
contrastText: "#ffffff"
|
20041
20051
|
};
|
20042
20052
|
const secondaryColor = {
|
20043
|
-
main: secondaryMain,
|
20044
20053
|
light: secondaryLight,
|
20054
|
+
main: secondaryMain,
|
20045
20055
|
dark: secondaryDark,
|
20046
20056
|
contrastText: "#ffffff"
|
20047
20057
|
};
|