chore: sync with main

This commit is contained in:
Liam DeBeasi
2024-03-07 23:03:32 +00:00
277 changed files with 1964 additions and 988 deletions

View File

@ -3,6 +3,54 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [7.7.4](https://github.com/ionic-team/ionic-framework/compare/v7.7.3...v7.7.4) (2024-03-06)
**Note:** Version bump only for package @ionic/angular
## [7.7.3](https://github.com/ionic-team/ionic-framework/compare/v7.7.2...v7.7.3) (2024-02-21)
**Note:** Version bump only for package @ionic/angular
## [7.7.2](https://github.com/ionic-team/ionic-framework/compare/v7.7.1...v7.7.2) (2024-02-14)
**Note:** Version bump only for package @ionic/angular
## [7.7.1](https://github.com/ionic-team/ionic-framework/compare/v7.7.0...v7.7.1) (2024-02-07)
**Note:** Version bump only for package @ionic/angular
# [7.7.0](https://github.com/ionic-team/ionic-framework/compare/v7.6.7...v7.7.0) (2024-01-31)
**Note:** Version bump only for package @ionic/angular
## [7.6.7](https://github.com/ionic-team/ionic-framework/compare/v7.6.6...v7.6.7) (2024-01-31)
**Note:** Version bump only for package @ionic/angular
## [7.6.6](https://github.com/ionic-team/ionic-framework/compare/v7.6.5...v7.6.6) (2024-01-24)
**Note:** Version bump only for package @ionic/angular

View File

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

View File

@ -110,4 +110,6 @@ Note: You may encounter some other peer dependency issues not covered by the Ang
7. Open `./github/workflows/build.yml` and find the `test-angular-e2e` job.
8. Find the `apps` field under `matrix`.
9. Add "ng14" to the `apps` field.
10. Commit these changes and push.
10. Open `./github/workflows/stencil-nightly.yml` and find the `test-angular-e2e` job.
11. Repeat steps 8 and 9.
12. Commit these changes and push.

View File

@ -49,14 +49,12 @@
</ion-item>
<ion-item>
<ion-label>Min</ion-label>
<ion-input formControlName="inputMin" type="number"></ion-input>
<ion-input label="Min" formControlName="inputMin" type="number"></ion-input>
<pre>errors: {{ profileForm.controls['inputMin'].errors | json }}</pre>
</ion-item>
<ion-item>
<ion-label>Max</ion-label>
<ion-input formControlName="inputMax" type="number"></ion-input>
<ion-input label="Max" formControlName="inputMax" type="number"></ion-input>
<pre>errors: {{ profileForm.controls['inputMax'].errors | json }}</pre>
</ion-item>
</ion-list>

View File

@ -25,8 +25,8 @@
<form [formGroup]="form">
<ion-item id="inputWithFloatingLabel">
<ion-label color="primary" position="floating">Floating Label</ion-label>
<ion-select multiple="false" formControlName="select">
<ion-select label-placement="floating" multiple="false" formControlName="select">
<ion-label slot="label" color="Primary">Floating Label</ion-label>
<ion-select-option [value]="0">Option 0</ion-select-option>
<ion-select-option [value]="1">Option 1</ion-select-option>
</ion-select>

View File

@ -2,8 +2,7 @@
<form [formGroup]="form">
<ion-list>
<ion-item>
<ion-label>Textarea</ion-label>
<ion-textarea formControlName="textarea"></ion-textarea>
<ion-textarea label="Textarea" formControlName="textarea"></ion-textarea>
</ion-item>
</ion-list>
</form>

View File

@ -6,6 +6,6 @@
</p>
<app-value-accessor-test [formGroup]="form">
<ion-checkbox formControlName="checkbox"></ion-checkbox>
<ion-checkbox formControlName="checkbox">Checkbox</ion-checkbox>
</app-value-accessor-test>
</div>

View File

@ -4,6 +4,6 @@
This test checks the form integrations with ion-range to make sure values are correctly assigned to the form group.
</p>
<app-value-accessor-test [formGroup]="form">
<ion-range formControlName="range"></ion-range>
<ion-range label="Range" formControlName="range"></ion-range>
</app-value-accessor-test>
</div>

View File

@ -5,6 +5,6 @@
</p>
<app-value-accessor-test [formGroup]="form">
<ion-toggle formControlName="toggle"></ion-toggle>
<ion-toggle formControlName="toggle">Toggle</ion-toggle>
</app-value-accessor-test>
</div>

View File

@ -22,6 +22,12 @@ FULL_BASE_DIR="${BASE_DIR}/."
# The full path to the built application.
BUILD_APP_DIR="${BUILD_DIR}/${APP_DIR}/"
# Make sure the full app directory exists.
if [ ! -d $FULL_APP_DIR ]; then
echo "Could not find test app: ${FULL_APP_DIR}"
exit 1
fi
# Make the build directory if it does not already exist.
mkdir -p $BUILD_DIR