mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
029d1e4649 | ||
|
|
ab6cdff97e | ||
|
|
a5f7fe546a | ||
|
|
db6e7854f0 |
11
CHANGELOG.md
11
CHANGELOG.md
@@ -3,6 +3,17 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [6.7.3](https://github.com/ionic-team/ionic-framework/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **menu:** refs are not destroyed on unmount ([#27158](https://github.com/ionic-team/ionic-framework/issues/27158)) ([ab6cdff](https://github.com/ionic-team/ionic-framework/commit/ab6cdff97e710da47b113642f9bcb735a515375e))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic-framework/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
@@ -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.7.3](https://github.com/ionic-team/ionic/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
**Note:** Version bump only for package @ionic/angular
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
18
angular/package-lock.json
generated
18
angular/package-lock.json
generated
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@ionic/angular",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/angular",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2",
|
||||
"@ionic/core": "^6.7.3",
|
||||
"ionicons": "^6.1.3",
|
||||
"jsonc-parser": "^3.0.0",
|
||||
"tslib": "^2.0.0"
|
||||
@@ -1006,9 +1006,9 @@
|
||||
"license": "BSD-3-Clause"
|
||||
},
|
||||
"node_modules/@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"dependencies": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -7335,9 +7335,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"requires": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/angular",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "Angular specific wrappers for @ionic/core",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
@@ -42,7 +42,7 @@
|
||||
"validate": "npm i && npm run lint && npm run test && npm run build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2",
|
||||
"@ionic/core": "^6.7.3",
|
||||
"ionicons": "^6.1.3",
|
||||
"jsonc-parser": "^3.0.0",
|
||||
"tslib": "^2.0.0"
|
||||
|
||||
@@ -3,6 +3,17 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [6.7.3](https://github.com/ionic-team/ionic/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **menu:** refs are not destroyed on unmount ([#27158](https://github.com/ionic-team/ionic/issues/27158)) ([ab6cdff](https://github.com/ionic-team/ionic/commit/ab6cdff97e710da47b113642f9bcb735a515375e))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
4
core/package-lock.json
generated
4
core/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@ionic/core",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/core",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/core",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "Base components for Ionic",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
|
||||
@@ -234,7 +234,16 @@ export class Menu implements ComponentInterface, MenuI {
|
||||
this.updateState();
|
||||
}
|
||||
|
||||
disconnectedCallback() {
|
||||
async disconnectedCallback() {
|
||||
/**
|
||||
* The menu should be closed when it is
|
||||
* unmounted from the DOM.
|
||||
* This is an async call, so we need to wait for
|
||||
* this to finish otherwise contentEl
|
||||
* will not have MENU_CONTENT_OPEN removed.
|
||||
*/
|
||||
await this.close(false);
|
||||
|
||||
this.blocker.destroy();
|
||||
menuController._unregister(this);
|
||||
if (this.animation) {
|
||||
@@ -246,7 +255,7 @@ export class Menu implements ComponentInterface, MenuI {
|
||||
}
|
||||
|
||||
this.animation = undefined;
|
||||
this.contentEl = this.backdropEl = this.menuInnerEl = undefined;
|
||||
this.contentEl = undefined;
|
||||
}
|
||||
|
||||
@Listen('ionSplitPaneVisible', { target: 'body' })
|
||||
|
||||
@@ -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.7.3](https://github.com/ionic-team/ionic-docs/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
**Note:** Version bump only for package @ionic/docs
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic-docs/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
4
docs/package-lock.json
generated
4
docs/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@ionic/docs",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/docs",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/docs",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "Pre-packaged API documentation for the Ionic docs.",
|
||||
"main": "core.json",
|
||||
"types": "core.d.ts",
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
"angular",
|
||||
"packages/*"
|
||||
],
|
||||
"version": "6.7.2"
|
||||
"version": "6.7.3"
|
||||
}
|
||||
|
||||
@@ -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.7.3](https://github.com/ionic-team/ionic/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
**Note:** Version bump only for package @ionic/angular-server
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
18
packages/angular-server/package-lock.json
generated
18
packages/angular-server/package-lock.json
generated
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@ionic/angular-server",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/angular-server",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2"
|
||||
"@ionic/core": "^6.7.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-eslint/eslint-plugin": "^12.6.1",
|
||||
@@ -742,9 +742,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"dependencies": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -7201,9 +7201,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"requires": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/angular-server",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "Angular SSR Module for Ionic",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
@@ -69,6 +69,6 @@
|
||||
},
|
||||
"prettier": "@ionic/prettier-config",
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2"
|
||||
"@ionic/core": "^6.7.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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.7.3](https://github.com/ionic-team/ionic/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
**Note:** Version bump only for package @ionic/react-router
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
34
packages/react-router/package-lock.json
generated
34
packages/react-router/package-lock.json
generated
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@ionic/react-router",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/react-router",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ionic/react": "^6.7.2",
|
||||
"@ionic/react": "^6.7.3",
|
||||
"tslib": "*"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -205,9 +205,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"dependencies": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -381,11 +381,11 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@ionic/react": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.7.1.tgz",
|
||||
"integrity": "sha512-ZbohhaMpXtPm9IbQigUcx9DlAchSFPVoo3KYdA2O87MLDEdnj8n5+x6GwIiMErfX8BHOu3hv1FAZTkYStteFPA==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.7.2.tgz",
|
||||
"integrity": "sha512-2Y3VkVC2hqBWOMxN6PSxmj5kPTBiowhaIDAvtN7+dqp3uQAeXpYGsjeAFFLVxXH0Q1Mii/pye29sxeL3wk2pSQ==",
|
||||
"dependencies": {
|
||||
"@ionic/core": "6.7.1",
|
||||
"@ionic/core": "6.7.2",
|
||||
"ionicons": "^6.1.3",
|
||||
"tslib": "*"
|
||||
},
|
||||
@@ -3630,9 +3630,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"requires": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -3736,11 +3736,11 @@
|
||||
"requires": {}
|
||||
},
|
||||
"@ionic/react": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.7.1.tgz",
|
||||
"integrity": "sha512-ZbohhaMpXtPm9IbQigUcx9DlAchSFPVoo3KYdA2O87MLDEdnj8n5+x6GwIiMErfX8BHOu3hv1FAZTkYStteFPA==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.7.2.tgz",
|
||||
"integrity": "sha512-2Y3VkVC2hqBWOMxN6PSxmj5kPTBiowhaIDAvtN7+dqp3uQAeXpYGsjeAFFLVxXH0Q1Mii/pye29sxeL3wk2pSQ==",
|
||||
"requires": {
|
||||
"@ionic/core": "6.7.1",
|
||||
"@ionic/core": "6.7.2",
|
||||
"ionicons": "^6.1.3",
|
||||
"tslib": "*"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/react-router",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "React Router wrapper for @ionic/react",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
@@ -38,7 +38,7 @@
|
||||
"dist/"
|
||||
],
|
||||
"dependencies": {
|
||||
"@ionic/react": "^6.7.2",
|
||||
"@ionic/react": "^6.7.3",
|
||||
"tslib": "*"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
||||
@@ -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.7.3](https://github.com/ionic-team/ionic/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
**Note:** Version bump only for package @ionic/react
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
18
packages/react/package-lock.json
generated
18
packages/react/package-lock.json
generated
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@ionic/react",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/react",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2",
|
||||
"@ionic/core": "^6.7.3",
|
||||
"ionicons": "^6.1.3",
|
||||
"tslib": "*"
|
||||
},
|
||||
@@ -697,9 +697,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"dependencies": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -11765,9 +11765,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"requires": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/react",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "React specific wrapper for @ionic/core",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
@@ -42,7 +42,7 @@
|
||||
"css/"
|
||||
],
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2",
|
||||
"@ionic/core": "^6.7.3",
|
||||
"ionicons": "^6.1.3",
|
||||
"tslib": "*"
|
||||
},
|
||||
|
||||
@@ -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.7.3](https://github.com/ionic-team/ionic/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
**Note:** Version bump only for package @ionic/vue-router
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
34
packages/vue-router/package-lock.json
generated
34
packages/vue-router/package-lock.json
generated
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@ionic/vue-router",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/vue-router",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ionic/vue": "^6.7.2"
|
||||
"@ionic/vue": "^6.7.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ionic/eslint-config": "^0.3.0",
|
||||
@@ -660,9 +660,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"dependencies": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -851,11 +851,11 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@ionic/vue": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.7.1.tgz",
|
||||
"integrity": "sha512-S7a4pc8WJvSC4iCtPYwz5eoyNRsqTxwDvN3Q1641CMpj+43iGby1KipwWRDkGV66uYMTD/Jxbk6FsfXSyP7BJQ==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.7.2.tgz",
|
||||
"integrity": "sha512-D96kXAlwrHXpvaxgw6G2lVn5lJfZ94zfSpH317MsAYR65NnYD7huCKjQTtCMH6GHMML5M3YoPVUTjr76DIMy9A==",
|
||||
"dependencies": {
|
||||
"@ionic/core": "6.7.1",
|
||||
"@ionic/core": "6.7.2",
|
||||
"ionicons": "^6.1.3"
|
||||
}
|
||||
},
|
||||
@@ -7665,9 +7665,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"requires": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -7780,11 +7780,11 @@
|
||||
"requires": {}
|
||||
},
|
||||
"@ionic/vue": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.7.1.tgz",
|
||||
"integrity": "sha512-S7a4pc8WJvSC4iCtPYwz5eoyNRsqTxwDvN3Q1641CMpj+43iGby1KipwWRDkGV66uYMTD/Jxbk6FsfXSyP7BJQ==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.7.2.tgz",
|
||||
"integrity": "sha512-D96kXAlwrHXpvaxgw6G2lVn5lJfZ94zfSpH317MsAYR65NnYD7huCKjQTtCMH6GHMML5M3YoPVUTjr76DIMy9A==",
|
||||
"requires": {
|
||||
"@ionic/core": "6.7.1",
|
||||
"@ionic/core": "6.7.2",
|
||||
"ionicons": "^6.1.3"
|
||||
}
|
||||
},
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/vue-router",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "Vue Router integration for @ionic/vue",
|
||||
"scripts": {
|
||||
"test.spec": "jest",
|
||||
@@ -46,7 +46,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/ionic-team/ionic#readme",
|
||||
"dependencies": {
|
||||
"@ionic/vue": "^6.7.2"
|
||||
"@ionic/vue": "^6.7.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ionic/eslint-config": "^0.3.0",
|
||||
|
||||
@@ -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.7.3](https://github.com/ionic-team/ionic/compare/v6.7.2...v6.7.3) (2023-04-12)
|
||||
|
||||
**Note:** Version bump only for package @ionic/vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [6.7.2](https://github.com/ionic-team/ionic/compare/v6.7.1...v6.7.2) (2023-04-05)
|
||||
|
||||
|
||||
|
||||
18
packages/vue/package-lock.json
generated
18
packages/vue/package-lock.json
generated
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@ionic/vue",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/vue",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2",
|
||||
"@ionic/core": "^6.7.3",
|
||||
"ionicons": "^6.1.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -207,9 +207,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"dependencies": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
@@ -3746,9 +3746,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@ionic/core": {
|
||||
"version": "6.7.1",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.1.tgz",
|
||||
"integrity": "sha512-nUuSFV8gT+Ilb2w37gGlV34tVwpGloQMVbjnoNT/ItrQtckGVjKxEzwt27PFlJxKIT7f3OXIccKoW5l3A5NLMg==",
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.7.2.tgz",
|
||||
"integrity": "sha512-LvI9WX+w95VIRqkbHtRdPpooHVYL2cNIa9JV+3YqVehy49CqPCQ7yK2tkj4jNMeo9slc0PxFlcgY3+FS1V5VDQ==",
|
||||
"requires": {
|
||||
"@stencil/core": "^2.18.0",
|
||||
"ionicons": "^6.1.3",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/vue",
|
||||
"version": "6.7.2",
|
||||
"version": "6.7.3",
|
||||
"description": "Vue specific wrapper for @ionic/core",
|
||||
"scripts": {
|
||||
"eslint": "eslint src",
|
||||
@@ -67,7 +67,7 @@
|
||||
"vue-router": "^4.0.16"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ionic/core": "^6.7.2",
|
||||
"@ionic/core": "^6.7.3",
|
||||
"ionicons": "^6.1.3"
|
||||
},
|
||||
"vetur": {
|
||||
|
||||
Reference in New Issue
Block a user