@sinco/react 1.0.15-rc.68 → 1.0.15-rc.69
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 +11 -0
- package/package.json +1 -1
- package/src/lib/Theme/palette.d.ts +19 -0
package/index.js
CHANGED
@@ -7143,6 +7143,17 @@ const palette = {
|
|
7143
7143
|
A700: '#A9FF5E',
|
7144
7144
|
contrastText: '#ffffff'
|
7145
7145
|
},
|
7146
|
+
avatar: {
|
7147
|
+
abc: "#FFA000",
|
7148
|
+
def: "#0057B2",
|
7149
|
+
ghi: "#0097A7",
|
7150
|
+
jkl: "#E64A19",
|
7151
|
+
mnñ: "#512DA8",
|
7152
|
+
opq: "#388E3C",
|
7153
|
+
rst: "#0288D1",
|
7154
|
+
uvw: "#C2185B",
|
7155
|
+
xyz: "#FBC02D"
|
7156
|
+
},
|
7146
7157
|
grey: {
|
7147
7158
|
50: '#F7F7F8',
|
7148
7159
|
100: '#EAEBEC',
|
package/package.json
CHANGED
@@ -1,2 +1,21 @@
|
|
1
|
+
import { PaletteAugmentColorOptions } from '@mui/material/styles/createPalette';
|
1
2
|
import { PaletteOptions } from '@mui/material';
|
3
|
+
declare module '@mui/material/styles' {
|
4
|
+
interface Palette {
|
5
|
+
avatar: PaletteAugmentColorOptions;
|
6
|
+
}
|
7
|
+
interface PaletteOptions {
|
8
|
+
avatar?: {
|
9
|
+
abc?: string;
|
10
|
+
def?: string;
|
11
|
+
ghi?: string;
|
12
|
+
jkl?: string;
|
13
|
+
mnñ?: string;
|
14
|
+
opq?: string;
|
15
|
+
rst?: string;
|
16
|
+
uvw?: string;
|
17
|
+
xyz?: string;
|
18
|
+
};
|
19
|
+
}
|
20
|
+
}
|
2
21
|
export declare const palette: PaletteOptions;
|