chore: sync master into next

This commit is contained in:
thinkasany
2025-02-13 16:35:02 +08:00
28 changed files with 450 additions and 162 deletions

5
typings/cssType.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare namespace React {
interface CSSProperties {
[key: `--${string | number}`]: string | number | undefined; // 允许 CSS 变量
}
}