You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(card-header): reverse order of title and subtitle on ios (#26084)
BREAKING CHANGE:
- The card header has ben changed to a flex container with direction set to `column` (top to bottom). In `ios` mode the direction is set to `column-reverse` which results in the subtitle displaying on top of the title.
Copy file name to clipboardExpand all lines: BREAKING.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ This is a comprehensive list of the breaking changes introduced in the major ver
15
15
-[Browser and Platform Support](#version-7x-browser-platform-support)
16
16
-[Components](#version-7x-components)
17
17
-[Accordion Group](#version-7x-accordion-group)
18
+
-[Card Header](#version-7x-card-header)
18
19
-[Checkbox](#version-7x-checkbox)
19
20
-[Datetime](#version-7x-datetime)
20
21
-[Input](#version-7x-input)
@@ -69,6 +70,10 @@ This section details the desktop browser, JavaScript framework, and mobile platf
69
70
70
71
- Accordion Group no longer automatically adjusts the `value` property when passed an array and `multiple="false"`. Developers should update their apps to ensure they are using the API correctly.
71
72
73
+
<h4id="version-7x-card-header">Card Header</h4>
74
+
75
+
- The card header has ben changed to a flex container with direction set to `column` (top to bottom). In `ios` mode the direction is set to `column-reverse` which results in the subtitle displaying on top of the title.
76
+
72
77
<h4id="version-7x-checkbox">Checkbox</h4>
73
78
74
79
`ionChange` is no longer emitted when the `checked` property of `ion-checkbox` is modified externally. `ionChange` is only emitted from user committed changes, such as clicking or tapping the checkbox.
@@ -94,7 +99,7 @@ This section details the desktop browser, JavaScript framework, and mobile platf
94
99
95
100
<h4id="version-7x-overlays">Overlays</h4>
96
101
97
-
Ionic now listens on the `keydown` event instead of the `keyup` event when determining when to dismiss overlays via the "Escape" key. Any applications that were listening on `keyup` to suppress this behavior should listen on `keydown` instead.
102
+
Ionic now listens on the `keydown` event instead of the `keyup` event when determining when to dismiss overlays via the "Escape" key. Any applications that were listening on `keyup` to suppress this behavior should listen on `keydown` instead.
98
103
99
104
<h4id="version-7x-range">Range</h4>
100
105
@@ -130,7 +135,7 @@ iOS:
130
135
131
136
- The type signature of `value` supports `string | undefined`. Previously the type signature was `string | null | undefined`.
132
137
- Developers needing to clear the checked segment item should assign a value of `''` instead of `null`.
133
-
138
+
134
139
<h4id="version-7x-select">Select</h4>
135
140
136
141
-`ionChange` is no longer emitted when the `value` of `ion-select` is modified externally. `ionChange` is only emitted from user committed changes, such as confirming a selected option in the select's overlay.
@@ -488,7 +493,7 @@ Developers must now provide an `ion-router-outlet` inside of `ion-tabs`. Previou
488
493
<script>
489
494
import { IonTabs, IonTabBar } from'@ionic/vue';
490
495
import { defineComponent } from'vue';
491
-
496
+
492
497
exportdefaultdefineComponent({
493
498
components: { IonTabs, IonTabBar }
494
499
});
@@ -507,7 +512,7 @@ Developers must now provide an `ion-router-outlet` inside of `ion-tabs`. Previou
0 commit comments