Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

fix(deps): update dependency antd to v4.15.3 #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 10, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
antd (source) 4.10.0 -> 4.15.3 age adoption passing confidence

Release Notes

ant-design/ant-design

v4.15.3

Compare Source

  • Table
    • 🪲 Fix Table selection column width when bordered is true. #​30304
    • 🚨 Add warning when Table current is negative number. #​30242 @​wadezhan
  • 🪲 Fix Button type="link" should not redirect when it is disabled. #​30209
  • 🪲 Fix Upload appear errors when url of file is null. #​30215
  • 🪲 Fix padding on a SubMenu inside an ItemGroup. #​30218 @​sebakerckhof
  • 🪲 Fix Checkbox & Radio align issue in flex box. #​30260
  • 🪲 Fix Badge broken animation on spin icon. #​30275
  • 🪲 Fix Input disabled hover style in Form. #​30302 @​Fog3211
  • TypeScript
    • :robot_face: Fix Upload type definition of beforeUpload. #​30213

  • Table
  • 🪲 修复 Button type="link" 添加 disabled 后仍然可点击跳转的问题。#​30209
  • 🪲 修复 Upload 当文件 url 为 null 时渲染出错问题。#​30215
  • 🪲 修复 SubMenu 在 ItemGroup 内时的内边距。#​30218 @​sebakerckhof
  • 🪲 修复 Checkbox 和 Radio 在 flex 布局下的对齐问题。#​30260
  • 🪲 修复 Badge 上放置旋转图标的动画问题。#​30275
  • 🪲 修复 Form 错误校验状态下 Input disabled 的 hover 样式。#​30302 @​Fog3211
  • TypeScript
    • :robot_face: 修复 Upload 组件 beforeUpload 类型声明。#​30213

v4.15.2

Compare Source


v4.15.1

Compare Source

  • 🪲 Fix Descriptions labelStyle contentStyle unsuccessful when layout="vertical" and bordered={true}. #​29942
  • 🪲 Upload won't crash when fileList is a frozen object now. #​29944
  • 🪲 Fix Tabs cannot scroll when vertical mode in Safari 13.1. #​29983
  • 🪲 Fix Button throws Cannot read property 'removeChild' of null in some situation. #​29961 @​JohnDeved
  • 🪲 Fix Transfer button's box-shadow getting cut. #​30030 @​jinchaofs
  • 🪲 Fix CheckBox.Group cannot work with Form of @ant-design/compatible. #​30039 @​jameslahm
  • 🪲 Fix PageHeader <Tabs type="card" /> padding missing. #​29819
  • Table
    • 💄 Optimize Table pagination style when narrow width. #​30065
    • 🪲 Fix Table @table-border-radius-base not being applied to .ant-table node. #​29966 @​VoliBearCat
  • 🪲 Fix Input.TextArea maxLength does not work in control mode. #​30070
  • TypeScript
  • Locale

  • 🪲 修复 Descriptions labelStyle contentStyle 当设置 layout="vertical"bordered={true} 时不生效的问题。#​29942
  • 🪲 Upload 的 fileList 为冻结对象时不再崩溃。#​29944
  • 🪲 修复 Tabs 在 Safari 13.1 垂直模式下不能滚动问题。#​29983
  • 🪲 修复点击 Button 时有时会报错 Cannot read property 'removeChild' of null 的问题。#​29961 @​JohnDeved
  • 🪲 修复 Transfer 按钮区域 box-shadow 被截断的问题。#​30030 @​jinchaofs
  • 🪲 修复 CheckBox.Group 和 @ant-design/compatible 的 Form 无法一起工作的问题。#​30039 @​jameslahm
  • 🪲 修复 PageHeader 下卡片类型 tabs 样式问题。#​29819
  • Table
    • 💄 优化 Table 分页器在狭窄空间的样式问题。#​30065
    • 🪲 修复 Table @table-border-radius-base 没有被应用到 .ant-table 节点上。#​29966 @​VoliBearCat
  • 🪲 修复 Input.TextArea maxLength 在受控时无效的问题。#​30070
  • TypeScript
  • 国际化

