merge release-7.1.1

Release 7.1.1
This commit is contained in:
Liam DeBeasi
2023-06-26 09:48:28 -04:00
committed by GitHub
26 changed files with 253 additions and 101 deletions

View File

@ -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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
### Bug Fixes
* **textarea:** autogrow resizes correctly ([#27691](https://github.com/ionic-team/ionic-framework/issues/27691)) ([f263611](https://github.com/ionic-team/ionic-framework/commit/f263611260c465bfeefc2db7b1ea04bfa5b54303)), closes [#27688](https://github.com/ionic-team/ionic-framework/issues/27688)
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)

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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
**Note:** Version bump only for package @ionic/angular
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/angular",
"version": "7.1.0",
"version": "7.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular",
"version": "7.1.0",
"version": "7.1.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.1.0",
"@ionic/core": "^7.1.1",
"ionicons": "^7.0.0",
"jsonc-parser": "^3.0.0",
"tslib": "^2.3.0"
@ -1227,12 +1227,12 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"dependencies": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
}
},
@ -8104,12 +8104,12 @@
"dev": true
},
"@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"requires": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
},
"dependencies": {

View File

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

View File

@ -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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
### Bug Fixes
* **textarea:** autogrow resizes correctly ([#27691](https://github.com/ionic-team/ionic-framework/issues/27691)) ([f263611](https://github.com/ionic-team/ionic-framework/commit/f263611260c465bfeefc2db7b1ea04bfa5b54303)), closes [#27688](https://github.com/ionic-team/ionic-framework/issues/27688)
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)

View File

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

View File

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

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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
**Note:** Version bump only for package @ionic/docs
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)
**Note:** Version bump only for package @ionic/docs

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/docs",
"version": "7.1.0",
"version": "7.1.1",
"description": "Pre-packaged API documentation for the Ionic docs.",
"main": "core.json",
"types": "core.d.ts",

View File

@ -5,5 +5,5 @@
"angular",
"packages/*"
],
"version": "7.1.0"
"version": "7.1.1"
}

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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
**Note:** Version bump only for package @ionic/angular-server
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)
**Note:** Version bump only for package @ionic/angular-server

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/angular-server",
"version": "7.1.0",
"version": "7.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular-server",
"version": "7.1.0",
"version": "7.1.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.1.0"
"@ionic/core": "^7.1.1"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^14.0.0",
@ -1060,12 +1060,12 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"dependencies": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
}
},
@ -7342,12 +7342,12 @@
"dev": true
},
"@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"requires": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
},
"dependencies": {

View File

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

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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
**Note:** Version bump only for package @ionic/react-router
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)
**Note:** Version bump only for package @ionic/react-router

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/react-router",
"version": "7.1.0",
"version": "7.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react-router",
"version": "7.1.0",
"version": "7.1.1",
"license": "MIT",
"dependencies": {
"@ionic/react": "^7.1.0",
"@ionic/react": "^7.1.1",
"tslib": "*"
},
"devDependencies": {
@ -205,15 +205,35 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"dependencies": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
}
},
"node_modules/@ionic/core/node_modules/ionicons": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz",
"integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==",
"dependencies": {
"@stencil/core": "^2.18.0"
}
},
"node_modules/@ionic/core/node_modules/ionicons/node_modules/@stencil/core": {
"version": "2.22.3",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz",
"integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==",
"bin": {
"stencil": "bin/stencil"
},
"engines": {
"node": ">=12.10.0",
"npm": ">=6.0.0"
}
},
"node_modules/@ionic/eslint-config": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@ionic/eslint-config/-/eslint-config-0.3.0.tgz",
@ -381,11 +401,11 @@
}
},
"node_modules/@ionic/react": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.1.0.tgz",
"integrity": "sha512-Pv4Q1fBrn67CIHm/mJj8xPWHOU4IXjaQRoOzD9KWeRbSNPbnFRk6rf6iPLlYgIQwAVXnj4KFV9E2kBCJjtXQ2A==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.1.1.tgz",
"integrity": "sha512-XMuXtC6HZXf5dBHkfbH0qzTAbvT/cbC+A69NbtOWI9BzxJOUUM3QLhmO7DMfYEdKjAEAfJxQ1vi+iOrz9wQ5Pw==",
"dependencies": {
"@ionic/core": "7.1.0",
"@ionic/core": "7.1.1",
"ionicons": "^7.0.0",
"tslib": "*"
},
@ -3643,13 +3663,30 @@
"dev": true
},
"@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"requires": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
},
"dependencies": {
"ionicons": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz",
"integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==",
"requires": {
"@stencil/core": "^2.18.0"
},
"dependencies": {
"@stencil/core": {
"version": "2.22.3",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz",
"integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng=="
}
}
}
}
},
"@ionic/eslint-config": {
@ -3749,11 +3786,11 @@
"requires": {}
},
"@ionic/react": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.1.0.tgz",
"integrity": "sha512-Pv4Q1fBrn67CIHm/mJj8xPWHOU4IXjaQRoOzD9KWeRbSNPbnFRk6rf6iPLlYgIQwAVXnj4KFV9E2kBCJjtXQ2A==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.1.1.tgz",
"integrity": "sha512-XMuXtC6HZXf5dBHkfbH0qzTAbvT/cbC+A69NbtOWI9BzxJOUUM3QLhmO7DMfYEdKjAEAfJxQ1vi+iOrz9wQ5Pw==",
"requires": {
"@ionic/core": "7.1.0",
"@ionic/core": "7.1.1",
"ionicons": "^7.0.0",
"tslib": "*"
}

