Explorar o código

docs: update v2.14.0-beta.0 changelog

走鹃 %!s(int64=3) %!d(string=hai) anos
pai
achega
8ddf5b55e6

+ 5 - 3
content/start/changelog/index-en-US.md

@@ -24,13 +24,15 @@ Version:Major.Minor.Patch
     - AutoComplete optimize A11y keyboard adaptation  [#205](https://github.com/DouyinFE/semi-design/issues/205)
 - 【Fix】
     - Fixed Input passing defaultValue will report an error [#537](https://github.com/DouyinFE/semi-design/issues/537)
-    - fix when setting collapsible = true, TabBar appears arrow when Tabs is scrolled out of viewport
-    - Fix some component foundation contains React related type definition problem  [#923](https://github.com/DouyinFE/semi-design/issues/923)
+    - Fixed when setting collapsible = true, TabBar appears arrow when Tabs is scrolled out of viewport
+    - Fixed some component foundation contains React related type definition problem  [#923](https://github.com/DouyinFE/semi-design/issues/923)
+    - Tooltip and Popover no longer automatically wraps span on disabled elements when trigger is custom [#919](https://github.com/DouyinFE/semi-design/issues/919)
 - 【Breaking Change】
     - The password button in Input is changed to be always displayed, and it was displayed when the input was hover or focus  [#205](https://github.com/DouyinFE/semi-design/issues/205)
 - 【Style】
-    - Fix TagInput suffix text color, changed from --semi-color-text-1 to --semi-color-text-2
+    - Fixed TagInput suffix text color, changed from --semi-color-text-1 to --semi-color-text-2
     - Updated the secondary global color variable, and changed the referenced color scale from blue to light-blue. Before the modification, the secondary color variable was the same as the primary. After the modification, the visual contrast was weaker than the primary. Button, Badge, Steps, Dropdown components are affected.
+    - Updating Select, Cascader, TreeSelect size='large', placeholder and radio text size, 14px -> 16px. Align with Input component [#859](https://github.com/DouyinFE/semi-design/issues/859)
 
 #### 🎉 2.13.0 (2022-06-20)
 - 【Fix】

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

@@ -25,11 +25,13 @@ Semi 版本号遵循**Semver**规范(主版本号-次版本号-修订版本号
     - 修复 Input 传 defaultValue 会报错问题 [#537](https://github.com/DouyinFE/semi-design/issues/537)
     - 修复设置collapsible = true时,Tabs滚动到视窗外时TabBar出现箭头
     - 修复部分组件 foundation 中包含 React 相关类型定义问题  [#923](https://github.com/DouyinFE/semi-design/issues/923)
+    - Tooltip/Popover trigger=custom 时,对 disabled 元素不再自动包裹 span [#919](https://github.com/DouyinFE/semi-design/issues/919)
 - 【Breaking Change】
     - Input 中的密码按钮改为常显,之前是 hover 或 focus 输入框时显示  [#205](https://github.com/DouyinFE/semi-design/issues/205)
 - 【Style】
     - 修复 TagInput suffix 文本颜色,从 --semi-color-text-1 修改为 --semi-color-text-2
     - 更新了 secondary 全局颜色变量,将引用的色阶由 blue 改为 light-blue,修改前 secondary 颜色变量与 primary 相同,修改后视觉上对比度弱于 primary。Button、Badge、Steps、Dropdown 组件受影响。
+    - 更新 Select、Cascader、TreeSelect size='large' 时 placeholder与单选的文字大小,14px -> 16px。与 Input 组件对齐 [#859](https://github.com/DouyinFE/semi-design/issues/859)
 
 #### 🎉 2.13.0 (2022-06-20)
 - 【Fix】

+ 4 - 4
cypress/integration/input.spec.js

@@ -10,12 +10,12 @@ describe('input', () => {
         cy.visit('http://localhost:6006/iframe.html?id=input--input-a-11-y&args=&viewMode=story');
         cy.get('[data-cy=password]').click();
         cy.get('[data-cy=password]').tab();
-        cy.get('.semi-input-modebtn').should('be.focused');
-        cy.get('.semi-input-modebtn').type('{ }');
+        cy.get('.semi-input-modebtn').eq(0).should('be.focused');
+        cy.get('.semi-input-modebtn').eq(0).type('{ }');
         cy.get('[data-cy=password]').should('have.value', 'Semi Design');
         cy.get('[data-cy=password]').tab();
-        cy.get('.semi-input-modebtn').should('be.focused');
-        cy.get('.semi-input-modebtn').type('{enter}');
+        cy.get('.semi-input-modebtn').eq(0).should('be.focused');
+        cy.get('.semi-input-modebtn').eq(0).type('{enter}');
         cy.get('[data-cy=password]').should('have.value', 'Semi Design');
     });
 });