v4.15.0

Compare Source

  • 🆕 Table now supports rowSelection.defaultSelectedRowKeys. #​29879 @​keelii
  • 🪲 Fix TextArea display value will be cut by maxLength when in controlled. Fix onCompositionEnd not trigger when input exceed maxLength. Fix emoji count not align with maxLength & showCount. #​29867
  • 🪲 Fix Button click effect style not working in shadow root. #​29897 @​JohnDeved
  • Pagination
    • 💄 Fix Pagination focus style stay after interaction. #​29891
    • 🪲 Fix Pagination jump input height not correct when config modifyVars. #​29886 @​SyMind
  • 🪲 Fix Steps progress item getting cut at edge. #​29893
  • 🛠️ Prevent Upload drop event bubbling to handle nest case. #​29832 @​jojonarte
  • 🪲 Apply ConfigProvider componentSize on Tabs component. #​29844 @​bn3t
  • 💄 Remove Tag hover style since it do not have click interactive. #​29874
  • :flag-fr: Add missing fr_FR translations. #​29839 @​bn3t
  • :flag-se: Add missing sv_SE translations. #​29896 @​isakol

  • 🆕 Table 新增 rowSelection.defaultSelectedRowKeys 支持。#​29879 @​keelii
  • 🪲 修复 TextArea 受控时展示值会被 maxLength 截取的问题;修复 maxLength 下超出部分无法触发 onCompositionEnd 事件的问题;修复使用 emoji 时 maxLengthshowCount 计数逻辑不一致的问题。#​29867
  • 🪲 修复 Button 点击效果在 Shadow Root 下不生效的问题。#​29897 @​JohnDeved
  • Pagination
    • 💄 优化 Pagination 切换页码后 focus 样式遗留的问题。#​29891
    • 🪲 修复 Pagination 使用 modifyVars 自定义主题时,页面跳转输入框高度没有按照预期改变。#​29886 @​SyMind
  • 🪲 修复 Steps 进度在边缘会被截断的问题。#​29893
  • 🛠️ Upload 默认阻止拖拽冒泡事件以支持嵌套结构。#​29832 @​jojonarte
  • 🪲 ConfigProvider 的 componentSize 现在也会作用到 Tabs 上。#​29844 @​bn3t
  • 💄 移除 Tag 鼠标悬浮样式以避免其误以为是可点击交互组件。#​29874
  • :flag-fr: 补充 fr_FR 语言缺失内容。#​29839 @​bn3t
  • :flag-se: 补充 sv_SE 语言缺失内容。#​29896 @​isakol

v4.14.1

Compare Source

  • 🪲 Fix Tabs position shift when active item changed. #​29781
  • 🪲 Fix placeholder not being hidden when Image is loaded from cache. #​29829
  • 💄 Improve Checkbox/Radio label text layout. #​29788
  • TypeScript
    • :robot_face: Fix Upload type declaration of beforeUpload. #​29766

  • 🪲 修复 Tabs 切换时标题宽度变化的问题。#​29781
  • 🪲 修复 Image 从缓存加载图片时,placeholder 不会隐藏的问题。#​29829
  • 💄 优化 Checkbox/Radio 文本的换行展示样式。#​29788
  • TypeScript
    • :robot_face: 修复 Upload beforeUpload 属性类型声明。#​29766

v4.14.0

