feat: 氧化铝数字孪生系统监控大屏完成

This commit is contained in:
2026-04-08 21:44:08 +08:00
commit a48babc68d
67606 changed files with 3337335 additions and 0 deletions

79
node_modules/@mui/material/locale/itIT.js generated vendored Normal file
View File

@@ -0,0 +1,79 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.itIT = void 0;
const itIT = exports.itIT = {
components: {
MuiBreadcrumbs: {
defaultProps: {
expandText: 'Visualizza percorso'
}
},
MuiTablePagination: {
defaultProps: {
getItemAriaLabel: type => {
if (type === 'first') {
return 'Vai alla prima pagina';
}
if (type === 'last') {
return "Vai all'ultima pagina";
}
if (type === 'next') {
return 'Vai alla pagina successiva';
}
// if (type === 'previous') {
return 'Vai alla pagina precedente';
},
labelRowsPerPage: 'Righe per pagina:',
labelDisplayedRows: ({
from,
to,
count
}) => `${from}${to} di ${count !== -1 ? count : `più di ${to}`}`
}
},
MuiRating: {
defaultProps: {
getLabelText: value => `${value} Stell${value !== 1 ? 'e' : 'a'}`,
emptyLabelText: 'Vuoto'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: 'Svuota',
closeText: 'Chiudi',
loadingText: 'Caricamento in corso…',
noOptionsText: 'Nessuna opzione',
openText: 'Apri'
}
},
MuiAlert: {
defaultProps: {
closeText: 'Chiudi'
}
},
MuiPagination: {
defaultProps: {
'aria-label': 'Navigazione impaginata',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${selected ? '' : 'Vai alla '}pagina ${page}`;
}
if (type === 'first') {
return 'Vai alla prima pagina';
}
if (type === 'last') {
return "Vai all'ultima pagina";
}
if (type === 'next') {
return 'Vai alla pagina successiva';
}
// if (type === 'previous') {
return 'Vai alla pagina precedente';
}
}
}
}
};