Skip to content

Commit 34568f5

Browse files
committed
Merge branch 'FW-1808-wrap' into FW-1808-wrap-screenshots
2 parents 19a956f + 1957d51 commit 34568f5

30 files changed

+189
-92
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25)
7+
8+
9+
### Bug Fixes
10+
11+
* **core:** handle uncaught native keyboard exceptions ([#27514](https://github.com/ionic-team/ionic-framework/issues/27514)) ([0e7359c](https://github.com/ionic-team/ionic-framework/commit/0e7359c07f53eccb362ff2bf331396c0376ba6f3)), closes [#27503](https://github.com/ionic-team/ionic-framework/issues/27503)
12+
* **react, vue:** inline modals apply ion-page class ([#27481](https://github.com/ionic-team/ionic-framework/issues/27481)) ([02678f3](https://github.com/ionic-team/ionic-framework/commit/02678f3652be5139cf0c17d0f1260c145acd1a48)), closes [#27470](https://github.com/ionic-team/ionic-framework/issues/27470)
13+
* **segment:** remove duplicate ripple effect on pointerup ([#27448](https://github.com/ionic-team/ionic-framework/issues/27448)) ([01f9959](https://github.com/ionic-team/ionic-framework/commit/01f99597f71b35a60a70f6d76c1e3e1917978d6d)), closes [#27338](https://github.com/ionic-team/ionic-framework/issues/27338)
14+
15+
16+
17+
18+
619
## [7.0.8](https://github.com/ionic-team/ionic-framework/compare/v7.0.7...v7.0.8) (2023-05-24)
720

821

angular/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25)
7+
8+
**Note:** Version bump only for package @ionic/angular
9+
10+
11+
12+
13+
614
## [7.0.8](https://github.com/ionic-team/ionic-framework/compare/v7.0.7...v7.0.8) (2023-05-24)
715

816
**Note:** Version bump only for package @ionic/angular

angular/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ionic/angular",
3-
"version": "7.0.8",
3+
"version": "7.0.9",
44
"description": "Angular specific wrappers for @ionic/core",
55
"keywords": [
66
"ionic",
@@ -47,7 +47,7 @@
4747
}
4848
},
4949
"dependencies": {
50-
"@ionic/core": "^7.0.8",
50+
"@ionic/core": "^7.0.9",
5151
"ionicons": "^7.0.0",
5252
"jsonc-parser": "^3.0.0",
5353
"tslib": "^2.3.0"

core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.9](https://github.com/ionic-team/ionic-framework/compare/v7.0.8...v7.0.9) (2023-05-25)
7+
8+
9+
### Bug Fixes
10+
11+
* **core:** handle uncaught native keyboard exceptions ([#27514](https://github.com/ionic-team/ionic-framework/issues/27514)) ([0e7359c](https://github.com/ionic-team/ionic-framework/commit/0e7359c07f53eccb362ff2bf331396c0376ba6f3)), closes [#27503](https://github.com/ionic-team/ionic-framework/issues/27503)
12+
* **segment:** remove duplicate ripple effect on pointerup ([#27448](https://github.com/ionic-team/ionic-framework/issues/27448)) ([01f9959](https://github.com/ionic-team/ionic-framework/commit/01f99597f71b35a60a70f6d76c1e3e1917978d6d)), closes [#27338](https://github.com/ionic-team/ionic-framework/issues/27338)
13+
14+
15+
16+
17+
618
## [7.0.8](https://github.com/ionic-team/ionic-framework/compare/v7.0.7...v7.0.8) (2023-05-24)
719

820

core/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ionic/core",
3-
"version": "7.0.8",
3+
"version": "7.0.9",
44
"description": "Base components for Ionic",
55
"keywords": [
66
"ionic",

core/src/components/button/button.ios.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@
109109
font-size: #{$button-ios-small-font-size};
110110
}
111111

112+
:host(.button-has-icon-only) {
113+
--padding-top: 0;
114+
--padding-bottom: 0;
115+
}
116+
112117

113118
// iOS Round Button
114119
// --------------------------------------------------

core/src/components/button/button.ios.vars.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ $button-ios-opacity-disabled: .5 !default;
6565
// --------------------------------------------------
6666

6767
/// @prop - Padding top of the large button
68-
$button-ios-large-padding-top: 21px !default;
68+
$button-ios-large-padding-top: 17px !default;
6969

7070
/// @prop - Padding end of the large button
7171
$button-ios-large-padding-end: 1em !default;
@@ -90,7 +90,7 @@ $button-ios-large-font-size: 20px !default;
9090
// --------------------------------------------------
9191

9292
/// @prop - Padding top of the small button
93-
$button-ios-small-padding-top: 7px !default;
93+
$button-ios-small-padding-top: 4px !default;
9494

9595
/// @prop - Padding end of the small button
9696
$button-ios-small-padding-end: .9em !default;

core/src/components/button/button.md.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@
113113
font-size: #{$button-md-small-font-size};
114114
}
115115

116+
:host(.button-has-icon-only) {
117+
--padding-top: 0;
118+
--padding-bottom: 0;
119+
}
120+
116121

117122
// MD strong Button
118123
// --------------------------------------------------

0 commit comments

Comments
 (0)