Compare Source

  • Upload
    • 🆕 Upload onChange to change back to the original behavior (before Upload false returns the original file, and the rest of the scene returns the encapsulated object). Now you can always get the original file via onChange.info.originFileObj. For future upgrades, please use this method to access the original text first. #​29737
    • 🪲 Fix Upload onChange params file can not cloneDeep by lodash. #​29718
    • 🪲 Fix Upload crash when fileList is null. #​29702
    • 💄 Upload motion add 2s deadline to avoid developer manually remove motion makes hanging. #​29686
  • 🪲 Fix the bug that Modal footer buttons not spaced properly when using href in button. #​29681 @​n0ruSh
  • 🆕 Add parent class for different Notification types. #​29634 @​n0ruSh
  • 🆕 Typography editable supports onCancel and onEnd. #​29615 @​jueinin
  • Tabs
  • 🪲 Button with htmlType='reset' will reset all form fileds. #​29752 @​jueinin
  • 🪲 Fix AutoComplete custom input className missing. #​29725
  • 💄 Fix console warning when setting margin style on Row. #​29688
  • 💄 Fix the error style where the disabled Input has affix elements. #​29670
  • 💄 Optimize the cursor style of Form.Item tooltip info. #​29650
  • :flag-cz: Fix typo in cs_CZ locale. #​29675 @​jvaclavik
  • :flag-ca: Add fr_CA locale. #​29748 @​liufenghua808

  • Upload
    • 🆕 Upload onChange 改回原本行为(before Upload false 返回原始文件,其余场景返回封装对象)。现在你始终可以通过 onChange.info.originFileObj 获得原始文件。为了未来升级,请优先使用该方式访问原始文。#​29737
    • 🪲 修复 Upload onChange 参数 file 不能被 lodash cloneDeep 的问题。#​29718
    • 🪲 修复 Upload 当 fileListnull 时崩溃的问题。#​29702
    • 💄 Upload 添加 2 秒时限以防止开发者手工移除动画样式时导致动画卡住的问题。#​29686
  • 🆕 为不同的 Notification 类型添加相应默认类名。#​29634 @​n0ruSh
  • 🆕 Typography editable 新增 onCancelonEnd 回调。#​29615 @​jueinin
  • Tabs
  • 🪲 Form 表单现在可以自动响应 reset 事件。#​29752 @​jueinin
  • 🪲 修复 AutoComplete 自定义 input 上 className 属性丢失的问题。#​29725
  • 💄 修复 Row 设置 margin 样式时控制台警告的问题。#​29688
  • 🪲 修复 Modal 页脚里使用 href 按钮导致的间距丢失问题。#​29681 @​n0ruSh
  • 💄 修复 Input 组件配置附件元素时禁用样式异常的问题。#​29670
  • 💄 优化 Form.Item 提示信息的鼠标显示样式。#​29650
  • :flag-cz: 修复 cs_CZ 语言环境中的错字。 #​29675 @​jvaclavik
  • :flag-ca: 添加 fr_CA 语言。#​29748 @​liufenghua808

v4.13.1

Compare Source

  • 🪲 Fix message.config with prefixCls missing animation style. #​29574
  • 🪲 Fix Tooltip is not interactive when visible is true under some situation. #​29555
  • 🪲 Fix ConfigProvider within multiple page switch will lose locale issue. #​29570
  • 🪲 Fix Modal with hooks cannot call update or destroy before render. #​29584
  • 🪲 Fix Grid throw error when client support flexGap but ssr not support. #​29586
  • 🪲 Fix Select caret position when mode="tags" and size="small". #​29561
  • 🪲 Fix Carousel dotPosition makes pauseOnHover not working. #​29587 @​zgoby
  • 🪲 Fix Steps responsive prop warning. #​29599
  • 🪲 Fix Upload onChange param of file.originFileObj return nest Proxy object. #​29614
  • 🪲 Fix Descriptions under Table will not have 100% width. #​29630
  • TypeScript
    • :robot_face: Fix Drawer type declaration of contentWrapperStyle. #​29571

  • 🪲 修复 message.config 配置 prefixCls 时丢失淡入淡出动画的问题。#​29574
  • 🪲 修复 Tooltip 在某些情况下设置 visibletrue 却无法交互的问题。#​29555
  • 🪲 修复多页面使用 ConfigProvider 切换时 locale 会丢失的问题。#​29570
  • 🪲 修复 Modal 的 hooks 在渲染前调用 updatedestroy 无效的问题。#​29584
  • 🪲 修复 Grid ssr 时报错 Prop style did not match#​29586
  • 🪲 修复小号 Select tags 模式的光标错位问题。#​29561
  • 🪲 修复 Carousel dotPosition 导致 pauseOnHover 失效的问题。#​29587 @​zgoby
  • 🪲 修复 Steps 使用 responsive 时控制台抛出警告的问题。#​29599
  • 🪲 修复 Upload onChange 参数 file.originFileObj 返回嵌套 Proxy 对象的问题。#​29614
  • 🪲 修复 Descriptions 在 Table 下没有 100% 宽度的问题。#​29630
  • TypeScript
    • :robot_face: 修复 Drawer contentWrapperStyle 属性类型声明。#​29571

