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

View File

@@ -0,0 +1 @@
export default function capitalize(string: string): string;

11
node_modules/@mui/utils/esm/capitalize/capitalize.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
import _formatErrorMessage from "@mui/utils/formatMuiErrorMessage";
// It should to be noted that this function isn't equivalent to `text-transform: capitalize`.
//
// A strict capitalization should uppercase the first letter of each word in the sentence.
// We only handle the first word.
export default function capitalize(string) {
if (typeof string !== 'string') {
throw new Error(process.env.NODE_ENV !== "production" ? 'MUI: `capitalize(string)` expects a string argument.' : _formatErrorMessage(7));
}
return string.charAt(0).toUpperCase() + string.slice(1);
}

1
node_modules/@mui/utils/esm/capitalize/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from "./capitalize.js";

1
node_modules/@mui/utils/esm/capitalize/index.js generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from "./capitalize.js";