merge release-6.5.1

Release 6.5.1
This commit is contained in:
Liam DeBeasi
2023-01-25 09:18:21 -05:00
committed by GitHub
26 changed files with 197 additions and 98 deletions

View File

@@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic-framework/compare/v6.5.0...v6.5.1) (2023-01-25)
### Bug Fixes
* **action-sheet:** button icons are not announced by screen readers ([#26640](https://github.com/ionic-team/ionic-framework/issues/26640)) ([22e9ff8](https://github.com/ionic-team/ionic-framework/commit/22e9ff866f8bd7e2e4ca82eae70969ea4f2658df))
* **fab-button:** icon is not announced by screen readers ([#26619](https://github.com/ionic-team/ionic-framework/issues/26619)) ([dd7cd8c](https://github.com/ionic-team/ionic-framework/commit/dd7cd8c0bfe652d293dc2c2b1bd2a36fd9cf0a0b)), closes [#22296](https://github.com/ionic-team/ionic-framework/issues/22296)
* **modal, popover:** warn if trigger element was not found ([#26650](https://github.com/ionic-team/ionic-framework/issues/26650)) ([1115203](https://github.com/ionic-team/ionic-framework/commit/11152031202a513121861486e50ea7942b9118d3))
* **picker-column:** cssClass is set on column ([#26658](https://github.com/ionic-team/ionic-framework/issues/26658)) ([c6620c7](https://github.com/ionic-team/ionic-framework/commit/c6620c7c74abe04c3041e8b256441af72ea12131)), closes [#26653](https://github.com/ionic-team/ionic-framework/issues/26653)
* **react:** hardware back button works in dev mode ([#26614](https://github.com/ionic-team/ionic-framework/issues/26614)) ([abcfe9f](https://github.com/ionic-team/ionic-framework/commit/abcfe9fe867730f29b9379c3736f86b3d20c5b0a)), closes [#26599](https://github.com/ionic-team/ionic-framework/issues/26599)
* **select:** focusing item works in firefox ([#26668](https://github.com/ionic-team/ionic-framework/issues/26668)) ([946807d](https://github.com/ionic-team/ionic-framework/commit/946807d67b972c41b52c23c8f00feca4c705b224))
* **toggle:** on-off icon is not announced by screen readers ([#26641](https://github.com/ionic-team/ionic-framework/issues/26641)) ([77ccac0](https://github.com/ionic-team/ionic-framework/commit/77ccac059091d5d9f7daf9c7fb01a9e855b86ce3))
* **vue:** unmount teleported components ([#26647](https://github.com/ionic-team/ionic-framework/issues/26647)) ([6b16a0c](https://github.com/ionic-team/ionic-framework/commit/6b16a0c020fc6afb6a5a6e6fa6f0758384f026b9)), closes [#26644](https://github.com/ionic-team/ionic-framework/issues/26644)
# [6.5.0](https://github.com/ionic-team/ionic-framework/compare/v6.4.3...v6.5.0) (2023-01-18)

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic/compare/v6.5.0...v6.5.1) (2023-01-25)
**Note:** Version bump only for package @ionic/angular
# [6.5.0](https://github.com/ionic-team/ionic/compare/v6.4.3...v6.5.0) (2023-01-18)

View File

@@ -1,15 +1,15 @@
{
"name": "@ionic/angular",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^6.5.0",
"@ionic/core": "^6.5.1",
"ionicons": "^6.1.1",
"jsonc-parser": "^3.0.0",
"tslib": "^2.0.0"
@@ -1006,8 +1006,9 @@
"license": "BSD-3-Clause"
},
"node_modules/@ionic/core": {
"version": "6.5.0",
"license": "MIT",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -7333,7 +7334,9 @@
"dev": true
},
"@ionic/core": {
"version": "6.5.0",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "6.5.0",
"version": "6.5.1",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
@@ -42,7 +42,7 @@
"validate": "npm i && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@ionic/core": "^6.5.0",
"@ionic/core": "^6.5.1",
"ionicons": "^6.1.1",
"jsonc-parser": "^3.0.0",
"tslib": "^2.0.0"

View File

@@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic/compare/v6.5.0...v6.5.1) (2023-01-25)
### Bug Fixes
* **action-sheet:** button icons are not announced by screen readers ([#26640](https://github.com/ionic-team/ionic/issues/26640)) ([22e9ff8](https://github.com/ionic-team/ionic/commit/22e9ff866f8bd7e2e4ca82eae70969ea4f2658df))
* **fab-button:** icon is not announced by screen readers ([#26619](https://github.com/ionic-team/ionic/issues/26619)) ([dd7cd8c](https://github.com/ionic-team/ionic/commit/dd7cd8c0bfe652d293dc2c2b1bd2a36fd9cf0a0b)), closes [#22296](https://github.com/ionic-team/ionic/issues/22296)
* **modal, popover:** warn if trigger element was not found ([#26650](https://github.com/ionic-team/ionic/issues/26650)) ([1115203](https://github.com/ionic-team/ionic/commit/11152031202a513121861486e50ea7942b9118d3))
* **picker-column:** cssClass is set on column ([#26658](https://github.com/ionic-team/ionic/issues/26658)) ([c6620c7](https://github.com/ionic-team/ionic/commit/c6620c7c74abe04c3041e8b256441af72ea12131)), closes [#26653](https://github.com/ionic-team/ionic/issues/26653)
* **select:** focusing item works in firefox ([#26668](https://github.com/ionic-team/ionic/issues/26668)) ([946807d](https://github.com/ionic-team/ionic/commit/946807d67b972c41b52c23c8f00feca4c705b224))
* **toggle:** on-off icon is not announced by screen readers ([#26641](https://github.com/ionic-team/ionic/issues/26641)) ([77ccac0](https://github.com/ionic-team/ionic/commit/77ccac059091d5d9f7daf9c7fb01a9e855b86ce3))
# [6.5.0](https://github.com/ionic-team/ionic/compare/v6.4.3...v6.5.0) (2023-01-18)

View File

@@ -1,12 +1,12 @@
{
"name": "@ionic/core",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/core",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@stencil/core": "^2.18.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "6.5.0",
"version": "6.5.1",
"description": "Base components for Ionic",
"keywords": [
"ionic",

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic-docs/compare/v6.5.0...v6.5.1) (2023-01-25)
**Note:** Version bump only for package @ionic/docs
# [6.5.0](https://github.com/ionic-team/ionic-docs/compare/v6.4.3...v6.5.0) (2023-01-18)
**Note:** Version bump only for package @ionic/docs

View File

@@ -1,12 +1,12 @@
{
"name": "@ionic/docs",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/docs",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/docs",
"version": "6.5.0",
"version": "6.5.1",
"description": "Pre-packaged API documentation for the Ionic docs.",
"main": "core.json",
"types": "core.d.ts",

View File

@@ -5,5 +5,5 @@
"angular",
"packages/*"
],
"version": "6.5.0"
"version": "6.5.1"
}

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic/compare/v6.5.0...v6.5.1) (2023-01-25)
**Note:** Version bump only for package @ionic/angular-server
# [6.5.0](https://github.com/ionic-team/ionic/compare/v6.4.3...v6.5.0) (2023-01-18)
**Note:** Version bump only for package @ionic/angular-server

View File

@@ -1,15 +1,15 @@
{
"name": "@ionic/angular-server",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular-server",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^6.5.0"
"@ionic/core": "^6.5.1"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^12.6.1",
@@ -742,9 +742,9 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -7201,9 +7201,9 @@
"dev": true
},
"@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/angular-server",
"version": "6.5.0",
"version": "6.5.1",
"description": "Angular SSR Module for Ionic",
"keywords": [
"ionic",
@@ -69,6 +69,6 @@
},
"prettier": "@ionic/prettier-config",
"dependencies": {
"@ionic/core": "^6.5.0"
"@ionic/core": "^6.5.1"
}
}

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic/compare/v6.5.0...v6.5.1) (2023-01-25)
**Note:** Version bump only for package @ionic/react-router
# [6.5.0](https://github.com/ionic-team/ionic/compare/v6.4.3...v6.5.0) (2023-01-18)
**Note:** Version bump only for package @ionic/react-router

View File

@@ -1,15 +1,15 @@
{
"name": "@ionic/react-router",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react-router",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@ionic/react": "^6.5.0",
"@ionic/react": "^6.5.1",
"tslib": "*"
},
"devDependencies": {
@@ -205,9 +205,9 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -381,11 +381,11 @@
}
},
"node_modules/@ionic/react": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.5.0.tgz",
"integrity": "sha512-eziFYWG+8ZwYI6KIlGsQhBbBxd5mDMbQYeHjOt2N0NILjVZmiHB3pZn0DRRzugjhGSo3W/jVT0Hzg14iH+tHcg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.5.1.tgz",
"integrity": "sha512-V9uu2M6wc3oj3h6oNU1z7p5u2V4sSILkGbej6IRcuU29fCaV/E7zLYnaxaBcI4g/oQwmCsTyjLmvON8aITuNjA==",
"dependencies": {
"@ionic/core": "6.5.0",
"@ionic/core": "6.5.1",
"ionicons": "^6.1.1",
"tslib": "*"
},
@@ -466,9 +466,9 @@
}
},
"node_modules/@stencil/core": {
"version": "2.22.1",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
"integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g==",
"version": "2.22.2",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.2.tgz",
"integrity": "sha512-r+vbxsGNcBaV1VDOYW25lv4QfXTlNoIb5GpUX7rZ+cr59yqYCZC5tlV+IzX6YgHKW62ulCc9M3RYtTfHtNbNNw==",
"bin": {
"stencil": "bin/stencil"
},
@@ -3630,9 +3630,9 @@
"dev": true
},
"@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -3736,11 +3736,11 @@
"requires": {}
},
"@ionic/react": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.5.0.tgz",
"integrity": "sha512-eziFYWG+8ZwYI6KIlGsQhBbBxd5mDMbQYeHjOt2N0NILjVZmiHB3pZn0DRRzugjhGSo3W/jVT0Hzg14iH+tHcg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.5.1.tgz",
"integrity": "sha512-V9uu2M6wc3oj3h6oNU1z7p5u2V4sSILkGbej6IRcuU29fCaV/E7zLYnaxaBcI4g/oQwmCsTyjLmvON8aITuNjA==",
"requires": {
"@ionic/core": "6.5.0",
"@ionic/core": "6.5.1",
"ionicons": "^6.1.1",
"tslib": "*"
}
@@ -3794,9 +3794,9 @@
}
},
"@stencil/core": {
"version": "2.22.1",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
"integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g=="
"version": "2.22.2",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.2.tgz",
"integrity": "sha512-r+vbxsGNcBaV1VDOYW25lv4QfXTlNoIb5GpUX7rZ+cr59yqYCZC5tlV+IzX6YgHKW62ulCc9M3RYtTfHtNbNNw=="
},
"@types/estree": {
"version": "0.0.39",

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/react-router",
"version": "6.5.0",
"version": "6.5.1",
"description": "React Router wrapper for @ionic/react",
"keywords": [
"ionic",
@@ -38,7 +38,7 @@
"dist/"
],
"dependencies": {
"@ionic/react": "^6.5.0",
"@ionic/react": "^6.5.1",
"tslib": "*"
},
"peerDependencies": {

View File

@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic/compare/v6.5.0...v6.5.1) (2023-01-25)
### Bug Fixes
* **react:** hardware back button works in dev mode ([#26614](https://github.com/ionic-team/ionic/issues/26614)) ([abcfe9f](https://github.com/ionic-team/ionic/commit/abcfe9fe867730f29b9379c3736f86b3d20c5b0a)), closes [#26599](https://github.com/ionic-team/ionic/issues/26599)
# [6.5.0](https://github.com/ionic-team/ionic/compare/v6.4.3...v6.5.0) (2023-01-18)

View File

@@ -1,15 +1,15 @@
{
"name": "@ionic/react",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^6.5.0",
"@ionic/core": "^6.5.1",
"ionicons": "^6.1.1",
"tslib": "*"
},
@@ -697,9 +697,9 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -11765,9 +11765,9 @@
"dev": true
},
"@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/react",
"version": "6.5.0",
"version": "6.5.1",
"description": "React specific wrapper for @ionic/core",
"keywords": [
"ionic",
@@ -42,7 +42,7 @@
"css/"
],
"dependencies": {
"@ionic/core": "^6.5.0",
"@ionic/core": "^6.5.1",
"ionicons": "^6.1.1",
"tslib": "*"
},

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic/compare/v6.5.0...v6.5.1) (2023-01-25)
**Note:** Version bump only for package @ionic/vue-router
# [6.5.0](https://github.com/ionic-team/ionic/compare/v6.4.3...v6.5.0) (2023-01-18)
**Note:** Version bump only for package @ionic/vue-router

View File

@@ -1,15 +1,15 @@
{
"name": "@ionic/vue-router",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue-router",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@ionic/vue": "^6.5.0"
"@ionic/vue": "^6.5.1"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",
@@ -660,9 +660,9 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -851,11 +851,11 @@
}
},
"node_modules/@ionic/vue": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.5.0.tgz",
"integrity": "sha512-zKccqwFK1y8SZtsgIo0ON9vaSlowwd4qWBAnY6gNGZYzVjtmUNQNP0cDcFsJrT/vIpwKg4Dn6oEdzxpupLD/TA==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.5.1.tgz",
"integrity": "sha512-REmq+R2ZFnB5Q85KPy7768ef8pxPnxddDOR/hatAi9PzMwnSdYewnU2W/vQJvNRDqxwAIBGeaZ+HvAfJsT2UMw==",
"dependencies": {
"@ionic/core": "6.5.0",
"@ionic/core": "6.5.1",
"ionicons": "^6.1.1"
}
},
@@ -1303,9 +1303,9 @@
}
},
"node_modules/@stencil/core": {
"version": "2.22.1",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
"integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g==",
"version": "2.22.2",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.2.tgz",
"integrity": "sha512-r+vbxsGNcBaV1VDOYW25lv4QfXTlNoIb5GpUX7rZ+cr59yqYCZC5tlV+IzX6YgHKW62ulCc9M3RYtTfHtNbNNw==",
"bin": {
"stencil": "bin/stencil"
},
@@ -7665,9 +7665,9 @@
"dev": true
},
"@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -7780,11 +7780,11 @@
"requires": {}
},
"@ionic/vue": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.5.0.tgz",
"integrity": "sha512-zKccqwFK1y8SZtsgIo0ON9vaSlowwd4qWBAnY6gNGZYzVjtmUNQNP0cDcFsJrT/vIpwKg4Dn6oEdzxpupLD/TA==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.5.1.tgz",
"integrity": "sha512-REmq+R2ZFnB5Q85KPy7768ef8pxPnxddDOR/hatAi9PzMwnSdYewnU2W/vQJvNRDqxwAIBGeaZ+HvAfJsT2UMw==",
"requires": {
"@ionic/core": "6.5.0",
"@ionic/core": "6.5.1",
"ionicons": "^6.1.1"
}
},
@@ -8143,9 +8143,9 @@
}
},
"@stencil/core": {
"version": "2.22.1",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
"integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g=="
"version": "2.22.2",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.2.tgz",
"integrity": "sha512-r+vbxsGNcBaV1VDOYW25lv4QfXTlNoIb5GpUX7rZ+cr59yqYCZC5tlV+IzX6YgHKW62ulCc9M3RYtTfHtNbNNw=="
},
"@tootallnate/once": {
"version": "2.0.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/vue-router",
"version": "6.5.0",
"version": "6.5.1",
"description": "Vue Router integration for @ionic/vue",
"scripts": {
"test.spec": "jest",
@@ -46,7 +46,7 @@
},
"homepage": "https://github.com/ionic-team/ionic#readme",
"dependencies": {
"@ionic/vue": "^6.5.0"
"@ionic/vue": "^6.5.1"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",

View File

@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [6.5.1](https://github.com/ionic-team/ionic/compare/v6.5.0...v6.5.1) (2023-01-25)
### Bug Fixes
* **vue:** unmount teleported components ([#26647](https://github.com/ionic-team/ionic/issues/26647)) ([6b16a0c](https://github.com/ionic-team/ionic/commit/6b16a0c020fc6afb6a5a6e6fa6f0758384f026b9)), closes [#26644](https://github.com/ionic-team/ionic/issues/26644)
# [6.5.0](https://github.com/ionic-team/ionic/compare/v6.4.3...v6.5.0) (2023-01-18)

View File

@@ -1,15 +1,15 @@
{
"name": "@ionic/vue",
"version": "6.5.0",
"version": "6.5.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^6.5.0",
"@ionic/core": "^6.5.1",
"ionicons": "^6.1.1"
},
"devDependencies": {
@@ -208,9 +208,9 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",
@@ -3776,9 +3776,9 @@
"dev": true
},
"@ionic/core": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.1.tgz",
"integrity": "sha512-O696r+4/f0Ly0XvPH1ZcsTBwiQLWf5gCDG1CoAn9W/F84DcvzGV9acV9nmpEDcrqaSLFYjJHGpeCec9y7L50iw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.1.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/vue",
"version": "6.5.0",
"version": "6.5.1",
"description": "Vue specific wrapper for @ionic/core",
"scripts": {
"eslint": "eslint src",
@@ -68,7 +68,7 @@
"vue-router": "^4.0.16"
},
"dependencies": {
"@ionic/core": "^6.5.0",
"@ionic/core": "^6.5.1",
"ionicons": "^6.1.1"
},
"vetur": {