v4.13.0

Compare Source

  • 🔥 InputNumber support stringMode for high precision step. value in control out of range shows warning style instead of changing it. Dynamic update min & max will not trigger onChange anymore. #​29373
  • 🆕 Upload support beforeUpload return Upload.LIST_IGNORE to skip item added in UploadList. #​29474
  • 🆕 Image support config motion name. #​29394 @​crazyair
  • ConfigProvider
    • 🆕 ConfigProvider support global statistic config to support some statistic function call. #​29285 @​crazyair
    • 🆕 Motion related css className prepend ant- prefix to avoid naming conflict. #​29268 @​crazyair
  • 🆕 Form.List nest multiple level Form.Item support preserve prop. #​29267
  • 🆕 Drawer support contentWrapperStyle. #​29219 @​kerm1it
  • 🆕 Layout.Sider added ref support. #​29169 @​qramilq
  • 🪲 Fix Table pagination.current display error when result of filter is empty. #​29386 @​jinchaofs
  • 🪲 Fix Anchor throws error when target don't return a html element. #​29523 @​bcd337
  • 🪲 Fix Steps with small size that icon shift up 1px. #​29484
  • Select
    • 🪲 Fix Select mode="tags" large size (41px => 40px). #​29437
    • 📖 Update Select debounce demo to create DebounceSelect component for easy usage. #​29414
  • Dropdown
    • 🪲 Fix Dropdown menu item lost disable style with icon. #​29433
    • 🪲 Fix Dropdown menu not support expandIcon. #​29338
  • 🪲 Fix tree-shaking warning on development builds. #​29378
  • :flag-kr: Fix TimePicker Korean locale. #​29540
  • TypeScript

  • 🔥 InputNumber 添加 stringMode 属性以支持高精度 stepvalue 受控并超出范围时展示警告样式而不是强制改值。动态修改 minmax 不再触发 onChange 事件。#​29373
  • 🆕 Upload 支持 beforeUpload 返回 Upload.LIST_IGNORE 时不将文件展示在列表中。#​29474
  • 🆕 Image 支持配置动画相关类型。#​29394 @​crazyair
  • ConfigProvider
  • 🆕 Form.List 嵌套多层 Form.Item 支持 preserve 属性。#​29267
  • 🆕 Drawer 支持 contentWrapperStyle#​29219 @​kerm1it
  • 🆕 Layout.Sider 組件添加了 ref 支持。#​29169 @​qramilq
  • 🪲 修复 Table 当过滤结果为空时,pagination.current 展示错误。#​29386 @​jinchaofs
  • 🪲 修复 Anchor target 不是 html 元素时会出错的问题。#​29523 @​bcd337
  • 🪲 修复 Steps 小尺寸时图标偏上的问题。#​29484
  • Select
    • 🪲 修复 Select 标签模式下大号控件的高度多了 1px 的问题。#​29437
    • 📖 更新 Select 防抖示例封装成 DebounceSelect 组件以便于用户使用。#​29414
  • Dropdown
    • 🪲 修复 Dropdown 带图标的菜单项禁用样式丢失的问题。#​29433
    • 🪲 修复 Dropdown 内 Menu 不支持 expandIcon 的问题。#​29338
  • 🪲 Fix 在本地开发时会报 tree-shaking 警告信息的问题。#​29378
  • :flag-kr: 修复 TimePicker 本地化。#​29540
  • TypeScript

v4.12.3

