This commit is contained in:
Liam DeBeasi
2021-03-17 12:59:08 -04:00
parent c8a3999da1
commit a0ff24b5d6
14 changed files with 124 additions and 60 deletions

View File

@ -1,3 +1,17 @@
## [5.6.1](https://github.com/ionic-team/ionic/compare/v5.6.0...v5.6.1) (2021-03-17)
### Bug Fixes
* **custom-elements:** overlays now present correctly when using custom elements build ([#23039](https://github.com/ionic-team/ionic/issues/23039)) ([e4bf052](https://github.com/ionic-team/ionic/commit/e4bf052794af9aac07f887013b9250d2a045eba3)), closes [#23029](https://github.com/ionic-team/ionic/issues/23029)
* **item:** detail icon is no longer announced by screen readers ([#23055](https://github.com/ionic-team/ionic/issues/23055)) ([c877061](https://github.com/ionic-team/ionic/commit/c877061a328c6ab6fa7248b9880d0205c6c4f6c1)), closes [#23054](https://github.com/ionic-team/ionic/issues/23054)
* **label:** properly float labels for non-input items ([#23060](https://github.com/ionic-team/ionic/issues/23060)) ([c8a3999](https://github.com/ionic-team/ionic/commit/c8a3999da109b1719777f2acb791ab5388d371ea))
* **react:** only pass tab event props from IonTabs to IonTabBar if defined ([#23024](https://github.com/ionic-team/ionic/issues/23024)) ([f94e618](https://github.com/ionic-team/ionic/commit/f94e618a7b307b143eb39c061dc9e6b80e11f862)), closes [#23023](https://github.com/ionic-team/ionic/issues/23023)
* **refresher:** progressEnd no longer errors when pulling quickly in MD native refresher ([#23056](https://github.com/ionic-team/ionic/issues/23056)) ([67617fb](https://github.com/ionic-team/ionic/commit/67617fbc0f7ec825f1fa4c6e7e2da70e3fcd2d66))
* **virtual-scroll:** allow null in items property ([#23047](https://github.com/ionic-team/ionic/issues/23047)) ([2a253a1](https://github.com/ionic-team/ionic/commit/2a253a1d334ca2c6a478a5bc426e3115268a29af))
* **vue:** passing params as props are correctly updated when switching pages ([#23049](https://github.com/ionic-team/ionic/issues/23049)) ([2f54bc1](https://github.com/ionic-team/ionic/commit/2f54bc14699656e6905452a4233d982f83d0001f)), closes [#23043](https://github.com/ionic-team/ionic/issues/23043)
# [5.6.0 Argon](https://github.com/ionic-team/ionic/compare/v5.5.4...v5.6.0) (2021-03-04) # [5.6.0 Argon](https://github.com/ionic-team/ionic/compare/v5.5.4...v5.6.0) (2021-03-04)

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "5.6.0", "version": "5.6.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "5.6.0", "version": "5.6.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "5.5.5", "@ionic/core": "5.6.0",
"tslib": "^1.9.3" "tslib": "^1.9.3"
}, },
"devDependencies": { "devDependencies": {
@ -204,11 +204,12 @@
} }
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "5.5.5", "version": "5.6.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.5.5.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.0.tgz",
"integrity": "sha512-i5KTiRuGa9PTUULy8rTQDDDw3FbxzYiOoSdKGNC0v7UOpMv9ReRixMWd5J0cfY17VRrua2aqNsqZXYwuInVnRQ==", "integrity": "sha512-dRwNRjHBiE2nB0JKY7tNHbcYMGXmDp7QCCVmtQbU511rZkwDlPUtg5qMJFHuLQVVUE21bjmWIJliE0aB9kcwYQ==",
"dependencies": { "dependencies": {
"ionicons": "^5.1.2", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.0",
"tslib": "^1.10.0" "tslib": "^1.10.0"
} }
}, },
@ -5150,11 +5151,12 @@
} }
}, },
"@ionic/core": { "@ionic/core": {
"version": "5.5.5", "version": "5.6.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.5.5.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.0.tgz",
"integrity": "sha512-i5KTiRuGa9PTUULy8rTQDDDw3FbxzYiOoSdKGNC0v7UOpMv9ReRixMWd5J0cfY17VRrua2aqNsqZXYwuInVnRQ==", "integrity": "sha512-dRwNRjHBiE2nB0JKY7tNHbcYMGXmDp7QCCVmtQbU511rZkwDlPUtg5qMJFHuLQVVUE21bjmWIJliE0aB9kcwYQ==",
"requires": { "requires": {
"ionicons": "^5.1.2", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.0",
"tslib": "^1.10.0" "tslib": "^1.10.0"
} }
}, },

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "5.6.0", "version": "5.6.1",
"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.0", "@ionic/core": "5.6.1",
"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.0", "version": "5.6.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/core", "name": "@ionic/core",
"version": "5.6.0", "version": "5.6.1",
"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.0", "version": "5.6.1",
"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.0", "version": "5.6.1",
"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.0", "version": "5.6.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/angular-server", "name": "@ionic/angular-server",
"version": "5.6.0", "version": "5.6.1",
"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.5.5", "@ionic/core": "5.6.0",
"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,12 +137,13 @@
} }
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "5.5.5", "version": "5.6.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.5.5.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.0.tgz",
"integrity": "sha512-i5KTiRuGa9PTUULy8rTQDDDw3FbxzYiOoSdKGNC0v7UOpMv9ReRixMWd5J0cfY17VRrua2aqNsqZXYwuInVnRQ==", "integrity": "sha512-dRwNRjHBiE2nB0JKY7tNHbcYMGXmDp7QCCVmtQbU511rZkwDlPUtg5qMJFHuLQVVUE21bjmWIJliE0aB9kcwYQ==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"ionicons": "^5.1.2", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.0",
"tslib": "^1.10.0" "tslib": "^1.10.0"
} }
}, },
@ -5417,12 +5418,13 @@
} }
}, },
"@ionic/core": { "@ionic/core": {
"version": "5.5.5", "version": "5.6.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.5.5.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.0.tgz",
"integrity": "sha512-i5KTiRuGa9PTUULy8rTQDDDw3FbxzYiOoSdKGNC0v7UOpMv9ReRixMWd5J0cfY17VRrua2aqNsqZXYwuInVnRQ==", "integrity": "sha512-dRwNRjHBiE2nB0JKY7tNHbcYMGXmDp7QCCVmtQbU511rZkwDlPUtg5qMJFHuLQVVUE21bjmWIJliE0aB9kcwYQ==",
"dev": true, "dev": true,
"requires": { "requires": {
"ionicons": "^5.1.2", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.0",
"tslib": "^1.10.0" "tslib": "^1.10.0"
} }
}, },

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/angular-server", "name": "@ionic/angular-server",
"version": "5.6.0", "version": "5.6.1",
"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.0", "@ionic/core": "5.6.1",
"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.0", "version": "5.6.1",
"description": "React Router wrapper for @ionic/react", "description": "React Router wrapper for @ionic/react",
"keywords": [ "keywords": [
"ionic", "ionic",
@ -39,16 +39,16 @@
"tslib": "*" "tslib": "*"
}, },
"peerDependencies": { "peerDependencies": {
"@ionic/core": "5.6.0", "@ionic/core": "5.6.1",
"@ionic/react": "5.6.0", "@ionic/react": "5.6.1",
"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.0", "@ionic/core": "5.6.1",
"@ionic/react": "5.6.0", "@ionic/react": "5.6.1",
"@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.0", "version": "5.6.1",
"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.0", "@ionic/core": "5.6.1",
"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.0", "version": "5.6.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/vue-router", "name": "@ionic/vue-router",
"version": "5.6.0", "version": "5.6.1",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@ionic/vue": "5.4.1", "@ionic/vue": "5.4.1",
@ -23,7 +23,7 @@
}, },
"../../core": { "../../core": {
"name": "@ionic/core", "name": "@ionic/core",
"version": "5.5.5", "version": "5.6.0",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/vue-router", "name": "@ionic/vue-router",
"version": "5.6.0", "version": "5.6.1",
"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.0", "version": "5.6.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "5.6.0", "version": "5.6.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "5.5.5", "@ionic/core": "5.6.0",
"ionicons": "^5.1.2" "ionicons": "^5.1.2"
}, },
"devDependencies": { "devDependencies": {
@ -53,14 +53,27 @@
} }
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "5.5.5", "version": "5.6.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.5.5.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.0.tgz",
"integrity": "sha512-i5KTiRuGa9PTUULy8rTQDDDw3FbxzYiOoSdKGNC0v7UOpMv9ReRixMWd5J0cfY17VRrua2aqNsqZXYwuInVnRQ==", "integrity": "sha512-dRwNRjHBiE2nB0JKY7tNHbcYMGXmDp7QCCVmtQbU511rZkwDlPUtg5qMJFHuLQVVUE21bjmWIJliE0aB9kcwYQ==",
"dependencies": { "dependencies": {
"ionicons": "^5.1.2", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.0",
"tslib": "^1.10.0" "tslib": "^1.10.0"
} }
}, },
"node_modules/@ionic/core/node_modules/@stencil/core": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.4.0.tgz",
"integrity": "sha512-gU6+Yyd6O0KrCSS/O6j8KKqmRo+/Dcs2fI0+APCpbAWK+nqhwDISpdnSEfGDCLMoAC08XOZCycBRk2K1VGnEcg==",
"bin": {
"stencil": "bin/stencil"
},
"engines": {
"node": ">=12.10.0",
"npm": ">=6.0.0"
}
},
"node_modules/@stencil/core": { "node_modules/@stencil/core": {
"version": "1.17.3", "version": "1.17.3",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-1.17.3.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-1.17.3.tgz",
@ -338,9 +351,24 @@
"dev": true "dev": true
}, },
"node_modules/ionicons": { "node_modules/ionicons": {
"version": "5.1.2", "version": "5.5.0",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-5.1.2.tgz", "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-5.5.0.tgz",
"integrity": "sha512-zO7ZgbBbXhpA7cXO2rDzTNdcCqErjg1Sprq/ossTvaiV0MriOjRE7JO3EGvYjDTPzF9YALGpvLXqCgsRT0tprA==" "integrity": "sha512-0DUHTeoIrGSY+KNyNDaQW7v5+mDstjSkjx8dzT925kXKYBDrN3sGs8kUcSSQbTK132U4CbgDEZkn7FDUa9x8Qw==",
"dependencies": {
"@stencil/core": "^2.4.0"
}
},
"node_modules/ionicons/node_modules/@stencil/core": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.4.0.tgz",
"integrity": "sha512-gU6+Yyd6O0KrCSS/O6j8KKqmRo+/Dcs2fI0+APCpbAWK+nqhwDISpdnSEfGDCLMoAC08XOZCycBRk2K1VGnEcg==",
"bin": {
"stencil": "bin/stencil"
},
"engines": {
"node": ">=12.10.0",
"npm": ">=6.0.0"
}
}, },
"node_modules/jsonfile": { "node_modules/jsonfile": {
"version": "6.1.0", "version": "6.1.0",
@ -599,12 +627,20 @@
} }
}, },
"@ionic/core": { "@ionic/core": {
"version": "5.5.5", "version": "5.6.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.5.5.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-5.6.0.tgz",
"integrity": "sha512-i5KTiRuGa9PTUULy8rTQDDDw3FbxzYiOoSdKGNC0v7UOpMv9ReRixMWd5J0cfY17VRrua2aqNsqZXYwuInVnRQ==", "integrity": "sha512-dRwNRjHBiE2nB0JKY7tNHbcYMGXmDp7QCCVmtQbU511rZkwDlPUtg5qMJFHuLQVVUE21bjmWIJliE0aB9kcwYQ==",
"requires": { "requires": {
"ionicons": "^5.1.2", "@stencil/core": "^2.4.0",
"ionicons": "^5.5.0",
"tslib": "^1.10.0" "tslib": "^1.10.0"
},
"dependencies": {
"@stencil/core": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.4.0.tgz",
"integrity": "sha512-gU6+Yyd6O0KrCSS/O6j8KKqmRo+/Dcs2fI0+APCpbAWK+nqhwDISpdnSEfGDCLMoAC08XOZCycBRk2K1VGnEcg=="
}
} }
}, },
"@stencil/core": { "@stencil/core": {
@ -857,9 +893,19 @@
"dev": true "dev": true
}, },
"ionicons": { "ionicons": {
"version": "5.1.2", "version": "5.5.0",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-5.1.2.tgz", "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-5.5.0.tgz",
"integrity": "sha512-zO7ZgbBbXhpA7cXO2rDzTNdcCqErjg1Sprq/ossTvaiV0MriOjRE7JO3EGvYjDTPzF9YALGpvLXqCgsRT0tprA==" "integrity": "sha512-0DUHTeoIrGSY+KNyNDaQW7v5+mDstjSkjx8dzT925kXKYBDrN3sGs8kUcSSQbTK132U4CbgDEZkn7FDUa9x8Qw==",
"requires": {
"@stencil/core": "^2.4.0"
},
"dependencies": {
"@stencil/core": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.4.0.tgz",
"integrity": "sha512-gU6+Yyd6O0KrCSS/O6j8KKqmRo+/Dcs2fI0+APCpbAWK+nqhwDISpdnSEfGDCLMoAC08XOZCycBRk2K1VGnEcg=="
}
}
}, },
"jsonfile": { "jsonfile": {
"version": "6.1.0", "version": "6.1.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "5.6.0", "version": "5.6.1",
"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.0", "@ionic/core": "5.6.1",
"ionicons": "^5.1.2" "ionicons": "^5.1.2"
}, },
"vetur": { "vetur": {