Browse Source

Merge branch main to release

point.halo 11 months ago
parent
commit
0ee1728d56

+ 4 - 0
content/start/changelog/index-en-US.md

@@ -24,6 +24,10 @@ Version:Major.Minor.Patch (follow the **Semver** specification)
     - direction in ResizeGroup can be dynamic [@Nathon2Y](https://github.com/Nathon2Y)
     - direction in ResizeGroup can be dynamic [@Nathon2Y](https://github.com/Nathon2Y)
     - MarkdownRender adds the remarkGfm switch to prevent errors reported by lower versions of Safari that do not support lookaround assertions
     - MarkdownRender adds the remarkGfm switch to prevent errors reported by lower versions of Safari that do not support lookaround assertions
 
 
+#### 🎉 2.69.2 (2024-11-19)
+- 【Fix】
+    - Fixed the problem that the covered content will be revealed in the table header that can be clicked to trigger sorting,Affected versions 2.65.0-2.69.1
+
 #### 🎉 2.69.1 (2024-11-15)
 #### 🎉 2.69.1 (2024-11-15)
 - 【Fix】
 - 【Fix】
     - fix the issue that MonthRange DatePicker does not jump when clicking on a non-disabled year when there is a disabledDate
     - fix the issue that MonthRange DatePicker does not jump when clicking on a non-disabled year when there is a disabledDate

+ 4 - 0
content/start/changelog/index.md

@@ -22,6 +22,10 @@ Semi 版本号遵循 **Semver** 规范(主版本号-次版本号-修订版本
     - ResizeGroup的伸缩方向支持动态切换 [@Nathon2Y](https://github.com/Nathon2Y) [#2551](https://github.com/DouyinFE/semi-design/pull/2551)
     - ResizeGroup的伸缩方向支持动态切换 [@Nathon2Y](https://github.com/Nathon2Y) [#2551](https://github.com/DouyinFE/semi-design/pull/2551)
     - MarkdownRender 新增 remarkGfm 开关用于防止低版本 safari 不支持环视断言报错的问题 [#2576](https://github.com/DouyinFE/semi-design/pull/2576)
     - MarkdownRender 新增 remarkGfm 开关用于防止低版本 safari 不支持环视断言报错的问题 [#2576](https://github.com/DouyinFE/semi-design/pull/2576)
 
 
+#### 🎉 2.69.2 (2024-11-19)
+- 【Fix】
+    - 修复点击触发排序的表头会透出被遮盖的内容问题,影响版本 2.65.0-2.69.1 [#2578](https://github.com/DouyinFE/semi-design/pull/2578)
+
 #### 🎉 2.69.1 (2024-11-15)
 #### 🎉 2.69.1 (2024-11-15)
 - 【Fix】
 - 【Fix】
     - 修复 MonthRange DatePicker 在存在 disabledDate 情况下点击非禁用年份不跳转问题 [#2569](https://github.com/DouyinFE/semi-design/pull/2569)
     - 修复 MonthRange DatePicker 在存在 disabledDate 情况下点击非禁用年份不跳转问题 [#2569](https://github.com/DouyinFE/semi-design/pull/2569)

+ 1 - 1
content/start/content-guidelines/index-en-US.md

@@ -473,7 +473,7 @@ Avoid emoji, opt for an icon instead; use it at the end of a segment if you must
 
 
 > Example: Jan 1, 2018, 2018–01–01
 > Example: Jan 1, 2018, 2018–01–01
 
 
-- If there is enough space, write the date in full. Such as: March 12, 020
+- If there is enough space, write the date in full. Such as: March 12, 2020
 - If space is limited, the month can be abbreviated. Such as: Mar 12, 2020
 - If space is limited, the month can be abbreviated. Such as: Mar 12, 2020
 - Use dashes – (Option and -) to connect year, month and day, do not use / , such as: en: 03/01/2022; zh: 2022-03-01
 - Use dashes – (Option and -) to connect year, month and day, do not use / , such as: en: 03/01/2022; zh: 2022-03-01
 - Month abbreviations use three letters, Jan, Feb, Mar, Apr
 - Month abbreviations use three letters, Jan, Feb, Mar, Apr

+ 1 - 1
content/start/content-guidelines/index.md

@@ -470,7 +470,7 @@ Voice 传达的是品牌独特的观点、视角和认同的价值观,也就
 
 
 > 例:Jan 1, 2018,2018–01–01
 > 例:Jan 1, 2018,2018–01–01
 
 
-- 如果空间足够,将日期写全。如:March 12, 020
+- 如果空间足够,将日期写全。如:March 12, 2020
 - 如果空间有限,可缩写月份。如:Mar 12, 2020
 - 如果空间有限,可缩写月份。如:Mar 12, 2020
 - 使用短线–(Option和-)连接年月日,不使用 / ,如:en:03/01/2022;   zh:2022-03-01
 - 使用短线–(Option和-)连接年月日,不使用 / ,如:en:03/01/2022;   zh:2022-03-01
 - 月份缩写均采用三位字母,如:Jan、Feb、Mar、Apr;
 - 月份缩写均采用三位字母,如:Jan、Feb、Mar、Apr;

+ 2 - 1
packages/semi-foundation/table/table.scss

@@ -145,7 +145,8 @@ $module: #{$prefix}-table;
                 &.#{$module}-row-head-clickSort {
                 &.#{$module}-row-head-clickSort {
                     cursor: pointer;
                     cursor: pointer;
                     &:hover {
                     &:hover {
-                        background: $color-table_th-clickSort-bg-hover;
+                        background-image: linear-gradient(0deg, $color-table_th-clickSort-bg-hover, $color-table_th-clickSort-bg-hover);
+                        background-color: $color-table_cell-bg-hover;
                         
                         
                         &.#{$module}-cell-fixed {
                         &.#{$module}-cell-fixed {
                             &-left,
                             &-left,