Compare Source

  • 🛠️ Refactor Drawer with React hooks. #​29229
  • 🪲 Fix Table pagination not disappear when pagination.position is ['none', 'none']. #​29256 @​mumiao
  • 🪲 Fix TextArea showCount should not be interactive. #​29245
  • 🪲 Fix abnormal background color for multiple and disabled Select in dark. #​29242
  • ⚡ Optimize Slider align performance of tooltip. #​29308 @​kerm1it
  • ⚡ Upgrade @ant-design/colors to 6.x to reduce gzipped bundle size 1KB. #​29307 @​07akioni
  • :flag-ru: Add ru_RU locale text for Image. #​29271 @​mumiao
  • :flag-ir: Add fa_IR locale text for DatePicker, Form, Table, TimePicker and Transfer. #​29232 @​amiralitaheri
  • TypeScript
    • :robot_face: Fix type definition for Table FilterDropdownProps confirm parameter. #​29241 @​mumiao

  • 🛠️ 使用 React hooks 重构 Drawer。#​29229
  • 🪲 修复 Table 的 pagination. position['none', 'none']时分页器仍然展示的问题。#​29256 @​mumiao
  • 🪲 修复 TextArea showCount 字数会遮挡 Form.Item extra 的问题。#​29245
  • 🪲 修复多选 Select 在暗黑模式下禁用的背景颜色异常的问题。#​29242
  • ⚡ 优化 Slider 提示的对齐性能。#​29308 @​kerm1it
  • ⚡ 升级 @ant-design/colors 依赖到 6.x,减少 gzipped 包体积 1KB#​29307 @​07akioni
  • :flag-ru: 为 Image 组件添加 ru_RU 俄语翻译。#​29271 @​mumiao
  • :flag-ir: 为 DatePicker、Form、Table、TimePicker 和 Transfer 组件添加 fa_IR 波斯语翻译。#​29232 @​amiralitaheri
  • TypeScript
    • :robot_face: 修复 Table FilterDropdownProps 的 confirm 入参为可选类型。#​29241 @​mumiao

v4.12.2

Compare Source

  • 💄 Make Table expand icon and checkbox same size and aligned. #​29214
  • 🪲 Fix List with gutter makes column break line. #​29211

  • 💄 调整 Table 展开图标和选择框的大小一致并对齐。#​29214
  • 🪲 修复 List 配置 gutter 时列会折行的问题。#​29211

v4.12.1

Compare Source

  • 🪲 Fix antd crash when load before page ready. #​29202
  • 🪲 Fix Table pagination current change logic when pageSize changes. #​29184

  • 🪲 修复 antd 在页面加载之前载入导致的页面崩溃问题。#​29202
  • 🪲 修正 Table 改变 pageSize 重置 current 的逻辑,现在若超出会重置到最大页数。#​29184

v4.12.0

Compare Source

  • 🆕 Image.PreviewGroup add current prop. #​29153
  • InputNumber
    • 🆕 InputNumber support bordered prop. #​29105
    • 🆕 InputNumber add keyboard prop which could disable keyboard behavior. #​29110 @​kerm1it
  • 💄 Darken Tag text color to enhance readability. #​29144
  • 💄 Fix Row with vertical gutter provides additional margin-bottom style. #​29059
  • 🪲 Fix Collapse header disappers with delay. #​29158
  • 🪲 Fix the problem that showCount display data is incorrect when TextArea input emoji. #​29057 @​HomyeeKing
  • 📦 Optimize ConfigProvider to avoid import all icons when tree shaking is not enabled. #​29045
  • 🌐 Add en-GB missing translations for table. #​29131 @​eberjoe
  • Table
  • Badge
    • 💄 Fix Badge change count content to hide miss style. #​29089
    • 🪲 Fix Badge digital animation problem. #​29100
  • TypeScript
    • :robot_face: Table TS definition update dataSource to readonly. #​29084
  • Less

  • 🆕 Image.PreviewGroup 添加 current 属性支持受控模式。#​29153
  • InputNumber
  • 💄 加深 Tag 文字颜色以提升可读性。#​29144
  • 💄 修复 Row 配置垂直 gutter 时会额外添加 margin-bottom 样式的问题。#​29059
  • 🪲 修复 Collapse 标题区域隐藏延迟的问题。#​29158
  • 🪲 修复 TextArea 输入 emoji 时 showCount 展示数据不正确的问题。#​29057 @​HomyeeKing
  • 📦 优化 ConfigProvider 在未开启 tree shaking 的项目中引入所有图标的问题。#​29045
  • :flag-gb: 为表格添加 en-GB 翻译。#​29131 @​eberjoe
  • Badge
    • 🪲 修复 Badge 的数字动画方向问题。#​29100
    • 💄 修复 Badge 修改 count 内容以隐藏时的样式问题。#​29089
  • Table
  • TypeScript
    • :robot_face: 更新 Table TypeScript 定义 dataSourcereadonly#​29084
  • Less

