23 lines
907 B
TypeScript
23 lines
907 B
TypeScript
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'>;
|
|
};
|
|
};
|
|
} |