diff --git a/docs/markdown/changelog.en-US.md b/docs/markdown/changelog.en-US.md index 669029674..9fa222e97 100644 --- a/docs/markdown/changelog.en-US.md +++ b/docs/markdown/changelog.en-US.md @@ -10,6 +10,23 @@ Vant follows [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/). - Minor version:released every one to two months, including backwards compatible features. - Major version:including breaking changes and new features. +### [v2.11.0](https://github.com/youzan/vant/compare/v2.10.14...v2.11.0) + +`2020-11-22` + +**New Component** + +- add [Badge](#/en-US/badge) component [#7602](https://github.com/youzan/vant/issues/7602) +- add [Popover](#/en-US/popover) component [#7579](https://github.com/youzan/vant/issues/7579) + +**Feature** + +- Popup: add click-close-icon event [#7599](https://github.com/youzan/vant/issues/7599) + +**Bug Fixes** + +- ActionSheet: The height of the flex container is lost under iOS 10 [#7578](https://github.com/youzan/vant/issues/7578) + ### [v2.10.14](https://github.com/youzan/vant/compare/v2.10.13...v2.10.14) `2020-11-15` diff --git a/docs/markdown/changelog.zh-CN.md b/docs/markdown/changelog.zh-CN.md index dd8b9da8d..9235c02ce 100644 --- a/docs/markdown/changelog.zh-CN.md +++ b/docs/markdown/changelog.zh-CN.md @@ -10,6 +10,25 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。 - 次版本号:每隔一至二个月发布,包含新特性和较大的功能更新,向下兼容。 - 主版本号:发布时间不定,包含不兼容更新,预计下一个主版本会与 Vue 3.0 同期发布。 +### [v2.11.0](https://github.com/youzan/vant/compare/v2.10.14...v2.11.0) + +`2020-11-22` + +**New Component** + +- 新增 [Badge 徽标](#/zh-CN/badge)组件 [#7602](https://github.com/youzan/vant/issues/7602) +- 新增 [Popover 气泡弹出框](#/zh-CN/popover)组件 [#7579](https://github.com/youzan/vant/issues/7579) + +![](https://img.yzcdn.cn/vant/component-preview-1122.png) + +**Feature** + +- Popup: 新增 click-close-icon 事件 [#7599](https://github.com/youzan/vant/issues/7599) + +**Bug Fixes** + +- ActionSheet: 修复在 iOS 10 以下版本时选项高度不正确的问题 [#7578](https://github.com/youzan/vant/issues/7578) + ### [v2.10.14](https://github.com/youzan/vant/compare/v2.10.13...v2.10.14) `2020-11-15` diff --git a/types/index.d.ts b/types/index.d.ts index 06270d551..f258b1306 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -34,6 +34,7 @@ export const install: (app: App) => any; export class ActionSheet extends VanComponent {} export class AddressList extends VanComponent {} +export class Badge extends VanComponent {} export class Button extends VanComponent {} export class Card extends VanComponent {} export class Cell extends VanComponent {}