- 我知道这个问题以前也有人问过但 *
我想添加更多的颜色变体,如success
,warning
,并在background
(palette.background
)下添加更多的选项。比如lite
。(需要这种颜色的工作与黑暗的主题太多)
我像这样延伸主题
declare module "@mui/material/styles/createPalette" {
export interface PaletteOptions {
preset?: {
p1: string;
p2: string;
};
background?: {
b1: string,
b2: string
}
}
}
但得到以下错误:
TS2717: Subsequent property declarations must have the same type. Property 'background' must be of type 'Partial<TypeBackground> | undefined', but here has type '{ b1: string; b2: string; } | undefined'.
在这种情况下如何正确扩展MUI主题
2条答案
按热度按时间6jjcrrmo1#
就像Cody Duong回答How to have custom colors as props with mui v5 react typescript?一样,你可以按照同样的方法来定制颜色变体 prop 。
如果选中错误消息,
PaletteOptions
已经具有背景属性为其中背景类型为
这就是为什么你会得到
TS2717: Subsequent property declarations must have the same type. Property 'background' must be of type 'Partial<TypeBackground> | undefined', but here has type '{ b1: string; b2: string; } | undefined'.
错误我将在未来尝试用一个明确的解决方案编辑这个答案。但是,至少现在,我能给予你一个想法。保持编码;)
d5vmydt92#