types(Badge): add typing

This commit is contained in:
chenjiahan 2020-11-22 10:49:57 +08:00
parent b7d2fd5a34
commit c487b394ef
3 changed files with 37 additions and 0 deletions

View File

@ -10,6 +10,23 @@ Vant follows [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/).
- Minor versionreleased every one to two months, including backwards compatible features.
- Major versionincluding 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`

View File

@ -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`

1
types/index.d.ts vendored
View File

@ -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 {}