merge release-7.3.1

Release 7.3.1
This commit is contained in:
Liam DeBeasi
2023-08-23 09:23:03 -05:00
committed by GitHub
26 changed files with 229 additions and 143 deletions

View File

@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
### Bug Fixes
* **angular:** ionTabsWillChange is fired before tab activation ([#27991](https://github.com/ionic-team/ionic-framework/issues/27991)) ([bbfb8f8](https://github.com/ionic-team/ionic-framework/commit/bbfb8f81a61475d7e73b63743db5d6a0cd979d21)), closes [#27212](https://github.com/ionic-team/ionic-framework/issues/27212)
* **input, textarea:** clearOnEdit does not clear when pressing Tab ([#28005](https://github.com/ionic-team/ionic-framework/issues/28005)) ([444acc1](https://github.com/ionic-team/ionic-framework/commit/444acc1f1bca348b62dfb398067cc087529f67f1)), closes [#27746](https://github.com/ionic-team/ionic-framework/issues/27746)
* **react:** avoid multiple invocations of onDidDismiss and onWillPresent ([#28020](https://github.com/ionic-team/ionic-framework/issues/28020)) ([0ac3df3](https://github.com/ionic-team/ionic-framework/commit/0ac3df3f378bdefc3a927adc798ebd9ec7a54fee)), closes [#28010](https://github.com/ionic-team/ionic-framework/issues/28010)
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
### Bug Fixes
* **input, textarea:** clearOnEdit does not clear when pressing Tab ([#28005](https://github.com/ionic-team/ionic-framework/issues/28005)) ([444acc1](https://github.com/ionic-team/ionic-framework/commit/444acc1f1bca348b62dfb398067cc087529f67f1)), closes [#27746](https://github.com/ionic-team/ionic-framework/issues/27746)
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)

View File

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

View File

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

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
**Note:** Version bump only for package @ionic/docs
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)
**Note:** Version bump only for package @ionic/docs **Note:** Version bump only for package @ionic/docs

View File

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

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/docs", "name": "@ionic/docs",
"version": "7.3.0", "version": "7.3.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

@ -4,5 +4,5 @@
"docs", "docs",
"packages/*" "packages/*"
], ],
"version": "7.3.0" "version": "7.3.1"
} }

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
**Note:** Version bump only for package @ionic/angular-server
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)
**Note:** Version bump only for package @ionic/angular-server **Note:** Version bump only for package @ionic/angular-server

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/angular-server", "name": "@ionic/angular-server",
"version": "7.3.0", "version": "7.3.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/angular-server", "name": "@ionic/angular-server",
"version": "7.3.0", "version": "7.3.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "^7.3.0" "@ionic/core": "^7.3.1"
}, },
"devDependencies": { "devDependencies": {
"@angular-eslint/eslint-plugin": "^14.0.0", "@angular-eslint/eslint-plugin": "^14.0.0",
@ -1060,19 +1060,19 @@
"dev": true "dev": true
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"dependencies": { "dependencies": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
} }
}, },
"node_modules/@ionic/core/node_modules/@stencil/core": { "node_modules/@ionic/core/node_modules/@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==", "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@ -7342,19 +7342,19 @@
"dev": true "dev": true
}, },
"@ionic/core": { "@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"requires": { "requires": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
"dependencies": { "dependencies": {
"@stencil/core": { "@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==" "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg=="
} }
} }
}, },

