gpt4 book ai didi

javascript - 调色板中的 MUI 自定义命名选项 - 类型 'primary' 上不存在属性 'TypeBackground'

转载 作者:行者123 更新时间:2023-12-05 02:34:26 27 4
gpt4 key购买 nike

我正在尝试扩展 MUI 调色板,以便我可以通过以下代码使用我自己命名的属性:

declare module '@mui/material/styles' {
interface Palette {
border: Palette['primary']
background: Palette['primary']
}

// allow configuration using `createTheme`
interface PaletteOptions {
border?: PaletteOptions['primary']
background?: PaletteOptions['primary']
}
}

border 工作没有问题,但是由于尝试添加新背景,它确实提示这个。

完整错误:

Property 'primary' does not exist on type 'TypeBackground'.  TS2339

8 |
9 | const DocumentUploadContainer = styled('div')`
> 10 | color: ${props => props.theme.palette.background.primary};
| ^
11 | `
12 | export const Documents = () => {
13 | return (

enter image description here

最佳答案

您可以 checkin 文件createPalette.d.ts梅。因为 background 已经在 interface PaletteOptions 中,(如您所见)

export interface PaletteOptions {
primary?: PaletteColorOptions;
secondary?: PaletteColorOptions;
error?: PaletteColorOptions;
warning?: PaletteColorOptions;
info?: PaletteColorOptions;
success?: PaletteColorOptions;
mode?: PaletteMode;
tonalOffset?: PaletteTonalOffset;
contrastThreshold?: number;
common?: Partial<CommonColors>;
grey?: ColorPartial;
text?: Partial<TypeText>;
divider?: string;
action?: Partial<TypeAction>;
background?: Partial<TypeBackground>;
getContrastText?: (background: string) => string;
}
export interface TypeBackground {
default: string;
paper: string;
}

因此,您不能像这样使用模块扩充来覆盖它。只需使用另一个名称即可。

关于javascript - 调色板中的 MUI 自定义命名选项 - 类型 'primary' 上不存在属性 'TypeBackground',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70767580/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com