Browse Source

Merge branch 'main' into release

tianfeng 2 months ago
parent
commit
1483484ea5

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

@@ -16,6 +16,10 @@ Version:Major.Minor.Patch (follow the **Semver** specification)
 
 ---
 
+#### 🎉 2.85.0 (2025-08-11)
+- 【Fix】
+    - fix the issue that the style of the light theme badge does not meet expectations when used alone [#2929](https://github.com/DouyinFE/semi-design/issues/2929) [#2930](https://github.com/DouyinFE/semi-design/pull/2930)
+
 #### 🎉 2.85.0-beta.0 (2025-08-05)
 - 【Feat】
     - Input and TextArea adds callback function for onCompositionStart/onCompositionEnd/onCompositionUpdate [#2922](https://github.com/DouyinFE/semi-design/pull/2922)

+ 5 - 1
content/start/changelog/index.md

@@ -13,6 +13,10 @@ Semi 版本号遵循 **Semver** 规范(主版本号 - 次版本号 - 修订版
 -   修订版本号(patch):仅会进行 bugfix,发布时间不限
 -   不同版本间的详细关系,可查阅 [FAQ](/zh-CN/start/faq)
 
+#### 🎉 2.85.0 (2025-08-11)
+- 【Fix】
+    - 修复 light 主题 Badge 单独使用时样式不符合预期问题 [#2929](https://github.com/DouyinFE/semi-design/issues/2929) [#2930](https://github.com/DouyinFE/semi-design/pull/2930)
+
 #### 🎉 2.85.0-beta.0 (2025-08-05)
 - 【Feat】
     - Input/TextArea 增加 onCompositionStart/onCompositionEnd/onCompositionUpdate 的回调 [#2922](https://github.com/DouyinFE/semi-design/pull/2922)
@@ -97,7 +101,7 @@ Semi 版本号遵循 **Semver** 规范(主版本号 - 次版本号 - 修订版
     - Upload 添加文件名超长时弹出文件名提示功能 [@yatbfm](https://github.com/yatbfm) [#2753](https://github.com/DouyinFE/semi-design/pull/2753)
 - 【Fix】
     - 修复 Switch 组件 loading 加 disabled 态 hover 后样式问题 [@LonelySnowman](https://github.com/LonelySnowman) [#2778](https://github.com/DouyinFE/semi-design/pull/2778)
-    - 修复 Table 组件在 onHeaderCell 中通过 style 设置表头背景色时候,fixed 表头中不生效问题 [BUG] Table 的 column 设置 fixed 后,通过 onHeaderCell 设置的 style 样式有问题 [#2814](https://github.com/DouyinFE/semi-design/issues/2814)
+    - 修复 Table 组件在 onHeaderCell 中通过 style 设置表头背景色时候,fixed 表头中不生效问题 [#2814](https://github.com/DouyinFE/semi-design/issues/2814)
 - 【Style】
     - Dropdown 增加 $radius-dropdown_item token 用于设置面板中的各选项圆角 [#2817](https://github.com/DouyinFE/semi-design/pull/2817)
     - ScrollList 最外层增加 overflow: hidden 的样式设置 [#2818](https://github.com/DouyinFE/semi-design/pull/2818)

+ 1 - 1
lerna.json

@@ -1,5 +1,5 @@
 {
     "useWorkspaces": true,
     "npmClient": "yarn",
-    "version": "2.85.0-beta.0"
+    "version": "2.85.0"
 }

+ 3 - 3
packages/semi-animation-react/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-animation-react",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "motion library for semi-ui-react",
     "keywords": [
         "motion",
@@ -25,8 +25,8 @@
         "prepublishOnly": "npm run build:lib"
     },
     "dependencies": {
-        "@douyinfe/semi-animation": "2.85.0-beta.0",
-        "@douyinfe/semi-animation-styled": "2.85.0-beta.0",
+        "@douyinfe/semi-animation": "2.85.0",
+        "@douyinfe/semi-animation-styled": "2.85.0",
         "classnames": "^2.2.6"
     },
     "devDependencies": {

+ 1 - 1
packages/semi-animation-styled/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-animation-styled",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "semi styled animation",
     "keywords": [
         "semi",

+ 1 - 1
packages/semi-animation/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-animation",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "animation base library for semi-ui",
     "keywords": [
         "animation",

+ 1 - 1
packages/semi-eslint-plugin/package.json

@@ -1,6 +1,6 @@
 {
     "name": "eslint-plugin-semi-design",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "semi ui eslint plugin",
     "keywords": [
         "semi",

+ 4 - 1
packages/semi-foundation/autoComplete/foundation.ts

@@ -221,6 +221,8 @@ class AutoCompleteFoundation<P = Record<string, any>, S = Record<string, any>> e
         const options = this._generateList(newData);
         this._adapter.updateOptionList(options);
         this._adapter.rePositionDropdown();
+        let { inputValue } = this.getStates();
+        this._modifyFocusIndex(inputValue);
     }
 
     handleValueChange(propValue: any) {
@@ -408,7 +410,8 @@ class AutoCompleteFoundation<P = Record<string, any>, S = Record<string, any>> e
             if (focusIndex !== undefined && focusIndex !== -1 && options.length !== 0) {
                 const visibleOptions = options.filter((item: StateOptionItem) => item.show);
                 const selectedOption = visibleOptions[focusIndex];
-                this.handleSelect(selectedOption, focusIndex);
+                selectedOption && this.handleSelect(selectedOption, focusIndex);
+  
             } else {
                 this.closeDropdown();
             }

+ 0 - 25
packages/semi-foundation/badge/badge.scss

@@ -72,31 +72,6 @@ $module: #{$prefix}-badge;
         display: inline-block;
     }
 
-    &-light::before {
-        content: "";
-        display: block;
-        width: 100%;
-        height: 100%;
-        border-radius: inherit;
-        position: absolute;
-        top: 0;
-        left: 0;
-        background-color: $color-badge_default_light-bg-default;
-        z-index: $z-badge_light-bg;
-    }
-
-    &-light::after {
-        content: "";
-        display: block;
-        width: 100%;
-        height: 100%;
-        border-radius: inherit;
-        position: absolute;
-        top: 0;
-        left: 0;
-        background-color: inherit;
-        z-index: $z-badge_light-bg;
-    }
 
     &-primary {
         &.#{$module}-solid {

+ 3 - 3
packages/semi-foundation/package.json

@@ -1,14 +1,14 @@
 {
     "name": "@douyinfe/semi-foundation",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "",
     "scripts": {
         "build:lib": "node ./scripts/compileLib.js",
         "prepublishOnly": "npm run build:lib"
     },
     "dependencies": {
-        "@douyinfe/semi-animation": "2.85.0-beta.0",
-        "@douyinfe/semi-json-viewer-core": "2.85.0-beta.0",
+        "@douyinfe/semi-animation": "2.85.0",
+        "@douyinfe/semi-json-viewer-core": "2.85.0",
         "@mdx-js/mdx": "^3.0.1",
         "async-validator": "^3.5.0",
         "classnames": "^2.2.6",

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

@@ -269,8 +269,8 @@ $module: #{$prefix}-table;
                     &.#{$module}-cell-fixed {
                         &-left,
                         &-right {
-                            background-image: linear-gradient(0deg, $color-table_body-bg-default, $color-table_body-bg-default);
-                            background-color: $color-table_body-bg-hover;
+                            background-image: linear-gradient(0deg, $color-table_body-bg-hover, $color-table_body-bg-hover);
+                            background-color: $color-table_body-bg-default;
 
                             // &::before {
                             //     background-color: $color-table_body-bg-hover;

+ 1 - 1
packages/semi-icons-lab/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@douyinfe/semi-icons-lab",
-  "version": "2.85.0-beta.0",
+  "version": "2.85.0",
   "description": "semi icons lab",
   "keywords": [
     "semi",

+ 1 - 1
packages/semi-icons/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-icons",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "semi icons",
     "keywords": [
         "semi",

+ 1 - 1
packages/semi-illustrations/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-illustrations",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "semi illustrations",
     "keywords": [
         "semi",

+ 1 - 1
packages/semi-json-viewer-core/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-json-viewer-core",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "",
     "main": "lib/index.js",
     "module": "lib/index.js",

+ 2 - 2
packages/semi-next/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-next",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "Plugin that support Semi Design in Next.js",
     "author": "伍浩威 <[email protected]>",
     "homepage": "",
@@ -22,7 +22,7 @@
         "typescript": "^4"
     },
     "dependencies": {
-        "@douyinfe/semi-webpack-plugin": "2.85.0-beta.0"
+        "@douyinfe/semi-webpack-plugin": "2.85.0"
     },
     "gitHead": "eb34a4f25f002bb4cbcfa51f3df93bed868c831a"
 }

+ 1 - 1
packages/semi-rspack/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-rspack-plugin",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "",
     "homepage": "",
     "license": "MIT",

+ 1 - 1
packages/semi-scss-compile/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-scss-compile",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "compile semi scss to css",
     "author": "[email protected]",
     "license": "MIT",

+ 1 - 1
packages/semi-theme-default/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-theme-default",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "semi-theme-default",
     "keywords": [
         "semi-theme",

+ 35 - 0
packages/semi-ui/autoComplete/_story/autoComplete.stories.jsx

@@ -4,6 +4,7 @@ import CustomTrigger from './CustomTrigger';
 import AutoComplete from '../index';
 import { Form, Avatar } from '../../index';
 import { IconSearch } from '@douyinfe/semi-icons';
+import { debounce } from 'lodash';
 
 export default {
     title: 'AutoComplete',
@@ -414,4 +415,38 @@ export const AutoScrollToKeyboardUpDown = () => {
         >
         </AutoComplete>
     </>
+}
+
+export const Fix2951 = () => {
+     let initList = [
+        '1.60','1.62','1.63','1.64'
+    ];
+
+    const [loading, setLoading] = useState(false);
+    const [list, setList] = useState([]);
+
+    const handleSearch = (inputValue) => {
+        setLoading(true);
+        let newList = [];
+        if (inputValue) {
+            newList = initList.filter(item => item.includes(inputValue));
+        }
+        setTimeout(() => {
+            setList(newList);
+            setLoading(false);
+        }, 1000);
+    };
+
+    const search = debounce(handleSearch, 200);
+
+    return (
+        <AutoComplete
+            data={list}
+            style={{ width: 250 }}
+            prefix={<IconSearch />}
+            onSearch={search}
+            loading={loading}
+            defaultActiveFirstOption={true}
+        ></AutoComplete>
+    );
 }

+ 10 - 1
packages/semi-ui/badge/_story/badge.stories.jsx

@@ -123,4 +123,13 @@ export const AvatarBadge = () => {
       </div>
   );  
 };
-AvatarBadge.storyName = '头像 badge';
+AvatarBadge.storyName = '头像 badge';
+
+export const SingleUsage = () => {
+  return (
+    <div>
+      <Badge count={5} theme='light' type='primary' countStyle={{ backgroundColor: 'lightPink' }}/>
+    </div>
+  );
+};
+SingleUsage.storyName = '单个使用';

+ 7 - 7
packages/semi-ui/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-ui",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.",
     "main": "lib/cjs/index.js",
     "module": "lib/es/index.js",
@@ -20,12 +20,12 @@
         "@dnd-kit/core": "^6.0.8",
         "@dnd-kit/sortable": "^7.0.2",
         "@dnd-kit/utilities": "^3.2.1",
-        "@douyinfe/semi-animation": "2.85.0-beta.0",
-        "@douyinfe/semi-animation-react": "2.85.0-beta.0",
-        "@douyinfe/semi-foundation": "2.85.0-beta.0",
-        "@douyinfe/semi-icons": "2.85.0-beta.0",
-        "@douyinfe/semi-illustrations": "2.85.0-beta.0",
-        "@douyinfe/semi-theme-default": "2.85.0-beta.0",
+        "@douyinfe/semi-animation": "2.85.0",
+        "@douyinfe/semi-animation-react": "2.85.0",
+        "@douyinfe/semi-foundation": "2.85.0",
+        "@douyinfe/semi-icons": "2.85.0",
+        "@douyinfe/semi-illustrations": "2.85.0",
+        "@douyinfe/semi-theme-default": "2.85.0",
         "async-validator": "^3.5.0",
         "classnames": "^2.2.6",
         "copy-text-to-clipboard": "^2.1.1",

+ 1 - 1
packages/semi-webpack/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@douyinfe/semi-webpack-plugin",
-    "version": "2.85.0-beta.0",
+    "version": "2.85.0",
     "description": "",
     "author": "伍浩威 <[email protected]>",
     "homepage": "",

File diff suppressed because it is too large
+ 216 - 216
sitemap.xml


+ 98 - 0
yarn.lock

@@ -1585,11 +1585,25 @@
     "@douyinfe/semi-animation-styled" "2.65.0"
     classnames "^2.2.6"
 
+"@douyinfe/[email protected]":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-animation-react/-/semi-animation-react-2.84.0.tgz#3218901ca2ed2efff8f93d0b1f5d52b703dd65db"
+  integrity sha512-jw57LwjWMER5OIapC3yFRkxcsGUwIJcIuBdfymHVdqEm2HBfw+4u8RTC+l41xxJ9YQDTyicTw8ZF1s0Fs0Zhew==
+  dependencies:
+    "@douyinfe/semi-animation" "2.84.0"
+    "@douyinfe/semi-animation-styled" "2.84.0"
+    classnames "^2.2.6"
+
 "@douyinfe/[email protected]":
   version "2.65.0"
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-animation-styled/-/semi-animation-styled-2.65.0.tgz#8c56047a5704a45b05cc9809a2a126cc24526ea1"
   integrity sha512-YFF8Ptcz/jwS0phm28XZV7ROqMQ233sjVR0Uy33FImCITr6EAPe5wcCeEmzVZoYS7x3tUFR30SF+0hSO01rQUg==
 
+"@douyinfe/[email protected]":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-animation-styled/-/semi-animation-styled-2.84.0.tgz#2856dc9c7252bdad9f53775873604a609b1cc748"
+  integrity sha512-KqiCAlXEWZdOuae5ljiK6CqTqzCh6WKq+rOncodfvAqeabbZ1S3u0UHT2Jf0hUnD6OVRn4vf8aYerw+j2AZb9w==
+
 "@douyinfe/[email protected]":
   version "2.65.0"
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-animation/-/semi-animation-2.65.0.tgz#f544a6b420c3e948c09836019e6b63f1382cd12c"
@@ -1597,6 +1611,13 @@
   dependencies:
     bezier-easing "^2.1.0"
 
+"@douyinfe/[email protected]":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-animation/-/semi-animation-2.84.0.tgz#a5ebd7c397cbcc383b5c93454c01b3cc1ac3dc6b"
+  integrity sha512-SHQiU+JIOEoL1McR8bCuT0+nNxQpXRLtxxforPQJZBuYekVordSaO8uAku+02SUh7xg+x3dDFKv44QiM6fB3rw==
+  dependencies:
+    bezier-easing "^2.1.0"
+
 "@douyinfe/[email protected]":
   version "2.65.0"
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-foundation/-/semi-foundation-2.65.0.tgz#20466a9b4baacdde2249930fb709ba035c5a7bea"
@@ -1616,6 +1637,26 @@
     remark-gfm "^4.0.0"
     scroll-into-view-if-needed "^2.2.24"
 
+"@douyinfe/[email protected]":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-foundation/-/semi-foundation-2.84.0.tgz#f2e688ea8e2d8c63454ce678ab8db15e80abb2e2"
+  integrity sha512-SoxXCeRbaRMjCvbs8zwhng9vKyE3EgR8W2VZ9+0t4ME9EK8N8mUff0Du7u30IymjfmR3OdpNEh34uW8/cgobqg==
+  dependencies:
+    "@douyinfe/semi-animation" "2.84.0"
+    "@douyinfe/semi-json-viewer-core" "2.84.0"
+    "@mdx-js/mdx" "^3.0.1"
+    async-validator "^3.5.0"
+    classnames "^2.2.6"
+    date-fns "^2.29.3"
+    date-fns-tz "^1.3.8"
+    fast-copy "^3.0.1 "
+    lodash "^4.17.21"
+    lottie-web "^5.12.2"
+    memoize-one "^5.2.1"
+    prismjs "^1.29.0"
+    remark-gfm "^4.0.0"
+    scroll-into-view-if-needed "^2.2.24"
+
 "@douyinfe/[email protected]", "@douyinfe/semi-icons@latest":
   version "2.65.0"
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-icons/-/semi-icons-2.65.0.tgz#af39cbd5431ebccedcf7d9ce689646e54bebc432"
@@ -1623,11 +1664,30 @@
   dependencies:
     classnames "^2.2.6"
 
+"@douyinfe/[email protected]", "@douyinfe/semi-icons@^2.0.0":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-icons/-/semi-icons-2.84.0.tgz#01c60a1c744017f2f4b15518b9ce5469552062f4"
+  integrity sha512-EShiV2TgviUvhRB7vBAewO7C+75p9s/9BlRA5G9c/TXBkdyzU4U4hN+d7pY5ScVS6H4+rf2Gu/RMnXRH5dKhSg==
+  dependencies:
+    classnames "^2.2.6"
+
 "@douyinfe/[email protected]":
   version "2.65.0"
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-illustrations/-/semi-illustrations-2.65.0.tgz#9916c540c91222a1d9f48cd34a941d28b8a05d2f"
   integrity sha512-1IhOztyBYiSu8WrcvN+oWWtcJTC9+x6zbnYtufx4ToISs5UO1te1PQofABpkDzIJYFtW9yYLxg4uoL4wGjqYMA==
 
+"@douyinfe/[email protected]":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-illustrations/-/semi-illustrations-2.84.0.tgz#6be577194d012b0a45c7b33d295090568c5c89ab"
+  integrity sha512-t6CLMHTvR3N5c27U3i3iYHiUbJb4i96E6N3++w1VCGielPly9mM5WHvQdHc9mbfjM7lMfjsvo1LGbUyxO+BQ8g==
+
+"@douyinfe/[email protected]":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-json-viewer-core/-/semi-json-viewer-core-2.84.0.tgz#4d396374f0c3db08b66d44c6efad09f8f8ad5a4b"
+  integrity sha512-de6eDd7mkNPx7B/qxYP+OqkfFxZax21b1X5vnqjg0Tg2cuzbWPzaO3sBuZ5JR1I91hzyuxQzdjBbF5H4ij6ctA==
+  dependencies:
+    jsonc-parser "^3.3.1"
+
 "@douyinfe/[email protected]":
   version "2.23.2"
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-scss-compile/-/semi-scss-compile-2.23.2.tgz#30884bb194ee9ae1e81877985e5663c3297c1ced"
@@ -1699,6 +1759,39 @@
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-theme-default/-/semi-theme-default-2.61.0.tgz#a7e9bf9534721c12af1d0eeb5d5a2de615896a23"
   integrity sha512-obn/DOw4vZyKFAlWvZxHTpBLAK9FO9kygTSm2GROgvi+UDB2PPU6l20cuUCsdGUNWJRSqYlTTVZ1tNYIyFZ5Sg==
 
+"@douyinfe/[email protected]":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-theme-default/-/semi-theme-default-2.84.0.tgz#1670bae8323e8adc50480be7ffd0d6a2e232da80"
+  integrity sha512-tQBS3aolqvYju+1MlJb3lMuv/muy8vvoLFNWsi7tkzR/cyYOSBNkFpJJU4zoF1BJjhjn4zYrsuxgUHAxlMBCSw==
+
+"@douyinfe/semi-ui@^2.0.0":
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/@douyinfe/semi-ui/-/semi-ui-2.84.0.tgz#d3270905a1bce668d97810e8921a6651336ac467"
+  integrity sha512-c3siUgqmW58gwpI1pVTrP4fhM1MII+kVewnygASxLrIt8QNqCQQpWJhWuibKrCDINiyETamZhtD+Qsn6H19WuQ==
+  dependencies:
+    "@dnd-kit/core" "^6.0.8"
+    "@dnd-kit/sortable" "^7.0.2"
+    "@dnd-kit/utilities" "^3.2.1"
+    "@douyinfe/semi-animation" "2.84.0"
+    "@douyinfe/semi-animation-react" "2.84.0"
+    "@douyinfe/semi-foundation" "2.84.0"
+    "@douyinfe/semi-icons" "2.84.0"
+    "@douyinfe/semi-illustrations" "2.84.0"
+    "@douyinfe/semi-theme-default" "2.84.0"
+    async-validator "^3.5.0"
+    classnames "^2.2.6"
+    copy-text-to-clipboard "^2.1.1"
+    date-fns "^2.29.3"
+    date-fns-tz "^1.3.8"
+    fast-copy "^3.0.1 "
+    jsonc-parser "^3.3.1"
+    lodash "^4.17.21"
+    prop-types "^15.7.2"
+    react-resizable "^3.0.5"
+    react-window "^1.8.2"
+    scroll-into-view-if-needed "^2.2.24"
+    utility-types "^3.10.0"
+
 "@douyinfe/semi-ui@latest":
   version "2.65.0"
   resolved "https://registry.yarnpkg.com/@douyinfe/semi-ui/-/semi-ui-2.65.0.tgz#295eb0dd8e9e961adb4ddd7c7bbce3468d1b7430"
@@ -11981,6 +12074,11 @@ eslint-plugin-react@^7.20.6, eslint-plugin-react@^7.24.0:
     string.prototype.matchall "^4.0.11"
     string.prototype.repeat "^1.0.0"
 
+eslint-plugin-semi-design@^2.33.0:
+  version "2.84.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-semi-design/-/eslint-plugin-semi-design-2.84.0.tgz#1a0fafb7262e7ebd2659ed94d21113de8eebe523"
+  integrity sha512-ctzeOgzmJIUBmQiBPBK+WCkziBS81cN/b94G6tqpljXUoJmku21gjcRwI20A9Bd1EEkFhqlMF3F97i+rtBBLnQ==
+
 eslint-rule-composer@^0.3.0:
   version "0.3.0"
   resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9"

Some files were not shown because too many files changed in this diff