bc518174
王天杨
提交两个项目文件
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { ComponentsPropsList } from "../../styles/props.js";
export interface Localization {
components?: {
MuiAlert?: {
defaultProps: Pick<ComponentsPropsList['MuiAlert'], 'closeText'>;
};
MuiBreadcrumbs?: {
defaultProps: Pick<ComponentsPropsList['MuiBreadcrumbs'], 'expandText'>;
};
MuiTablePagination?: {
defaultProps: Pick<ComponentsPropsList['MuiTablePagination'], 'labelRowsPerPage' | 'labelDisplayedRows' | 'getItemAriaLabel'>;
};
MuiRating?: {
defaultProps: Pick<ComponentsPropsList['MuiRating'], 'emptyLabelText' | 'getLabelText'>;
};
MuiAutocomplete?: {
defaultProps: Pick<ComponentsPropsList['MuiAutocomplete'], 'clearText' | 'closeText' | 'loadingText' | 'noOptionsText' | 'openText'>;
};
MuiPagination?: {
defaultProps: Pick<ComponentsPropsList['MuiPagination'], 'aria-label' | 'getItemAriaLabel'>;
};
};
}
|