release: update 3.9.1

This commit is contained in:
xiaoxian521
2022-12-02 20:20:50 +08:00
parent cb3d7cd552
commit cabf1f85ef
13 changed files with 109 additions and 79 deletions

2
types/global.d.ts vendored
View File

@@ -6,7 +6,6 @@ import type {
} from "vue";
import type { ECharts } from "echarts";
import type { IconifyIcon } from "@iconify/vue";
import type { ResponsiveStorage } from "./index";
import type { TableColumns } from "@pureadmin/table";
import { type RouteComponent, type RouteLocationNormalized } from "vue-router";
@@ -96,6 +95,7 @@ declare global {
ShowModel?: string;
MenuArrowIconNoTransition?: boolean;
CachingAsyncRoutes?: boolean;
TooltipEffect?: Effect;
}
/**

2
types/index.d.ts vendored
View File

@@ -45,6 +45,8 @@ type TimeoutHandle = ReturnType<typeof setTimeout>;
type IntervalHandle = ReturnType<typeof setInterval>;
type Effect = "light" | "dark";
interface ChangeEvent extends Event {
target: HTMLInputElement;
}