merge release-6.5.0

Release 6.5.0
This commit is contained in:
Liam DeBeasi
2023-01-18 11:33:38 -05:00
committed by GitHub
149 changed files with 477 additions and 216 deletions

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.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
## [6.4.3](https://github.com/ionic-team/ionic/compare/v6.4.2...v6.4.3) (2023-01-18)
**Note:** Version bump only for package @ionic/react-router

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/react-router",
"version": "6.4.3",
"version": "6.5.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react-router",
"version": "6.4.3",
"version": "6.5.0",
"license": "MIT",
"dependencies": {
"@ionic/react": "^6.4.3",
"@ionic/react": "^6.5.0",
"tslib": "*"
},
"devDependencies": {
@ -147,22 +147,22 @@
}
},
"node_modules/@ionic/core": {
"version": "6.4.3",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
"integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
"ionicons": "^6.1.1",
"tslib": "^2.1.0"
}
},
"node_modules/@ionic/react": {
"version": "6.4.3",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.4.3.tgz",
"integrity": "sha512-jQ8PylkSpWdNki/9bJdS2+uAyp5f4bscM4z0eQp55qLd9l4VHpOkM7gfm2cnpfHCIzW4FtktBjoXXMsFMIewTw==",
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.5.0.tgz",
"integrity": "sha512-eziFYWG+8ZwYI6KIlGsQhBbBxd5mDMbQYeHjOt2N0NILjVZmiHB3pZn0DRRzugjhGSo3W/jVT0Hzg14iH+tHcg==",
"dependencies": {
"@ionic/core": "6.4.3",
"ionicons": "^6.0.2",
"@ionic/core": "6.5.0",
"ionicons": "^6.1.1",
"tslib": "*"
},
"peerDependencies": {
@ -1145,22 +1145,22 @@
}
},
"@ionic/core": {
"version": "6.4.3",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
"integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.5.0.tgz",
"integrity": "sha512-vefrnd1WYZJnjSXwsY1sn3HJpBDKPGnwtO2US55Qrjz0d9HyUwocHgVvkvLAAKZG+LGErJbVeV8aTmdYEydRgg==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
"ionicons": "^6.1.1",
"tslib": "^2.1.0"
}
},
"@ionic/react": {
"version": "6.4.3",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.4.3.tgz",
"integrity": "sha512-jQ8PylkSpWdNki/9bJdS2+uAyp5f4bscM4z0eQp55qLd9l4VHpOkM7gfm2cnpfHCIzW4FtktBjoXXMsFMIewTw==",
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.5.0.tgz",
"integrity": "sha512-eziFYWG+8ZwYI6KIlGsQhBbBxd5mDMbQYeHjOt2N0NILjVZmiHB3pZn0DRRzugjhGSo3W/jVT0Hzg14iH+tHcg==",
"requires": {
"@ionic/core": "6.4.3",
"ionicons": "^6.0.2",
"@ionic/core": "6.5.0",
"ionicons": "^6.1.1",
"tslib": "*"
}
},

View File

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

View File

@ -12,6 +12,8 @@ import { matchPath } from 'react-router-dom';
import { clonePageElement } from './clonePageElement';
// TODO(FW-2959): types
interface StackManagerProps {
routeInfo: RouteInfo;
}