Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add changelog 4.24.0 #38315

Merged
merged 8 commits into from Nov 1, 2022
Merged

docs: add changelog 4.24.0 #38315

merged 8 commits into from Nov 1, 2022

Conversation

xrkffgg
Copy link
Member

@xrkffgg xrkffgg commented Oct 31, 2022

  • 🔥 新增组件 Space.Compact。#37652 @foryuki
  • 🆕 Form 下组件支持自定义 disabled 覆盖 Form 的 disabled 状态。#37628 @kiner-tang
  • 🆕 Typograph 增加 text 配置,支持同时开启省略与编辑模式时的使用。#37761 @zheeeng
  • 🆕 Row 组件的 alignjustify 属性支持设置响应式的值。#37860 @kiner-tang
  • 🆕 Tabs 组件支持从 ConfigProvider 取出 getPopupContainer 传入 rc-tabs。#38238 @ZH-seven
  • 🆕 Image 增加 preview.scaleStep 属性调整放大缩小的幅度,并将默认的 scaleOffset 设置为 0.5。#37340 @coldice945
  • 🆕 Steps 新增支持 items#37531 @heiyu4585
  • 🆕 Collapse 新增 collapsible="icon" 从而支持点击图标展开收起。#37566 @Sheepeer
  • Table
    • 🆕 Table filterDropdown 新增一个 close 参数对象用于关闭筛选菜单。#37745 @kiner-tang
    • 🐞 修复 Table 组件 aria-label 出现 [object Object] 的问题。#38160 @kiner-tang
  • Dropdown
  • 🐞 修复一个在 Menu.Item disabled 内使用 Tooltip 不生效的问题。#38273
  • 🐞 修复 Tooltip 在 placement 值为 topRightbottomLeft 时动画原点计算错误的问题。#38159 @strear
  • 🐞 TimePicker 移除使用了 popupClassName 冗余警告。#38190 @kiner-tang
  • 🐞 修复嵌套 Drawer 在默认都设置 open 时,添加至 document 顺序出错的问题。#37767 #37790
  • 🐞 修复 Badge 同时设置 colorcount 时,数字不展示的问题。#37609 @kiner-tang
  • 🐞 修复 Progress 在 Safari 下缩放异常的问题。#38301
  • Modal
    • 🐞 修复在 React 18 下 Modal 动画闪烁的问题。#38275
    • 🐞 修复 Modal.method() 关闭时默认没有聚焦触发元素的问题。#38275
  • Transfer
  • 🛠 重构 Anchor 为 Function Component。#38265 #37957 @li-jia-nan @RexSkz
  • 🛠 简化 DirectoryTree ref 逻辑。#38184 @holazz
  • 🛠 简化 Typography.Link ref 逻辑。#38181 @holazz
  • 🛠 使用枚举代替常量值,表达内部 Ellipsis 的计算状态。#37716 @zheeeng
  • 💄 修复 TextArea 开启 allowClear 时自定义 border 样式无法生效的问题。#38101
  • 💄 修复 Popconfirm 设置 icon={null} 的时 title padding 仍然存在的问题 。现在 icon 元素外会包裹一个 span 标签。#37384 @edc-hui
  • 💄 修复 submenu::after 在紧凑模式下的伪元素宽度。#38223 @messaooudi
  • Carousel
    • 💄 扩大 Carousel 切换点的鼠标响应范围,优化切换体验。#38257
    • 💄 修复 Carousel dots 样式未被正确 reset 的问题。#38100
  • TypeScript
  • 🌐 国际化

  • 🔥 Add new component Space.Compact. #37652 @foryuki
  • 🆕 Components under Form support custom disabled to override disabled of Form. #37628 @kiner-tang
  • 🆕 Add text config for editable Typograph, support enabling ellipsis and editable at the same time. #37761 @zheeeng
  • 🆕 Row align and justify support reponsive value. #37860 @kiner-tang
  • 🆕 Tabs support get getPopupContainer from ConfigProvider. #38238 @ZH-seven
  • 🆕 Image add preview.scaleStep prop to adjust the magnitude of zoom in and out and set the default scaleOffset to 0.5. #37340 @coldice945
  • 🆕 Steps support items. #37531 @heiyu4585
  • 🆕 Collapse supports collapsible="icon" to collapse by clicking icon. #37566 @Sheepeer
  • Table
    • 🆕 Table filterDropdown add close in argument to close filter dropdown only. #37745 @kiner-tang
    • 🐞 Fix Table aria-label contains [object Object]. #38160 @kiner-tang
  • Dropdown
    • 🆕 Dropdown support items. #37885 @JarvisArt
    • 🛠 The layout of the Dropdown.Button component is implemented using Space.Compact instead. #38090 @foryuki
  • 🐞 Fix Tooltip is broken when used in a disabled Menu.Item. #38273
  • 🐞 Fix the issue of miscalculated transform-origin for Tooltip with placement values like topRight or bottomLeft. #38159 @strear
  • 🐞 TimePicker remove redundant warning about using popupClassName. #38190 @kiner-tang
  • 🐞 Fix nest Drawer with default open append document order issue. #37767 #37790
  • 🐞 Fix issue where numbers were not displayed when Badge set both color and count. #37609 @kiner-tang
  • 🐞 Fix Progress zoom behavior in Safari. #38301
  • Modal
    • 🐞 Fix Modal animation flush issue in React 18. #38275
    • 🐞 Fix Modal.method() not focus trigger after close. #38275
  • Transfer
  • 🛠 Refactor Anchor to Function Component. #38265 #37957 @li-jia-nan @RexSkz
  • 🛠 Simple DirectoryTree ref. #38184 @holazz
  • 🛠 Simple Typography.Link ref. #38181 @holazz
  • 🛠 Use enum instead of iteral constants. #37716 @zheeeng
  • 💄 Fix TextArea custom border style not working when allowClear is enable. #38101
  • 💄 Fix Popconfirm style issue when icon={null}, and icon element would be wrapped by a span tag now. #37384 @edc-hui
  • 💄 Fix submenu::after in compact mode. #38223 @messaooudi
  • Carousel
    • 💄 Enlarge Carousel dots hover area for better experience. #38257
    • 💄 Fix Carousel dots margin style not being reset. #38100
  • TypeScript
  • 🌐 Localization

补充的:

@github-actions
Copy link
Contributor

github-actions bot commented Oct 31, 2022

🎉 Verify package version passed!

PR package version PR title version
4.24.0 4.24.0

@github-actions
Copy link
Contributor

github-actions bot commented Oct 31, 2022

@github-actions
Copy link
Contributor

github-actions bot commented Oct 31, 2022

Size Change: 0 B

Total Size: 963 kB

ℹ️ View Unchanged
Filename Size
./dist/antd-with-locales.min.js 374 kB
./dist/antd.compact.min.css 67.6 kB
./dist/antd.dark.min.css 68.9 kB
./dist/antd.min.css 67.6 kB
./dist/antd.min.js 316 kB
./dist/antd.variable.min.css 68.2 kB

compressed-size-action

CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
@codecov
Copy link

codecov bot commented Oct 31, 2022

Codecov Report

Base: 100.00% // Head: 100.00% // No change to project coverage 👍

Coverage data is based on head (110b1a5) compared to base (4825f0e).
Patch has no changes to coverable lines.

❗ Current head 110b1a5 differs from pull request most recent head e823d77. Consider uploading reports for the commit e823d77 to get more accurate results

Additional details and impacted files
@@            Coverage Diff            @@
##            master    #38315   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files          446       446           
  Lines         8303      8303           
  Branches      2525      2525           
=========================================
  Hits          8303      8303           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
@afc163
Copy link
Member

afc163 commented Oct 31, 2022

我只 review 了中文,英文记得一并同步改下。

@afc163 afc163 closed this Oct 31, 2022
@afc163 afc163 reopened this Oct 31, 2022
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
@xrkffgg xrkffgg requested a review from afc163 November 1, 2022 14:09
@xrkffgg xrkffgg requested a review from zombieJ November 1, 2022 14:09
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
@xrkffgg xrkffgg requested a review from afc163 November 1, 2022 14:30
CHANGELOG.zh-CN.md Outdated Show resolved Hide resolved
@xrkffgg xrkffgg merged commit 4c8bcaa into master Nov 1, 2022
@xrkffgg xrkffgg deleted the k-changelog branch November 1, 2022 14:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants