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

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

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

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

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

15
node_modules/@mui/utils/esm/setRef/setRef.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import * as React from 'react';
/**
* TODO v5: consider making it private
*
* passes {value} to {ref}
*
* WARNING: Be sure to only call this inside a callback that is passed as a ref.
* Otherwise, make sure to cleanup the previous {ref} if it changes. See
* https://github.com/mui/material-ui/issues/13539
*
* Useful if you want to expose the ref of an inner component to the public API
* while still using it inside the component.
* @param ref A ref callback or ref object. If anything falsy, this is a no-op.
*/
export default function setRef<T>(ref: React.MutableRefObject<T | null> | ((instance: T | null) => void) | null | undefined, value: T | null): void;

20
node_modules/@mui/utils/esm/setRef/setRef.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
/**
* TODO v5: consider making it private
*
* passes {value} to {ref}
*
* WARNING: Be sure to only call this inside a callback that is passed as a ref.
* Otherwise, make sure to cleanup the previous {ref} if it changes. See
* https://github.com/mui/material-ui/issues/13539
*
* Useful if you want to expose the ref of an inner component to the public API
* while still using it inside the component.
* @param ref A ref callback or ref object. If anything falsy, this is a no-op.
*/
export default function setRef(ref, value) {
if (typeof ref === 'function') {
ref(value);
} else if (ref) {
ref.current = value;
}
}