v4.11.3

Compare Source

v4.11.2

Compare Source


v4.11.1

Compare Source

  • 💄 Layout inline sub menu now has grey background. #​28842
  • 🆕 PageHeader supports breadcrumbRender. #​28999
  • 🆕 Typography ellipsis support tooltip to customize tooltip when ellipsis. #​28821
  • Image
  • ConfigProvider
  • 💄 Tweak TreeSelect filter highlight color. #​28984
  • 💄 Fix Select item align style with custom tagRender. #​28962
  • Form
    • 🪲 Fix Form.Item can not clear nested noStyle error message. #​28918
    • 🪲 Form.Item with preserve=false will reset value to initialValues when removed. #​28908
  • 🪲 Fix Button click effect style not working in shadow root. #​28995 @​rinick
  • 🪲 Fix Table custom filter menu cannot close bug. #​28688 @​alekye
  • Less
    • 💄 Add @menu-inline-submenu-bg less variable and rename @menu-dark-submenu-bg to @menu-dark-inline-submenu-bg. #​28842
    • 💄 Add less variable @drawer-footer-padding-horizontal. #​28975 @​yuxuan
  • RTL
  • TypeScript

  • 💄 Layout 内联子表单添加背景颜色以更好的区分层级。#​28842
  • 🆕 PageHeader 支持 breadcrumbRender 属性。#​28999
  • 🆕 Typography ellipsis 属性添加 tooltip 支持以自定义收缩时的提示信息。#​28821
  • Image
  • ConfigProvider
  • ConfigProvider
    • 🆕 ConfigProvider 支持 iconPrefixCls 修改图标样式前缀。#​28924
    • ⚡ 优化 ConfigProvider 切换属性的性能。#​28792 @​zxc0328
  • 💄 调整 TreeSelect 搜索高亮条目的颜色。#​28984
  • 💄 修复 Select 自定义 tagRender 时不对齐的问题。#​28962
  • Form
    • 🪲 修复 Form.Item 无法正确清理嵌套的 noStyle 错误信息问题。#​28918
    • 🪲 Form.Item 配置 preserve=false 时,移除该字段将自动重置对应值为 initialValues#​28908
  • 🪲 修复 Button 点击效果在 Shadow Root 下不生效的问题。#​28995 @​rinick
  • 🪲 修复 Table 自定义筛选器时未正确关闭菜单的问题。#​28688 @​alekye
  • Less
    • 💄 新增 less 变量 @drawer-footer-padding-horizontal#​28975 @​yuxuan
    • 💄 新增 @menu-inline-submenu-bg 变量,且 @menu-dark-submenu-bg 改名为 @menu-dark-inline-submenu-bg#​28842
  • RTL
  • TypeScript
    • :robot_face: 从 antd 默认入口中直接暴露 TypeScript 定义。#​28963
    • :robot_face: 优化 Input/Skeleton 组件的 style 定义。#​28966 @​yingpengsha

v4.11.0

Compare Source

v4.10.3

Compare Source

  • 🪲 Fix Button not adapting to the @btn-border-width when loading. #​28886 @​jjanssen
  • Table
    • 💄 Add @table-border-color less variable. #​28903
    • 🪲 Fix that invalid params passed to onChange event if define custom filterDropdown and nested filters. #​28850 @​Meowu
    • 💄 Tweak Table selection column width to 32px. #​28073
  • Transfer
  • Upload
    • 🪲 Support for capturing Error message for the Upload error tooltip. #​28716 @​wangcch
    • 🆕 Upload auto fills uid of fileList when not provided. #​28832
  • 🪲 Fix Slider getPopupContainer prop has no default value document.body. #​28865 @​rinick
  • 🪲 Fix Empty description validateDOMNesting warning. #​28862
  • 💄 Fix Tree filterTreeNode missing style. #​28866
  • 💄 fix Badge dot width issue when size="small". #​28854

  • 🪲 修复按钮在 loading 加载时 @btn-border-width 失效问题。#​28886 @​jjanssen
  • Table
    • 🪲 修复 Table 自定义过滤器时 onChange 参数 filters 被错误转换及为空数组的问题。#​28850 @​Meowu
    • 💄 调整 Table 选中列宽度至 32px#​28073
    • 💄 新增 @table-border-color less 变量。#​28903
  • Transfer
  • Upload
    • 🪲 支持 Upload 报错提示对 Error 文本信息的捕获(Tooltip)。#​28716 @​wangcch
    • 🆕 Upload 在 fileList 没有提供 uid 时,会自动对其进行填充。#​28832
  • 🪲 修复 Slider getPopupContainer 属性没有默认值 document.body 问题。#​28865 @​rinick
  • 🪲 修复 Empty description 内使用 div 会报 validateDOMNesting 的问题。#​28862
  • 💄 修复 Tree filterTreeNode 高亮样式丢失的问题。#​28866
  • 💄 修复 Badge dot 宽度样式。#​28854

v4.10.2

Compare Source

  • 🪲 Fix import error when use antd in commonjs. #​28715

  • 🪲 修复 commonjs 下引入 antd 报错的问题。#​28715

v4.10.1

Compare Source

  • 🛠️ Optimize Select search performance. #​28715 @​kerm1it
  • 🪲 Fix Slider throw forcePopupAlign error when unmounted. #​28699 @​Kerumen
  • 🪲 Fix Transfer throws Cannot add property key, object is not extensible when dataSource is immutable. #​28675
  • 🪲 Fix Notification box closing height issue generated by useNotification. #​28660
  • 🪲 Fix Drawer and Modal disabled scrollbar after closing. #​28749
  • 🛠️ Reduce gzipped bundle size 2kB. #​28678
  • TypeScript

  • 🛠️ 优化 Select 搜索性能。#​28715 @​kerm1it
  • 🪲 修复 Slider 在卸载时报 forcePopupAlign 错的问题。#​28699 @​Kerumen
  • 🪲 修复 Transfer dataSource 为 immutable 数据时报 Cannot add property key, object is not extensible 的问题。#​28675
  • 🪲 修复 Notification 使用 useNotification 生成的提示框关闭时高度跳动的问题。#​28660
  • 🪲 修复 Drawer 和 Modal 关闭后滚动条被禁用的问题。#​28749
  • 🛠️ 优化包体积 gzipped 2kB#​28678
  • TypeScript

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update dependency antd to v4.10.1 fix(deps): update dependency antd to v4.10.2 Jan 11, 2021
@renovate renovate bot changed the title fix(deps): update dependency antd to v4.10.2 fix(deps): update dependency antd to v4.10.3 Jan 18, 2021
@renovate renovate bot changed the title fix(deps): update dependency antd to v4.10.3 fix(deps): update dependency antd to v4.11.2 Jan 30, 2021
@renovate renovate bot changed the title fix(deps): update dependency antd to v4.11.2 fix(deps): update dependency antd to v4.12.3 Feb 10, 2021
@renovate renovate bot changed the title fix(deps): update dependency antd to v4.12.3 fix(deps): update dependency antd to v4.13.0 Feb 28, 2021
@renovate renovate bot changed the title fix(deps): update dependency antd to v4.13.0 fix(deps): update dependency antd to v4.13.1 Mar 6, 2021
@renovate renovate bot changed the title fix(deps): update dependency antd to v4.13.1 fix(deps): update dependency antd to v4.15.3 Apr 26, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant