@sinco/react 1.1.1-rc.4 → 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 +24 -4
- package/package.json +1 -1
package/index.js
CHANGED
@@ -6647,10 +6647,20 @@ const palette = {
|
|
6647
6647
|
};
|
6648
6648
|
const paletteAdpro = {
|
6649
6649
|
primary: {
|
6650
|
-
|
6650
|
+
50: "#F8FAFB",
|
6651
|
+
100: "#E6EFF0",
|
6652
|
+
200: "#D2E3E4",
|
6653
|
+
300: "#82C6CB",
|
6651
6654
|
light: "#2B9DA7",
|
6652
6655
|
main: "#058C97",
|
6653
|
-
|
6656
|
+
600: "#04848F",
|
6657
|
+
700: "#047984",
|
6658
|
+
800: "#036F7A",
|
6659
|
+
dark: "#015C69",
|
6660
|
+
A100: "#98F0FF",
|
6661
|
+
A200: "#65E9FF",
|
6662
|
+
A400: "#32E1FF",
|
6663
|
+
A700: "#32E1FF"
|
6654
6664
|
},
|
6655
6665
|
secondary: {
|
6656
6666
|
50: "#E0F7FA",
|
@@ -7325,6 +7335,16 @@ const components = {
|
|
7325
7335
|
dense: true
|
7326
7336
|
}
|
7327
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
|
+
},
|
7328
7348
|
MuiMenuItem: {
|
7329
7349
|
defaultProps: {
|
7330
7350
|
dense: true
|
@@ -20024,14 +20044,14 @@ const DynamicColor = async src => {
|
|
20024
20044
|
const secondaryLight = hexFromArgb(dark.secondary);
|
20025
20045
|
const secondaryDark = hexFromArgb(light.secondary);
|
20026
20046
|
const primaryColor = {
|
20027
|
-
main: primaryMain,
|
20028
20047
|
light: primaryLight,
|
20048
|
+
main: primaryMain,
|
20029
20049
|
dark: primaryDark,
|
20030
20050
|
contrastText: "#ffffff"
|
20031
20051
|
};
|
20032
20052
|
const secondaryColor = {
|
20033
|
-
main: secondaryMain,
|
20034
20053
|
light: secondaryLight,
|
20054
|
+
main: secondaryMain,
|
20035
20055
|
dark: secondaryDark,
|
20036
20056
|
contrastText: "#ffffff"
|
20037
20057
|
};
|