release: update 5.9.0

This commit is contained in:
xiaoxian521
2024-12-15 10:45:15 +08:00
parent 85e5074665
commit 13a36c0acb
24 changed files with 2422 additions and 3124 deletions

8
types/global.d.ts vendored
View File

@@ -61,7 +61,7 @@ declare global {
/**
* 全局自定义环境变量的类型声明
* @see {@link https://pure-admin.github.io/pure-admin-doc/pages/config/#%E5%85%B7%E4%BD%93%E9%85%8D%E7%BD%AE}
* @see {@link https://pure-admin.cn/pages/config/#%E5%85%B7%E4%BD%93%E9%85%8D%E7%BD%AE}
*/
interface ViteEnv {
VITE_PORT: number;
@@ -75,11 +75,11 @@ declare global {
/**
* 继承 `@pureadmin/table` 的 `TableColumns` ,方便全局直接调用
*/
interface TableColumnList extends Array<TableColumns> {}
type TableColumnList = Array<TableColumns>;
/**
* 对应 `public/platform-config.json` 文件的类型声明
* @see {@link https://pure-admin.github.io/pure-admin-doc/pages/config/#platform-config-json}
* @see {@link https://pure-admin.cn/pages/config/#platform-config-json}
*/
interface PlatformConfigs {
Version?: string;
@@ -112,7 +112,7 @@ declare global {
/**
* 与 `PlatformConfigs` 类型不同,这里是缓存到浏览器本地存储的类型声明
* @see {@link https://pure-admin.github.io/pure-admin-doc/pages/config/#platform-config-json}
* @see {@link https://pure-admin.cn/pages/config/#platform-config-json}
*/
interface StorageConfigs {
version?: string;