diff --git a/example/docs/zh-CN/guide/changelog.md b/example/docs/zh-CN/guide/changelog.md
index 6ce16dbe..a0be13b5 100644
--- a/example/docs/zh-CN/guide/changelog.md
+++ b/example/docs/zh-CN/guide/changelog.md
@@ -17,9 +17,11 @@
0.4.4 2022-03-29
- [新增] tab 组件 position 属性, 不同方向的选项卡标题。
- - [修复] variable 全局变量重复导入的问题
+ - [修复] transfer 组件 showSearch 属性类型警告。
+ - [修复] upload 组件 number 属性必填警告。
+ - [修复] variable 全局变量重复导入的问题。
- [支持] icon 列表复制。
- - [支持] 夜间模式
+ - [支持] 夜间模式。
diff --git a/example/docs/zh-CN/guide/getStarted.md b/example/docs/zh-CN/guide/getStarted.md
index d0f7f822..02aa85f5 100644
--- a/example/docs/zh-CN/guide/getStarted.md
+++ b/example/docs/zh-CN/guide/getStarted.md
@@ -81,7 +81,7 @@ app.mount('#app')
::: describe 根据不同的 CDN 提供商有不同的引入方式, 根据不同的 CDN 提供商有不同的引入方式, 我们在这里以 unpkg 举例。
:::
-```
+```html
diff --git a/example/src/components/LayAnchor.vue b/example/src/components/LayAnchor.vue
index 1bd0649c..8f38933e 100644
--- a/example/src/components/LayAnchor.vue
+++ b/example/src/components/LayAnchor.vue
@@ -204,16 +204,16 @@ const throttle = (func: Function, wait: number) => {
list-style: none;
&:hover {
background-color: #f6f6f6 !important;
- color: #5fb878;
+ color: var(--global-checked-color);
}
&:active {
background-color: #f6f6f6 !important;
- color: #89d89f;
+ color: var(--global-checked-color);
}
&.active {
background-color: #f6f6f6 !important;
* {
- color: #5fb878 !important;
+ color: var(--global-checked-color);
}
}
}
diff --git a/src/component/table/index.vue b/src/component/table/index.vue
index 063d581c..424802f6 100644
--- a/src/component/table/index.vue
+++ b/src/component/table/index.vue
@@ -41,6 +41,7 @@ const emit = defineEmits([
"change",
"row-double",
"update:selectedKeys",
+ "contextmenu"
]);
const slot = useSlots();
diff --git a/src/component/transfer/index.vue b/src/component/transfer/index.vue
index 3379da3b..10ef04cd 100644
--- a/src/component/transfer/index.vue
+++ b/src/component/transfer/index.vue
@@ -8,12 +8,12 @@ export default {
import "./index.less";
import LayScroll from "../scroll";
import { Ref, ref, useSlots, watch } from "vue";
-import { Recordable } from "../../types";
+import { BooleanOrString, Recordable } from "../../types";
export interface LayTransferProps {
id?: string;
title?: string[];
- showSearch?: boolean;
+ showSearch?: BooleanOrString;
dataSource: Recordable[];
}