View File

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

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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
**Note:** Version bump only for package @ionic/react
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/react",
"version": "7.1.0",
"version": "7.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react",
"version": "7.1.0",
"version": "7.1.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.1.0",
"@ionic/core": "^7.1.1",
"ionicons": "^7.0.0",
"tslib": "*"
},
@ -697,12 +697,12 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"dependencies": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
}
},
@ -11778,12 +11778,12 @@
"dev": true
},
"@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"requires": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
},
"dependencies": {

View File

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

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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
**Note:** Version bump only for package @ionic/vue-router
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)
**Note:** Version bump only for package @ionic/vue-router

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/vue-router",
"version": "7.1.0",
"version": "7.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue-router",
"version": "7.1.0",
"version": "7.1.1",
"license": "MIT",
"dependencies": {
"@ionic/vue": "^7.1.0"
"@ionic/vue": "^7.1.1"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",
@ -660,15 +660,35 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"dependencies": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
}
},
"node_modules/@ionic/core/node_modules/ionicons": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz",
"integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==",
"dependencies": {
"@stencil/core": "^2.18.0"
}
},
"node_modules/@ionic/core/node_modules/ionicons/node_modules/@stencil/core": {
"version": "2.22.3",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz",
"integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==",
"bin": {
"stencil": "bin/stencil"
},
"engines": {
"node": ">=12.10.0",
"npm": ">=6.0.0"
}
},
"node_modules/@ionic/eslint-config": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@ionic/eslint-config/-/eslint-config-0.3.0.tgz",
@ -851,11 +871,11 @@
}
},
"node_modules/@ionic/vue": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.1.0.tgz",
"integrity": "sha512-Vj1fOL9zxg6qx6CNTwJV2NlghJGAE9g9idEDRKR3Div8q9h3BO9DN4eHhL6bXQdZHfu0nGzPkTuvOsUNbG2VDA==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.1.1.tgz",
"integrity": "sha512-UJ7z3qqlVqOiow7A4co7kk98quGYgFqZdO4zpOPEZ52rHPCXAjpXVdT4R6srH2A1INqFRDnNJgWoRIFpIUI2jQ==",
"dependencies": {
"@ionic/core": "7.1.0",
"@ionic/core": "7.1.1",
"ionicons": "^7.0.0"
}
},
@ -7677,13 +7697,30 @@
"dev": true
},
"@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"requires": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
},
"dependencies": {
"ionicons": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz",
"integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==",
"requires": {
"@stencil/core": "^2.18.0"
},
"dependencies": {
"@stencil/core": {
"version": "2.22.3",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz",
"integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng=="
}
}
}
}
},
"@ionic/eslint-config": {
@ -7792,11 +7829,11 @@
"requires": {}
},
"@ionic/vue": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.1.0.tgz",
"integrity": "sha512-Vj1fOL9zxg6qx6CNTwJV2NlghJGAE9g9idEDRKR3Div8q9h3BO9DN4eHhL6bXQdZHfu0nGzPkTuvOsUNbG2VDA==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.1.1.tgz",
"integrity": "sha512-UJ7z3qqlVqOiow7A4co7kk98quGYgFqZdO4zpOPEZ52rHPCXAjpXVdT4R6srH2A1INqFRDnNJgWoRIFpIUI2jQ==",
"requires": {
"@ionic/core": "7.1.0",
"@ionic/core": "7.1.1",
"ionicons": "^7.0.0"
}
},

View File

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

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.
## [7.1.1](https://github.com/ionic-team/ionic-framework/compare/v7.1.0...v7.1.1) (2023-06-26)
**Note:** Version bump only for package @ionic/vue
# [7.1.0](https://github.com/ionic-team/ionic-framework/compare/v7.0.14...v7.1.0) (2023-06-21)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/vue",
"version": "7.1.0",
"version": "7.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue",
"version": "7.1.0",
"version": "7.1.1",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.1.0",
"@ionic/core": "^7.1.1",
"ionicons": "^7.0.0"
},
"devDependencies": {
@ -207,12 +207,12 @@
"dev": true
},
"node_modules/@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"dependencies": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
}
},
@ -3746,12 +3746,12 @@
"dev": true
},
"@ionic/core": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.0.tgz",
"integrity": "sha512-1W8i9GLhuakeN2z9AeVSSll40BQC2HL4wEscqMM5aD/firotwbX3gdiiNgj2NkoNNgs2hsqcZOJe2sLcU39LTQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.1.1.tgz",
"integrity": "sha512-5tdOSUiAkAfCtaP94ADugRskVxdwjRl+lRmOQnInkHnbUmA9eo2sCLCAO2UHfSL6VCP8BOw41NGlz4ad+Ivijw==",
"requires": {
"@stencil/core": "^3.4.0",
"ionicons": "^7.1.0",
"ionicons": "7.1.0",
"tslib": "^2.1.0"
},
"dependencies": {

View File

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