v7.0.0-beta.5

This commit is contained in:
ionitron
2023-02-27 13:52:14 +00:00
parent 865f8de9dc
commit c57a3b2812
26 changed files with 181 additions and 37 deletions

View File

@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [7.0.0-beta.5](https://github.com/ionic-team/ionic-framework/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
### Bug Fixes
* **content:** adjust transition shadow to match new iOS version ([#26839](https://github.com/ionic-team/ionic-framework/issues/26839)) ([f006e4b](https://github.com/ionic-team/ionic-framework/commit/f006e4bc09fcdcb5a34da4e17eb6037bf1e2445c))
* **form:** shadow components using aria-labelledby do not use modern syntax ([#26836](https://github.com/ionic-team/ionic-framework/issues/26836)) ([fcfdd9e](https://github.com/ionic-team/ionic-framework/commit/fcfdd9e9ba9969947d8b9dfefbea4522d08753ed)), closes [#26829](https://github.com/ionic-team/ionic-framework/issues/26829)
* **scroll-padding:** correct padding is added ([#26810](https://github.com/ionic-team/ionic-framework/issues/26810)) ([eefd17d](https://github.com/ionic-team/ionic-framework/commit/eefd17d492f2fe24639cf20603fac04d6eb94e3f)), closes [#26803](https://github.com/ionic-team/ionic-framework/issues/26803)
### Features
* **angular,angular-server:** angular v14 minimum support ([#26822](https://github.com/ionic-team/ionic-framework/issues/26822)) ([1dee16f](https://github.com/ionic-team/ionic-framework/commit/1dee16f3a25dedf831afc09f9c400a42e861beea))
* **searchbar:** ionInput now emits value payload ([#26831](https://github.com/ionic-team/ionic-framework/issues/26831)) ([865f8de](https://github.com/ionic-team/ionic-framework/commit/865f8de9dc2d533b08730846f8d76bf165e8bc1d)), closes [#26828](https://github.com/ionic-team/ionic-framework/issues/26828)
### BREAKING CHANGES
* **searchbar:** The `detail` payload for the `ionInput` event now on `ion-searchbar` contains an object with the current `value` as well as the native event that triggered `ionInput`.
* **angular,angular-server:** Angular v14 is now required to use `@ionic/angular` and `@ionic/angular-server`. Upgrade your project to Angular v14 by following the [Angular v14 update guide](https://update.angular.io/?l=3&v=13.0-14.0).
The dev-preview `environmentInjector` property has been removed from `ion-tabs` and `ion-router-outlet`. Standalone component routing is now available without additional custom configuration. Remove the `environmentInjector` property from your `ion-tabs` and `ion-router-outlet` components.
# [7.0.0-beta.4](https://github.com/ionic-team/ionic-framework/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [7.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
### Features
* **angular,angular-server:** angular v14 minimum support ([#26822](https://github.com/ionic-team/ionic/issues/26822)) ([1dee16f](https://github.com/ionic-team/ionic/commit/1dee16f3a25dedf831afc09f9c400a42e861beea))
* **searchbar:** ionInput now emits value payload ([#26831](https://github.com/ionic-team/ionic/issues/26831)) ([865f8de](https://github.com/ionic-team/ionic/commit/865f8de9dc2d533b08730846f8d76bf165e8bc1d)), closes [#26828](https://github.com/ionic-team/ionic/issues/26828)
### BREAKING CHANGES
* **searchbar:** The `detail` payload for the `ionInput` event now on `ion-searchbar` contains an object with the current `value` as well as the native event that triggered `ionInput`.
* **angular,angular-server:** Angular v14 is now required to use `@ionic/angular` and `@ionic/angular-server`. Upgrade your project to Angular v14 by following the [Angular v14 update guide](https://update.angular.io/?l=3&v=13.0-14.0).
The dev-preview `environmentInjector` property has been removed from `ion-tabs` and `ion-router-outlet`. Standalone component routing is now available without additional custom configuration. Remove the `environmentInjector` property from your `ion-tabs` and `ion-router-outlet` components.
# [7.0.0-beta.4](https://github.com/ionic-team/ionic/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/angular",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.0.0-beta.4",
"@ionic/core": "^7.0.0-beta.5",
"ionicons": "^6.1.3",
"jsonc-parser": "^3.0.0",
"tslib": "^2.3.0"

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"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": "^7.0.0-beta.4",
"@ionic/core": "^7.0.0-beta.5",
"ionicons": "^6.1.3",
"jsonc-parser": "^3.0.0",
"tslib": "^2.3.0"

View File

@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [7.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
### Bug Fixes
* **content:** adjust transition shadow to match new iOS version ([#26839](https://github.com/ionic-team/ionic/issues/26839)) ([f006e4b](https://github.com/ionic-team/ionic/commit/f006e4bc09fcdcb5a34da4e17eb6037bf1e2445c))
* **form:** shadow components using aria-labelledby do not use modern syntax ([#26836](https://github.com/ionic-team/ionic/issues/26836)) ([fcfdd9e](https://github.com/ionic-team/ionic/commit/fcfdd9e9ba9969947d8b9dfefbea4522d08753ed)), closes [#26829](https://github.com/ionic-team/ionic/issues/26829)
* **scroll-padding:** correct padding is added ([#26810](https://github.com/ionic-team/ionic/issues/26810)) ([eefd17d](https://github.com/ionic-team/ionic/commit/eefd17d492f2fe24639cf20603fac04d6eb94e3f)), closes [#26803](https://github.com/ionic-team/ionic/issues/26803)
### Features
* **searchbar:** ionInput now emits value payload ([#26831](https://github.com/ionic-team/ionic/issues/26831)) ([865f8de](https://github.com/ionic-team/ionic/commit/865f8de9dc2d533b08730846f8d76bf165e8bc1d)), closes [#26828](https://github.com/ionic-team/ionic/issues/26828)
### BREAKING CHANGES
* **searchbar:** The `detail` payload for the `ionInput` event now on `ion-searchbar` contains an object with the current `value` as well as the native event that triggered `ionInput`.
# [7.0.0-beta.4](https://github.com/ionic-team/ionic-framework/compare/v7.0.0-beta.3..v7.0.0-beta.4) (2023-02-22)

View File

@ -1,12 +1,12 @@
{
"name": "@ionic/core",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/core",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT",
"dependencies": {
"@stencil/core": "^3.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"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.0.0-beta.5](https://github.com/ionic-team/ionic-docs/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
**Note:** Version bump only for package @ionic/docs
# [7.0.0-beta.4](https://github.com/ionic-team/ionic-docs/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -1,12 +1,12 @@
{
"name": "@ionic/docs",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/docs",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/docs",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"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.0.0-beta.4"
"version": "7.0.0-beta.5"
}

View File

@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [7.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
### Features
* **angular,angular-server:** angular v14 minimum support ([#26822](https://github.com/ionic-team/ionic/issues/26822)) ([1dee16f](https://github.com/ionic-team/ionic/commit/1dee16f3a25dedf831afc09f9c400a42e861beea))
### BREAKING CHANGES
* **angular,angular-server:** Angular v14 is now required to use `@ionic/angular` and `@ionic/angular-server`. Upgrade your project to Angular v14 by following the [Angular v14 update guide](https://update.angular.io/?l=3&v=13.0-14.0).
The dev-preview `environmentInjector` property has been removed from `ion-tabs` and `ion-router-outlet`. Standalone component routing is now available without additional custom configuration. Remove the `environmentInjector` property from your `ion-tabs` and `ion-router-outlet` components.
# [7.0.0-beta.4](https://github.com/ionic-team/ionic/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/angular-server",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular-server",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.0.0-beta.4"
"@ionic/core": "^7.0.0-beta.5"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^14.0.0",

View File

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

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.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
**Note:** Version bump only for package @ionic/react-router
# [7.0.0-beta.4](https://github.com/ionic-team/ionic/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/react-router",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react-router",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT",
"dependencies": {
"@ionic/react": "^7.0.0-beta.4",
"@ionic/react": "^7.0.0-beta.5",
"tslib": "*"
},
"devDependencies": {

View File

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

View File

@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [7.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
### Features
* **searchbar:** ionInput now emits value payload ([#26831](https://github.com/ionic-team/ionic/issues/26831)) ([865f8de](https://github.com/ionic-team/ionic/commit/865f8de9dc2d533b08730846f8d76bf165e8bc1d)), closes [#26828](https://github.com/ionic-team/ionic/issues/26828)
### BREAKING CHANGES
* **searchbar:** The `detail` payload for the `ionInput` event now on `ion-searchbar` contains an object with the current `value` as well as the native event that triggered `ionInput`.
# [7.0.0-beta.4](https://github.com/ionic-team/ionic/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/react",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.0.0-beta.4",
"@ionic/core": "^7.0.0-beta.5",
"ionicons": "^6.1.3",
"tslib": "*"
},

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/react",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"description": "React specific wrapper for @ionic/core",
"keywords": [
"ionic",
@ -41,7 +41,7 @@
"css/"
],
"dependencies": {
"@ionic/core": "^7.0.0-beta.4",
"@ionic/core": "^7.0.0-beta.5",
"ionicons": "^6.1.3",
"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.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
**Note:** Version bump only for package @ionic/vue-router
# [7.0.0-beta.4](https://github.com/ionic-team/ionic/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/vue-router",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue-router",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT",
"dependencies": {
"@ionic/vue": "^7.0.0-beta.4"
"@ionic/vue": "^7.0.0-beta.5"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/vue-router",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"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.0.0-beta.4"
"@ionic/vue": "^7.0.0-beta.5"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",

View File

@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [7.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
### Features
* **searchbar:** ionInput now emits value payload ([#26831](https://github.com/ionic-team/ionic/issues/26831)) ([865f8de](https://github.com/ionic-team/ionic/commit/865f8de9dc2d533b08730846f8d76bf165e8bc1d)), closes [#26828](https://github.com/ionic-team/ionic/issues/26828)
### BREAKING CHANGES
* **searchbar:** The `detail` payload for the `ionInput` event now on `ion-searchbar` contains an object with the current `value` as well as the native event that triggered `ionInput`.
# [7.0.0-beta.4](https://github.com/ionic-team/ionic/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/vue",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"license": "MIT",
"dependencies": {
"@ionic/core": "^7.0.0-beta.4",
"@ionic/core": "^7.0.0-beta.5",
"ionicons": "^6.1.3"
},
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/vue",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"description": "Vue specific wrapper for @ionic/core",
"scripts": {
"eslint": "eslint src",
@ -67,7 +67,7 @@
"vue-router": "^4.0.16"
},
"dependencies": {
"@ionic/core": "^7.0.0-beta.4",
"@ionic/core": "^7.0.0-beta.5",
"ionicons": "^6.1.3"
},
"vetur": {