feat(datetime): add header text to multiple selection; improve header consistency between modes (#25817)

Co-authored-by: Sean Perkins <sean@ionic.io>
This commit is contained in:
Amanda Johnston
2022-08-29 11:18:45 -05:00
committed by GitHub
parent ae6aa0cb8e
commit 8a1b3c5f30
127 changed files with 103 additions and 16 deletions

View File

@ -23,3 +23,5 @@ export interface DatetimeParts {
}
export type DatetimePresentation = 'date-time' | 'time-date' | 'date' | 'time' | 'month' | 'year' | 'month-year';
export type TitleSelectedDatesFormatter = (selectedDates: string[]) => string;