Merge branch 'main' into chore/update-from-main

This commit is contained in:
Brandy Smith
2025-06-04 10:33:07 -04:00
54 changed files with 861 additions and 373 deletions

View File

@@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [8.5.9](https://github.com/ionic-team/ionic-framework/compare/v8.5.8...v8.5.9) (2025-06-04)
**Note:** Version bump only for package @ionic/react
## [8.5.8](https://github.com/ionic-team/ionic-framework/compare/v8.5.7...v8.5.8) (2025-05-28)
**Note:** Version bump only for package @ionic/react
## [8.5.7](https://github.com/ionic-team/ionic-framework/compare/v8.5.6...v8.5.7) (2025-05-07)
**Note:** Version bump only for package @ionic/react
## [8.5.6](https://github.com/ionic-team/ionic-framework/compare/v8.5.5...v8.5.6) (2025-04-30)
**Note:** Version bump only for package @ionic/react

View File

@@ -1,15 +1,15 @@
{
"name": "@ionic/react",
"version": "8.5.6",
"version": "8.5.9",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react",
"version": "8.5.6",
"version": "8.5.9",
"license": "MIT",
"dependencies": {
"@ionic/core": "^8.5.6",
"@ionic/core": "^8.5.9",
"ionicons": "^7.0.0",
"tslib": "*"
},
@@ -736,9 +736,9 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "8.5.6",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-8.5.6.tgz",
"integrity": "sha512-JGOGK6H4PQHbtsQZ5aGTnr6Il1/AvY3NjGaAZEKNhGWyUu7gpTWtU+WBQPAccsB89LXmND3/1m0MctPc7kzAYw==",
"version": "8.5.9",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-8.5.9.tgz",
"integrity": "sha512-81hRD+G9Q0OhrbxvJz1D0+jBA6RYJn7XwwYR0kN1P+sLQhv55B5BHHcGUXfXyQMtIIGgR4xSvnicyjWU+gZqUw==",
"license": "MIT",
"dependencies": {
"@stencil/core": "4.20.0",
@@ -12316,9 +12316,9 @@
"dev": true
},
"@ionic/core": {
"version": "8.5.6",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-8.5.6.tgz",
"integrity": "sha512-JGOGK6H4PQHbtsQZ5aGTnr6Il1/AvY3NjGaAZEKNhGWyUu7gpTWtU+WBQPAccsB89LXmND3/1m0MctPc7kzAYw==",
"version": "8.5.9",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-8.5.9.tgz",
"integrity": "sha512-81hRD+G9Q0OhrbxvJz1D0+jBA6RYJn7XwwYR0kN1P+sLQhv55B5BHHcGUXfXyQMtIIGgR4xSvnicyjWU+gZqUw==",
"requires": {
"@stencil/core": "4.20.0",
"ionicons": "^7.2.2",

View File

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

View File

@@ -79,7 +79,7 @@ export type UseIonRouterResult = {
*/
goBack(animationBuilder?: AnimationBuilder): void;
/**
* Determines if there are any additional routes in the the Router's history. However, routing is not prevented if the browser's history has more entries. Returns true if more entries exist, false if not.
* Determines if there are any additional routes in the Router's history. However, routing is not prevented if the browser's history has more entries. Returns true if more entries exist, false if not.
*/
canGoBack(): boolean;
routeInfo: RouteInfo;