This commit is contained in:
Liam DeBeasi
2021-08-04 10:05:10 -04:00
parent 4a64e97a3e
commit 22b7413f51
14 changed files with 63 additions and 49 deletions

View File

@ -1,3 +1,17 @@
## [5.6.13](https://github.com/ionic-team/ionic/compare/v5.6.12...v5.6.13) (2021-08-04)
### Bug Fixes
* **checkbox, radio:** change event interfaces correctly use TypeScript generics for value ([#23044](https://github.com/ionic-team/ionic/issues/23044)) ([8a941fd](https://github.com/ionic-team/ionic/commit/8a941fd24cd138817a2e91c42898878a919538e4))
* **gesture:** onEnd now correctly fires even if the event target was removed from the DOM ([#23713](https://github.com/ionic-team/ionic/issues/23713)) ([4edb5e2](https://github.com/ionic-team/ionic/commit/4edb5e2fed55c8ea21eae50821d16d351bf3aebf)), closes [#22819](https://github.com/ionic-team/ionic/issues/22819)
* **item-sliding:** opening item while other items are open no longer requires multiple swipes ([#23683](https://github.com/ionic-team/ionic/issues/23683)) ([792864f](https://github.com/ionic-team/ionic/commit/792864f8ab21dc178c1836a8a0d4fe2d305cc142)), closes [#21579](https://github.com/ionic-team/ionic/issues/21579)
* **react:** IonTabs no longer causes SSR to fail ([#23696](https://github.com/ionic-team/ionic/issues/23696)) ([f2a05be](https://github.com/ionic-team/ionic/commit/f2a05bed1e2a1150e8f1823bfed2d12a219d6ad0)), closes [#23651](https://github.com/ionic-team/ionic/issues/23651)
* **vue:** improve accuracy of ion-page dev warning ([#23677](https://github.com/ionic-team/ionic/issues/23677)) ([fb260a9](https://github.com/ionic-team/ionic/commit/fb260a9e09e6f3912b30ef2ebf581d3216483fea)), closes [#23675](https://github.com/ionic-team/ionic/issues/23675)
* **vue:** tabs warning about user-provided router outlet change is now correctly logged ([#23724](https://github.com/ionic-team/ionic/issues/23724)) ([4a64e97](https://github.com/ionic-team/ionic/commit/4a64e97a3e390e365101bbb477acad0ddc4671ff)), closes [#23719](https://github.com/ionic-team/ionic/issues/23719)
## [5.6.12](https://github.com/ionic-team/ionic/compare/v5.6.11...v5.6.12) (2021-07-21) ## [5.6.12](https://github.com/ionic-team/ionic/compare/v5.6.11...v5.6.12) (2021-07-21)

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "5.6.12", "version": "5.6.13",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "5.6.12", "version": "5.6.13",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "5.6.11", "@ionic/core": "5.6.12",
"tslib": "^1.9.3" "tslib": "^1.9.3"
}, },
"devDependencies": { "devDependencies": {
@ -204,9 +204,9 @@
} }
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "5.6.11", "version": "5.6.12",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.11.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.12.tgz",
"integrity": "sha512-bWn2K3L/QWRUs8SBm+YJcgJhOO6W00eipfxJunlAr/7PbMePdqYnU+PQ2Cv54ufK3yUtLr2b0YdvZ9wZ6pGS3w==", "integrity": "sha512-qFQ8r0kdI2p5wT72EQOwBrIts7XD1qA7/vCR7OlHPTA+VDyiYSzpLcWcFZHzdXKQzbn7hYbCJr3IsBNmBYrZ1g==",
"dependencies": { "dependencies": {
"@stencil/core": "^2.4.0", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.1", "ionicons": "^5.5.1",
@ -5156,9 +5156,9 @@
} }
}, },
"@ionic/core": { "@ionic/core": {
"version": "5.6.11", "version": "5.6.12",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.11.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.12.tgz",
"integrity": "sha512-bWn2K3L/QWRUs8SBm+YJcgJhOO6W00eipfxJunlAr/7PbMePdqYnU+PQ2Cv54ufK3yUtLr2b0YdvZ9wZ6pGS3w==", "integrity": "sha512-qFQ8r0kdI2p5wT72EQOwBrIts7XD1qA7/vCR7OlHPTA+VDyiYSzpLcWcFZHzdXKQzbn7hYbCJr3IsBNmBYrZ1g==",
"requires": { "requires": {
"@stencil/core": "^2.4.0", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.1", "ionicons": "^5.5.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "5.6.12", "version": "5.6.13",
"description": "Angular specific wrappers for @ionic/core", "description": "Angular specific wrappers for @ionic/core",
"keywords": [ "keywords": [
"ionic", "ionic",
@ -42,7 +42,7 @@
"validate": "npm i && npm run lint && npm run test && npm run build" "validate": "npm i && npm run lint && npm run test && npm run build"
}, },
"dependencies": { "dependencies": {
"@ionic/core": "5.6.12", "@ionic/core": "5.6.13",
"tslib": "^1.9.3" "tslib": "^1.9.3"
}, },
"peerDependencies": { "peerDependencies": {

View File

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

View File

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

View File

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

View File

@ -1,12 +1,12 @@
{ {
"name": "@ionic/angular-server", "name": "@ionic/angular-server",
"version": "5.6.12", "version": "5.6.13",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/angular-server", "name": "@ionic/angular-server",
"version": "5.6.12", "version": "5.6.13",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@angular/animations": "8.2.13", "@angular/animations": "8.2.13",
@ -16,7 +16,7 @@
"@angular/core": "8.2.13", "@angular/core": "8.2.13",
"@angular/platform-browser": "8.2.13", "@angular/platform-browser": "8.2.13",
"@angular/platform-server": "8.2.13", "@angular/platform-server": "8.2.13",
"@ionic/core": "5.6.11", "@ionic/core": "5.6.12",
"ng-packagr": "5.7.1", "ng-packagr": "5.7.1",
"tslint": "^5.12.1", "tslint": "^5.12.1",
"tslint-ionic-rules": "0.0.21", "tslint-ionic-rules": "0.0.21",
@ -137,9 +137,9 @@
} }
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "5.6.11", "version": "5.6.12",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.11.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.12.tgz",
"integrity": "sha512-bWn2K3L/QWRUs8SBm+YJcgJhOO6W00eipfxJunlAr/7PbMePdqYnU+PQ2Cv54ufK3yUtLr2b0YdvZ9wZ6pGS3w==", "integrity": "sha512-qFQ8r0kdI2p5wT72EQOwBrIts7XD1qA7/vCR7OlHPTA+VDyiYSzpLcWcFZHzdXKQzbn7hYbCJr3IsBNmBYrZ1g==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@stencil/core": "^2.4.0", "@stencil/core": "^2.4.0",
@ -5424,9 +5424,9 @@
} }
}, },
"@ionic/core": { "@ionic/core": {
"version": "5.6.11", "version": "5.6.12",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.11.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.12.tgz",
"integrity": "sha512-bWn2K3L/QWRUs8SBm+YJcgJhOO6W00eipfxJunlAr/7PbMePdqYnU+PQ2Cv54ufK3yUtLr2b0YdvZ9wZ6pGS3w==", "integrity": "sha512-qFQ8r0kdI2p5wT72EQOwBrIts7XD1qA7/vCR7OlHPTA+VDyiYSzpLcWcFZHzdXKQzbn7hYbCJr3IsBNmBYrZ1g==",
"dev": true, "dev": true,
"requires": { "requires": {
"@stencil/core": "^2.4.0", "@stencil/core": "^2.4.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/angular-server", "name": "@ionic/angular-server",
"version": "5.6.12", "version": "5.6.13",
"description": "Angular SSR Module for Ionic", "description": "Angular SSR Module for Ionic",
"keywords": [ "keywords": [
"ionic", "ionic",
@ -49,7 +49,7 @@
"@angular/core": "8.2.13", "@angular/core": "8.2.13",
"@angular/platform-browser": "8.2.13", "@angular/platform-browser": "8.2.13",
"@angular/platform-server": "8.2.13", "@angular/platform-server": "8.2.13",
"@ionic/core": "5.6.12", "@ionic/core": "5.6.13",
"ng-packagr": "5.7.1", "ng-packagr": "5.7.1",
"tslint": "^5.12.1", "tslint": "^5.12.1",
"tslint-ionic-rules": "0.0.21", "tslint-ionic-rules": "0.0.21",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/react-router", "name": "@ionic/react-router",
"version": "5.6.12", "version": "5.6.13",
"description": "React Router wrapper for @ionic/react", "description": "React Router wrapper for @ionic/react",
"keywords": [ "keywords": [
"ionic", "ionic",
@ -39,15 +39,15 @@
"tslib": "*" "tslib": "*"
}, },
"peerDependencies": { "peerDependencies": {
"@ionic/react": "5.6.12", "@ionic/react": "5.6.13",
"react": ">=16.8.6", "react": ">=16.8.6",
"react-dom": ">=16.8.6", "react-dom": ">=16.8.6",
"react-router": "^5.0.1", "react-router": "^5.0.1",
"react-router-dom": "^5.0.1" "react-router-dom": "^5.0.1"
}, },
"devDependencies": { "devDependencies": {
"@ionic/core": "5.6.12", "@ionic/core": "5.6.13",
"@ionic/react": "5.6.12", "@ionic/react": "5.6.13",
"@rollup/plugin-node-resolve": "^8.1.0", "@rollup/plugin-node-resolve": "^8.1.0",
"@testing-library/jest-dom": "^5.11.6", "@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2", "@testing-library/react": "^11.2.2",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/react", "name": "@ionic/react",
"version": "5.6.12", "version": "5.6.13",
"description": "React specific wrapper for @ionic/core", "description": "React specific wrapper for @ionic/core",
"keywords": [ "keywords": [
"ionic", "ionic",
@ -39,7 +39,7 @@
"css/" "css/"
], ],
"dependencies": { "dependencies": {
"@ionic/core": "5.6.12", "@ionic/core": "5.6.13",
"ionicons": "^5.1.2", "ionicons": "^5.1.2",
"tslib": "*" "tslib": "*"
}, },

View File

@ -1,12 +1,12 @@
{ {
"name": "@ionic/vue-router", "name": "@ionic/vue-router",
"version": "5.6.12", "version": "5.6.13",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/vue-router", "name": "@ionic/vue-router",
"version": "5.6.12", "version": "5.6.13",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@ionic/vue": "5.4.1", "@ionic/vue": "5.4.1",
@ -23,12 +23,12 @@
}, },
"../../core": { "../../core": {
"name": "@ionic/core", "name": "@ionic/core",
"version": "5.6.11", "version": "5.6.12",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@stencil/core": "^2.4.0", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.1", "ionicons": "^5.5.3",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
"devDependencies": { "devDependencies": {
@ -7300,7 +7300,7 @@
"domino": "^2.1.6", "domino": "^2.1.6",
"execa": "^5.0.0", "execa": "^5.0.0",
"fs-extra": "^9.0.1", "fs-extra": "^9.0.1",
"ionicons": "^5.5.1", "ionicons": "^5.5.3",
"jest": "^26.4.1", "jest": "^26.4.1",
"jest-cli": "^26.4.1", "jest-cli": "^26.4.1",
"np": "^6.4.0", "np": "^6.4.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/vue-router", "name": "@ionic/vue-router",
"version": "5.6.12", "version": "5.6.13",
"description": "Vue Router integration for @ionic/vue", "description": "Vue Router integration for @ionic/vue",
"scripts": { "scripts": {
"test.spec": "jest", "test.spec": "jest",

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "5.6.12", "version": "5.6.13",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "5.6.12", "version": "5.6.13",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "5.6.11", "@ionic/core": "5.6.12",
"ionicons": "^5.1.2" "ionicons": "^5.1.2"
}, },
"devDependencies": { "devDependencies": {
@ -53,9 +53,9 @@
} }
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "5.6.11", "version": "5.6.12",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.11.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.12.tgz",
"integrity": "sha512-bWn2K3L/QWRUs8SBm+YJcgJhOO6W00eipfxJunlAr/7PbMePdqYnU+PQ2Cv54ufK3yUtLr2b0YdvZ9wZ6pGS3w==", "integrity": "sha512-qFQ8r0kdI2p5wT72EQOwBrIts7XD1qA7/vCR7OlHPTA+VDyiYSzpLcWcFZHzdXKQzbn7hYbCJr3IsBNmBYrZ1g==",
"dependencies": { "dependencies": {
"@stencil/core": "^2.4.0", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.1", "ionicons": "^5.5.1",
@ -633,9 +633,9 @@
} }
}, },
"@ionic/core": { "@ionic/core": {
"version": "5.6.11", "version": "5.6.12",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.11.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.12.tgz",
"integrity": "sha512-bWn2K3L/QWRUs8SBm+YJcgJhOO6W00eipfxJunlAr/7PbMePdqYnU+PQ2Cv54ufK3yUtLr2b0YdvZ9wZ6pGS3w==", "integrity": "sha512-qFQ8r0kdI2p5wT72EQOwBrIts7XD1qA7/vCR7OlHPTA+VDyiYSzpLcWcFZHzdXKQzbn7hYbCJr3IsBNmBYrZ1g==",
"requires": { "requires": {
"@stencil/core": "^2.4.0", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.1", "ionicons": "^5.5.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "5.6.12", "version": "5.6.13",
"description": "Vue specific wrapper for @ionic/core", "description": "Vue specific wrapper for @ionic/core",
"scripts": { "scripts": {
"lint": "echo add linter", "lint": "echo add linter",
@ -57,7 +57,7 @@
"vue-router": "^4.0.0-rc.4" "vue-router": "^4.0.0-rc.4"
}, },
"dependencies": { "dependencies": {
"@ionic/core": "5.6.12", "@ionic/core": "5.6.13",
"ionicons": "^5.1.2" "ionicons": "^5.1.2"
}, },
"vetur": { "vetur": {