mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 10:01:59 +08:00
chore(): release Ionic Vue 0.4.0 (#22105)
This commit is contained in:
2
core/package-lock.json
generated
2
core/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/core",
|
||||
"version": "5.4.0-dev.202009151947.352e16b",
|
||||
"version": "0.4.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/core",
|
||||
"version": "5.4.0-dev.202009151947.352e16b",
|
||||
"version": "0.4.0",
|
||||
"description": "Base components for Ionic",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
|
16
packages/vue-router/package-lock.json
generated
16
packages/vue-router/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/vue-router",
|
||||
"version": "5.4.0-dev.202009151837.5c69db1",
|
||||
"version": "0.4.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@ -452,9 +452,9 @@
|
||||
}
|
||||
},
|
||||
"@ionic/core": {
|
||||
"version": "0.2.0-5",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-0.2.0-5.tgz",
|
||||
"integrity": "sha512-6G26jBbk0HOEbGqvgtTp/x4CrjWPLp0sQoTbeUkoJC5qHgs8rQbt77wJjbja6iSQbMGZIQQc1gLDviVQoaY9EA==",
|
||||
"version": "0.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-0.3.1.tgz",
|
||||
"integrity": "sha512-Qdo1Sc5SMFDn3X/pT+5KtOATpgpDJbWLEBzZxHk+2GKfZ5Ypv/qMRg/II/IaoH2GmeIZoKdDmLGTQQjqVw1/oA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ionicons": "^5.1.2",
|
||||
@ -462,12 +462,12 @@
|
||||
}
|
||||
},
|
||||
"@ionic/vue": {
|
||||
"version": "0.2.0-5",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-0.2.0-5.tgz",
|
||||
"integrity": "sha512-NYMFmWRPmCnm4oEdsEJajs4lg8OTTM7ICSxAJRnWyO4pf/6UFlWQvCpHW7MaWcQB7wpeqYkQkg7bSFQXiAZt2g==",
|
||||
"version": "0.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-0.3.1.tgz",
|
||||
"integrity": "sha512-9pfIaMVKiBcvsdJ5XEAwOILhiGyDmqQOXBlDfka8QeYQ9xpdSntP9IlmEzkPfvHaHnxQeeVqaWAaStg3OOksug==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@ionic/core": "0.2.0-5",
|
||||
"@ionic/core": "0.3.1",
|
||||
"ionicons": "^5.1.2"
|
||||
}
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/vue-router",
|
||||
"version": "5.4.0-dev.202009101934.5ffa65f",
|
||||
"version": "0.4.0",
|
||||
"description": "Vue Router integration for @ionic/vue",
|
||||
"scripts": {
|
||||
"test.spec": "jest",
|
||||
@ -42,7 +42,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/ionic-team/ionic#readme",
|
||||
"devDependencies": {
|
||||
"@ionic/vue": "0.3.1",
|
||||
"@ionic/vue": "0.4.0",
|
||||
"@types/jest": "^26.0.13",
|
||||
"@types/node": "^14.10.1",
|
||||
"jest": "^26.4.2",
|
||||
|
@ -1,5 +1,22 @@
|
||||
# Ionic Vue
|
||||
|
||||
# 0.4.0
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **vue:** canGoBack now returns correct result with initial load redirect ([#22071](https://github.com/ionic-team/ionic/issues/22071)) ([8227844](https://github.com/ionic-team/ionic/commit/8227844cbc6da252acb97bfa0f9a2cefa40185f9))
|
||||
* **vue:** ensure dynamic classes are synced with internal Ionic component classes ([#22096](https://github.com/ionic-team/ionic/issues/22096)) ([9cb22be](https://github.com/ionic-team/ionic/commit/9cb22be91a232c395780f7ceb50c3e9ae28e7dc2)), closes [#22051](https://github.com/ionic-team/ionic/issues/22051)
|
||||
* **vue:** using refs with v-model now works properly ([#22092](https://github.com/ionic-team/ionic/issues/22092)) ([67fbb3b](https://github.com/ionic-team/ionic/commit/67fbb3b963e2e75284b578777057c0822720fb1e)), closes [#22076](https://github.com/ionic-team/ionic/issues/22076)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **vue:** add hardware back button hook ([#22069](https://github.com/ionic-team/ionic/issues/22069)) ([a7f564b](https://github.com/ionic-team/ionic/commit/a7f564b818a6ce5f97d999934d5cca77da1b2c83))
|
||||
* **vue:** add hook to access Ionic Vue router ([#22072](https://github.com/ionic-team/ionic/issues/22072)) ([3d34b68](https://github.com/ionic-team/ionic/commit/3d34b68fbd25b724b6f89c01642788d325f6e909))
|
||||
* **vue:** add webHashHistory and memoryHistory options for router ([#22101](https://github.com/ionic-team/ionic/issues/22101)) ([fe2cf22](https://github.com/ionic-team/ionic/commit/fe2cf22f5dab4e13458be0a93d38d346a03f7e3d))
|
||||
|
||||
|
||||
|
||||
## 0.3.1
|
||||
|
||||
* Vue 3 support
|
||||
|
2
packages/vue/package-lock.json
generated
2
packages/vue/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/vue",
|
||||
"version": "5.4.0-dev.202009151837.5c69db1",
|
||||
"version": "0.4.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/vue",
|
||||
"version": "5.4.0-dev.202009101933.5ffa65f",
|
||||
"version": "0.4.0",
|
||||
"description": "Vue specific wrapper for @ionic/core",
|
||||
"scripts": {
|
||||
"lint": "echo add linter",
|
||||
@ -52,7 +52,7 @@
|
||||
"workbox-build": "4.3.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ionic/core": "0.3.1",
|
||||
"@ionic/core": "0.4.0",
|
||||
"ionicons": "^5.1.2"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user