View File

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

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
### Bug Fixes
* **angular:** ionTabsWillChange is fired before tab activation ([#27991](https://github.com/ionic-team/ionic-framework/issues/27991)) ([bbfb8f8](https://github.com/ionic-team/ionic-framework/commit/bbfb8f81a61475d7e73b63743db5d6a0cd979d21)), closes [#27212](https://github.com/ionic-team/ionic-framework/issues/27212)
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)
**Note:** Version bump only for package @ionic/angular **Note:** Version bump only for package @ionic/angular

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "7.3.0", "version": "7.3.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "7.3.0", "version": "7.3.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "^7.3.0", "@ionic/core": "^7.3.1",
"ionicons": "^7.0.0", "ionicons": "^7.0.0",
"jsonc-parser": "^3.0.0", "jsonc-parser": "^3.0.0",
"tslib": "^2.3.0" "tslib": "^2.3.0"
@ -1227,19 +1227,19 @@
"dev": true "dev": true
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"dependencies": { "dependencies": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
} }
}, },
"node_modules/@ionic/core/node_modules/@stencil/core": { "node_modules/@ionic/core/node_modules/@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==", "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@ -8104,19 +8104,19 @@
"dev": true "dev": true
}, },
"@ionic/core": { "@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"requires": { "requires": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
"dependencies": { "dependencies": {
"@stencil/core": { "@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==" "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg=="
} }
} }
}, },

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/angular", "name": "@ionic/angular",
"version": "7.3.0", "version": "7.3.1",
"description": "Angular specific wrappers for @ionic/core", "description": "Angular specific wrappers for @ionic/core",
"keywords": [ "keywords": [
"ionic", "ionic",
@ -47,7 +47,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@ionic/core": "^7.3.0", "@ionic/core": "^7.3.1",
"ionicons": "^7.0.0", "ionicons": "^7.0.0",
"jsonc-parser": "^3.0.0", "jsonc-parser": "^3.0.0",
"tslib": "^2.3.0" "tslib": "^2.3.0"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
**Note:** Version bump only for package @ionic/react-router
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)
**Note:** Version bump only for package @ionic/react-router **Note:** Version bump only for package @ionic/react-router

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/react-router", "name": "@ionic/react-router",
"version": "7.3.0", "version": "7.3.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/react-router", "name": "@ionic/react-router",
"version": "7.3.0", "version": "7.3.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/react": "^7.3.0", "@ionic/react": "^7.3.1",
"tslib": "*" "tslib": "*"
}, },
"devDependencies": { "devDependencies": {
@ -205,11 +205,11 @@
"dev": true "dev": true
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"dependencies": { "dependencies": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
} }
@ -401,11 +401,11 @@
} }
}, },
"node_modules/@ionic/react": { "node_modules/@ionic/react": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.3.1.tgz",
"integrity": "sha512-7fBlCpCX1QT18v1BwSh41d1KQpMLLWtUTr7RmxbQi1QhGxWbqkMNPK9a6Dr4Z1sYQI7J75o6biWtNmAqCF370g==", "integrity": "sha512-X1n81R85mprFqwqNiISiqrzYWbMJm0chPxJZkVOzFwuWG7fKDKY1vigNvm5eI/lOTbfC2xjJZOYwuHAxHi3BoQ==",
"dependencies": { "dependencies": {
"@ionic/core": "7.3.0", "@ionic/core": "7.3.1",
"ionicons": "^7.0.0", "ionicons": "^7.0.0",
"tslib": "*" "tslib": "*"
}, },
@ -486,9 +486,9 @@
} }
}, },
"node_modules/@stencil/core": { "node_modules/@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==", "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@ -3663,11 +3663,11 @@
"dev": true "dev": true
}, },
"@ionic/core": { "@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"requires": { "requires": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
@ -3786,11 +3786,11 @@
"requires": {} "requires": {}
}, },
"@ionic/react": { "@ionic/react": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.3.1.tgz",
"integrity": "sha512-7fBlCpCX1QT18v1BwSh41d1KQpMLLWtUTr7RmxbQi1QhGxWbqkMNPK9a6Dr4Z1sYQI7J75o6biWtNmAqCF370g==", "integrity": "sha512-X1n81R85mprFqwqNiISiqrzYWbMJm0chPxJZkVOzFwuWG7fKDKY1vigNvm5eI/lOTbfC2xjJZOYwuHAxHi3BoQ==",
"requires": { "requires": {
"@ionic/core": "7.3.0", "@ionic/core": "7.3.1",
"ionicons": "^7.0.0", "ionicons": "^7.0.0",
"tslib": "*" "tslib": "*"
} }
@ -3844,9 +3844,9 @@
} }
}, },
"@stencil/core": { "@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==" "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg=="
}, },
"@types/estree": { "@types/estree": {
"version": "0.0.39", "version": "0.0.39",

View File

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

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
### Bug Fixes
* **react:** avoid multiple invocations of onDidDismiss and onWillPresent ([#28020](https://github.com/ionic-team/ionic-framework/issues/28020)) ([0ac3df3](https://github.com/ionic-team/ionic-framework/commit/0ac3df3f378bdefc3a927adc798ebd9ec7a54fee)), closes [#28010](https://github.com/ionic-team/ionic-framework/issues/28010)
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)
**Note:** Version bump only for package @ionic/react **Note:** Version bump only for package @ionic/react

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/react", "name": "@ionic/react",
"version": "7.3.0", "version": "7.3.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/react", "name": "@ionic/react",
"version": "7.3.0", "version": "7.3.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "^7.3.0", "@ionic/core": "^7.3.1",
"ionicons": "^7.0.0", "ionicons": "^7.0.0",
"tslib": "*" "tslib": "*"
}, },
@ -697,19 +697,19 @@
"dev": true "dev": true
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"dependencies": { "dependencies": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
} }
}, },
"node_modules/@ionic/core/node_modules/@stencil/core": { "node_modules/@ionic/core/node_modules/@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==", "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@ -11778,19 +11778,19 @@
"dev": true "dev": true
}, },
"@ionic/core": { "@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"requires": { "requires": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
"dependencies": { "dependencies": {
"@stencil/core": { "@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==" "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg=="
} }
} }
}, },

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/react", "name": "@ionic/react",
"version": "7.3.0", "version": "7.3.1",
"description": "React specific wrapper for @ionic/core", "description": "React specific wrapper for @ionic/core",
"keywords": [ "keywords": [
"ionic", "ionic",
@ -41,7 +41,7 @@
"css/" "css/"
], ],
"dependencies": { "dependencies": {
"@ionic/core": "^7.3.0", "@ionic/core": "^7.3.1",
"ionicons": "^7.0.0", "ionicons": "^7.0.0",
"tslib": "*" "tslib": "*"
}, },

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
**Note:** Version bump only for package @ionic/vue-router
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)
**Note:** Version bump only for package @ionic/vue-router **Note:** Version bump only for package @ionic/vue-router

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/vue-router", "name": "@ionic/vue-router",
"version": "7.3.0", "version": "7.3.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/vue-router", "name": "@ionic/vue-router",
"version": "7.3.0", "version": "7.3.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/vue": "^7.3.0" "@ionic/vue": "^7.3.1"
}, },
"devDependencies": { "devDependencies": {
"@ionic/eslint-config": "^0.3.0", "@ionic/eslint-config": "^0.3.0",
@ -660,11 +660,11 @@
"dev": true "dev": true
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"dependencies": { "dependencies": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
} }
@ -871,11 +871,11 @@
} }
}, },
"node_modules/@ionic/vue": { "node_modules/@ionic/vue": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.3.1.tgz",
"integrity": "sha512-fbWcwGBFvH+04gFWdVoENqr2DiFAXucSdbDotI93wjmdAvg/H1RQEAMuJAVccCpb9fTKVkpZQwpKwS4z6IoQIw==", "integrity": "sha512-URxNXLYo4gh0riQlHiCoGDo7GqEqbVJi/1gMamM3tGBQHCMNZdm9IDfIDYjHY4L3dVi5pF+szl/b4p2lsIV3hw==",
"dependencies": { "dependencies": {
"@ionic/core": "7.3.0", "@ionic/core": "7.3.1",
"ionicons": "^7.0.0" "ionicons": "^7.0.0"
} }
}, },
@ -1323,9 +1323,9 @@
} }
}, },
"node_modules/@stencil/core": { "node_modules/@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==", "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@ -6807,9 +6807,9 @@
} }
}, },
"node_modules/tslib": { "node_modules/tslib": {
"version": "2.6.1", "version": "2.6.2",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
"integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
}, },
"node_modules/tsutils": { "node_modules/tsutils": {
"version": "3.21.0", "version": "3.21.0",
@ -7697,11 +7697,11 @@
"dev": true "dev": true
}, },
"@ionic/core": { "@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"requires": { "requires": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
@ -7829,11 +7829,11 @@
"requires": {} "requires": {}
}, },
"@ionic/vue": { "@ionic/vue": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.3.1.tgz",
"integrity": "sha512-fbWcwGBFvH+04gFWdVoENqr2DiFAXucSdbDotI93wjmdAvg/H1RQEAMuJAVccCpb9fTKVkpZQwpKwS4z6IoQIw==", "integrity": "sha512-URxNXLYo4gh0riQlHiCoGDo7GqEqbVJi/1gMamM3tGBQHCMNZdm9IDfIDYjHY4L3dVi5pF+szl/b4p2lsIV3hw==",
"requires": { "requires": {
"@ionic/core": "7.3.0", "@ionic/core": "7.3.1",
"ionicons": "^7.0.0" "ionicons": "^7.0.0"
} }
}, },
@ -8192,9 +8192,9 @@
} }
}, },
"@stencil/core": { "@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==" "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg=="
}, },
"@tootallnate/once": { "@tootallnate/once": {
"version": "2.0.0", "version": "2.0.0",
@ -12220,9 +12220,9 @@
} }
}, },
"tslib": { "tslib": {
"version": "2.6.1", "version": "2.6.2",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
"integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
}, },
"tsutils": { "tsutils": {
"version": "3.21.0", "version": "3.21.0",

View File

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

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.3.1](https://github.com/ionic-team/ionic-framework/compare/v7.3.0...v7.3.1) (2023-08-23)
**Note:** Version bump only for package @ionic/vue
# [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16) # [7.3.0](https://github.com/ionic-team/ionic-framework/compare/v7.2.4...v7.3.0) (2023-08-16)
**Note:** Version bump only for package @ionic/vue **Note:** Version bump only for package @ionic/vue

View File

@ -1,15 +1,15 @@
{ {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "7.3.0", "version": "7.3.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "7.3.0", "version": "7.3.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ionic/core": "^7.3.0", "@ionic/core": "^7.3.1",
"ionicons": "^7.0.0" "ionicons": "^7.0.0"
}, },
"devDependencies": { "devDependencies": {
@ -207,11 +207,11 @@
"dev": true "dev": true
}, },
"node_modules/@ionic/core": { "node_modules/@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"dependencies": { "dependencies": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
} }
@ -423,9 +423,9 @@
} }
}, },
"node_modules/@stencil/core": { "node_modules/@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==", "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@ -3746,11 +3746,11 @@
"dev": true "dev": true
}, },
"@ionic/core": { "@ionic/core": {
"version": "7.3.0", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.0.tgz", "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.3.1.tgz",
"integrity": "sha512-DPHG0U44O4WcknXa+x3JR/G/5ySxqCS5S8w65PZUQBYA657L4zkaGOvZpObP1MtiBLj9kG7c6Ae6xgJjrU7tyQ==", "integrity": "sha512-RdSJsFYx2oJ08duw+DMWVAfzjxlnA+o1saX5gOLSjP5SpwP7FqURFfXrFHIFN2vIKbeqUZTZjQwPHnrFsX04dQ==",
"requires": { "requires": {
"@stencil/core": "^4.0.3", "@stencil/core": "^4.1.0",
"ionicons": "7.1.0", "ionicons": "7.1.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
@ -3885,9 +3885,9 @@
} }
}, },
"@stencil/core": { "@stencil/core": {
"version": "4.0.5", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.0.5.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.1.0.tgz",
"integrity": "sha512-0nZRvvhjjOKsQFGX0pKiDtOS/5IiL7HRxtLqpIxHAxXKLs9ZcomTsdOwl12m/qjx2AtQReOfP8+x8jLOBNMOIQ==" "integrity": "sha512-yIpL+CX02fy5zvFXwXcHZjjEILRm3aiONbucpfLIWPS7zcBAuucdROssartEa+D7E1JRko97ydxn1Ntdu4GoWg=="
}, },
"@types/json-schema": { "@types/json-schema": {
"version": "7.0.11", "version": "7.0.11",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ionic/vue", "name": "@ionic/vue",
"version": "7.3.0", "version": "7.3.1",
"description": "Vue specific wrapper for @ionic/core", "description": "Vue specific wrapper for @ionic/core",
"scripts": { "scripts": {
"eslint": "eslint src", "eslint": "eslint src",
@ -66,7 +66,7 @@
"vue-router": "^4.0.16" "vue-router": "^4.0.16"
}, },
"dependencies": { "dependencies": {
"@ionic/core": "^7.3.0", "@ionic/core": "^7.3.1",
"ionicons": "^7.0.0" "ionicons": "^7.0.0"
}, },
"vetur": { "vetur": {