Commit 371af18d0f8f2501a091ca56bc4f9d057cb031a7

Authored by Vben
1 parent 43a45b7c

chore: release v2.0.3

CHANGELOG.en_US.md
  1 +## 2.0.3 (2021-03-07)
  2 +
  3 +### ✨ Features
  4 +
  5 +- `BasicTree` added `clickRowToExpand`, used to click tree node to expand
  6 +- Added SvgIcon plugin and examples
  7 +- Add the department tree on the left side of the account management interface·
  8 +
  9 +### ⚡ Performance Improvements
  10 +
  11 +- Pagination parameters are no longer carried when the table is closed
  12 +- The login page monitors the carriage return event to log in
  13 +- When the adaptive size of the table is set, the height is filled according to the screen.
  14 +- Tree scroll bar optimization
  15 +- Optimize the loading speed of local development
  16 +
  17 +### 🐛 Bug Fixes
  18 +
  19 +- Fix known issues with `Description`
  20 +- Fix known issues with `BasicForm`
  21 +- Fix the logic problem of show attribute of ActionItem under `BasicTree`
  22 +- Fix the style error of the tree component demo example
  23 +- Repair account management to add new but not cleared old data
  24 +- The form component should allow the setFieldsValue method to be null or undefined
  25 +- Ensure that the single-level breadcrumbs jump correctly
  26 +- Ensure that the Form component does not verify hidden form items
  27 +
1 ## 2.0.2 (2021-03-04) 28 ## 2.0.2 (2021-03-04)
2 29
3 ### ✨ Refactor 30 ### ✨ Refactor
CHANGELOG.md
  1 +## [2.0.3](https://github.com/anncwb/vue-vben-admin/compare/v2.0.2...v2.0.3) (2021-03-07)
  2 +
  3 +### Bug Fixes
  4 +
  5 +- **breadcrumb:** ensure that the single-level breadcrumbs jump correctly close [#321](https://github.com/anncwb/vue-vben-admin/issues/321) ([e0dc5cf](https://github.com/anncwb/vue-vben-admin/commit/e0dc5cf2f299fd4c1efdf4f00b9f0f72f07d5937))
  6 +- **description:** ensure that props respond ([ce93e46](https://github.com/anncwb/vue-vben-admin/commit/ce93e46faf1d7250dd3acd3fd97ccd6382b2f822))
  7 +- **form:** allow the setFieldsValue method to be null or undefined close [#320](https://github.com/anncwb/vue-vben-admin/issues/320) ([8f76ef4](https://github.com/anncwb/vue-vben-admin/commit/8f76ef4e70de58ba5c4497d8b10a036a54a9ac87))
  8 +- **form:** ensure that the Form component does not verify hidden form items ([43a45b7](https://github.com/anncwb/vue-vben-admin/commit/43a45b7c996c84f19d00cb9754277b943daf9a10))
  9 +- **form:** fix the problem of form props monitoring close [#322](https://github.com/anncwb/vue-vben-admin/issues/322) ([83a3460](https://github.com/anncwb/vue-vben-admin/commit/83a34603562e6358203b834b8feb59b0b44dbbcd))
  10 +- **menu:** fix menu icon missing close [#328](https://github.com/anncwb/vue-vben-admin/issues/328) ([d5d4c4b](https://github.com/anncwb/vue-vben-admin/commit/d5d4c4b4136158e061e4a3b6b306af6d4e8cd621))
  11 +- **table:** fix pagination error ([745fcfc](https://github.com/anncwb/vue-vben-admin/commit/745fcfc014e3e9e13d6a415a8f094cfef68be908))
  12 +- **tree:** fix the logic problem of show attribute of ActionItem under BasicTree ([80b47c8](https://github.com/anncwb/vue-vben-admin/commit/80b47c84cd490388c6db659921f1103c443d7b9d))
  13 +
  14 +### Features
  15 +
  16 +- add SvgIcon component ([9c2a2a0](https://github.com/anncwb/vue-vben-admin/commit/9c2a2a0c00dae6f334c99acc9ab2f571fd8905c0))
  17 +- **tree:** add clickRowToExpand option close [#318](https://github.com/anncwb/vue-vben-admin/issues/318) ([e696089](https://github.com/anncwb/vue-vben-admin/commit/e696089660131786ea24632ed75adc57b6ea58f4))
  18 +
  19 +### Performance Improvements
  20 +
  21 +- optimize local loading speed close [#329](https://github.com/anncwb/vue-vben-admin/issues/329) ([491f1fc](https://github.com/anncwb/vue-vben-admin/commit/491f1fcfff17f2297e3fee00e1542778aed08e56))
  22 +- **login:** enter to log in ([b93f20f](https://github.com/anncwb/vue-vben-admin/commit/b93f20f0df91689191b8414657171e9f17ba5d68))
  23 +- **table:** the table fills the height according to the screen close [#310](https://github.com/anncwb/vue-vben-admin/issues/310) ([551fe50](https://github.com/anncwb/vue-vben-admin/commit/551fe50a44d0b6358cf3861f772ca223ea56f0e2))
  24 +
1 ## [2.0.2](https://github.com/anncwb/vue-vben-admin/compare/v2.0.0...v2.0.2) (2021-03-03) 25 ## [2.0.2](https://github.com/anncwb/vue-vben-admin/compare/v2.0.0...v2.0.2) (2021-03-03)
2 26
3 ### Bug Fixes 27 ### Bug Fixes
CHANGELOG.zh_CN.md
1 -## Wip 1 +## 2.0.3 (2021-03-07)
2 2
3 ### ✨ Features 3 ### ✨ Features
4 4
5 - `BasicTree` 新增`clickRowToExpand`,用于单击树节点展开 5 - `BasicTree` 新增`clickRowToExpand`,用于单击树节点展开
6 - 新增 SvgIcon 插件及示例 6 - 新增 SvgIcon 插件及示例
7 -- 账号管理界面增加左侧部门树 7 +- 账号管理界面增加左侧部门树·
8 8
9 ### ⚡ Performance Improvements 9 ### ⚡ Performance Improvements
10 10
package.json
1 { 1 {
2 "name": "vben-admin", 2 "name": "vben-admin",
3 - "version": "2.0.2", 3 + "version": "2.0.3",
4 "scripts": { 4 "scripts": {
5 "bootstrap": "yarn install", 5 "bootstrap": "yarn install",
6 "serve": "npx --max_old_space_size=4096 vite", 6 "serve": "npx --max_old_space_size=4096 vite",