Commit 3466d62210c56aa5e4e1bd3498ede36e25ef4f97

Authored by vben
1 parent 8e885d69

chore: bump 2.0.0-rc.7

CHANGELOG.en_US.md
  1 +## 2.0.0-rc.7 (2020-10-31)
  2 +
  3 +### ✨ Features
  4 +
  5 +- The form component now supports directly passing in the model to directly perform the set operation, please refer to **Component -> Popup Extension -> Open Popup and Pass Data**
  6 +
  7 +- The useModalInner of modal now supports the incoming callback function to receive the value passed in from the external `transferModalData`
  8 +
  9 + - Used to handle the setting values ​​of components such as forms when the pop-up window is opened. Refer to **Component -> Popup Extension -> Open Popup and Pass Data**
  10 + - The value of `receiveModalDataRef` is temporarily reserved. Use as little as possible. It may be deleted later.
  11 +
  12 +- The drawer’s useDrawerInner now supports the incoming callback function to receive the value passed in from the external `transferModalData`,,
  13 + - Used to handle the setting values ​​of components such as forms for opening the drawer Refer to **Component->Drawer Extension->Open the drawer and transfer data**
  14 + - The value of `receiveModalDataRef` is temporarily reserved. Use as little as possible. It may be deleted later.
  15 +
  16 +### ✨ Refactor
  17 +
  18 +- Form code optimization and reconstruction
  19 +
  20 +### ⚡ Performance Improvements
  21 +
  22 +- Modal slot can be overwritten
  23 +- Optimize table embedding height calculation problem
  24 +
  25 +### 🎫 Chores
  26 +
  27 +- Add some notes
  28 +- pwa icon supplement
  29 +- Type adjustment
  30 +- Upgrade ʻant-design-vue`to`beta.11`, and modify the known issues brought about, and some issues will be resolved after discovery
  31 +
  32 +### 🐛 Bug Fixes
  33 +
  34 +- Fix the timeout error of local proxy post interface to https address
  35 +- Fix modal full screen height calculation problem when footer is not displayed
  36 +- Fix the error that the verification information is not deleted when the form is reset
  37 +- Fix the style problem of the split mode of the top menu
  38 +- Fix the invalidation of table expansion icon animation
  39 +
1 40 ## 2.0.0-rc.6 (2020-10-28)
2 41  
3 42 ### ✨ Features
... ...
CHANGELOG.zh_CN.md
1   -## Wip
  1 +## 2.0.0-rc.7 (2020-10-31)
2 2  
3 3 ### ✨ Features
4 4  
... ...
package.json
1 1 {
2 2 "name": "vben-admin-2.0",
3   - "version": "2.0.0-rc.6",
  3 + "version": "2.0.0-rc.7",
4 4 "scripts": {
5 5 "bootstrap": "yarn install",
6 6 "serve": "esno ./build/script/preserve.ts && cross-env NODE_ENV=development vite",
... ... @@ -36,7 +36,7 @@
36 36 "vue": "^3.0.2",
37 37 "vue-i18n": "^9.0.0-beta.6",
38 38 "vue-router": "^4.0.0-rc.1",
39   - "vuex": "^4.0.0-beta.4",
  39 + "vuex": "^4.0.0-rc.1",
40 40 "vuex-module-decorators": "^1.0.1",
41 41 "xlsx": "^0.16.8",
42 42 "zxcvbn": "^4.4.2"
... ... @@ -44,7 +44,7 @@
44 44 "devDependencies": {
45 45 "@commitlint/cli": "^11.0.0",
46 46 "@commitlint/config-conventional": "^11.0.0",
47   - "@iconify/json": "^1.1.248",
  47 + "@iconify/json": "^1.1.249",
48 48 "@ls-lint/ls-lint": "^1.9.2",
49 49 "@purge-icons/generated": "^0.4.1",
50 50 "@types/echarts": "^4.9.0",
... ...