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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
## [60.2.5]
2
+
-[Pickers][Android] Added error haptic feedback when TimePicker or DateAndTimePicker selections are clamped by minimum or maximum constraints.
3
+
1
4
## [60.2.4]
2
5
-[NavigationListItem] Groups the row as one accessibility element, applies the platform button trait including when used in a CollectionView, and uses `Title` as the default screen reader description while still allowing consumers to override `SemanticProperties.Description`.
Copy file name to clipboardExpand all lines: wiki/Components/Pickers.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,6 +161,8 @@ There are three types of date/time pickers:
161
161
## Date Picker
162
162
A date picker should be used by you to let people pick a date. The date picker is an in-line button with a title that people tap to start picking the date. When a date is picked, the date will be displayed as a part of the in-line button.
163
163
164
+
When `MinimumDate` or `MaximumDate` is set, Android disables dates outside the allowed range.
@@ -191,7 +193,7 @@ A `TimePicker` should be used by you to let people pick a time. The `TimePicker`
191
193
```
192
194
193
195
### Constraining selectable times
194
-
You can set `MinimumTime` and `MaximumTime` to restrict the range of times people can choose. On iOS the time picker wheel prevents out-of-range selection. On Android the selected time is clamped after confirmation.
196
+
You can set `MinimumTime` and `MaximumTime` to restrict the range of times people can choose. On iOS the time picker wheel prevents out-of-range selection. On Android the selected time is clamped after confirmation, and out-of-range confirmations give error haptic feedback.
@@ -207,7 +209,7 @@ Inspect the [components properties class](https://github.com/DIPSAS/DIPS.Mobile.
207
209
## DateAndTime Picker
208
210
A `DateAndTimePicker` should be used by you to let people pick both a date -and time. The `DateAndTimePicker` is two in-line buttons with a title that people tap to start picking the date or time. When date is picked, the date or time will be displayed as part of the in-line button.
209
211
210
-
When `MaximumDate` or `MinimumDate` is set and the selected date equals the boundary date, the time picker is also constrained to the boundary time. On iOS the time wheel prevents out-of-range selection; on Android the value is clamped after confirmation.
212
+
When `MaximumDate` or `MinimumDate` is set and the selected date equals the boundary date, the time picker is also constrained to the boundary time. On iOS the time wheel prevents out-of-range selection; on Android the value is clamped after confirmation, and out-of-range confirmations give error haptic feedback.
0 commit comments